*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}

/* ===== V0 COLOR PALETTE (oklch → hex approximations) ===== */
:root{
  --bg:#ffffff;
  --fg:#5c4a5e;
  --card:#fdf5f9;
  --card-fg:#5c4a5e;
  --primary:#e8b4d0;       /* pastel pink */
  --primary-fg:#5c4a5e;
  --secondary:#b8a0d0;     /* gentle lavender */
  --secondary-fg:#ffffff;
  --muted:#f5eef2;
  --muted-fg:#7a6478;
  --accent:#b8a0d0;
  --border:#edd8e6;
  --input:#fdf8fb;
  --radius:1rem;
  --shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06),inset 0 1px 0 rgba(255,255,255,.1);
}

body{font-family:'DM Sans',sans-serif;background:var(--bg);color:var(--fg);line-height:1.6}
.container{max-width:1200px;margin:0 auto;padding:0 1.5rem}

/* ===== HEADER ===== */
.header{position:sticky;top:0;z-index:100;background:rgba(255,255,255,.95);backdrop-filter:blur(10px);border-bottom:1px solid var(--border)}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:64px}
.header-left{display:flex;align-items:center;gap:.75rem}
.header-logo{width:48px;height:48px;border-radius:50%;object-fit:cover}
.header-name{font-family:'Dancing Script',cursive;font-size:1.35rem;font-weight:700;color:var(--primary);line-height:1.2}
.header-sub{font-size:.8rem;color:var(--muted-fg)}
.header-nav{display:flex;gap:1.5rem}
.header-nav a{text-decoration:none;font-size:.9rem;font-weight:500;color:var(--fg);transition:color .2s}
.header-nav a:hover{color:var(--primary)}
.header-actions{display:flex;gap:.5rem}

/* ===== BUTTONS ===== */
.btn{display:inline-flex;align-items:center;gap:.4rem;padding:.5rem 1.2rem;border:none;border-radius:var(--radius);font-family:inherit;font-size:.9rem;font-weight:600;cursor:pointer;text-decoration:none;transition:all .2s}
.btn-primary{background:var(--primary);color:var(--primary-fg)}
.btn-primary:hover{filter:brightness(.92);transform:translateY(-1px)}
.btn-outline{background:transparent;border:2px solid var(--border);color:var(--fg)}
.btn-outline:hover{background:var(--secondary);color:var(--secondary-fg)}
.btn-lg{padding:.75rem 2rem;font-size:1.05rem}
.btn-full{width:100%;justify-content:center;padding:.85rem;font-size:1.05rem;margin-top:1rem}
.btn-icon{font-style:normal}

/* ===== HERO ===== */
.hero{position:relative;overflow:hidden;background:linear-gradient(135deg,var(--bg),var(--card),var(--muted));padding:5rem 0 4rem}
.hero-texture{position:absolute;inset:0;background-image:radial-gradient(circle at 2px 2px,rgba(255,255,255,.3) 1px,transparent 0),radial-gradient(circle at 8px 8px,rgba(255,255,255,.2) 1px,transparent 0);background-size:10px 10px,16px 16px;opacity:.3;pointer-events:none}
.hero-sparkle{position:absolute;opacity:.15;font-size:1.8rem;animation:sparkle-pulse 3s infinite}
.s1{top:2rem;left:3rem;color:var(--primary)}
.s2{top:5rem;right:5rem;color:var(--secondary);animation-delay:.5s}
.s3{bottom:5rem;left:5rem;color:var(--accent);animation-delay:1s}
@keyframes sparkle-pulse{0%,100%{opacity:.15;transform:scale(1)}50%{opacity:.3;transform:scale(1.15)}}
.hero-content{position:relative;text-align:center;max-width:800px;margin:0 auto}
.hero-title{font-family:'Dancing Script',cursive;font-size:clamp(2.8rem,6vw,4.2rem);font-weight:700;color:var(--primary);margin-bottom:1.25rem;line-height:1.15}
.hero-desc{font-size:1.1rem;color:var(--muted-fg);max-width:600px;margin:0 auto 2rem;line-height:1.7}
.hero-btns{display:flex;gap:1rem;justify-content:center;margin-bottom:3rem;flex-wrap:wrap}
.hero-features{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;max-width:600px;margin:0 auto}
.hf{text-align:center}
.hf-icon{width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto .75rem;font-size:1.5rem}
.hf-icon.pink{background:rgba(232,180,208,.15);color:var(--primary)}
.hf-icon.lavender{background:rgba(184,160,208,.15);color:var(--secondary)}
.hf h3{font-family:'Dancing Script',cursive;font-size:1.1rem;font-weight:700;margin-bottom:.2rem;color:var(--fg)}
.hf p{font-size:.8rem;color:var(--muted-fg)}

