/* ===== Cookie Consent Popup Styles ===== */
.cookie-consent-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #33477d 0%, #007c7a 100%);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    font-family: 'Nunito', sans-serif;
}

.cookie-consent-popup.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text p {
    margin: 0 0 8px 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.cookie-consent-text p:last-child {
    margin-bottom: 0;
}

.cookie-consent-text strong {
    font-weight: 700;
    font-size: 1.05rem;
}

.cookie-policy-link {
    color: #ccf2ef;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cookie-policy-link:hover {
    color: white;
    text-decoration: none;
}

.cookie-consent-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept {
    background: white;
    color: #33477d;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-accept:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cookie-essential {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-essential:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cookie-btn:active {
    transform: translateY(0);
}

/* ===== Tablet Responsive (768px - 1024px) ===== */
@media (max-width: 1024px) {
    .cookie-consent-popup {
        padding: 18px;
    }

    .cookie-consent-content {
        gap: 25px;
    }

    .cookie-consent-text p {
        font-size: 0.9rem;
    }

    .cookie-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ===== Mobile Responsive (768px and below) ===== */
@media (max-width: 768px) {
    .cookie-consent-popup {
        padding: 16px;
    }

    .cookie-consent-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cookie-consent-text p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .cookie-consent-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .cookie-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

/* ===== Small Mobile (480px and below) ===== */
@media (max-width: 480px) {
    .cookie-consent-popup {
        padding: 14px;
    }

    .cookie-consent-content {
        gap: 16px;
    }

    .cookie-consent-text p {
        font-size: 0.85rem;
    }

    .cookie-consent-text strong {
        font-size: 0.95rem;
    }

    .cookie-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .cookie-consent-buttons {
        gap: 10px;
    }
}

/* ===== Accessibility Improvements ===== */
@media (prefers-reduced-motion: reduce) {
    .cookie-consent-popup {
        transition: none;
    }
    
    .cookie-btn {
        transition: none;
    }
}

/* Focus styles for accessibility */
.cookie-btn:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.cookie-policy-link:focus {
    outline: 2px solid #ccf2ef;
    outline-offset: 2px;
    border-radius: 3px;
} 