:root {
  --cream: #f4f8ff;
  --cream-deep: #e3edff;
  --blue: #2b6cff;
  --blue-soft: #b8d0ff;
  --navy: #0a2463;
  --sky: #5fb8ff;
  --sky-soft: #c9e8ff;
  --teal: #14b8c4;
  --orange: #ff8c42;
  --yellow: #ffd23f;
  --red: #e63946;
  --pink: #ff6b9d;
  --green: #4ade80;
  --purple: #a855f7;
  --ink: #0a1733;
  --ink-soft: #3a4866;
  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 3px 3px 0 var(--ink);
  --display: 'Fraunces', Georgia, serif;
  --body: 'Space Grotesk', system-ui, sans-serif;
  --mono: 'DM Mono', ui-monospace, monospace;
  --script: 'Caveat', cursive;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--cream); color: var(--ink); line-height: 1.5; overflow-x: hidden; position: relative; }
.confetti { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.dot { position: absolute; border-radius: 50%; opacity: 0.4; animation: float 12s ease-in-out infinite; }
.dot-1 { width: 14px; height: 14px; background: var(--blue); top: 12%; left: 8%; }
.dot-2 { width: 22px; height: 22px; background: var(--sky); top: 30%; left: 92%; animation-delay: -2s; }
.dot-3 { width: 10px; height: 10px; background: var(--teal); top: 55%; left: 5%; animation-delay: -4s; }
.dot-4 { width: 18px; height: 18px; background: var(--navy); top: 70%; left: 88%; animation-delay: -6s; }
.dot-5 { width: 12px; height: 12px; background: var(--blue); top: 85%; left: 15%; animation-delay: -8s; }
.dot-6 { width: 16px; height: 16px; background: var(--orange); top: 18%; left: 50%; animation-delay: -3s; }
.dot-7 { width: 20px; height: 20px; background: var(--teal); top: 92%; left: 60%; animation-delay: -5s; }
.dot-8 { width: 14px; height: 14px; background: var(--sky); top: 45%; left: 45%; animation-delay: -7s; }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-30px) rotate(180deg); } }