/* ===== SECTION TITLES ===== */
.section-title{font-family:'Dancing Script',cursive;font-size:clamp(2rem,4.5vw,2.8rem);font-weight:700;text-align:center;margin-bottom:.75rem;color:var(--primary)}
.section-title.left{text-align:left}
.section-desc{text-align:center;color:var(--muted-fg);max-width:600px;margin:0 auto 2.5rem;font-size:1.05rem;line-height:1.6}

/* ===== FEATURED PLUSHIES ===== */
.featured{padding:5rem 0;background:rgba(245,238,242,.3)}
.plushie-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:2rem}
.plushie-card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);transition:all .3s}
.plushie-card:hover{box-shadow:0 8px 24px rgba(0,0,0,.1);transform:translateY(-4px)}
.pc-img-wrap{aspect-ratio:1;overflow:hidden}
.pc-img{width:100%;height:100%;object-fit:cover;transition:transform .3s}
.plushie-card:hover .pc-img{transform:scale(1.05)}
.pc-body{padding:1.25rem}
.pc-top{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:.75rem}
.pc-tags{display:flex;gap:.4rem}
.tag{background:var(--muted);color:var(--muted-fg);font-size:.7rem;font-weight:600;padding:.2rem .5rem;border-radius:6px}
.pc-heart{background:none;border:none;cursor:pointer;color:var(--muted-fg);font-size:1.1rem;transition:color .2s}
.pc-heart:hover{color:var(--primary)}
.pc-body h3{font-family:'Playfair Display',serif;font-size:1.15rem;font-weight:600;margin-bottom:.4rem;color:var(--fg)}
.pc-body p{font-size:.9rem;color:var(--muted-fg);line-height:1.5;margin-bottom:1rem}
.pc-bottom{display:flex;justify-content:space-between;align-items:center}
.stars{color:var(--primary);font-size:.85rem;letter-spacing:1px}
.pc-cta{font-size:.85rem;font-weight:600;color:var(--primary)}

/* ===== ABOUT ===== */
.about{padding:5rem 0}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.about-p{font-size:1.05rem;color:var(--muted-fg);line-height:1.7;margin-bottom:1.25rem}
.about-p.muted{font-size:.95rem}
.about-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:1.5rem}
.stat{text-align:center;padding:1rem;background:rgba(232,180,208,.05);border:1px solid rgba(232,180,208,.2);border-radius:var(--radius)}
.stat-icon{font-size:1.5rem;margin-bottom:.4rem}
.stat-icon.pink{color:var(--primary)}
.stat-icon.lavender{color:var(--secondary)}
.stat-label{font-family:'Dancing Script',cursive;font-weight:700;font-size:1.1rem}
.stat-sub{font-size:.8rem;color:var(--muted-fg)}
.about-img-wrap{position:relative}
.about-img{width:100%;aspect-ratio:1;object-fit:cover;border-radius:1rem;box-shadow:var(--shadow)}
.about-sparkle{position:absolute;bottom:-1rem;right:-1rem;width:60px;height:60px;background:rgba(232,180,208,.1);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:2rem;animation:sparkle-pulse 2s infinite}

