/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.cookie-consent-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green, #2F6F4E);
    margin: 0 0 10px 0;
}

.cookie-consent-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark, #333);
    margin: 0;
}

.cookie-consent-link {
    color: var(--primary-green, #2F6F4E);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-consent-link:hover {
    text-decoration: none;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-consent-accept {
    background: var(--primary-green, #2F6F4E);
    color: white;
    border-color: var(--primary-green, #2F6F4E);
}

.cookie-consent-accept:hover {
    opacity: 0.9;
    box-shadow: 0 4px 12px rgba(47, 111, 78, 0.3);
}

.cookie-consent-necessary {
    background: white;
    color: var(--text-dark, #333);
    border-color: #000;
}

.cookie-consent-necessary:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cookie-consent-decline {
    background: white;
    color: #e74c3c;
    border-color: #e74c3c;
}

.cookie-consent-decline:hover {
    background: #fee;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.2);
}

/* Cookie Notification */
.cookie-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--primary-green, #2F6F4E);
    color: white;
    padding: 16px 24px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.cookie-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.cookie-notification i {
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 16px;
        padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    }

    .cookie-consent-content {
        gap: 16px;
    }

    .cookie-consent-title {
        font-size: 1.1rem;
    }

    .cookie-consent-description {
        font-size: 0.9rem;
    }

    .cookie-consent-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-consent-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .cookie-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        font-size: 0.9rem;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .cookie-consent-content {
        flex-direction: row;
        align-items: center;
    }

    .cookie-consent-buttons {
        flex-shrink: 0;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .cookie-consent-content {
        flex-direction: row;
        align-items: center;
    }

    .cookie-consent-buttons {
        flex-shrink: 0;
    }
}

