/* =============================================
   IndoGlobalPrint — Shared Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ---- Variables ---- */
:root {
  --primary:        #7c22d4;
  --primary-light:  #9b3ff7;
  --primary-dark:   #5a17a0;
  --secondary:      #ff3d9a;
  --accent:         #ffd600;
  --bg:             #ffffff;
  --bg-muted:       #f5f4fa;
  --fg:             #18172b;
  --muted:          #6b7280;
  --border:         #e5e7eb;
  --card:           #ffffff;
  --radius:         1rem;
  --shadow:         0 4px 24px rgba(124,34,212,.08);
  --shadow-lg:      0 12px 40px rgba(124,34,212,.16);
  --font-h:         'Syne', sans-serif;
  --font-b:         'DM Sans', sans-serif;
  --ease:           cubic-bezier(.4,0,.2,1);
}

/* ---- Reset ---- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--font-b);background:var(--bg);color:var(--fg);line-height:1.6;font-size:16px;overflow-x:hidden}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
ul{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:var(--font-b)}
input,textarea,select{font-family:var(--font-b)}

/* ---- Layout ---- */
.container{max-width:1200px;margin:0 auto;padding:0 1.5rem}
.section{padding:5rem 0}

/* =============================================
   BUTTONS
   ============================================= */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;font-weight:600;border-radius:12px;transition:all .22s var(--ease);white-space:nowrap;cursor:pointer}
.btn-sm{padding:.5rem 1.1rem;font-size:.85rem}
.btn-md{padding:.75rem 1.5rem;font-size:.95rem}
.btn-lg{padding:1rem 2rem;font-size:1rem}

