/**
 * CC Buy Sample - Styles
 */

/* Flag/Label in product flags */
.buysample-flag {
    display: inline-block;
}

.buysample-flag-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background-color: #ffcb2d;
    color: #101010;
    border-radius: 3px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.buysample-flag-trigger:hover {
    background-color: #e6b829;
    color: #101010;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(255, 203, 45, 0.4);
}

.buysample-flag-icon {
    display: flex;
    align-items: center;
}

.buysample-flag-icon svg {
    width: 16px;
    height: 16px;
}

.buysample-flag-text {
    white-space: nowrap;
}

/* Main button wrapper */
.cc-buysample-wrapper {
    margin-top: 15px;
    margin-bottom: 15px;
}

.cc-buysample-btn {
    width: 100%;
    text-transform: uppercase;
    border: 1px solid #ffcb2d;
    background-color: #ffcb2d;
    color: #101010;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}


.cc-buysample-btn:hover, .cc-buysample-btn:active:focus  {
    border: 1px solid #ffcb2d;
    background-color: #ffcb2d;
    color: #101010;
}


.cc-buysample-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.cc-buysample-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.cc-buysample-btn:disabled:hover {
    background-color: #fff;
    color: #6c757d;
}

.cc-buysample-btn .material-icons {
    font-size: 20px;
}

.cc-buysample-loading .material-icons.rotating {
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cc-buysample-info {
    margin-top: 8px;
    text-align: center;
    color: #6c757d;
    font-size: 13px;
}

.cc-buysample-info small {
    font-style: italic;
}

.cc-buysample-message {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cc-buysample-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.cc-buysample-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Responsywność dla urządzeń mobilnych */
@media (max-width: 767px) {
    .cc-buysample-btn {
        font-size: 14px;
        padding: 10px 16px;
    }

    .cc-buysample-wrapper {
        margin-top: 12px;
        margin-bottom: 12px;
    }
}

/* Wersja alternatywna - jeśli chcesz przycisk obok standardowego "Dodaj do koszyka" */
.cc-buysample-inline {
    display: inline-block;
    width: auto;
    margin-left: 10px;
}

.cc-buysample-inline .cc-buysample-btn {
    width: auto;
    padding: 10px 16px;
    font-size: 14px;
}
