/* ==========================================
   COOKIE CONSENT BANNER STYLES
   ========================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    border-top: 3px solid #1a5f3c;
}

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

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-content.cookie-settings {
    flex-direction: column;
    align-items: stretch;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h4 {
    color: #1a5f3c;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
}

.cookie-banner-text p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-banner-text a {
    color: #8b0000;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-banner-text a:hover {
    color: #a00000;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.btn-accept {
    background: linear-gradient(135deg, #1a5f3c, #2a7f4c);
    color: white;
}

.btn-accept:hover {
    background: linear-gradient(135deg, #2a7f4c, #1a5f3c);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 95, 60, 0.3);
}

.btn-essential {
    background: #6c757d;
    color: white;
}

.btn-essential:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-settings {
    background: transparent;
    color: #1a5f3c;
    border: 2px solid #1a5f3c;
}

.btn-settings:hover {
    background: #1a5f3c;
    color: white;
    transform: translateY(-2px);
}

/* Cookie Settings Panel */
.cookie-option {
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
}

.cookie-option:last-of-type {
    margin-bottom: 0;
}

.cookie-option-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.cookie-option-header input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #1a5f3c;
}

.cookie-option-header input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-option-header label {
    margin: 0;
    cursor: pointer;
    color: #2c3e50;
    font-size: 1.05rem;
}

.cookie-option-desc {
    margin: 0;
    margin-left: 2rem;
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 991px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
    }

    .cookie-banner-buttons {
        justify-content: stretch;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
        justify-content: center;
    }
}

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

    .cookie-banner-text h4 {
        font-size: 1.1rem;
    }

    .cookie-banner-text p {
        font-size: 0.85rem;
    }

    .btn-cookie {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }

    .cookie-option {
        padding: 1rem;
    }

    .cookie-option-desc {
        margin-left: 1.5rem;
        font-size: 0.85rem;
    }
}

/* Footer Cookie Settings Link */
.footer-cookie-link {
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-cookie-link:hover {
    color: #d4af37;
}