/* ===== PROCESS ===== */
.process{padding:5rem 0;background:rgba(245,238,242,.2)}
.steps-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:2rem}
.step-card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:1.5rem;text-align:center;box-shadow:var(--shadow);transition:all .3s}
.step-card:hover{box-shadow:0 8px 24px rgba(0,0,0,.1)}
.step-icon-wrap{position:relative;margin-bottom:1.25rem}
.step-icon{width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto;font-size:1.5rem}
.step-icon.pink{background:rgba(232,180,208,.15)}
.step-icon.lavender{background:rgba(184,160,208,.15)}
.step-num{position:absolute;top:-4px;right:calc(50% - 40px);width:24px;height:24px;background:var(--primary);color:var(--primary-fg);border-radius:50%;font-size:.75rem;font-weight:700;display:flex;align-items:center;justify-content:center}
.step-card h3{font-family:'Dancing Script',cursive;font-size:1.25rem;font-weight:700;margin-bottom:.5rem}
.step-card p{font-size:.85rem;color:var(--muted-fg);line-height:1.6}

/* ===== CUSTOMIZER ===== */
.customize-section{padding:5rem 0}
.cust-layout{display:grid;grid-template-columns:400px 1fr;gap:3rem;align-items:start}
.cust-frame{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);text-align:center;position:sticky;top:5rem}
.cust-img{width:100%;height:260px;object-fit:cover;display:block}
.cust-swatches{display:flex;align-items:center;justify-content:center;gap:.6rem;padding:1rem 0 .5rem}
.cust-dot{width:48px;height:48px;border-radius:50%;border:3px solid var(--muted);box-shadow:0 2px 8px rgba(0,0,0,.08);transition:background .3s}
.cust-plus{color:var(--muted-fg);font-weight:700;font-size:1.1rem}
.cust-name{font-family:'Playfair Display',serif;font-size:1.1rem;font-weight:600;padding:0 1rem}
.cust-colors{font-size:.85rem;color:var(--muted-fg);margin-top:.15rem}
.cust-price{font-weight:700;color:var(--primary);font-size:1.2rem;margin:.25rem 0 1rem}

.cctrl{margin-bottom:1.5rem}
.cctrl label{display:block;font-weight:600;margin-bottom:.5rem;font-size:.95rem}
.clbl{font-weight:400;color:var(--muted-fg);font-size:.85rem}
.design-btns{display:flex;flex-wrap:wrap;gap:.5rem}
.dbtn{display:flex;align-items:center;gap:.5rem;border:1px solid var(--border);background:var(--card);padding:.45rem .85rem;border-radius:var(--radius);cursor:pointer;font-family:inherit;font-size:.82rem;color:var(--fg);transition:all .2s}
.dbtn:hover{border-color:var(--primary)}
.dbtn.active{background:var(--primary);color:var(--primary-fg);border-color:var(--primary)}
.dbtn-img{width:36px;height:36px;border-radius:8px;object-fit:cover;object-position:top}

.swatch-row{display:flex;flex-wrap:wrap;gap:.5rem}
.yk-swatch{width:34px;height:34px;border-radius:50%;border:3px solid transparent;cursor:pointer;transition:all .2s;position:relative}
.yk-swatch:hover{transform:scale(1.15)}
.yk-swatch.active{border-color:var(--fg);box-shadow:0 0 0 2px var(--bg),0 0 0 4px var(--fg)}
.yk-swatch::after{content:attr(data-name);position:absolute;bottom:calc(100% + 6px);left:50%;transform:translateX(-50%);background:var(--fg);color:var(--bg);font-size:.65rem;padding:.15rem .4rem;border-radius:6px;white-space:nowrap;opacity:0;pointer-events:none;transition:opacity .2s;z-index:10}
.yk-swatch:hover::after{opacity:1}

