/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    background-color: #FFF;
    color: white;
    padding: 20px 30px;
    z-index: 2147483647;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    max-width: 97.5rem;
    width: 90%;
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-banner.hide {
    transform: translateX(-50%) translateY(200%);
}

.cookie-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 30px;
    margin: 0 auto;
    max-width: 100%;
}

.cookie-text {
    color: #000;
    font-family: 'Samsung Sharp Sans';
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 80%;
    opacity: 0.8;
    font-weight: 500;
}

.cookie-policy-link {
    color: #05CD99;
    text-decoration: underline;
    font-weight: 500;
    margin: 0 5px;
    transition: all 0.2s ease;
}

.cookie-policy-link:hover {
    text-decoration: none;
    color: #04a77f;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Red Hat Display';
    letter-spacing: 0.5px;
}

.cookie-accept {
    background-color: #2C008F;
    color: #FFF;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.cookie-settings {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    min-width: 150px;
}

.cookie-settings:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .cookie-banner {
        width: 95%;
        padding: 15px 20px;
    }
    
    .cookie-text {
        max-width: 75%;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 20px;
        width: 95%;
        padding: 15px;
        border-radius: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-text {
        max-width: 100%;
        margin-bottom: 10px;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 10px;
        padding: 12px;
        border-radius: 10px;
    }
    
    .cookie-text {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .cookie-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}