/* Cookie Popup Styles */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 48, 23, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.cookie-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.cookie-popup {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid #1e7015;
    transform: scale(1);
    transition: transform 0.3s ease;
    position: relative;
}

.cookie-overlay.hidden .cookie-popup {
    transform: scale(0.9);
}

.cookie-header {
    text-align: center;
    margin-bottom: 25px;
}

.cookie-header h3 {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0e3017;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cookie-content {
    margin-bottom: 30px;
    text-align: center;
}

.cookie-content p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 15px;
}

.cookie-policy-link {
    color: #1e6c15;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-policy-link:hover {
    color: #175c10;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-btn {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.cookie-btn-accept {
    background: #1d6e15;
    color: white;
    border: 2px solid #228118;
}

.cookie-btn-accept:hover {
    background: #1a6b12;
    border-color: #1a6b12;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 129, 24, 0.3);
}

.cookie-btn-decline {
    background: transparent;
    color: #228118;
    border: 2px solid #228118;
}

.cookie-btn-decline:hover {
    background: #1d6e15;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 129, 24, 0.2);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-popup {
        padding: 30px 25px;
        margin: 20px;
    }

    .cookie-header h3 {
        font-size: 20px;
    }

    .cookie-content p {
        font-size: 14px;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cookie-btn {
        width: 100%;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .cookie-popup {
        padding: 25px 20px;
        margin: 15px;
    }

    .cookie-header h3 {
        font-size: 18px;
    }
}