/* ANNOUNCE */
.announce { background: var(--navy); color: var(--cream); padding: 10px 0; overflow: hidden; position: relative; z-index: 10; border-bottom: 3px solid var(--sky); }
.announce-track { display: flex; gap: 32px; white-space: nowrap; animation: scroll 50s linear infinite; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.announce-track span { flex-shrink: 0; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; background: var(--cream); border-bottom: 2px solid var(--ink); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 16px 32px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.logo-svg { width: 52px; height: 52px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong { font-family: var(--display); font-size: 22px; font-weight: 900; letter-spacing: -0.03em; }
.logo-text em { font-family: var(--mono); font-size: 9px; font-style: normal; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); margin-top: 4px; font-weight: 500; }
.nav-links { display: flex; gap: 24px; }
.nav-links a { font-family: var(--body); font-weight: 600; font-size: 15px; color: var(--ink); text-decoration: none; position: relative; transition: color 0.2s; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 3px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { transform: scaleX(1); }
.cart-btn { position: relative; background: var(--sky); border: 2px solid var(--ink); width: 48px; height: 48px; border-radius: 50%; cursor: pointer; color: var(--ink); display: grid; place-items: center; box-shadow: var(--shadow-sm); transition: transform 0.15s, box-shadow 0.15s; }
.cart-btn:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.cart-btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.cart-count { position: absolute; top: -6px; right: -6px; background: var(--orange); color: var(--cream); border: 2px solid var(--ink); width: 24px; height: 24px; border-radius: 50%; font-family: var(--mono); font-size: 11px; font-weight: 700; display: grid; place-items: center; }

/* HERO */
.hero { max-width: 1280px; margin: 0 auto; padding: 60px 32px 30px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.kicker { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); display: inline-block; margin-bottom: 20px; }
.hero h1 { font-family: var(--display); font-size: clamp(48px, 8vw, 104px); line-height: 0.95; letter-spacing: -0.04em; font-weight: 900; margin-bottom: 28px; }
.hl { display: inline-block; padding: 0 12px; border-radius: 8px; transform: rotate(-2deg); position: relative; }
.hl-blue { background: var(--blue-soft); color: var(--navy); }
.hl-sky { background: var(--sky-soft); color: var(--ink); transform: rotate(2deg); }
.script { font-family: var(--script); font-weight: 700; color: var(--blue); font-size: 1.15em; display: inline-block; transform: rotate(-3deg); }
.hero-sub { font-size: 18px; color: var(--ink-soft); max-width: 480px; margin-bottom: 36px; line-height: 1.6; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 16px 28px; font-family: var(--body); font-weight: 700; font-size: 15px; text-decoration: none; border: 2px solid var(--ink); border-radius: 999px; cursor: pointer; transition: transform 0.15s, box-shadow 0.15s; }
.btn-primary { background: var(--ink); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--blue); }
.btn-primary:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--blue); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-full { width: 100%; justify-content: center; }
.hero-meta { display: flex; gap: 40px; border-top: 2px solid var(--ink); padding-top: 24px; max-width: 480px; }
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong { font-family: var(--display); font-size: 32px; font-weight: 900; line-height: 1; }
.hero-meta span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-top: 4px; }
.hero-visual { position: relative; height: 500px; }
.hero-blob { position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, var(--blue-soft) 0%, transparent 70%); z-index: 0; }
.jar { position: absolute; width: 130px; height: 130px; background: var(--cream-deep); border: 3px solid var(--ink); border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow); z-index: 1; animation: bob 4s ease-in-out infinite; overflow: hidden; padding: 14px; }
.jar svg { width: 100%; height: 100%; }
.jar-1 { top: 5%; left: 15%; animation-delay: 0s; background: var(--blue-soft); }
.jar-2 { top: 10%; right: 5%; animation-delay: -1s; background: var(--sky-soft); }
.jar-3 { top: 50%; left: 0%; animation-delay: -2s; background: #d4ecff; }
.jar-4 { top: 40%; right: 20%; animation-delay: -1.5s; background: var(--cream-deep); width: 150px; height: 150px; }
.jar-5 { bottom: 10%; left: 25%; animation-delay: -3s; background: #c5e8e6; }
.jar-6 { bottom: 5%; right: 8%; animation-delay: -0.5s; background: #ffd9b8; }
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-12px) rotate(3deg); } }

/* TRENDING BANNER */
.trending-banner { max-width: 1280px; margin: 30px auto; padding: 0 32px; position: relative; z-index: 2; }
.trending-banner-inner { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); border: 3px solid var(--ink); border-radius: 24px; padding: 32px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.trending-banner-inner::before { content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; background: var(--orange); border-radius: 50%; opacity: 0.15; }
.trending-banner-inner::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 250px; height: 250px; background: var(--sky); border-radius: 50%; opacity: 0.12; }
.banner-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; position: relative; z-index: 1; }
.banner-title { color: var(--cream); flex: 1; min-width: 250px; }
.banner-title .pill { display: inline-block; background: var(--orange); color: var(--cream); border: 2px solid var(--ink); padding: 4px 12px; border-radius: 999px; font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 12px; }
.banner-title h2 { font-family: var(--display); font-size: clamp(28px, 4vw, 42px); font-weight: 900; line-height: 1.1; margin-bottom: 6px; letter-spacing: -0.02em; }
.banner-title p { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sky); }
.banner-stock { background: var(--red); color: var(--cream); border: 2px solid var(--ink); padding: 10px 18px; border-radius: 12px; font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; box-shadow: var(--shadow-sm); transform: rotate(2deg); white-space: nowrap; }
.banner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; position: relative; z-index: 1; }
.banner-card { background: var(--cream); border: 2px solid var(--ink); border-radius: 16px; padding: 16px; display: flex; flex-direction: column; gap: 8px; cursor: pointer; transition: transform 0.2s; text-align: left; font-family: inherit; }
.banner-card:hover { transform: translateY(-4px); }
.banner-card-img { background: var(--sky-soft); border: 2px solid var(--ink); border-radius: 12px; aspect-ratio: 1; display: grid; place-items: center; padding: 14px; }
.banner-card-img svg { width: 100%; height: 100%; }
.banner-card-name { font-family: var(--display); font-weight: 900; font-size: 15px; line-height: 1.15; color: var(--ink); }
.banner-card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; flex-wrap: wrap; }
.banner-card-price { font-family: var(--display); font-weight: 900; font-size: 18px; color: var(--blue); }
.banner-card-stock { font-family: var(--mono); font-size: 9px; color: var(--red); letter-spacing: 0.05em; text-transform: uppercase; font-weight: 700; }
@media (max-width: 700px) {
  .banner-grid { grid-template-columns: 1fr; }
  .trending-banner-inner { padding: 22px; }
  .banner-stock { transform: rotate(0deg); }
}

