/* Cookie Consent Banner Styles */
.cookie-consent {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background-color: #333;
    color: #fff;
    padding: 15px 20px;
    z-index: 99999 !important;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    display: none;
    -webkit-overflow-scrolling: touch;
}

.cookie-consent.show {
    display: block;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-consent-text {
    flex: 1;
    min-width: 280px;
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
}

.cookie-consent-text p {
    margin: 0;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent-btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.cookie-consent-accept {
    background: #9abc31;
    color: #fff;
}

.cookie-consent-accept:hover {
    background: #7a9a28;
    color: #fff;
    text-decoration: none;
}

.cookie-consent-policy {
    background: transparent;
    color: #9abc31;
    border: 1px solid #9abc31;
}

.cookie-consent-policy:hover {
    background: #9abc31;
    color: #fff;
    text-decoration: none;
}

.cookie-consent-close {
    background: transparent;
    border: none;
    color: #999;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
    line-height: 1;
    transition: color 0.3s ease;
}

.cookie-consent-close:hover {
    color: #fff;
}

/* Responsive styles */
@media (max-width: 768px) {
    .cookie-consent-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-text {
        min-width: 100%;
    }
    
    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-consent-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 15px 10px;
    }
    
    .cookie-consent-text {
        font-size: 13px;
        padding-right: 30px;
    }
    
    .cookie-consent-actions {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .cookie-consent-btn {
        width: 100%;
        text-align: center;
    }
    
    .cookie-consent-close {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 20px;
    }
}