/* ===== GALLERY ===== */
.gallery{padding:5rem 0}
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:2rem}
.gal-card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);transition:all .3s}
.gal-card:hover{box-shadow:0 8px 24px rgba(0,0,0,.1);transform:translateY(-4px)}
.gal-img-wrap{position:relative;aspect-ratio:2/3;overflow:hidden}
.gal-img{width:100%;height:100%;object-fit:cover;object-position:center 20%;transition:transform .3s}
.gal-card:hover .gal-img{transform:scale(1.05)}
.gal-cat{position:absolute;top:.75rem;left:.75rem;background:rgba(232,180,208,.9);color:var(--primary-fg);font-size:.7rem;font-weight:700;padding:.25rem .6rem;border-radius:6px}
.gal-body{padding:1.25rem}
.gal-body h3{font-family:'Playfair Display',serif;font-size:1.05rem;font-weight:600;margin-bottom:.3rem}
.gal-body p{font-size:.85rem;color:var(--muted-fg);font-style:italic;line-height:1.5}

/* ===== CONTACT ===== */
.contact{padding:5rem 0;background:rgba(245,238,242,.3)}
.contact-grid{display:grid;grid-template-columns:2fr 1fr;gap:2rem}
.contact-form-card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow);padding:2rem}
.cf-title{font-family:'Dancing Script',cursive;font-size:1.6rem;font-weight:700;margin-bottom:1.5rem;display:flex;align-items:center;gap:.5rem}
.cf-title span{color:var(--primary)}
.cf-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.cf-field{margin-bottom:1rem}
.cf-field label{display:block;font-size:.85rem;font-weight:600;margin-bottom:.35rem}
.cf-field input,.cf-field select,.cf-field textarea{width:100%;padding:.6rem .8rem;border:1px solid var(--border);border-radius:calc(var(--radius) - 4px);background:var(--input);font-family:inherit;font-size:.9rem;color:var(--fg);outline:none;transition:border-color .2s}
.cf-field input:focus,.cf-field select:focus,.cf-field textarea:focus{border-color:var(--secondary);box-shadow:0 0 0 3px rgba(184,160,208,.15)}
.cf-field textarea{resize:vertical}
.cf-check{display:flex;align-items:center;gap:.5rem;font-size:.85rem;margin-bottom:1rem;cursor:pointer}
.cf-check input{accent-color:var(--primary)}

.contact-sidebar{display:flex;flex-direction:column;gap:1.5rem}
.cs-card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow);padding:1.5rem}
.cs-card h3{font-family:'Dancing Script',cursive;font-size:1.25rem;font-weight:700;margin-bottom:1rem}
.cs-item{display:flex;align-items:center;gap:.75rem;margin-bottom:1rem}
.cs-icon{width:36px;height:36px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1rem;flex-shrink:0}
.cs-icon.pink{background:rgba(232,180,208,.15);color:var(--primary)}
.cs-icon.lavender{background:rgba(184,160,208,.15);color:var(--secondary)}
.cs-item strong{font-size:.9rem}
.cs-item small{font-size:.8rem;color:var(--muted-fg)}
.cs-link{color:var(--primary);text-decoration:none;font-weight:500}
.cs-link:hover{text-decoration:underline}
.cs-divider{height:1px;background:var(--border);margin:1rem 0}
.cs-sparkle{font-size:2rem;margin-bottom:.5rem;color:var(--primary);text-align:center}
.cs-timeline-text{font-size:.85rem;color:var(--muted-fg);margin-bottom:.5rem;line-height:1.5;text-align:center}
.cs-card small{font-size:.75rem;color:var(--muted-fg);text-align:center;display:block}
.cs-timeline{background:linear-gradient(135deg,rgba(232,180,208,.05),rgba(184,160,208,.05));border-color:rgba(232,180,208,.2);text-align:center}
.cs-sparkle{font-size:2.5rem;margin-bottom:.75rem;color:var(--primary)}
.cs-timeline p{font-size:.85rem;color:var(--muted-fg);margin-bottom:.5rem;line-height:1.5}
.cs-timeline small{font-size:.75rem;color:var(--muted-fg)}