/* CATEGORIES */
.categories { max-width: 1280px; margin: 40px auto; padding: 0 32px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }
.cat-btn { background: var(--cream); border: 2px solid var(--ink); padding: 10px 20px; font-family: var(--body); font-weight: 700; font-size: 14px; border-radius: 999px; cursor: pointer; transition: all 0.2s; color: var(--ink); }
.cat-btn:hover { background: var(--sky-soft); }
.cat-btn.active { background: var(--ink); color: var(--cream); box-shadow: var(--shadow-sm); }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { font-family: var(--display); font-size: clamp(40px, 6vw, 72px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 12px; }
.section-head p { font-size: 17px; color: var(--ink-soft); }

/* SHOP */
.shop { max-width: 1280px; margin: 0 auto; padding: 60px 32px; position: relative; z-index: 1; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.product { background: var(--cream-deep); border: 2px solid var(--ink); border-radius: 18px; padding: 18px; position: relative; transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; cursor: pointer; }
.product:hover { transform: translate(-2px, -2px) rotate(-0.5deg); box-shadow: var(--shadow); }
.product-img { background: var(--cream); border: 2px solid var(--ink); border-radius: 14px; padding: 18px; margin-bottom: 14px; position: relative; overflow: hidden; aspect-ratio: 1; display: grid; place-items: center; }
.product-img::before { content: ''; position: absolute; top: -10px; right: -10px; width: 40px; height: 40px; background: var(--sky-soft); border-radius: 50%; opacity: 0.6; z-index: 0; }
.product-img svg { width: 100%; height: 100%; position: relative; z-index: 1; }
.product-tag { position: absolute; top: 12px; left: 12px; background: var(--blue); color: var(--cream); font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; border: 2px solid var(--ink); z-index: 3; transform: rotate(-6deg); }
.product-tag.new { background: var(--teal); color: var(--cream); }
.product-tag.hot { background: var(--orange); color: var(--cream); }
.product-tag.bestseller { background: var(--yellow); color: var(--ink); }
.product-tag.viral { background: var(--navy); color: var(--cream); }
.product-name { font-family: var(--display); font-size: 18px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 4px; line-height: 1.2; }
.product-desc { font-size: 13px; color: var(--ink-soft); margin-bottom: 12px; flex-grow: 1; }
.product-price-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 10px; }
.product-price { font-family: var(--display); font-size: 22px; font-weight: 900; color: var(--ink); }
.product-unit { font-family: var(--mono); font-size: 10px; font-weight: 400; color: var(--ink-soft); letter-spacing: 0.05em; text-transform: uppercase; }
.product-actions { display: flex; gap: 6px; }
.add-cart-btn { flex: 1; background: var(--blue); color: var(--cream); border: 2px solid var(--ink); padding: 10px; border-radius: 999px; font-family: var(--body); font-weight: 700; font-size: 13px; cursor: pointer; transition: all 0.2s; box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; gap: 6px; }
.add-cart-btn:hover { background: var(--navy); transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.add-cart-btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.add-cart-btn.added { background: var(--teal); }
.detail-btn { background: var(--cream); color: var(--ink); border: 2px solid var(--ink); width: 38px; height: 38px; border-radius: 50%; cursor: pointer; transition: all 0.2s; display: grid; place-items: center; flex-shrink: 0; }
.detail-btn:hover { background: var(--yellow); }

/* DONATION RIBBON */
.donation-ribbon { background: var(--red); color: var(--cream); padding: 28px 32px; border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); position: relative; z-index: 1; }
.donation-ribbon-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.donation-heart { font-size: 56px; }
.donation-text { text-align: left; }
.donation-text strong { display: block; font-family: var(--display); font-weight: 900; font-size: clamp(20px, 3vw, 28px); letter-spacing: -0.01em; line-height: 1.15; margin-bottom: 4px; }
.donation-text span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.9; }
@media (max-width: 600px) {
  .donation-ribbon-inner { flex-direction: column; gap: 14px; text-align: center; }
  .donation-text { text-align: center; }
}

