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

:root {
  --sky: #4A7AB5;
  --sky-dark: #365E8C;
  --gold: #C4956A;
  --gold-light: #E8D5B5;
  --cream: #FBF8F1;
  --cloud: #F0F4FA;
  --ink: #1A1F36;
  --white: #ffffff;
  --muted: #6B7A8D;
  --bg: #FBF8F1;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(26, 31, 54, .08);
  --shadow-hover: 0 30px 80px rgba(26, 31, 54, .14);
  --container: 1200px;
  --glow: 0 0 80px rgba(74, 122, 181, .15);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif; color: var(--ink); background: var(--cream); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Floating animation */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes softPulse { 0%, 100% { opacity: .6; } 50% { opacity: 1; } }

/* ==================== NAV ==================== */
.nav { position: sticky; top: 0; background: rgba(255,255,255,.85); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); z-index: 50; border-bottom: 1px solid rgba(74,122,181,.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: var(--container); margin: 0 auto; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 22px; letter-spacing: 3px; flex-shrink: 0; }
.brand img { height: 34px; width: auto; }
.nav-links { display: flex; gap: 28px; font-weight: 600; font-size: 14px; color: var(--muted); letter-spacing: .3px; }
.nav-links a { white-space: nowrap; transition: color .2s; }
.nav-links a:hover { color: var(--sky); }
.nav-cta { background: var(--ink); color: var(--white); padding: 12px 26px; border-radius: 999px; font-weight: 700; font-size: 14px; transition: all .2s; box-shadow: 0 4px 20px rgba(26,31,54,.18); white-space: nowrap; flex-shrink: 0; letter-spacing: .5px; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 30px rgba(26,31,54,.28); background: var(--sky-dark); }
.nav-cart { position: relative; background: none; border: none; cursor: pointer; color: var(--ink); padding: 8px; }
.nav-cart .badge { position: absolute; top: 0; right: 0; background: var(--sky); color: #fff; font-size: 10px; font-weight: 800; min-width: 18px; height: 18px; border-radius: 999px; display: grid; place-items: center; opacity: 0; transition: opacity .2s; }
.nav-cart .badge.has-items { opacity: 1; }

/* ==================== ANNOUNCEMENT ==================== */
.announce { background: var(--ink); color: var(--white); text-align: center; padding: 10px 16px; font-size: 12px; letter-spacing: 1px; font-weight: 600; }
.announce b { color: var(--gold); }

/* ==================== HERO ==================== */
.hero { padding: 80px 0 60px; background: linear-gradient(180deg, #F0F4FA 0%, var(--cream) 60%, #F0F4FA 100%); position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -120px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(74,122,181,.12), transparent 70%); border-radius: 50%; animation: softPulse 6s ease-in-out infinite; }
.hero::after { content: ""; position: absolute; bottom: -80px; left: -80px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(196,149,106,.1), transparent 70%); border-radius: 50%; animation: softPulse 8s ease-in-out infinite 2s; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(74,122,181,.08); color: var(--sky-dark); font-weight: 800; padding: 8px 18px; border-radius: 999px; font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 20px; border: 1px solid rgba(74,122,181,.12); }
.eyebrow::before { content: "\2601"; font-size: 14px; }
.h1 { font-size: clamp(40px, 5.5vw, 72px); line-height: 1.0; font-weight: 900; letter-spacing: -2px; margin: 0 0 22px; }
.h1 .accent { color: var(--sky); font-style: italic; font-family: "Playfair Display", Georgia, serif; font-weight: 900; }
.lede { font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 540px; margin: 0 0 32px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 18px 34px; border-radius: 999px; font-weight: 800; font-size: 15px; transition: all .25s cubic-bezier(.4,0,.2,1); cursor: pointer; border: none; letter-spacing: .3px; }
.btn-primary { background: var(--ink); color: var(--white); box-shadow: 0 12px 40px rgba(26,31,54,.22); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(26,31,54,.32); }
.btn-ghost { background: var(--white); color: var(--ink); border: 2px solid rgba(26,31,54,.1); }
.btn-ghost:hover { border-color: var(--sky); color: var(--sky); }
.hero-media { position: relative; }
.hero-media .card { background: var(--white); border-radius: 28px; overflow: hidden; box-shadow: 0 30px 80px rgba(26,31,54,.1); transition: transform .4s cubic-bezier(.4,0,.2,1); }
.hero-media .card:hover { transform: translateY(-6px); }
.hero-media .card img { transition: transform .6s cubic-bezier(.4,0,.2,1); }
.hero-media .card:hover img { transform: scale(1.03); }
.trust-row { display: flex; align-items: center; gap: 18px; margin-top: 28px; font-size: 14px; color: var(--muted); }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 17px; }

/* ==================== FEATURES ==================== */
.features { padding: 90px 0; background: var(--white); }
.section-title { font-size: clamp(30px, 3.8vw, 52px); font-weight: 900; letter-spacing: -1.5px; margin: 0 0 14px; line-height: 1.08; }
.section-title em { font-style: italic; font-family: "Playfair Display", Georgia, serif; color: var(--sky); }
.section-sub { color: var(--muted); max-width: 640px; margin: 0 0 48px; font-size: 16px; line-height: 1.7; }
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feat { background: var(--cloud); border: 1px solid rgba(74,122,181,.06); border-radius: 22px; padding: 32px 26px; transition: all .3s cubic-bezier(.4,0,.2,1); position: relative; overflow: hidden; }
.feat::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--sky), var(--gold)); opacity: 0; transition: opacity .3s; }
.feat:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.feat:hover::before { opacity: 1; }
.feat .icon { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, var(--sky), var(--sky-dark)); color: var(--white); display: grid; place-items: center; font-size: 24px; font-weight: 900; margin-bottom: 20px; box-shadow: 0 8px 28px rgba(74,122,181,.25); }
.feat h3 { margin: 0 0 10px; font-size: 17px; font-weight: 800; color: var(--ink); }
.feat p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

