/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid #eee;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cookie-accept-btn {
    background: linear-gradient(135deg, #f06292, #e91e63);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.2);
}

.cookie-accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    background: linear-gradient(135deg, #e91e63, #d81b60);
}

.cookie-accept-btn:active {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 16px;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        text-align: center;
    }

    .cookie-text {
        font-size: 13px;
        text-align: left;
    }

    .cookie-accept-btn {
        width: 100%;
        padding: 14px 32px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 14px;
    }

    .cookie-text {
        font-size: 12px;
    }

    .cookie-accept-btn {
        font-size: 14px;
        padding: 12px 24px;
    }
}

