/* Cookie Notification Styles */
.cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    border-top: 3px solid #4a7c59;
    font-family: 'Poppins', sans-serif;
}

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

.cookie-notification.hide {
    transform: translateY(100%);
    opacity: 0;
}

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #4a7c59;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-text p {
    margin: 0;
    opacity: 0.9;
}

.cookie-text a {
    color: #4a7c59;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-text a:hover {
    color: #5cb85c;
    text-decoration: none;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 120px;
}

.cookie-btn-accept {
    background: #4a7c59;
    color: white;
}

.cookie-btn-accept:hover {
    background: #5cb85c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
}

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

.cookie-btn-settings:hover {
    background: #bdc3c7;
    color: #2c3e50;
}

.cookie-icon {
    font-size: 1.3rem;
    margin-right: 0.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-text {
        text-align: left;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        min-width: 140px;
        padding: 0.8rem 1.2rem;
    }
    
    .cookie-notification {
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        padding: 0 0.5rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .cookie-text {
        font-size: 0.9rem;
    }
    
    .cookie-text h4 {
        font-size: 1rem;
    }
}

/* Animation for slide-in effect */
@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-notification.animate-in {
    animation: slideInUp 0.5s ease-out;
}

/* Optional: Blur background when cookie notification is shown */
body.cookie-notification-active main {
    transition: filter 0.3s ease;
}

body.cookie-notification-blur main {
    filter: blur(1px);
}
