.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(43, 43, 43, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 1.25rem 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-banner p {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cookie-consent-banner .btn {
    min-width: 130px;
    font-weight: 500;
}

.cookie-consent-banner .btn-accept {
    background-color: #7a2d2d;
    border-color: #7a2d2d;
    color: #fff;
}

.cookie-consent-banner .btn-accept:hover {
    background-color: #622424;
    border-color: #622424;
}

.cookie-consent-banner .btn-reject {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.cookie-consent-banner .btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-consent-banner .btn-customize {
    background-color: transparent;
    border-color: #7a2d2d;
    color: #7a2d2d;
}

.cookie-consent-banner .btn-customize:hover {
    background-color: rgba(122, 45, 45, 0.1);
}

.cookie-consent-modal .modal-header {
    border-bottom: 2px solid #7a2d2d;
}

.cookie-consent-modal .modal-title {
    color: #7a2d2d;
    font-weight: 600;
}

.cookie-consent-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cookie-consent-toggle:last-child {
    border-bottom: none;
}

.cookie-consent-toggle .form-check {
    margin-bottom: 0;
}

.cookie-consent-toggle .form-check-input:checked {
    background-color: #2f5d50;
    border-color: #2f5d50;
}

.cookie-consent-toggle .form-check-input:disabled {
    opacity: 0.7;
}

.cookie-consent-toggle .form-check-label {
    font-weight: 500;
    color: #2b2b2b;
}

.cookie-consent-toggle .cookie-desc {
    font-size: 0.85rem;
    color: #6c757d;
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 1rem;
    }

    .cookie-consent-banner .d-flex {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-consent-banner .btn {
        width: 100%;
    }
}
