.fsd-pop-overlay{
    position:fixed;
    inset:0;
    display:flex;
    opacity:0;
    visibility:hidden;
    transition:opacity .28s ease,visibility .28s ease;
    font-family:'DM Sans',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
    padding:20px;
    box-sizing:border-box;
}
.fsd-pop-overlay *{box-sizing:border-box}
.fsd-pop-overlay.fsd-pop-open{opacity:1;visibility:visible}
.fsd-pop-overlay.fsd-pop-no-overlay{background:transparent!important;pointer-events:none}
.fsd-pop-overlay.fsd-pop-no-overlay .fsd-pop-box{pointer-events:auto}

.fsd-pop-pos-center{align-items:center;justify-content:center}
.fsd-pop-pos-top{align-items:flex-start;justify-content:center}
.fsd-pop-pos-bottom{align-items:flex-end;justify-content:center}
.fsd-pop-pos-top-left{align-items:flex-start;justify-content:flex-start}
.fsd-pop-pos-top-right{align-items:flex-start;justify-content:flex-end}
.fsd-pop-pos-bottom-left{align-items:flex-end;justify-content:flex-start}
.fsd-pop-pos-bottom-right{align-items:flex-end;justify-content:flex-end}
.fsd-pop-pos-slide-left{align-items:center;justify-content:flex-start}
.fsd-pop-pos-slide-right{align-items:center;justify-content:flex-end}

