/* yk_upsell — Popup styling */
.yku-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,.5); z-index:999998; align-items:center; justify-content:center; padding:16px; box-sizing:border-box; }
.yku-overlay.is-open { display:flex; }
.yku-modal { background:#fff; max-width:720px; width:100%; max-height:90vh; overflow-y:auto; border-radius:12px; box-shadow:0 24px 64px rgba(0,0,0,.25); position:relative; animation:ykuIn .35s ease-out; }
@keyframes ykuIn { from { opacity:0; transform:translateY(20px) scale(.96); } to { opacity:1; transform:translateY(0) scale(1); } }
.yku-close { position:absolute; top:12px; right:12px; width:36px; height:36px; border:none; background:rgba(0,0,0,.05); border-radius:50%; cursor:pointer; font-size:22px; line-height:1; z-index:2; }
.yku-close:hover { background:rgba(0,0,0,.1); }
.yku-head { padding:28px 28px 16px; text-align:center; border-bottom:1px solid #F0EDE8; }
.yku-title { font-size:22px; font-weight:700; margin:0 0 8px; color:#1D1C1A; letter-spacing:-0.01em; }
.yku-subtitle { font-size:14px; color:#6F6C68; margin:0; line-height:1.5; }
.yku-grid-wrap { position:relative; padding:20px 22px 8px; }
.yku-grid { display:flex; gap:12px; overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; scrollbar-width:thin; scrollbar-color:#D8C9B9 transparent; }
.yku-grid::-webkit-scrollbar { height:6px; }
.yku-grid::-webkit-scrollbar-thumb { background:#D8C9B9; border-radius:3px; }
.yku-grid .yku-card { flex:0 0 calc(50% - 6px); scroll-snap-align:start; min-width:0; }
@media (min-width:600px) { .yku-grid .yku-card { flex:0 0 calc(25% - 9px); } }
.yku-card { border:1px solid #F0EDE8; border-radius:10px; padding:12px; text-align:center; background:#FAFAF8; display:flex; flex-direction:column; transition:border-color .2s; }
.yku-card:hover { border-color:#A88466; }
.yku-card-img { width:100%; aspect-ratio:1/1; object-fit:contain; background:#fff; border-radius:6px; margin-bottom:8px; }
.yku-card-name { font-size:12px; font-weight:600; line-height:1.3; min-height:32px; margin-bottom:6px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.yku-card-price { margin-bottom:8px; }
.yku-card-price-reg { font-size:11px; color:#B5453E; text-decoration:line-through; margin-right:4px; }
.yku-card-price-cur { font-size:14px; font-weight:700; color:#3D6B36; }
.yku-card-price-cur.no-discount { color:#1D1C1A; }
.yku-card-btn { background:#A88466; color:#fff; border:none; padding:8px 12px; border-radius:6px; font-size:12px; font-weight:600; cursor:pointer; margin-top:auto; font-family:inherit; }
.yku-card-btn:hover { background:#8A6A53; }
.yku-card-btn:disabled { background:#ccc; }
.yku-card-btn.is-added { background:#3D6B36; }
.yku-arrow { position:absolute; top:50%; transform:translateY(-50%); width:36px; height:36px; border-radius:50%; background:#fff; border:1px solid #E8E1D9; box-shadow:0 4px 12px rgba(0,0,0,.08); cursor:pointer; display:none; align-items:center; justify-content:center; z-index:3; padding:0; }
@media (min-width:600px) { .yku-arrow { display:flex; } }
.yku-arrow:hover:not(:disabled) { background:#A88466; color:#fff; border-color:#A88466; }
.yku-arrow:disabled { opacity:0; pointer-events:none; }
.yku-arrow-prev { left:6px; }
.yku-arrow-next { right:6px; }
.yku-footer { padding:16px 28px 24px; text-align:center; }
.yku-cta { background:#1D1C1A; color:#fff; border:none; padding:14px 28px; border-radius:6px; font-size:14px; font-weight:600; cursor:pointer; font-family:inherit; letter-spacing:.03em; text-transform:uppercase; }
.yku-cta:hover { background:#000; }