/* YOUTUBE */
.youtube-section { max-width: 1280px; margin: 0 auto; padding: 80px 32px; position: relative; z-index: 1; }
.yt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.yt-text .kicker { color: var(--red); }
.yt-text h2 { font-family: var(--display); font-size: clamp(36px, 5vw, 56px); font-weight: 900; letter-spacing: -0.03em; line-height: 1; margin-bottom: 20px; }
.yt-text p { font-size: 17px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 24px; max-width: 480px; }
.yt-text .channel-handle { font-family: var(--mono); font-size: 13px; color: var(--blue); margin-bottom: 24px; display: inline-block; background: var(--sky-soft); padding: 6px 14px; border: 2px solid var(--ink); border-radius: 999px; }
.yt-embed-wrap { position: relative; aspect-ratio: 9/16; max-width: 340px; margin: 0 auto; border: 3px solid var(--ink); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); background: var(--ink); }
.yt-embed-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.yt-corner-tag { position: absolute; top: -14px; left: -14px; background: var(--red); color: var(--cream); border: 2px solid var(--ink); padding: 6px 14px; border-radius: 999px; font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; transform: rotate(-6deg); z-index: 2; box-shadow: var(--shadow-sm); }
@media (max-width: 800px) {
  .yt-grid { grid-template-columns: 1fr; gap: 40px; }
  .yt-text { text-align: center; }
  .yt-text p { margin-left: auto; margin-right: auto; }
}

/* ABOUT */
.about { background: var(--navy); color: var(--cream); padding: 100px 32px; margin: 0; position: relative; z-index: 1; }
.about-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: center; }
.about .kicker { color: var(--sky); }
.about h2 { font-family: var(--display); font-size: clamp(36px, 5vw, 64px); font-weight: 900; letter-spacing: -0.03em; line-height: 1; margin-bottom: 24px; }
.about p { font-size: 17px; line-height: 1.7; color: rgba(244, 248, 255, 0.85); margin-bottom: 16px; }
.about p em { color: var(--sky); font-style: italic; }
.about p strong { color: var(--cream); }
.signature { font-family: var(--script); font-size: 32px; color: var(--sky); margin-top: 32px; }
.polaroid { background: var(--cream); padding: 16px 16px 50px; border: 2px solid var(--ink); box-shadow: 8px 8px 0 var(--blue); transform: rotate(-4deg); max-width: 320px; margin: 0 auto; }
.polaroid-img { background: linear-gradient(135deg, var(--blue-soft), var(--sky-soft)); aspect-ratio: 1; display: grid; place-items: center; padding: 30px; margin-bottom: 12px; border: 1px solid var(--ink); }
.polaroid p { font-family: var(--script); font-size: 22px; color: var(--ink); text-align: center; margin: 0; }