.fsd-pop-box{
    position:relative;
    background:var(--fsd-pop-bg,#fff);
    color:var(--fsd-pop-text,#1a1a18);
    border-radius:var(--fsd-pop-radius,16px);
    box-shadow:0 24px 60px rgba(0,0,0,.28);
    max-width:100%;
    max-height:calc(100vh - 40px);
    overflow:auto;
    transform:translateY(16px) scale(.96);
    opacity:0;
    transition:transform .3s cubic-bezier(.2,.8,.2,1),opacity .3s ease;
}
.fsd-pop-open .fsd-pop-box{transform:none;opacity:1}

.fsd-pop-size-small{width:360px}
.fsd-pop-size-medium{width:480px}
.fsd-pop-size-large{width:680px}
.fsd-pop-size-fullscreen{width:100%;height:calc(100vh - 40px)}

.fsd-pop-anim-slide .fsd-pop-box{transform:translateY(40px)}
.fsd-pop-anim-zoom .fsd-pop-box{transform:scale(.8)}
.fsd-pop-anim-bounce .fsd-pop-box{transform:scale(.7)}
.fsd-pop-open.fsd-pop-anim-bounce .fsd-pop-box{transition:transform .5s cubic-bezier(.34,1.56,.64,1),opacity .3s ease}
.fsd-pop-anim-none .fsd-pop-box{transform:none;transition:opacity .2s ease}
.fsd-pop-pos-slide-left .fsd-pop-box{transform:translateX(-40px)}
.fsd-pop-pos-slide-right .fsd-pop-box{transform:translateX(40px)}
.fsd-pop-open.fsd-pop-pos-slide-left .fsd-pop-box,
.fsd-pop-open.fsd-pop-pos-slide-right .fsd-pop-box{transform:none}

.fsd-pop-close{
    position:absolute;
    top:12px;
    right:12px;
    width:32px;
    height:32px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.06);
    color:inherit;
    font-size:18px;
    line-height:1;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:background .2s;
    z-index:2;
}
.fsd-pop-close:hover{background:rgba(0,0,0,.12)}
.fsd-pop-close-outside{top:-14px;right:-14px;background:#fff;box-shadow:0 2px 10px rgba(0,0,0,.2)}
.fsd-pop-close-none{display:none}

.fsd-pop-body{padding:28px}
.fsd-pop-title{font-size:1.35rem;font-weight:600;margin:0 0 12px}
.fsd-pop-rich{font-size:.95rem;line-height:1.6}
.fsd-pop-rich p:last-child{margin-bottom:0}

.fsd-pop-image-full{display:block}
.fsd-pop-image-full img{display:block;width:100%;height:auto;border-radius:inherit}
.fsd-pop-image-link{cursor:pointer}

.fsd-pop-coupon-code{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin:16px 0;
    padding:12px 16px;
    border:2px dashed currentColor;
    border-radius:12px;
    font-weight:600;
    letter-spacing:1px;
}
.fsd-pop-coupon-code .fsd-pop-code{font-size:1.1rem}

.fsd-pop-form{display:flex;gap:8px;margin-top:16px}
.fsd-pop-form input{
    flex:1;
    padding:12px 14px;
    border:1px solid rgba(0,0,0,.15);
    border-radius:10px;
    font-size:.95rem;
    font-family:inherit;
}
.fsd-pop-form input:focus{outline:none;border-color:#9eceb3}
.fsd-pop-form-msg{margin-top:10px;font-size:.85rem}
.fsd-pop-form-msg.is-error{color:#dc2626}
.fsd-pop-form-msg.is-ok{color:#16a34a}

.fsd-pop-video{position:relative;width:100%;aspect-ratio:16/9;margin-top:8px}
.fsd-pop-video iframe{position:absolute;inset:0;width:100%;height:100%;border:0;border-radius:12px}

.fsd-pop-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:20px}
.fsd-pop-btn{
    appearance:none;
    border:none;
    border-radius:999px;
    padding:11px 22px;
    font-size:.92rem;
    font-weight:600;
    font-family:inherit;
    cursor:pointer;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:filter .2s,transform .1s;
}
.fsd-pop-btn:hover{filter:brightness(.95)}
.fsd-pop-btn:active{transform:translateY(1px)}
.fsd-pop-btn-primary{background:#9eceb3;color:#15301f}
.fsd-pop-btn-secondary{background:transparent;color:inherit;box-shadow:inset 0 0 0 1.5px rgba(0,0,0,.18)}

@media(max-width:560px){
    .fsd-pop-overlay{padding:12px;align-items:flex-end!important}
    .fsd-pop-box{width:100%!important;border-bottom-left-radius:0;border-bottom-right-radius:0}
    .fsd-pop-size-fullscreen{height:calc(100vh - 24px)}
    .fsd-pop-form{flex-direction:column}
}

.fsd-pop-wheel{display:flex;flex-direction:column;align-items:center;gap:16px;width:100%}
.fsd-pop-wheel-empty{font-size:.85rem;color:#9ca3af;padding:24px;text-align:center}
.fsd-pop-wheel-stage{position:relative;width:min(280px,72vw);aspect-ratio:1/1}
.fsd-pop-wheel-disc{width:100%;height:100%;display:block;transform-box:view-box;transform-origin:50% 50%;filter:drop-shadow(0 8px 24px rgba(0,0,0,.18))}
.fsd-pop-wheel-pointer{position:absolute;top:-4px;left:50%;transform:translateX(-50%);width:0;height:0;border-left:11px solid transparent;border-right:11px solid transparent;border-top:18px solid #1a1a18;z-index:2;filter:drop-shadow(0 2px 3px rgba(0,0,0,.3))}
.fsd-pop-wheel-hub{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:34px;height:34px;border-radius:50%;background:#ffffff;border:3px solid #1a1a18;z-index:1}
.fsd-pop-wheel-form{display:flex;gap:8px;width:100%;max-width:340px}
.fsd-pop-wheel-form input{flex:1;min-width:0;border:1px solid rgba(0,0,0,.18);border-radius:10px;padding:11px 13px;font-size:.92rem;font-family:inherit;outline:none}
.fsd-pop-wheel-form input:focus{border-color:#1a1a18}
.fsd-pop-wheel-form input:disabled{background:#f3f4f6;color:#9ca3af}
.fsd-pop-wheel-spin{white-space:nowrap}
.fsd-pop-wheel-spin:disabled{opacity:.55;cursor:default}
.fsd-pop-wheel-result{max-height:0;overflow:hidden;opacity:0;transition:max-height .35s ease,opacity .35s ease;width:100%;text-align:center}
.fsd-pop-wheel-result.is-shown{max-height:200px;opacity:1;margin-top:2px}
.fsd-pop-wheel-win{font-size:1rem;font-weight:700;color:var(--fsd-pop-text,#1a1a18);margin-bottom:10px}

.fsd-pop-box.fsd-pop-layout-split-left,
.fsd-pop-box.fsd-pop-layout-split-right{display:flex;overflow:hidden;width:720px;max-width:calc(100vw - 32px)}
.fsd-pop-box.fsd-pop-layout-split-right{flex-direction:row-reverse}
.fsd-pop-box.fsd-pop-layout-hero-top{display:flex;flex-direction:column;overflow:hidden}
.fsd-pop-media{background-size:cover;background-position:center;background-repeat:no-repeat;flex-shrink:0;background-color:#ececef}
.fsd-pop-layout-split-left .fsd-pop-media,
.fsd-pop-layout-split-right .fsd-pop-media{flex:0 0 44%;align-self:stretch;min-height:360px}
.fsd-pop-layout-hero-top .fsd-pop-media{width:100%;height:210px}
.fsd-pop-layout-split-left .fsd-pop-body,
.fsd-pop-layout-split-right .fsd-pop-body{flex:1;min-width:0;display:flex;flex-direction:column;justify-content:center;padding:46px 40px}
.fsd-pop-layout-hero-top .fsd-pop-body{padding:30px 34px 34px}
@media(max-width:560px){
    .fsd-pop-box.fsd-pop-layout-split-left,
    .fsd-pop-box.fsd-pop-layout-split-right{flex-direction:column;width:380px}
    .fsd-pop-layout-split-left .fsd-pop-media,
    .fsd-pop-layout-split-right .fsd-pop-media{flex:none;height:180px;min-height:0;width:100%}
    .fsd-pop-layout-split-left .fsd-pop-body,
    .fsd-pop-layout-split-right .fsd-pop-body{padding:32px 28px}
}