/* ===== FOOTER ===== */
.footer{background:var(--muted);border-top:1px solid var(--border);padding:3rem 0 1rem}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:2rem}
.footer-brand{max-width:400px}
.fb-row{display:flex;align-items:center;gap:.75rem;margin-bottom:1rem}
.fb-icon{width:48px;height:48px;background:rgba(232,180,208,.15);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.3rem;color:var(--primary);flex-shrink:0}
.fb-row h3{font-family:'Dancing Script',cursive;font-size:1.4rem;font-weight:700;color:var(--primary)}
.fb-row p{font-size:.8rem;color:var(--muted-fg)}
.fb-desc{font-size:.9rem;color:var(--muted-fg);line-height:1.6;margin-bottom:1.25rem}
.fb-socials{display:flex;gap:.75rem}
.social{width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;text-decoration:none;font-size:1.1rem;transition:all .2s}
.social.pink{background:rgba(232,180,208,.15);color:var(--primary)}
.social.lavender{background:rgba(184,160,208,.15);color:var(--secondary)}
.social:hover{filter:brightness(.9)}
.footer-col h4{font-family:'Dancing Script',cursive;font-weight:700;margin-bottom:.75rem;font-size:1.1rem}
.footer-col a{display:block;text-decoration:none;color:var(--muted-fg);font-size:.9rem;margin-bottom:.4rem;transition:color .2s}
.footer-col a:hover{color:var(--primary)}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;margin-top:2rem;padding-top:1.5rem;border-top:1px solid var(--border);font-size:.85rem;color:var(--muted-fg);flex-wrap:wrap;gap:.5rem}
.footer-bottom span{color:var(--primary)}

/* ===== TOAST ===== */
.toast{position:fixed;bottom:2rem;left:50%;transform:translateX(-50%) translateY(100px);background:var(--fg);color:var(--bg);padding:.75rem 1.5rem;border-radius:30px;font-size:.9rem;font-weight:600;box-shadow:0 4px 20px rgba(0,0,0,.2);transition:transform .4s cubic-bezier(.175,.885,.32,1.275);z-index:200;pointer-events:none}
.toast.show{transform:translateX(-50%) translateY(0)}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .header-nav{display:none}
  .about-grid{grid-template-columns:1fr}
  .about-img-wrap{order:-1}
  .cust-layout{grid-template-columns:1fr}
  .cust-frame{position:static}
  .contact-grid{grid-template-columns:1fr}
}
@media(max-width:600px){
  .hero-features{grid-template-columns:1fr;max-width:300px}
  .plushie-grid,.gallery-grid{grid-template-columns:1fr}
  .steps-grid{grid-template-columns:1fr}
  .cf-row{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;text-align:center}
  .header-brand{display:none}
}