/* CONTACT */
.contact { background: var(--sky-soft); padding: 80px 32px; border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); position: relative; z-index: 1; }
.contact-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact h2 { font-family: var(--display); font-size: clamp(40px, 5vw, 64px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 16px; }
.contact p { font-size: 18px; margin-bottom: 24px; }
.contact-list { list-style: none; }
.contact-list li { padding: 12px 0; border-bottom: 1px solid var(--ink); font-size: 15px; }
.contact-list strong { font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; display: block; margin-bottom: 2px; color: var(--blue); }
.newsletter label { font-family: var(--display); font-size: 24px; font-weight: 700; display: block; margin-bottom: 16px; }
.news-row { display: flex; gap: 8px; margin-bottom: 12px; }
.news-row input { flex: 1; padding: 14px 18px; border: 2px solid var(--ink); border-radius: 999px; font-family: var(--body); font-size: 14px; background: var(--cream); }
.news-row button { background: var(--ink); color: var(--cream); border: 2px solid var(--ink); padding: 14px 24px; border-radius: 999px; font-family: var(--body); font-weight: 700; cursor: pointer; transition: background 0.2s; }
.news-row button:hover:not(:disabled) { background: var(--blue); }
.newsletter small { font-family: var(--mono); font-size: 11px; color: var(--ink-soft); }

/* WHOLESALE */
.wholesale { max-width: 1280px; margin: 0 auto; padding: 60px 32px; text-align: center; position: relative; z-index: 1; }
.wholesale-card { background: var(--cream-deep); border: 3px solid var(--ink); border-radius: 24px; padding: 40px 32px; max-width: 700px; margin: 0 auto; box-shadow: var(--shadow); }
.wholesale-card h3 { font-family: var(--display); font-size: clamp(28px, 4vw, 40px); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 12px; }
.wholesale-card p { font-size: 16px; color: var(--ink-soft); margin-bottom: 24px; }

/* FOOTER */
.foot { background: var(--ink); color: var(--cream); padding: 40px 32px; position: relative; z-index: 1; }
.foot-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.foot-logo { display: flex; align-items: center; gap: 12px; }
.foot-logo strong { font-family: var(--display); font-size: 18px; }
.foot p { font-family: var(--mono); font-size: 12px; opacity: 0.7; }
.foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-links a { color: var(--cream); text-decoration: none; font-size: 14px; opacity: 0.7; transition: opacity 0.2s; }
.foot-links a:hover { opacity: 1; color: var(--sky); }

/* CART DRAWER */
.cart-overlay, .modal-overlay { position: fixed; inset: 0; background: rgba(10, 23, 51, 0.5); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cart-overlay.open, .modal-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100vw); background: var(--cream); border-left: 3px solid var(--ink); z-index: 201; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; }
.cart-drawer.open { transform: translateX(0); }
.cart-head { padding: 24px; border-bottom: 2px solid var(--ink); display: flex; align-items: center; justify-content: space-between; background: var(--sky-soft); }
.cart-head h3 { font-family: var(--display); font-size: 24px; font-weight: 900; }
.cart-close, .modal-close { background: var(--ink); color: var(--cream); border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 22px; cursor: pointer; line-height: 1; }
.cart-body { flex: 1; overflow-y: auto; padding: 24px; }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty-icon { font-size: 64px; margin-bottom: 16px; }
.cart-empty p { font-size: 16px; color: var(--ink-soft); }
.cart-item { display: grid; grid-template-columns: 60px 1fr auto; gap: 12px; align-items: center; padding: 16px 0; border-bottom: 1px dashed var(--ink-soft); }
.cart-item-img { background: var(--cream-deep); border: 2px solid var(--ink); border-radius: 12px; width: 60px; height: 60px; display: grid; place-items: center; padding: 8px; }
.cart-item-img svg { width: 100%; height: 100%; }
.cart-item-name { font-family: var(--display); font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.cart-item-price { font-family: var(--mono); font-size: 12px; color: var(--ink-soft); }
.qty { display: flex; align-items: center; gap: 8px; background: var(--cream-deep); border: 2px solid var(--ink); border-radius: 999px; padding: 4px 8px; }
.qty button { background: none; border: none; width: 22px; height: 22px; border-radius: 50%; cursor: pointer; font-size: 14px; font-weight: 700; }
.qty button:hover { background: var(--blue); color: var(--cream); }
.qty span { font-family: var(--mono); font-weight: 700; font-size: 13px; min-width: 16px; text-align: center; }
.cart-foot { padding: 24px; border-top: 2px solid var(--ink); background: var(--cream-deep); }
.cart-donation { background: var(--red); color: var(--cream); padding: 10px 14px; border-radius: 12px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; text-align: center; margin-bottom: 14px; border: 2px solid var(--ink); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; font-family: var(--display); }
.cart-total span { font-size: 16px; }
.cart-total strong { font-size: 28px; font-weight: 900; }
.cart-foot small { display: block; text-align: center; font-family: var(--mono); font-size: 11px; color: var(--ink-soft); margin-top: 12px; }

/* DETAIL MODAL */
.detail-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.9); width: min(720px, calc(100vw - 32px)); max-height: calc(100vh - 32px); background: var(--cream); border: 3px solid var(--ink); border-radius: 24px; z-index: 250; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; overflow: hidden; }
.detail-modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.detail-head { padding: 18px 24px; border-bottom: 2px solid var(--ink); display: flex; align-items: center; justify-content: space-between; background: var(--sky-soft); flex-shrink: 0; }
.detail-head-title { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); }
.detail-body { padding: 28px; overflow-y: auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 28px; align-items: start; }
.detail-img { background: var(--sky-soft); border: 2px solid var(--ink); border-radius: 18px; padding: 28px; aspect-ratio: 1; display: grid; place-items: center; position: relative; }
.detail-img svg { width: 100%; height: 100%; }
.detail-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.detail-badge { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; border: 2px solid var(--ink); background: var(--blue); color: var(--cream); }
.detail-badge.viral { background: var(--navy); }
.detail-badge.hot { background: var(--orange); }
.detail-badge.bestseller { background: var(--yellow); color: var(--ink); }
.detail-badge.new { background: var(--teal); }
.detail-name { font-family: var(--display); font-size: clamp(24px, 3vw, 32px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 8px; }
.detail-desc { font-size: 15px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 18px; }
.detail-price-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 18px; padding: 14px; background: var(--cream-deep); border: 2px solid var(--ink); border-radius: 14px; }
.detail-price { font-family: var(--display); font-size: 32px; font-weight: 900; }
.detail-unit { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.detail-section { margin-bottom: 16px; }
.detail-section h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; font-weight: 700; }
.detail-section p { font-size: 13px; line-height: 1.55; color: var(--ink); }
.detail-allergen { background: #fff5e6; border: 2px solid var(--orange); border-radius: 12px; padding: 12px 14px; margin-bottom: 18px; }
.detail-allergen h4 { color: var(--orange); margin-bottom: 4px; }
.detail-allergen p { font-size: 12px; color: var(--ink-soft); }
.detail-cta { display: flex; gap: 8px; }
.detail-cta .add-cart-btn { padding: 14px; font-size: 14px; }
@media (max-width: 700px) {
  .detail-body { grid-template-columns: 1fr; gap: 20px; padding: 20px; }
  .detail-img { aspect-ratio: 1; max-width: 240px; margin: 0 auto; }
}

/* TOAST */
.toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--ink); color: var(--cream); padding: 14px 24px; border-radius: 999px; border: 2px solid var(--ink); font-family: var(--body); font-weight: 700; z-index: 300; opacity: 0; transition: all 0.3s; box-shadow: var(--shadow); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 400px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .hero-meta { flex-wrap: wrap; gap: 24px; }
  .nav-inner { padding: 14px 20px; }
  .hero { padding: 40px 20px; }
  .shop { padding: 40px 20px; }
  .about { padding: 60px 20px; }
  .contact { padding: 60px 20px; }
  .youtube-section { padding: 60px 20px; }
  .wholesale { padding: 40px 20px; }
}
@media (max-width: 500px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product { padding: 12px; }
  .product-name { font-size: 14px; }
  .product-price { font-size: 18px; }
  .add-cart-btn { font-size: 11px; padding: 8px; }
  .detail-btn { width: 32px; height: 32px; }
  .jar { width: 90px; height: 90px; padding: 10px; }
  .jar-4 { width: 100px; height: 100px; }
}