/* ==================== STATS STRIP ==================== */
.strip { background: linear-gradient(135deg, var(--ink) 0%, #2A3352 50%, var(--sky-dark) 100%); color: var(--white); padding: 80px 0; position: relative; overflow: hidden; }
.strip::before { content: "\2601"; position: absolute; top: 20px; left: 40px; font-size: 140px; color: rgba(255,255,255,.03); }
.strip::after { content: "\2601"; position: absolute; bottom: 10px; right: 60px; font-size: 100px; color: rgba(255,255,255,.03); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; position: relative; z-index: 1; }
.stat .num { font-size: 52px; font-weight: 900; color: var(--white); letter-spacing: -2px; line-height: 1; font-family: "Playfair Display", Georgia, serif; font-style: italic; }
.stat .lab { margin-top: 10px; font-size: 11px; opacity: .8; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: var(--gold-light); }

/* ==================== SHOWCASE ==================== */
.showcase { padding: 90px 0; background: var(--cream); }
.showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.showcase-grid img { border-radius: 20px; aspect-ratio: 1/1; object-fit: cover; transition: all .3s; box-shadow: 0 8px 30px rgba(26,31,54,.06); }
.showcase-grid img:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* ==================== BUNDLES ==================== */
.bundles-section { padding: 90px 0; background: var(--white); border-top: 1px solid rgba(74,122,181,.06); }
.bundles-section .wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; }
.bundles-section .eyebrow { background: var(--ink); color: var(--gold-light); border-color: transparent; }
.bundles-section .eyebrow::before { color: var(--gold); }
.bundles-section .section-title { margin-top: 14px; font-size: clamp(26px, 3vw, 40px); line-height: 1.08; }
.bundles-section .section-sub { font-size: 15px; }
.bundles-section .picker { background: var(--cloud); padding: 28px; border-radius: 24px; border: 1px solid rgba(74,122,181,.08); }
.bundles-section .picker .bundle-card { background: #fff; }
.bundles-section .bundle-cta {
  margin-top: 10px; width: 100%;
  padding: 18px; background: var(--ink); color: #fff;
  border-radius: 14px; font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all .2s; box-shadow: 0 8px 30px rgba(26,31,54,.2);
  text-decoration: none; border: none; cursor: pointer;
}
.bundles-section .bundle-cta:hover { transform: translateY(-2px); background: var(--sky-dark); }
.bundles-section .picker .afterpay { margin-top: 14px; justify-content: center; }

/* ==================== FAQ ==================== */
.faq { padding: 90px 0; background: var(--white); }
.faq details { background: var(--cloud); border: 1px solid rgba(74,122,181,.06); border-radius: 18px; padding: 24px 28px; margin-bottom: 14px; transition: all .2s; }
.faq details:hover { border-color: rgba(74,122,181,.15); box-shadow: 0 4px 20px rgba(74,122,181,.06); }
.faq summary { cursor: pointer; font-weight: 800; font-size: 16px; outline: none; list-style: none; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--sky); font-size: 24px; font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { content: "\2013"; transform: rotate(180deg); }
.faq p { margin: 14px 0 0; color: var(--muted); line-height: 1.7; }

/* ==================== FOOTER ==================== */
footer { background: var(--ink); color: #94a3b8; padding: 64px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.foot-grid h4 { color: var(--white); margin: 0 0 16px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 800; }
.foot-grid a { display: block; padding: 6px 0; font-size: 14px; color: #94a3b8; transition: color .15s; }
.foot-grid a:hover { color: var(--gold-light); }
.foot-bot { border-top: 1px solid #2A3352; margin-top: 44px; padding-top: 22px; font-size: 13px; opacity: .7; display: flex; justify-content: space-between; }

/* ==================== AFTERPAY ==================== */
.afterpay { display: flex; align-items: center; gap: 10px; margin: -6px 0 18px; color: #475569; font-size: 14px; }
.afterpay-badge { display: inline-flex; align-items: center; gap: 6px; background: #b2fce4; color: #000; font-weight: 900; font-size: 12px; padding: 5px 10px; border-radius: 6px; letter-spacing: .3px; }
.afterpay-badge::before { content: ""; width: 10px; height: 10px; background: #000; border-radius: 50%; box-shadow: 6px 0 0 #000; }

/* ==================== BUNDLE CARDS ==================== */
.bundles { margin: 22px 0 24px; }
.bundles-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.bundles-head .label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; }
.bundles-head .free-ship { font-size: 12px; color: var(--sky); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.bundles-head .free-ship::before { content: "\2713"; background: var(--sky); color: #fff; width: 16px; height: 16px; border-radius: 50%; display: inline-grid; place-items: center; font-size: 11px; }
.bundle-card {
  position: relative; display: grid; grid-template-columns: 26px 1fr auto; align-items: center; gap: 14px;
  padding: 22px 24px; border: 2px solid rgba(74,122,181,.1); border-radius: 18px; background: #fff;
  cursor: pointer; transition: all .25s cubic-bezier(.4,0,.2,1); margin-bottom: 14px;
}
.bundle-card:hover { border-color: rgba(74,122,181,.2); box-shadow: 0 4px 20px rgba(74,122,181,.06); }
.bundle-card.active { border-color: var(--sky); box-shadow: 0 0 0 4px rgba(74,122,181,.1), 0 10px 30px rgba(74,122,181,.08); background: var(--cloud); }
.bundle-card .radio { width: 24px; height: 24px; border: 2px solid rgba(74,122,181,.2); border-radius: 50%; position: relative; flex-shrink: 0; }
.bundle-card.active .radio { border-color: var(--sky); }
.bundle-card.active .radio::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--sky); }
.bundle-card .info .title { font-weight: 800; font-size: 16px; color: var(--ink); margin-bottom: 3px; }
.bundle-card .info .sub { font-size: 12px; color: var(--muted); }
.bundle-card .info .perk { display: inline-block; max-width: 100%; margin-top: 8px; margin-right: 6px; font-size: 11px; line-height: 1.5; color: var(--ink); background: var(--gold-light); padding: 6px 12px; border-radius: 12px; font-weight: 800; letter-spacing: .3px; white-space: normal; }
.bundle-card .info .perk + .perk { margin-top: 6px; }
.bundle-card .pricing { text-align: right; }
.bundle-card .pricing .now { font-size: 22px; font-weight: 900; color: var(--sky); line-height: 1; }
.bundle-card .pricing .was { font-size: 13px; color: #9a8ba6; text-decoration: line-through; }
.bundle-card .pricing .per { font-size: 11px; color: var(--muted); margin-top: 3px; }
.bundle-card .badge { position: absolute; top: -10px; right: 16px; padding: 5px 12px; border-radius: 999px; font-size: 10px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }
.bundle-card .badge.popular { background: linear-gradient(135deg, var(--sky), var(--sky-dark)); color: #fff; box-shadow: 0 4px 16px rgba(74,122,181,.3); }
.bundle-card .badge.best { background: var(--ink); color: var(--gold-light); }

/* Per-unit color selectors */
.unit-colors { display: none; flex-wrap: wrap; gap: 10px; margin-top: 14px; padding-top: 14px; border-top: 1px dashed rgba(74,122,181,.12); }
.bundle-card.active .unit-colors { display: flex; }
.unit { display: flex; align-items: center; gap: 8px; background: var(--cream); border: 1px solid rgba(74,122,181,.08); padding: 6px 10px; border-radius: 10px; }
.unit .label { font-size: 11px; color: var(--muted); font-weight: 700; letter-spacing: .3px; text-transform: uppercase; }
.unit-dot-row { display: flex; gap: 5px; }
.unit-dot { width: 22px; height: 22px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; transition: all .15s; position: relative; }
.unit-dot:hover { transform: scale(1.15); }
.unit-dot.active { border-color: var(--ink); }
.unit-dot.active::after { content: "\2713"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 11px; font-weight: 900; }
.unit-dot.beige { background: #E8DFD0; border-color: #D5CCC0; }
.unit-dot.beige.active { border-color: var(--ink); }
.unit-dot.charcoal { background: #4A4A4A; }
.unit-dot.green { background: #6B7F6A; }
.unit-dot.black { background: #1A1A1A; }

/* ==================== VIDEO CAROUSEL ==================== */
.video-section { padding: 80px 0; background: var(--cream); border-top: 1px solid rgba(74,122,181,.06); }
.video-section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; flex-wrap: wrap; gap: 16px; }
.video-section-head .section-title { margin-bottom: 0; }
.video-section-head .sub { color: var(--muted); font-size: 15px; max-width: 460px; line-height: 1.55; }
.video-carousel { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 24px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: rgba(74,122,181,.2) transparent; }
.video-carousel::-webkit-scrollbar { height: 8px; }
.video-carousel::-webkit-scrollbar-track { background: transparent; }
.video-carousel::-webkit-scrollbar-thumb { background: rgba(74,122,181,.2); border-radius: 999px; }
.video-card { flex: 0 0 auto; width: 260px; aspect-ratio: 9/16; border-radius: 22px; overflow: hidden; position: relative; scroll-snap-align: start; cursor: pointer; background: var(--ink); box-shadow: 0 16px 40px rgba(26,31,54,.1); transition: all .25s; }
.video-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(26,31,54,.18); }
.video-card video.preview, .video-card img.poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.video-card .play { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; background: rgba(0,0,0,.5); backdrop-filter: blur(8px); display: grid; place-items: center; transition: all .2s; z-index: 2; color: #fff; font-size: 16px; }
.video-card:hover .play { transform: scale(1.1); background: var(--sky); }
.video-card .play::after { content: "\25B6"; font-size: 12px; margin-left: 2px; }
.video-card .caption { position: absolute; left: 14px; right: 14px; bottom: 14px; color: #fff; font-size: 13px; font-weight: 700; line-height: 1.3; text-shadow: 0 2px 8px rgba(0,0,0,.6); z-index: 2; }
.video-card .caption .author { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; opacity: .92; margin-bottom: 4px; }
.video-card .caption .author::before { content: ""; width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(135deg, var(--sky), var(--gold)); }
.video-card .gradient { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.65) 100%); z-index: 1; }

/* Video modal */
.video-modal { position: fixed; inset: 0; background: rgba(26,31,54,.9); z-index: 10000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(8px); }
.video-modal.open { display: flex; }
.video-modal video { max-width: 400px; max-height: 90vh; border-radius: 20px; }
.video-modal .close { position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,.15); border: 0; color: #fff; width: 44px; height: 44px; border-radius: 50%; font-size: 20px; cursor: pointer; backdrop-filter: blur(8px); transition: background .2s; }
.video-modal .close:hover { background: rgba(255,255,255,.3); }

/* ==================== CART DRAWER ==================== */
.cart-overlay { position: fixed; inset: 0; background: rgba(26,31,54,.5); backdrop-filter: blur(4px); z-index: 9990; opacity: 0; visibility: hidden; transition: all .3s; }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 92vw; background: var(--white); z-index: 9991; transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; box-shadow: -16px 0 60px rgba(26,31,54,.15); }
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 22px 24px 18px; border-bottom: 1px solid rgba(74,122,181,.08); }
.cart-head h3 { margin: 0; font-size: 20px; font-weight: 900; color: var(--ink); }
.cart-head .count { background: var(--sky); color: #fff; font-size: 12px; font-weight: 800; padding: 2px 8px; border-radius: 999px; margin-left: 8px; }
.cart-head .close-cart { width: 36px; height: 36px; border-radius: 50%; border: 0; background: var(--cloud); color: var(--ink); font-size: 18px; cursor: pointer; display: grid; place-items: center; transition: background .15s; }
.cart-head .close-cart:hover { background: rgba(74,122,181,.1); }
.free-ship-bar { padding: 14px 24px; background: var(--cloud); border-bottom: 1px solid rgba(74,122,181,.06); }
.free-ship-bar .text { font-size: 13px; color: var(--muted); margin-bottom: 8px; text-align: center; }
.free-ship-bar .text b { color: var(--sky); }
.free-ship-bar .bar { height: 6px; background: rgba(74,122,181,.1); border-radius: 999px; overflow: hidden; }
.free-ship-bar .bar-fill { height: 100%; background: linear-gradient(90deg, var(--sky), var(--gold)); border-radius: 999px; transition: width .4s ease; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-item { display: grid; grid-template-columns: 72px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(74,122,181,.06); position: relative; }
.cart-item:last-child { border-bottom: none; }
.cart-item .thumb { width: 72px; height: 72px; border-radius: 14px; overflow: hidden; background: var(--cloud); border: 1px solid rgba(74,122,181,.06); }
.cart-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item .item-info { display: flex; flex-direction: column; gap: 4px; }
.cart-item .item-name { font-weight: 800; font-size: 14px; color: var(--ink); line-height: 1.3; }
.cart-item .item-variant { font-size: 12px; color: var(--muted); }
.cart-item .item-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.cart-item .item-qty { display: inline-flex; align-items: center; border: 2px solid rgba(74,122,181,.1); border-radius: 10px; overflow: hidden; }
.cart-item .item-qty button { background: transparent; border: 0; padding: 6px 10px; font-size: 14px; cursor: pointer; color: var(--ink); font-weight: 700; }
.cart-item .item-qty button:hover { background: var(--cloud); }
.cart-item .item-qty span { padding: 0 10px; font-size: 14px; font-weight: 800; color: var(--ink); }
.cart-item .item-price { font-weight: 800; font-size: 16px; color: var(--sky); }
.cart-item .remove { position: absolute; top: 12px; right: 0; background: none; border: 0; color: #9a8ba6; font-size: 16px; cursor: pointer; padding: 4px; }
.cart-item .remove:hover { color: var(--sky); }
.cart-empty { text-align: center; padding: 48px 20px; color: var(--muted); }
.cart-empty .icon { font-size: 48px; margin-bottom: 12px; }
.cart-empty p { font-size: 15px; line-height: 1.6; }
.cart-empty a { color: var(--sky); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.cart-upsell { padding: 16px 24px; border-top: 1px solid rgba(74,122,181,.06); background: var(--cloud); }
.cart-upsell .upsell-head { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 12px; }
.cart-upsell .upsell-card { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; background: #fff; border: 1px solid rgba(74,122,181,.06); border-radius: 14px; padding: 12px 14px; }
.cart-upsell .upsell-card img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; }
.cart-upsell .upsell-name { font-weight: 700; font-size: 13px; color: var(--ink); }
.cart-upsell .upsell-price { font-size: 12px; color: var(--muted); }
.cart-upsell .upsell-add { background: var(--sky); color: #fff; border: 0; padding: 8px 14px; border-radius: 10px; font-weight: 800; font-size: 12px; cursor: pointer; white-space: nowrap; transition: all .15s; }
.cart-upsell .upsell-add:hover { transform: scale(1.04); background: var(--sky-dark); }
.cart-footer { padding: 20px 24px; border-top: 1px solid rgba(74,122,181,.06); }
.cart-subtotal { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.cart-subtotal .label { font-size: 15px; color: var(--muted); font-weight: 600; }
.cart-subtotal .amount { font-size: 22px; font-weight: 900; color: var(--ink); }
.cart-afterpay { font-size: 12px; color: var(--muted); margin-bottom: 16px; text-align: right; }
.cart-afterpay b { color: var(--ink); }
.cart-checkout { width: 100%; padding: 18px; background: linear-gradient(135deg, var(--ink), var(--sky-dark)); color: #fff; border: 0; border-radius: 14px; font-weight: 800; font-size: 16px; cursor: pointer; box-shadow: 0 10px 36px rgba(26,31,54,.25); transition: all .2s; letter-spacing: .3px; }
.cart-checkout:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(26,31,54,.35); }
.cart-trust { display: flex; gap: 14px; justify-content: center; margin-top: 14px; font-size: 11px; color: var(--muted); }

/* ==================== PDP ==================== */
.pdp { padding: 40px 0 80px; background: var(--cream); }
.pdp-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
.gallery { position: sticky; top: 80px; display: grid; grid-template-columns: 80px 1fr; gap: 14px; }
.thumbs { display: flex; flex-direction: column; gap: 8px; }
.thumbs img { width: 80px; height: 80px; border-radius: 12px; object-fit: cover; cursor: pointer; border: 2px solid transparent; transition: all .15s; opacity: .7; }
.thumbs img.active { border-color: var(--sky); opacity: 1; box-shadow: 0 4px 12px rgba(74,122,181,.2); }
.thumbs img:hover { opacity: 1; }
.main-img img { border-radius: 22px; box-shadow: 0 20px 60px rgba(26,31,54,.08); }
.pdp h1 { font-size: clamp(24px, 3vw, 34px); font-weight: 900; letter-spacing: -0.8px; margin: 0 0 12px; line-height: 1.15; }
.rating { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.price { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.price .now { font-size: 36px; font-weight: 900; color: var(--ink); letter-spacing: -1px; }
.price .was { font-size: 20px; color: #9a8ba6; text-decoration: line-through; }
.price .save { background: var(--ink); color: var(--gold-light); font-weight: 800; padding: 5px 12px; border-radius: 999px; font-size: 12px; letter-spacing: .5px; }
.variants { margin: 24px 0; }
.variants .label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; font-weight: 700; }
.swatches { display: flex; gap: 10px; }
.swatch { padding: 11px 20px; border: 2px solid rgba(74,122,181,.1); border-radius: 14px; cursor: pointer; font-size: 14px; font-weight: 700; transition: all .15s; background: var(--white); color: var(--ink); }
.swatch:hover { border-color: rgba(74,122,181,.2); }
.swatch.active { border-color: var(--sky); background: var(--cloud); color: var(--sky); }
.qty-row { display: flex; gap: 12px; align-items: center; margin: 20px 0 28px; }
.qty { display: inline-flex; align-items: center; border: 2px solid rgba(74,122,181,.1); border-radius: 12px; }
.qty button { background: transparent; border: 0; padding: 12px 16px; font-size: 18px; cursor: pointer; }
.qty span { padding: 0 18px; font-weight: 700; }
.buy { width: 100%; padding: 22px; background: linear-gradient(135deg, var(--ink), var(--sky-dark)); color: var(--white); border: 0; border-radius: 16px; font-weight: 800; font-size: 17px; cursor: pointer; box-shadow: 0 12px 40px rgba(26,31,54,.25); transition: all .2s; letter-spacing: .3px; }
.buy:hover { transform: translateY(-2px); box-shadow: 0 16px 50px rgba(26,31,54,.35); }
.pdp-trust { display: flex; gap: 14px; margin-top: 16px; color: var(--muted); font-size: 13px; }
.pdp-trust span { display: inline-flex; align-items: center; gap: 6px; }
.pdp-feats { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pdp-feats div { background: var(--cloud); border: 1px solid rgba(74,122,181,.06); border-radius: 14px; padding: 16px 18px; font-size: 14px; color: var(--ink); }
.pdp-feats b { color: var(--sky); }

/* ==================== REVIEWS ==================== */
.reviews-section { padding: 80px 0; background: var(--white); border-top: 1px solid rgba(74,122,181,.06); }
.reviews-head { display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; margin-bottom: 32px; padding-bottom: 28px; border-bottom: 1px solid rgba(74,122,181,.06); }
.reviews-score { text-align: center; }
.reviews-score .big { font-size: 52px; font-weight: 900; color: var(--ink); line-height: 1; font-family: "Playfair Display", serif; }
.reviews-score .stars { color: var(--gold); font-size: 20px; margin: 6px 0; letter-spacing: 3px; }
.reviews-score .count { font-size: 13px; color: var(--muted); }
.reviews-bars { display: flex; flex-direction: column; gap: 6px; }
.bar-row { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--muted); font-weight: 700; }
.bar-row .bar { flex: 1; height: 8px; background: rgba(74,122,181,.06); border-radius: 999px; overflow: hidden; }
.bar-row .bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 999px; transition: width .4s; }
.btn-write { background: var(--ink); color: #fff; border: 0; padding: 14px 28px; border-radius: 14px; font-weight: 800; font-size: 14px; cursor: pointer; transition: all .2s; letter-spacing: .3px; }
.btn-write:hover { transform: translateY(-1px); background: var(--sky-dark); }
.reviews-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.review-card { background: var(--cloud); border: 1px solid rgba(74,122,181,.04); border-radius: 18px; padding: 24px; transition: all .2s; }
.review-card:hover { box-shadow: 0 8px 30px rgba(26,31,54,.06); }
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--sky), var(--gold)); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 14px; flex-shrink: 0; }
.meta .name { font-weight: 800; font-size: 14px; }
.meta .date { font-size: 11px; color: var(--muted); }
.meta .verified { font-size: 11px; color: var(--sky); font-weight: 700; }
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 8px; }
.review-title { font-weight: 800; font-size: 15px; margin-bottom: 6px; }
.review-body { font-size: 14px; color: var(--muted); line-height: 1.6; }
.reviews-footer { margin-top: 32px; }
.share-card { display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; background: linear-gradient(135deg, var(--cloud), #E8EFF8); border: 1px solid rgba(74,122,181,.08); border-radius: 20px; padding: 28px; }
.share-icon { font-size: 32px; }
.share-copy h4 { margin: 0 0 6px; font-size: 16px; font-weight: 800; }
.share-copy p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.reviews-pager { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 24px; }
.reviews-pager button { background: var(--cloud); border: 1px solid rgba(74,122,181,.08); color: var(--ink); padding: 10px 20px; border-radius: 12px; font-weight: 700; font-size: 13px; cursor: pointer; transition: all .15s; }
.reviews-pager button:hover:not(:disabled) { background: var(--sky); color: #fff; }
.reviews-pager button:disabled { opacity: .4; cursor: default; }
.reviews-pager .page-info { font-size: 13px; color: var(--muted); }
.reviews-empty { text-align: center; padding: 48px; color: var(--muted); grid-column: 1 / -1; }
.reviews-empty .big { font-size: 40px; margin-bottom: 12px; }

/* Review modal */
.review-modal { position: fixed; inset: 0; background: rgba(26,31,54,.7); z-index: 10000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(6px); }
.review-modal.open { display: flex; }
.form-card { background: var(--white); border-radius: 24px; padding: 36px; width: 480px; max-width: 95vw; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: 0 30px 80px rgba(26,31,54,.2); }
.form-card .close { position: absolute; top: 16px; right: 16px; background: var(--cloud); border: 0; width: 36px; height: 36px; border-radius: 50%; font-size: 18px; cursor: pointer; color: var(--ink); display: grid; place-items: center; }
.form-card h3 { font-size: 22px; font-weight: 900; margin: 0 0 6px; }
.form-sub { color: var(--muted); font-size: 14px; margin: 0 0 24px; }
.form-card label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 16px; }
.form-card input, .form-card textarea, .form-card select { width: 100%; padding: 12px 14px; border: 2px solid rgba(74,122,181,.1); border-radius: 12px; font-size: 14px; font-family: inherit; margin-top: 6px; outline: none; transition: border-color .15s; }
.form-card input:focus, .form-card textarea:focus { border-color: var(--sky); }
.form-card textarea { min-height: 100px; resize: vertical; }
.star-picker { display: flex; gap: 6px; margin-top: 8px; }
.star-picker .star { font-size: 28px; cursor: pointer; color: #d1d5db; transition: color .1s; }
.star-picker .star.filled { color: var(--gold); }
.consent-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.consent-row input[type="checkbox"] { margin-top: 3px; accent-color: var(--sky); }
.submit-btn { width: 100%; padding: 16px; background: var(--ink); color: #fff; border: 0; border-radius: 14px; font-weight: 800; font-size: 16px; cursor: pointer; transition: all .2s; }
.submit-btn:hover { background: var(--sky-dark); }
.form-status { text-align: center; margin-top: 12px; font-size: 14px; font-weight: 700; min-height: 20px; }
.form-status.success { color: #10b981; }
.form-status.error { color: #ef4444; }

/* ==================== LEGAL PAGES ==================== */
.legal-hero { padding: 64px 0 40px; background: linear-gradient(180deg, var(--cloud) 0%, var(--cream) 100%); }
.legal-hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 900; letter-spacing: -1px; margin: 0; }
.legal-hero h1 em { font-style: italic; font-family: "Playfair Display", Georgia, serif; color: var(--sky); }
.legal-hero .updated { color: var(--muted); font-size: 13px; margin-top: 8px; }
.legal-body { max-width: 780px; padding: 48px 24px 80px; }
.legal-body h2 { font-size: 22px; font-weight: 800; margin: 36px 0 12px; color: var(--ink); }
.legal-body p, .legal-body li { color: var(--muted); font-size: 15px; line-height: 1.7; }
.legal-body ul, .legal-body ol { padding-left: 24px; }
.legal-body a { color: var(--sky); font-weight: 600; }
.legal-disclaimer { background: var(--cloud); border: 1px solid rgba(74,122,181,.08); border-radius: 14px; padding: 18px 22px; margin-bottom: 32px; font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; padding: 48px 0 80px; }
.contact-info h2 { font-size: 24px; font-weight: 900; margin: 0 0 12px; }
.contact-info p { color: var(--muted); line-height: 1.6; margin: 0 0 28px; }
.contact-info .row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-info .icon { width: 40px; height: 40px; border-radius: 12px; background: var(--cloud); display: grid; place-items: center; font-size: 18px; flex-shrink: 0; }
.contact-info .label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); font-weight: 700; margin-bottom: 2px; }
.contact-info .value { font-size: 14px; color: var(--ink); }
.contact-info .value a { color: var(--sky); font-weight: 600; }
.contact-form { background: var(--white); border: 1px solid rgba(74,122,181,.08); border-radius: 24px; padding: 36px; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 20px; font-weight: 900; margin: 0 0 6px; }
.contact-form .sub { color: var(--muted); font-size: 14px; margin: 0 0 24px; }
.contact-form label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 16px; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 12px 14px; border: 2px solid rgba(74,122,181,.1); border-radius: 12px; font-size: 14px; font-family: inherit; margin-top: 6px; outline: none; transition: border-color .15s; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--sky); }
.contact-form textarea { min-height: 100px; resize: vertical; }
.contact-form .submit { width: 100%; padding: 16px; background: var(--ink); color: #fff; border: 0; border-radius: 14px; font-weight: 800; font-size: 16px; cursor: pointer; transition: all .2s; margin-top: 8px; }
.contact-form .submit:hover { background: var(--sky-dark); }
.contact-form .status { text-align: center; margin-top: 12px; font-size: 14px; font-weight: 700; }
.contact-form .status.success { color: #10b981; }
.contact-form .status.error { color: #ef4444; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1040px) {
  .nav-links { gap: 22px; font-size: 13px; }
  .bundles-section .wrap { grid-template-columns: 1fr; gap: 36px; justify-items: center; }
  .bundles-section > .container.wrap > *:first-child { max-width: 640px; width: 100%; }
  .bundles-section .picker { max-width: 640px; width: 100%; margin: 0 auto; }
}
@media (max-width: 900px) {
  .nav-links a:not(:first-child) { display: none; }
  .reviews-list { grid-template-columns: 1fr; }
  .reviews-head { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
@media (max-width: 860px) {
  .hero-grid, .pdp-grid, .foot-grid, .bundles-section .wrap, .contact-grid { grid-template-columns: 1fr; }
  .feat-grid, .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr; position: static; }
  .thumbs { flex-direction: row; overflow-x: auto; }
  .thumbs img { width: 64px; height: 64px; flex-shrink: 0; }
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-inner { padding: 14px 18px; }
  .brand { font-size: 20px; }
  .nav-cta { padding: 9px 18px; font-size: 13px; }
}