/* ===== SHOP SECTION ===== */
.shop-section{padding:5rem 0}
.shop-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:1.5rem}
.shop-loading{text-align:center;color:var(--muted-fg);padding:3rem;grid-column:1/-1}
.sp-card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);cursor:pointer;transition:all .3s}
.sp-card:hover{box-shadow:0 8px 24px rgba(0,0,0,.1);transform:translateY(-4px)}
.sp-card-img{width:100%;aspect-ratio:3/4;object-fit:cover;object-position:center 20%;display:block}
.sp-card-body{padding:1rem 1.25rem 1.25rem}
.sp-card-tags{display:flex;gap:.3rem;margin-bottom:.5rem;flex-wrap:wrap}
.sp-card-name{font-family:'Playfair Display',serif;font-size:1.05rem;font-weight:600;margin-bottom:.3rem}
.sp-card-desc{font-size:.85rem;color:var(--muted-fg);line-height:1.5;margin-bottom:.75rem;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.sp-card-bottom{display:flex;justify-content:space-between;align-items:center}
.sp-card-price{font-size:1.1rem;font-weight:700;color:var(--primary-fg)}
.sp-card-cta{font-size:.8rem;font-weight:600;color:var(--primary)}

/* Custom Request Banner */
.custom-request-banner{margin-top:2rem;background:linear-gradient(135deg,rgba(232,180,208,.08),rgba(184,160,208,.08));border:2px dashed var(--border);border-radius:var(--radius);padding:2rem;display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap}
.crb-icon{font-size:2.5rem}
.crb-text{flex:1;min-width:200px}
.crb-text h3{font-family:'Dancing Script',cursive;font-size:1.4rem;font-weight:700;color:var(--primary);margin-bottom:.25rem}
.crb-text p{font-size:.9rem;color:var(--muted-fg);line-height:1.5}

/* ===== STORE MODALS ===== */
.s-modal-overlay{position:fixed;inset:0;background:rgba(92,74,94,.5);backdrop-filter:blur(4px);display:flex;align-items:center;justify-content:center;z-index:200;padding:1.5rem}
.s-modal{background:var(--bg);border-radius:var(--radius);box-shadow:0 16px 48px rgba(0,0,0,.15);position:relative;max-height:90vh;overflow-y:auto}
.s-modal-close{position:absolute;top:1rem;right:1rem;background:var(--card);border:1px solid var(--border);width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:1rem;color:var(--muted-fg);z-index:5;transition:all .2s}
.s-modal-close:hover{background:var(--border);color:var(--fg)}
.hidden{display:none!important}

/* Product Modal */
.product-modal{max-width:900px;width:100%}
.pm-grid{display:grid;grid-template-columns:1fr 1fr;gap:0;padding:1.25rem 1.5rem .5rem}
.pm-cell-img{padding-right:1rem}
.pm-img{width:100%;max-height:280px;border-radius:var(--radius);object-fit:cover;object-position:center}
.pm-cell-info{display:flex;flex-direction:column;justify-content:center;padding-bottom:.75rem}
.pm-tags{display:flex;gap:.3rem;margin-bottom:.25rem;flex-wrap:wrap}
.pm-name{font-family:'Dancing Script',cursive;font-size:1.5rem;font-weight:700;color:var(--primary);margin-bottom:.2rem;line-height:1.2}
.pm-desc{font-size:.9rem;color:var(--muted-fg);line-height:1.5;margin-bottom:.4rem}
.pm-price{font-size:1.25rem;font-weight:700;color:var(--fg);margin-bottom:.5rem}
.zone-tabs-top{display:flex;gap:.4rem;flex-wrap:wrap;justify-content:center}
.zone-tab{display:flex;align-items:center;gap:.5rem;padding:.4rem .75rem;border:2px solid var(--border);background:var(--card);border-radius:var(--radius);cursor:pointer;font-family:inherit;font-size:.82rem;color:var(--fg);transition:all .2s}
.zone-tab:hover{border-color:var(--primary)}
.zone-tab.active{border-color:var(--primary);background:rgba(232,180,208,.12);box-shadow:0 0 0 2px rgba(232,180,208,.3)}
.zone-tab-img{width:28px;height:28px;border-radius:50%;object-fit:cover;border:2px solid var(--border);flex-shrink:0}
.zone-tab.active .zone-tab-img{border-color:var(--primary)}
.zone-tab-info{display:flex;flex-direction:column;line-height:1.2;text-align:left}
.zone-tab-name{font-weight:600;font-size:.8rem}
.zone-tab-color{font-size:.7rem;color:var(--muted-fg)}
.pm-cell-preview{padding-right:1rem}
.pm-cell-palette{}
.pm-bottom-bar{display:flex;gap:.75rem;align-items:center;padding:.75rem 1.5rem 1rem}
.pm-notes-inline{flex:1;margin:0}
.pm-notes-inline textarea{width:100%;padding:.5rem .7rem;border:1px solid var(--border);border-radius:calc(var(--radius) - 4px);background:var(--input);font-family:inherit;font-size:.85rem;color:var(--fg);outline:none;resize:none;transition:border-color .2s}
.pm-notes-inline textarea:focus{border-color:var(--secondary);box-shadow:0 0 0 3px rgba(184,160,208,.15)}
.pm-add-btn{flex-shrink:0;white-space:nowrap}
.pm-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.optional{font-weight:400;color:var(--muted-fg);font-size:.75rem}

/* Color Zone Picker */
.zone-preview-col{display:flex;flex-direction:column;align-items:center;justify-content:center;background:var(--card);border:1px solid var(--border);border-radius:calc(var(--radius) - 4px);padding:1.5rem;text-align:center;height:100%}
.zone-preview-col.empty{opacity:.5}
.zone-hover-img{width:180px;height:180px;border-radius:50%;object-fit:cover;border:4px solid var(--border);margin-bottom:.75rem}
.zone-hover-name{font-weight:700;font-size:1.15rem;margin-bottom:.15rem}
.zone-hover-sub{font-size:.8rem;color:var(--muted-fg)}
.zone-palette{display:flex;flex-wrap:wrap;gap:.4rem;max-height:320px;overflow-y:auto;padding:.5rem;border:1px solid var(--border);border-radius:calc(var(--radius) - 4px);background:var(--input)}
.zone-swatch{border:3px solid transparent;cursor:pointer;transition:all .15s;position:relative;background:none;padding:0}
.zone-swatch:hover{transform:scale(1.1);border-color:var(--secondary)}
.yarn-swatch{border-radius:50%;overflow:hidden;width:42px;height:42px}
.yarn-ball-img{width:100%;height:100%;object-fit:cover;display:block;border-radius:50%}

/* ===== CART DRAWER ===== */
.cart-overlay{position:fixed;inset:0;background:rgba(0,0,0,.3);z-index:150}
.cart-drawer{position:fixed;top:0;right:0;bottom:0;width:420px;max-width:90vw;background:var(--bg);box-shadow:-4px 0 24px rgba(0,0,0,.1);z-index:160;display:flex;flex-direction:column;transform:translateX(100%);transition:transform .3s ease}
.cart-drawer.open{transform:translateX(0)}
.cart-header{display:flex;align-items:center;justify-content:space-between;padding:1.25rem 1.5rem;border-bottom:1px solid var(--border)}
.cart-header h2{font-family:'Dancing Script',cursive;font-size:1.4rem}
.cart-header .s-modal-close{position:static}
.cart-items{flex:1;overflow-y:auto;padding:1rem 1.5rem}
.cart-empty{text-align:center;color:var(--muted-fg);padding:3rem 1rem;font-size:.95rem}
.cart-item{display:flex;gap:1rem;padding:1rem 0;border-bottom:1px solid var(--border)}
.cart-item-img{width:70px;height:70px;border-radius:calc(var(--radius) - 4px);object-fit:cover;object-position:center 20%;flex-shrink:0}
.cart-item-info{flex:1;min-width:0}
.cart-item-name{font-family:'Playfair Display',serif;font-size:.9rem;font-weight:600;margin-bottom:.15rem}
.cart-item-colors{font-size:.75rem;color:var(--muted-fg);line-height:1.4}
.cart-yarn-dot{width:14px;height:14px;border-radius:50%;object-fit:cover;display:inline-block;vertical-align:middle;margin-right:2px;border:1px solid var(--border)}
.cart-item-notes{font-size:.7rem;color:var(--muted-fg);font-style:italic;margin-top:.2rem}
.cart-item-right{display:flex;flex-direction:column;align-items:flex-end;gap:.25rem}
.cart-item-price{font-weight:700;font-size:.95rem}
.cart-item-remove{background:none;border:none;color:var(--muted-fg);cursor:pointer;font-size:.8rem;padding:.2rem;transition:color .2s}
.cart-item-remove:hover{color:#e87070}
.cart-footer{padding:1.25rem 1.5rem;border-top:1px solid var(--border);background:var(--card)}
.cart-total{display:flex;justify-content:space-between;align-items:center;margin-bottom:.5rem;font-size:1rem;font-weight:600}
.cart-total-price{font-size:1.2rem;color:var(--primary-fg)}
.cart-note{font-size:.75rem;color:var(--muted-fg);text-align:center;margin-bottom:.75rem}
.cart-count{background:var(--primary);color:var(--primary-fg);font-size:.7rem;font-weight:700;padding:.1rem .45rem;border-radius:10px;margin-left:.25rem}
.cart-toggle{position:relative}

/* ===== CHECKOUT MODAL ===== */
.checkout-modal{max-width:520px;width:100%;padding:2.5rem 2rem 2rem;border-radius:var(--radius)}
.checkout-modal .pm-name{text-align:center;font-size:1.6rem;margin-bottom:.25rem}
.checkout-modal .pm-desc{text-align:center;margin-bottom:1.5rem}
.checkout-summary{background:var(--muted);border-radius:calc(var(--radius) - 4px);padding:.75rem 1rem;margin:0 0 1.5rem;max-height:180px;overflow-y:auto}
.checkout-item{display:flex;justify-content:space-between;align-items:center;padding:.5rem 0;font-size:.88rem}
.checkout-item-name{font-weight:600}
.checkout-item+.checkout-item{border-top:1px solid var(--border)}
.checkout-form .pm-field{margin-bottom:1rem}
.checkout-form .pm-field label{display:block;font-size:.85rem;font-weight:600;margin-bottom:.4rem;color:var(--fg)}
.checkout-form .pm-field .optional{font-weight:400;color:var(--muted-fg)}
.checkout-form .pm-field input,.checkout-form .pm-field textarea{width:100%;padding:.65rem .9rem;border:1.5px solid var(--border);border-radius:calc(var(--radius) - 4px);background:var(--input);font-family:inherit;font-size:.9rem;color:var(--fg);outline:none;transition:border-color .2s,box-shadow .2s}
.checkout-form .pm-field input:focus,.checkout-form .pm-field textarea:focus{border-color:var(--secondary);box-shadow:0 0 0 3px rgba(184,160,208,.15)}
.checkout-form .pm-field textarea{resize:vertical}
.checkout-total{display:flex;justify-content:space-between;align-items:center;padding:.85rem 1rem;margin:.75rem 0;border-radius:calc(var(--radius) - 4px);background:var(--muted);font-weight:700;font-size:1.1rem}
.checkout-fine{text-align:center;font-size:.8rem;color:var(--muted-fg);margin-top:.75rem}
.prayer-field{background:linear-gradient(135deg,rgba(184,160,208,.06),rgba(232,180,208,.06));border:1.5px solid rgba(184,160,208,.2);border-radius:calc(var(--radius) - 2px);padding:1rem;margin-bottom:1rem}
.prayer-field label{color:var(--secondary)}

/* ===== CONFIRM MODAL ===== */
.confirm-modal{max-width:460px;text-align:center;padding:3rem 2rem}
.confirm-icon{font-size:3rem;margin-bottom:1rem}
.confirm-id{font-size:.85rem;color:var(--muted-fg);margin:1rem 0 1.5rem;background:var(--muted);padding:.5rem 1rem;border-radius:var(--radius);display:inline-block}

/* ===== RESPONSIVE (store additions) ===== */
@media(max-width:900px){
  .pm-grid{grid-template-columns:1fr;gap:.75rem}
  .pm-cell-img{padding-right:0;max-width:250px;margin:0 auto}
  .pm-cell-preview{padding-right:0}
  .pm-bottom-bar{flex-direction:column}
  .pm-notes-inline{width:100%}
  .pm-add-btn{width:100%;justify-content:center}
}
@media(max-width:600px){
  .shop-grid{grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:1rem}
  .pm-row{grid-template-columns:1fr}
  .custom-request-banner{flex-direction:column;text-align:center}
  .cart-drawer{width:100%;max-width:100vw}
}
