/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    border-top: 3px solid #dc3545;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    display: none;
    animation: slideUp 0.4s ease-out;
}

.cookie-consent-banner.show {
    display: block;
}

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

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

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

.cookie-consent-text h4 {
    color: #dc3545;
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-consent-text h4 i {
    font-size: 20px;
}

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

.cookie-consent-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-consent-accept {
    background: #dc3545;
    color: white;
    box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
}

.cookie-consent-accept:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.cookie-consent-reject {
    background: white;
    color: #dc3545;
    border: 2px solid #dc3545;
}

.cookie-consent-reject:hover {
    background: #dc3545;
    color: white;
    transform: translateY(-2px);
}

.cookie-consent-link {
    color: #dc3545;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dotted #dc3545;
}

.cookie-consent-link:hover {
    color: #c82333;
    border-bottom-style: solid;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-text {
        margin-bottom: 15px;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-consent-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* Red and White Theme Accent */
.cookie-consent-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        #dc3545,
        #dc3545 10px,
        white 10px,
        white 20px
    );
}