/**
 * Weston — промо-попап у правому нижньому куті
 *
 * Стилі картки: анімований промо-блок (перенесено з прототипу), сірий надзаголовок,
 * основний текст і кнопка.
 *
 * Залежності: немає
 * Використовується в: wst-promo-popup.js
 *
 * Історія змін:
 * - 2026-09-08: Створено
 */
.wst-promo-popup {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9998;
    width: 340px;
    max-width: calc(100vw - 32px);
    box-sizing: border-box;
    padding: 14px;
    background: #1f2024;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    /* стартовий стан — нижче краю; показ вмикається класом is-visible */
    transform: translateY(24px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.45s ease, visibility 0.45s;
}
.wst-promo-popup.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.wst-promo-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    width: 26px;
    height: 26px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease;
}
.wst-promo-close:hover {
    background: rgba(0, 0, 0, 0.65);
}

/* --- Медіа-блок з анімацією --- */
.wst-promo-media {
    position: relative;
    height: 168px;
    border-radius: 12px;
    overflow: hidden;
    background: #16171a;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wst-promo-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 68, 24, 0.22) 0%, rgba(22, 23, 26, 0) 70%);
    z-index: 2;
    animation: wstPromoGlow 3s ease-in-out infinite alternate;
}
.wst-promo-field {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}
.wst-promo-particle {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    will-change: transform, opacity;
}
.wst-promo-brand {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: wstPromoPulse 1.4s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}
.wst-promo-logo {
    width: 180px;
    height: auto;
    display: block;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.8));
}
.wst-promo-sale {
    margin-top: 12px;
    padding: 6px 26px;
    background: #e84418;
    color: #111111;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 5px;
    line-height: 1;
    box-shadow: 0 6px 20px rgba(232, 68, 24, 0.5);
}

@keyframes wstPromoPulse {
    0%   { transform: scale(1); }
    18%  { transform: scale(1.09); }
    30%  { transform: scale(1.04); }
    45%  { transform: scale(1); }
    100% { transform: scale(1); }
}
@keyframes wstPromoGlow {
    0%   { transform: scale(0.85); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 1; }
}

/* --- Текстова частина --- */
.wst-promo-body {
    padding: 14px 4px 2px 4px;
}
.wst-promo-kicker {
    color: #8d9096;
    font-size: 13px;
    line-height: 18px;
}
.wst-promo-text {
    margin-top: 4px;
    color: #ffffff;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
}
.wst-promo-btn {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    background: #e84418;
    border-radius: 100px;
    color: #ffffff !important;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s ease;
}
.wst-promo-btn:hover {
    background: #cf3a12;
    color: #ffffff !important;
}

/* Системне налаштування «менше руху» — прибираємо пульс і світіння */
@media (prefers-reduced-motion: reduce) {
    .wst-promo-popup,
    .wst-promo-brand,
    .wst-promo-glow {
        transition: none;
        animation: none;
    }
}

@media (max-width: 667px) {
    .wst-promo-popup {
        right: 8px;
        left: 8px;
        bottom: 8px;
        width: auto;
        max-width: none;
    }
    .wst-promo-media {
        height: 140px;
    }
    .wst-promo-logo {
        width: 150px;
    }
    .wst-promo-sale {
        margin-top: 10px;
        padding: 5px 20px;
        font-size: 15px;
        letter-spacing: 4px;
    }
}
