@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Barlow:wght@400;500&display=swap');

#waw-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    background: #000000;
    border-top: 3px solid #ff1a75;
    box-shadow: 0 -4px 24px rgba(255, 26, 117, 0.25);
    font-family: 'Barlow', sans-serif;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

#waw-cookie-banner.waw-hidden {
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
}

.waw-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.waw-cookie-left {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
    min-width: 260px;
}

.waw-cookie-icon {
    background: #ff1a75;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    line-height: 1;
}

.waw-cookie-text {
    flex: 1;
}

.waw-cookie-title {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin: 0 0 4px !important;
    padding: 0 !important;
    line-height: 1.2 !important;
}

.waw-cookie-body {
    font-size: 13px !important;
    color: #888888 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.waw-cookie-body a {
    color: #ff1a75 !important;
    text-decoration: underline !important;
}

.waw-cookie-body a:hover {
    color: #ff4d99 !important;
}

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

.waw-btn-accept {
    background: #ff1a75 !important;
    color: #ffffff !important;
    border: none !important;
    outline: none !important;
    padding: 12px 28px !important;
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 3px !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    line-height: 1 !important;
    display: inline-block !important;
    box-shadow: none !important;
    text-shadow: none !important;
    transition: background 0.15s ease !important;
}

.waw-btn-accept:hover {
    background: #e0005f !important;
    color: #ffffff !important;
}

.waw-btn-decline {
    background: transparent !important;
    color: #555555 !important;
    border: 1px solid #333333 !important;
    outline: none !important;
    padding: 11px 20px !important;
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 3px !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    line-height: 1 !important;
    display: inline-block !important;
    box-shadow: none !important;
    text-shadow: none !important;
    transition: color 0.15s ease, border-color 0.15s ease !important;
}

.waw-btn-decline:hover {
    color: #aaaaaa !important;
    border-color: #555555 !important;
    background: transparent !important;
}

/* Mobile */
@media (max-width: 600px) {
    .waw-cookie-inner {
        padding: 14px 16px;
        gap: 14px;
    }
    .waw-cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    .waw-btn-accept,
    .waw-btn-decline {
        width: 100% !important;
        text-align: center !important;
    }
}