.btn-primary{background:var(--primary);color:#fff}
.btn-primary:hover{background:var(--primary-dark);transform:translateY(-2px);box-shadow:0 6px 20px rgba(124,34,212,.35)}
.btn-primary:active{transform:translateY(0)}

.btn-outline{background:transparent;color:var(--primary);border:2px solid var(--primary)}
.btn-outline:hover{background:rgba(124,34,212,.06)}

.btn-ghost{background:transparent;color:var(--fg)}
.btn-ghost:hover{background:var(--bg-muted)}

.btn-white{background:#fff;color:var(--primary)}
.btn-white:hover{background:rgba(255,255,255,.88);transform:translateY(-2px)}

/* =============================================
   HEADER / NAV
   ============================================= */
.header{position:sticky;top:0;z-index:100;background:rgba(255,255,255,.95);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);border-bottom:1px solid var(--border)}
.header-inner{height:68px;display:flex;align-items:center;justify-content:space-between;gap:1.5rem}

.logo{display:flex;align-items:center;gap:.6rem;font-family:var(--font-h);font-weight:800;font-size:1.15rem;color:var(--fg)}
.logo img{height:36px;width:auto;object-fit:contain}

.nav{display:flex;align-items:center;gap:1.75rem}
.nav-link{font-size:.9rem;font-weight:500;color:var(--fg);position:relative;padding:.25rem 0;transition:color .2s}
.nav-link::after{content:'';position:absolute;bottom:-3px;left:0;width:0;height:2px;background:var(--primary);border-radius:2px;transition:width .25s var(--ease)}
.nav-link:hover,.nav-link.active{color:var(--primary)}
.nav-link:hover::after,.nav-link.active::after{width:100%}

.header-actions{display:flex;align-items:center;gap:.5rem}

.icon-btn{width:40px;height:40px;display:flex;align-items:center;justify-content:center;border-radius:10px;color:var(--fg);transition:all .2s;position:relative}
.icon-btn:hover{background:var(--bg-muted);color:var(--primary)}
.icon-btn svg{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

.cart-badge{position:absolute;top:2px;right:2px;min-width:18px;height:18px;background:var(--secondary);color:#fff;font-size:.62rem;font-weight:700;border-radius:9999px;display:flex;align-items:center;justify-content:center}

/* Hamburger */
.hamburger{display:none;flex-direction:column;gap:5px;padding:8px;cursor:pointer}
.hamburger span{display:block;width:22px;height:2px;background:var(--fg);border-radius:2px;transition:all .25s}

/* Mobile Nav */
.mob-nav{display:none;position:fixed;inset:0;z-index:200;background:rgba(24,23,43,.55)}
.mob-nav.open{display:flex}
.mob-panel{width:290px;background:#fff;height:100%;padding:2rem 1.5rem;display:flex;flex-direction:column;gap:.25rem;animation:slideLeft .25s var(--ease)}
@keyframes slideLeft{from{transform:translateX(-100%)}to{transform:translateX(0)}}
.mob-panel .logo{margin-bottom:1.5rem}
.mob-link{font-size:1.05rem;font-weight:500;padding:.8rem 0;border-bottom:1px solid var(--border);display:block;transition:color .2s}
.mob-link:hover{color:var(--primary)}
.mob-close{margin-top:auto;padding-top:2rem}

/* =============================================
   CART SIDEBAR
   ============================================= */
.cart-overlay{display:none;position:fixed;inset:0;z-index:300;background:rgba(24,23,43,.45)}
.cart-overlay.open{display:flex;justify-content:flex-end}
.cart-panel{width:100%;max-width:400px;background:#fff;height:100%;display:flex;flex-direction:column;animation:slideRight .28s var(--ease)}
@keyframes slideRight{from{transform:translateX(100%)}to{transform:translateX(0)}}
.cart-head{display:flex;align-items:center;justify-content:space-between;padding:1.5rem;border-bottom:1px solid var(--border)}
.cart-head h2{font-family:var(--font-h);font-size:1.15rem;font-weight:700}
.cart-close{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border-radius:8px;transition:background .2s}
.cart-close:hover{background:var(--bg-muted)}
.cart-close svg{width:20px;height:20px;stroke:var(--fg);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.cart-body{flex:1;overflow-y:auto;padding:1rem 1.5rem}
.cart-empty-msg{text-align:center;padding:3rem 1rem;color:var(--muted)}
.cart-empty-msg svg{width:48px;height:48px;stroke:var(--border);fill:none;stroke-width:1.5;margin:0 auto 1rem}
.cart-item{display:flex;gap:1rem;padding:1rem 0;border-bottom:1px solid var(--border)}
.cart-item img{width:72px;height:72px;object-fit:cover;border-radius:10px;flex-shrink:0}
.cart-item-info{flex:1;min-width:0}
.cart-item-name{font-weight:600;font-size:.88rem;margin-bottom:.25rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.cart-item-price{color:var(--primary);font-weight:700;font-size:.88rem}
.cart-qty{display:flex;align-items:center;gap:.4rem;margin-top:.5rem}
.qty-btn{width:26px;height:26px;border-radius:6px;background:var(--bg-muted);font-size:1rem;font-weight:700;display:flex;align-items:center;justify-content:center;transition:background .2s;color:var(--fg)}
.qty-btn:hover{background:var(--border)}
.qty-num{font-weight:600;font-size:.88rem;min-width:22px;text-align:center}
.rm-btn{margin-left:.25rem;font-size:.78rem;color:var(--muted);transition:color .2s}
.rm-btn:hover{color:#ef4444}
.cart-foot{padding:1.5rem;border-top:1px solid var(--border)}
.cart-total-row{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem}
.cart-total-row span:first-child{color:var(--muted);font-size:.9rem}
.cart-total-amt{font-family:var(--font-h);font-size:1.3rem;font-weight:800;color:var(--primary)}
.btn-checkout{width:100%;padding:1rem;background:var(--primary);color:#fff;border-radius:12px;font-weight:700;font-size:1rem;transition:background .2s}
.btn-checkout:hover{background:var(--primary-dark)}

/* =============================================
   PRODUCT CARD
   ============================================= */
.product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(230px,1fr));gap:1.5rem}
.product-card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;transition:all .25s var(--ease);cursor:pointer}
.product-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg);border-color:rgba(124,34,212,.2)}
.pc-img-wrap{position:relative;overflow:hidden}
.pc-img{width:100%;aspect-ratio:3/4;object-fit:cover;transition:transform .4s var(--ease)}
.product-card:hover .pc-img{transform:scale(1.05)}
.pc-badge{position:absolute;top:.75rem;left:.75rem;background:var(--primary);color:#fff;font-size:.68rem;font-weight:700;padding:.22rem .6rem;border-radius:6px;text-transform:uppercase;letter-spacing:.06em}
.pc-badge.tshirt{background:var(--secondary)}
.pc-body{padding:1rem}
.pc-name{font-family:var(--font-h);font-size:.93rem;font-weight:700;margin-bottom:.2rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.pc-meta{font-size:.76rem;color:var(--muted);margin-bottom:.75rem}
.pc-footer{display:flex;align-items:center;justify-content:space-between}
.pc-price{font-family:var(--font-h);font-size:1.05rem;font-weight:800;color:var(--primary)}
.pc-add{width:36px;height:36px;background:var(--primary);color:#fff;border-radius:9px;display:flex;align-items:center;justify-content:center;transition:all .2s;flex-shrink:0}
.pc-add:hover{background:var(--primary-dark);transform:scale(1.1)}
.pc-add svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}

/* =============================================
   PRODUCT MODAL
   ============================================= */
.modal-overlay{display:none;position:fixed;inset:0;z-index:400;background:rgba(24,23,43,.6);align-items:center;justify-content:center;padding:1rem}
.modal-overlay.open{display:flex}
.modal{background:#fff;border-radius:1.5rem;max-width:800px;width:100%;max-height:90vh;overflow-y:auto;animation:modalPop .28s var(--ease);position:relative}
@keyframes modalPop{from{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}
.modal-inner{display:grid;grid-template-columns:1fr 1fr}
.modal-img-wrap{overflow:hidden;border-radius:1.5rem 0 0 1.5rem}
.modal-img{width:100%;height:100%;object-fit:cover;min-height:380px}
.modal-body{padding:2rem}
.modal-x{position:absolute;top:1rem;right:1rem;width:36px;height:36px;background:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 8px rgba(0,0,0,.15);transition:background .2s}
.modal-x:hover{background:var(--bg-muted)}
.modal-x svg{width:18px;height:18px;stroke:var(--fg);fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}
.modal-cat{font-size:.73rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--primary);margin-bottom:.4rem}
.modal-title{font-family:var(--font-h);font-size:1.5rem;font-weight:800;margin-bottom:.4rem}
.modal-price{font-family:var(--font-h);font-size:1.8rem;font-weight:800;color:var(--primary);margin-bottom:1.5rem}
.modal-specs{display:flex;flex-direction:column;gap:.55rem;margin-bottom:1.5rem}
.modal-spec{display:flex;gap:.5rem;font-size:.87rem}
.spec-lbl{font-weight:600;min-width:82px}
.spec-val{color:var(--muted)}
.modal-add-btn{width:100%;padding:1rem;background:var(--primary);color:#fff;border-radius:12px;font-weight:700;font-size:1rem;display:flex;align-items:center;justify-content:center;gap:.5rem;transition:all .2s}
.modal-add-btn:hover{background:var(--primary-dark);transform:translateY(-1px)}
.modal-add-btn svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}

/* =============================================
   SECTION HEADER
   ============================================= */
.sec-header{margin-bottom:3rem}
.sec-header h2{font-family:var(--font-h);font-size:clamp(1.8rem,4vw,2.5rem);font-weight:800;margin-bottom:.4rem}
.sec-header p{color:var(--muted);font-size:1rem}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section{background:linear-gradient(135deg,var(--primary) 0%,var(--secondary) 100%);color:#fff;padding:5rem 0;text-align:center}
.cta-section h2{font-family:var(--font-h);font-size:clamp(1.75rem,4vw,2.75rem);font-weight:800;margin-bottom:1rem}
.cta-section p{font-size:1.05rem;opacity:.9;max-width:520px;margin:0 auto 2rem;line-height:1.65}

/* =============================================
   FOOTER
   ============================================= */
.footer{background:var(--fg);color:rgba(255,255,255,.8);padding:4rem 0 2rem}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:3rem;margin-bottom:3rem}
.footer-brand .logo{color:#fff;margin-bottom:1rem}
.footer-brand p{font-size:.86rem;opacity:.6;line-height:1.65}
.footer-col h4{font-family:var(--font-h);font-weight:700;font-size:.9rem;color:#fff;margin-bottom:1rem}
.footer-col ul{display:flex;flex-direction:column;gap:.55rem}
.footer-col ul li a{font-size:.86rem;opacity:.6;transition:opacity .2s}
.footer-col ul li a:hover{opacity:1}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:2rem;text-align:center;font-size:.8rem;opacity:.45}

/* =============================================
   SHOP CONTROLS
   ============================================= */
.shop-controls{display:flex;flex-wrap:wrap;gap:1rem;align-items:center;margin-bottom:2rem}
.search-bar{display:flex;align-items:center;gap:.5rem;background:var(--bg-muted);border:1.5px solid var(--border);border-radius:10px;padding:.6rem 1rem;flex:1;min-width:200px;max-width:360px;transition:border-color .2s,background .2s}
.search-bar:focus-within{border-color:var(--primary);background:#fff}
.search-bar svg{width:18px;height:18px;stroke:var(--muted);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.search-bar input{border:none;background:none;outline:none;font-size:.9rem;color:var(--fg);width:100%}
.search-bar input::placeholder{color:var(--muted)}
.filter-tabs{display:flex;gap:.5rem;flex-wrap:wrap}
.filter-tab{padding:.5rem 1rem;border-radius:9999px;font-size:.83rem;font-weight:500;background:var(--bg-muted);color:var(--muted);border:1.5px solid transparent;cursor:pointer;transition:all .2s}
.filter-tab:hover{color:var(--primary);border-color:rgba(124,34,212,.2)}
.filter-tab.active{background:var(--primary);color:#fff;border-color:var(--primary)}
.no-results{text-align:center;padding:4rem 1rem;color:var(--muted)}

/* =============================================
   CATEGORIES GRID
   ============================================= */
.cat-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:1.5rem}
.cat-card{border-radius:var(--radius);overflow:hidden;position:relative;cursor:pointer;aspect-ratio:3/2}
.cat-card img{width:100%;height:100%;object-fit:cover;transition:transform .4s var(--ease)}
.cat-card:hover img{transform:scale(1.08)}
.cat-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(24,23,43,.85) 0%,transparent 60%);display:flex;align-items:flex-end;padding:1.5rem}
.cat-info h3{font-family:var(--font-h);font-size:1.2rem;font-weight:700;color:#fff}
.cat-info span{font-size:.78rem;color:rgba(255,255,255,.7)}

/* =============================================
   HERO
   ============================================= */
.hero{position:relative;overflow:hidden;background:linear-gradient(135deg,rgba(124,34,212,.06) 0%,#fff 50%,rgba(255,61,154,.05) 100%);padding:5.5rem 0 7rem}
.hero::before,.hero::after{content:'';position:absolute;border-radius:50%;pointer-events:none}
.hero::before{top:-100px;left:-100px;width:600px;height:600px;background:radial-gradient(circle,rgba(124,34,212,.1) 0%,transparent 70%)}
.hero::after{bottom:-120px;right:-80px;width:700px;height:700px;background:radial-gradient(circle,rgba(255,61,154,.08) 0%,transparent 70%)}
.hero-content{position:relative;z-index:1;max-width:700px}
.badge-pill{display:inline-flex;align-items:center;gap:.4rem;background:rgba(124,34,212,.08);border:1px solid rgba(124,34,212,.2);border-radius:9999px;padding:.32rem 1rem;font-size:.78rem;font-weight:700;color:var(--primary);margin-bottom:1.5rem}
.badge-pill svg{width:14px;height:14px;fill:var(--accent)}
.hero h1{font-family:var(--font-h);font-size:clamp(2.5rem,6vw,4.5rem);font-weight:800;line-height:1.08;letter-spacing:-.025em;background:linear-gradient(135deg,var(--primary) 0%,var(--secondary) 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-bottom:1.25rem}
.hero p{font-size:1.1rem;color:var(--muted);max-width:560px;margin-bottom:2rem;line-height:1.72}
.hero-cta{display:flex;flex-wrap:wrap;gap:1rem;margin-bottom:3.5rem}
.hero-cta .btn svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}
.hero-stats{display:flex;gap:3rem;padding-top:2.5rem;border-top:1px solid var(--border)}
.stat-num{font-family:var(--font-h);font-size:2rem;font-weight:800;color:var(--primary);line-height:1}
.stat-num.alt{color:var(--secondary)}
.stat-lbl{font-size:.78rem;color:var(--muted);margin-top:.3rem}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero{background:linear-gradient(135deg,rgba(124,34,212,.06),rgba(255,61,154,.04));padding:4.5rem 0}
.about-hero h1{font-family:var(--font-h);font-size:clamp(2rem,5vw,3.5rem);font-weight:800;margin-bottom:1rem}
.about-hero p{font-size:1.1rem;color:var(--muted);max-width:560px;line-height:1.7}
.about-story{max-width:720px;margin-bottom:4rem}
.about-story h2{font-family:var(--font-h);font-size:2rem;font-weight:800;margin-bottom:1.5rem}
.about-story p{color:var(--muted);font-size:1.05rem;line-height:1.78;margin-bottom:1.25rem}
.values-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:1.5rem;margin-bottom:4rem}
.value-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:2rem;transition:all .25s}
.value-card:hover{border-color:rgba(124,34,212,.25);box-shadow:var(--shadow)}
.v-icon{width:48px;height:48px;border-radius:12px;background:rgba(124,34,212,.1);display:flex;align-items:center;justify-content:center;margin-bottom:1rem}
.v-icon svg{width:24px;height:24px;stroke:var(--primary);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.value-card:nth-child(even) .v-icon{background:rgba(255,61,154,.1)}
.value-card:nth-child(even) .v-icon svg{stroke:var(--secondary)}
.value-card h3{font-family:var(--font-h);font-size:1rem;font-weight:700;margin-bottom:.5rem}
.value-card p{font-size:.88rem;color:var(--muted);line-height:1.6}
.stats-band{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:1.5rem;padding:2.5rem;background:var(--bg-muted);border-radius:1.5rem;margin-bottom:5rem;text-align:center}
.stat-band-num{font-family:var(--font-h);font-size:2.25rem;font-weight:800;color:var(--primary)}
.stat-band-num.alt{color:var(--secondary)}
.stat-band-lbl{color:var(--muted);font-size:.86rem;margin-top:.2rem}

/* =============================================
   AUTH PAGES (Login / Daftar)
   ============================================= */
.auth-page{min-height:100vh;display:flex;flex-direction:column}
.auth-main{flex:1;display:flex;align-items:center;justify-content:center;padding:3rem 1.5rem;background:linear-gradient(135deg,rgba(124,34,212,.05) 0%,#fff 60%,rgba(255,61,154,.04) 100%)}
.auth-box{width:100%;max-width:460px}
.auth-logo{display:flex;align-items:center;gap:.6rem;font-family:var(--font-h);font-weight:800;font-size:1.1rem;color:var(--fg);margin-bottom:2rem}
.auth-logo img{height:32px;width:auto;object-fit:contain}
.auth-card{background:#fff;border:1px solid var(--border);border-radius:1.5rem;padding:2.5rem;box-shadow:var(--shadow)}
.auth-card h1{font-family:var(--font-h);font-size:1.75rem;font-weight:800;margin-bottom:.35rem}
.auth-card .auth-sub{color:var(--muted);font-size:.9rem;margin-bottom:2rem}
.auth-card .auth-sub a{color:var(--primary);font-weight:600}
.auth-card .auth-sub a:hover{text-decoration:underline}

.form-group{margin-bottom:1.25rem}
.form-group label{display:block;font-size:.85rem;font-weight:600;color:var(--fg);margin-bottom:.45rem}
.form-input{width:100%;padding:.75rem 1rem;border:1.5px solid var(--border);border-radius:10px;font-size:.95rem;color:var(--fg);background:#fff;outline:none;transition:border-color .2s,box-shadow .2s}
.form-input:focus{border-color:var(--primary);box-shadow:0 0 0 3px rgba(124,34,212,.12)}
.form-input::placeholder{color:var(--muted)}
.form-input.error{border-color:#ef4444}

.input-wrap{position:relative}
.input-wrap .form-input{padding-right:3rem}
.toggle-pw{position:absolute;right:.9rem;top:50%;transform:translateY(-50%);color:var(--muted);transition:color .2s}
.toggle-pw:hover{color:var(--primary)}
.toggle-pw svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

.form-error{font-size:.78rem;color:#ef4444;margin-top:.3rem;display:none}
.form-error.show{display:block}

.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}

.forgot-row{display:flex;justify-content:flex-end;margin-top:-.5rem;margin-bottom:1.25rem}
.forgot-link{font-size:.82rem;color:var(--primary);font-weight:600}
.forgot-link:hover{text-decoration:underline}

.auth-divider{display:flex;align-items:center;gap:1rem;margin:1.5rem 0;color:var(--muted);font-size:.82rem}
.auth-divider::before,.auth-divider::after{content:'';flex:1;height:1px;background:var(--border)}

.btn-auth{width:100%;padding:1rem;font-size:1rem;font-weight:700;border-radius:12px}

.terms-note{font-size:.78rem;color:var(--muted);text-align:center;margin-top:1.25rem;line-height:1.5}
.terms-note a{color:var(--primary);font-weight:600}

.pw-strength{margin-top:.5rem}
.pw-bars{display:flex;gap:.3rem;margin-bottom:.25rem}
.pw-bar{flex:1;height:4px;border-radius:2px;background:var(--border);transition:background .3s}
.pw-bar.weak{background:#ef4444}
.pw-bar.fair{background:#f59e0b}
.pw-bar.good{background:#22c55e}
.pw-label{font-size:.73rem;color:var(--muted)}

/* =============================================
   TOAST
   ============================================= */
.toast-wrap{position:fixed;bottom:1.5rem;right:1.5rem;z-index:9999;display:flex;flex-direction:column;gap:.5rem;pointer-events:none}
.toast{background:var(--fg);color:#fff;padding:1rem 1.25rem;border-radius:12px;font-size:.88rem;max-width:320px;box-shadow:0 8px 24px rgba(0,0,0,.2);animation:toastIn .3s var(--ease);pointer-events:auto}
.toast.success{border-left:4px solid #22c55e}
.toast.error{border-left:4px solid #ef4444}
.toast-t{font-weight:700;margin-bottom:.15rem}
.toast-d{font-size:.8rem;opacity:.8}
@keyframes toastIn{from{opacity:0;transform:translateY(14px) scale(.95)}to{opacity:1;transform:translateY(0) scale(1)}}

/* =============================================
   RESPONSIVE
   ============================================= */
@media(max-width:900px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:2rem}
  .modal-inner{grid-template-columns:1fr}
  .modal-img-wrap{border-radius:1.5rem 1.5rem 0 0;max-height:260px}
  .modal-img{min-height:0}
}
@media(max-width:768px){
  .nav{display:none}
  .hamburger{display:flex}
  .hero{padding:3rem 0 4.5rem}
  .hero-stats{gap:1.5rem}
  .stat-num{font-size:1.5rem}
  .product-grid{grid-template-columns:repeat(2,1fr);gap:1rem}
  .section{padding:3rem 0}
  .footer-grid{grid-template-columns:1fr;gap:1.5rem}
  .form-row{grid-template-columns:1fr}
}
@media(max-width:480px){
  .product-grid{grid-template-columns:1fr 1fr;gap:.75rem}
  .hero h1{font-size:2rem}
  .hero-stats{gap:1rem}
  .hero-cta .btn{padding:.75rem 1.25rem;font-size:.9rem}
  .auth-card{padding:1.75rem}
}
