/* ============================================================================
   Successnow Digital — Frontend styles
   Brand: navy #1a365d / mid-blue #1e40af / red accent #e53e3e
   ========================================================================== */

:root {
  --blue-dark: #1a365d;
  --blue-mid: #1e40af;
  --blue-light: #2b6cb0;
  --red: #e53e3e;
  --green-wa: #25d366;
  --bg-light: #f7fafc;
  --bg-blue-soft: #ebf4ff;
  --text-dark: #1a202c;
  --text-mid: #4a5568;
  --text-muted: #94a3b8;
  --white: #fff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, .07);
  --shadow-md: 0 6px 22px rgba(30, 64, 175, .12);
  --shadow-lg: 0 16px 40px rgba(30, 64, 175, .18);
  --sec-pad-v: clamp(34px, 4.5vw, 60px);
  --sec-pad-h: clamp(16px, 6%, 80px);
  --trans: .3s cubic-bezier(.4, 0, .2, 1);
  /* Site-wide font (Jumia-style Ubuntu stack); Montserrat is used ONLY for the "Successnow DIGITAL" wordmark */
  --font-base: 'Ubuntu', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-base);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-base); line-height: 1.15; }

/* ---- Page loader --------------------------------------------------------- */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: var(--white);
  transition: opacity .6s ease, visibility .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
#page-loader.hide { opacity: 0; visibility: hidden; transform: scale(1.04); }
.loader-ring {
  width: 52px; height: 52px; border-radius: 50%;
  border: 4px solid var(--bg-blue-soft);
  border-top-color: var(--blue-mid);
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .loader-ring { animation: spin 1.4s linear infinite; }
}

/* ---- Fade-in page -------------------------------------------------------- */
.fade-in { animation: fadeUp .6s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---- Scroll reveal ------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 50px; border: none; cursor: pointer;
  font-family: var(--font-base); font-weight: 500; font-size: 14px;
  transition: var(--trans); white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark)); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(229, 62, 62, .3); }
.btn-red:hover { background: #c53030; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(229, 62, 62, .4); }
.btn-ghost { background: transparent; color: var(--blue-dark); border: 2px solid var(--blue-dark); }
.btn-ghost:hover { background: var(--blue-dark); color: #fff; }
.btn-light { background: #fff; color: var(--blue-dark); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-square { border-radius: 12px; }
.btn-wa { background: var(--green-wa); color: #fff; }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(37, 211, 102, .35); }

/* ---- Top bar ------------------------------------------------------------- */
.topbar { background: var(--blue-dark); color: #cbd5e0; font-size: 12.5px; }
.topbar-inner {
  max-width: 1280px; margin: 0 auto; padding: 8px var(--sec-pad-h);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.topbar-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 26px; }
.topbar-trust li { display: inline-flex; align-items: center; gap: 7px; }
.topbar-trust i { color: #90cdf4; font-size: 12px; }
.topbar-social { display: flex; gap: 14px; flex-shrink: 0; }
.topbar-social a { color: #cbd5e0; transition: var(--trans); }
.topbar-social a:hover { color: #fff; }

/* ---- Header -------------------------------------------------------------- */
.site-header { position: relative; background: #fff; box-shadow: var(--shadow-sm); z-index: 50; }
.header-inner { max-width: 1280px; margin: 0 auto; padding: 12px var(--sec-pad-h); display: flex; align-items: center; gap: 16px; }

/* Stacked wordmark */
.brand { display: flex; flex-direction: column; justify-content: center; line-height: 1; flex-shrink: 0; }
.brand-word { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 22px; color: var(--blue-dark); letter-spacing: -.3px; }
.brand-sub { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 11px; color: var(--red); letter-spacing: 5px; text-transform: uppercase; margin-top: 1px; }
.brand-sm .brand-word { font-size: 18px; }
.brand-sm .brand-sub { font-size: 9.5px; letter-spacing: 4px; }

/* Soft pill search with a circular action button (Dribbble-style) */
.header-search { position: relative; flex: 1; max-width: 560px; display: flex; align-items: center; gap: 8px; background: #eef1f4; border-radius: 50px; padding: 5px 5px 5px 20px; transition: var(--trans); }
.header-search:focus-within { background: #e9edf1; box-shadow: 0 0 0 3px rgba(43, 108, 176, .14); }
.header-search input { flex: 1; min-width: 0; padding: 9px 0; border: none; background: transparent; font-family: inherit; font-size: 16px; color: var(--text-dark); outline: none; }
.header-search input::placeholder { color: #94a3b8; }
.header-search button { flex-shrink: 0; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border: none; border-radius: 50%; background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark)); color: #fff; cursor: pointer; font-size: 16px; transition: var(--trans); }
.header-search button:hover { transform: scale(1.06); box-shadow: 0 4px 12px rgba(43, 108, 176, .3); }

/* Live search suggestions dropdown */
.search-suggest { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff; border: 1px solid #eef1f4; border-radius: 16px; box-shadow: 0 16px 40px rgba(2, 20, 50, .16); overflow: hidden auto; max-height: 66vh; z-index: 1300;
  -webkit-overflow-scrolling: touch; overscroll-behavior: contain; scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: #cbd5e1 transparent; }
.search-suggest::-webkit-scrollbar { width: 6px; }
.search-suggest::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 6px; }
.search-suggest::-webkit-scrollbar-track { background: transparent; }
.search-suggest[hidden] { display: none; }
.ss-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; text-decoration: none; color: inherit; }
.ss-item + .ss-item { border-top: 1px solid #f2f4f7; }
.ss-item:hover, .ss-item.active { background: var(--bg-blue-soft); }
.ss-thumb { width: 46px; height: 46px; border-radius: 9px; object-fit: contain; background: #f4f6f8; flex: none; display: grid; place-items: center; color: #9aa7b4; font-size: 15px; }
.ss-info { display: flex; flex-direction: column; min-width: 0; gap: 2px; }
.ss-name { font-weight: 600; font-size: 14px; color: var(--blue-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ss-meta { font-size: 12px; color: #7c8894; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ss-all { width: 100%; text-align: left; padding: 12px 14px; border: none; border-top: 1px solid #eef1f4; background: #fafbfc; color: var(--blue-mid); font-weight: 700; font-size: 13px; cursor: pointer; display: flex; align-items: center; gap: 8px; }
.ss-all:hover { background: var(--bg-blue-soft); }
.ss-empty { padding: 15px 16px; color: #7c8894; font-size: 13.5px; }

.header-right { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.header-account { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: 50px; border: 1.5px solid #e2e8f0; color: var(--text-dark); font-weight: 600; font-size: 13.5px; transition: var(--trans); }
.header-account i { font-size: 16px; color: var(--blue-mid); }
.header-account:hover { border-color: var(--blue-light); color: var(--blue-mid); }
.header-account.icon-only { padding: 0; border: none; width: 40px; height: 40px; justify-content: center; }
.header-account.icon-only .acc-label { display: none; }
.header-account.icon-only i { font-size: 19px; color: var(--text-dark); }
.header-account.icon-only:hover i { color: var(--blue-mid); }

/* Cart button */
.cart-btn { position: relative; width: 40px; height: 40px; border: none; background: none; cursor: pointer; color: var(--text-dark); font-size: 19px; display: grid; place-items: center; border-radius: 50%; transition: var(--trans); }
.cart-btn:hover { color: var(--blue-mid); background: var(--bg-blue-soft); }
.cart-badge { position: absolute; top: 2px; right: 2px; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 10px; background: var(--red); color: #fff; font-size: 10.5px; font-weight: 700; display: grid; place-items: center; }
.cart-badge[hidden] { display: none; }

.nav-toggle { display: none; background: none; border: none; font-size: 20px; color: var(--blue-dark); cursor: pointer; }
.nav-toggle-left { order: -1; }

/* Menu text uses the base (Ubuntu) family across all nav instances */
.site-nav-strip a, .mini-nav a, .site-nav a, .site-nav .nav-cats-toggle { font-family: var(--font-base); }

/* Desktop category strip */
.site-nav-strip { border-top: 1px solid #edf2f7; }
.site-nav-strip ul { max-width: 1280px; margin: 0 auto; padding: 0 var(--sec-pad-h); list-style: none; display: flex; gap: 4px; }
.site-nav-strip a { display: block; padding: 12px 15px; font-weight: 600; font-size: 14px; color: var(--text-mid); border-bottom: 3px solid transparent; transition: var(--trans); }
.site-nav-strip a:hover, .site-nav-strip a.active { color: var(--blue-mid); border-color: var(--blue-mid); }

/* Condensed sticky bar (scroll-up) */
.mini-header { position: fixed; top: 0; left: 0; right: 0; z-index: 950; background: #fff; box-shadow: 0 4px 22px rgba(15, 23, 42, .1); transform: translateY(-100%); transition: transform .32s cubic-bezier(.4, 0, .2, 1); }
.mini-header.show { transform: none; }
.mini-inner { max-width: 1280px; margin: 0 auto; padding: 9px var(--sec-pad-h); display: flex; align-items: center; gap: 18px; }
/* Search icon in the condensed bar (main search bar is hidden while scrolled). */
.mini-search-toggle { width: 40px; height: 40px; border: none; background: none; cursor: pointer; color: var(--text-dark); font-size: 18px; display: grid; place-items: center; border-radius: 50%; transition: var(--trans); }
.mini-search-toggle:hover { color: var(--blue-mid); background: var(--bg-blue-soft); }
/* Reveal-on-tap search row (drops below the condensed bar). */
.mini-search-bar { display: none; align-items: center; gap: 6px; max-width: 1280px; margin: 0 auto; padding: 0 var(--sec-pad-h) 10px; }
.mini-header.search-open .mini-search-bar { display: flex; }
.mini-search-close { flex: none; width: 36px; height: 36px; border: none; background: none; cursor: pointer; color: var(--blue-dark); font-size: 17px; display: grid; place-items: center; border-radius: 50%; }
.mini-search-close:hover { background: var(--bg-blue-soft); }
/* Slimmer search field for the condensed bar. */
.mini-search-bar .header-search { padding: 3px 3px 3px 16px; }
.mini-search-bar .header-search input { padding: 6px 0; }
.mini-search-bar .header-search button { width: 34px; height: 34px; font-size: 14px; }
.brand-sm .brand-name { font-size: 17px; }
.mini-nav { display: flex; gap: 2px; margin-left: 14px; }
.mini-nav a { padding: 8px 13px; font-weight: 600; font-size: 14px; color: var(--text-mid); border-radius: 8px; transition: var(--trans); }
.mini-nav a:hover, .mini-nav a.active { color: var(--blue-mid); background: var(--bg-blue-soft); }

/* Side drawer (mobile) */
.nav-overlay { position: fixed; inset: 0; z-index: 998; background: rgba(15, 23, 42, .5); opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; }
.nav-overlay.open { opacity: 1; visibility: visible; }
.site-nav { position: fixed; top: 0; left: 0; height: 100dvh; width: 84%; max-width: 330px; background: #fff; z-index: 999; overflow-y: auto; transform: translateX(-100%); transition: transform .34s cubic-bezier(.4, 0, .2, 1); box-shadow: 8px 0 40px rgba(0, 0, 0, .18); }
.site-nav.open { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: flex-start; padding: 16px 18px; }
.drawer-head .brand-name { font-size: 17px; }
.drawer-close { background: var(--bg-light); border: none; width: 38px; height: 38px; border-radius: 50%; font-size: 18px; color: var(--text-dark); cursor: pointer; display: grid; place-items: center; }
.site-nav ul { list-style: none; padding: 8px 0; }
.site-nav a { display: flex; align-items: center; gap: 13px; padding: 14px 20px; font-weight: 400; font-size: 15px; color: var(--text-dark); border-bottom: 1px solid #f1f5f9; border-left: 3px solid transparent; transition: var(--trans); }
.site-nav a i { width: 20px; text-align: center; color: var(--blue-mid); }
.site-nav a:hover, .site-nav a.active { color: var(--blue-mid); background: var(--bg-blue-soft); border-left-color: var(--blue-mid); }
.site-nav .nav-account a { color: var(--red); }

/* Drawer "Shop by Category" accordion */
.site-nav .nav-cats-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 20px; font-family: inherit; font-weight: 400; font-size: 15px; color: var(--text-dark); background: none; border: none; border-bottom: 1px solid #f1f5f9; border-left: 3px solid transparent; cursor: pointer; transition: var(--trans); }
.nav-cats-toggle i { transition: transform .3s ease; font-size: 13px; color: var(--blue-mid); }
.site-nav .nav-cats-toggle:hover { color: var(--blue-mid); background: var(--bg-blue-soft); }
.nav-cats.open .nav-cats-toggle { color: var(--blue-mid); background: var(--bg-blue-soft); border-left-color: var(--blue-mid); }
.nav-cats.open .nav-cats-toggle i { transform: rotate(180deg); }
.nav-cats-list { max-height: 0; overflow: hidden; transition: max-height .35s ease; background: #f8fafc; }
.nav-cats.open .nav-cats-list { max-height: 640px; overflow-y: auto; }
.site-nav .nav-cats-list a { padding: 11px 20px 11px 36px; font-size: 13.5px; font-weight: 500; color: var(--text-mid); border-bottom: 1px solid #eef2f7; border-left: 0; }
.site-nav .nav-cats-list a:hover { color: var(--blue-mid); background: #eef4ff; padding-left: 40px; border-left: 0; }
.site-nav .nav-cats-list .nav-cats-all { color: var(--blue-mid); font-weight: 700; }
body.nav-open { overflow: hidden; }

/* ---- Sections ------------------------------------------------------------ */
.section { padding: var(--sec-pad-v) var(--sec-pad-h); max-width: 1280px; margin: 0 auto; }
.section-gray { background: var(--bg-light); max-width: none; }
.section-gray > * { max-width: 1280px; margin-left: auto; margin-right: auto; }
.section-blue { background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark)); color: #fff; max-width: none; }
.section-blue > * { max-width: 1280px; margin-left: auto; margin-right: auto; }
.section-head { text-align: center; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(22px, 2.8vw, 32px); font-weight: 800; color: var(--blue-dark); text-transform: uppercase; letter-spacing: .5px; }
.section-head h2 span { color: var(--red); }
.section-head.light h2 { color: #fff; }
.section-head .bar { width: 70px; height: 4px; background: var(--red); margin: 14px auto 0; border-radius: 4px; }
.section-cta { text-align: center; margin-top: 40px; }
.lead-center { text-align: center; max-width: 640px; margin: -20px auto 40px; color: var(--text-mid); }

/* ---- Hero ---------------------------------------------------------------- */
.hero {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px;
  padding: clamp(40px, 6vw, 80px) var(--sec-pad-h); max-width: 1280px; margin: 0 auto;
}
.hero-text { position: relative; min-height: 220px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 7px; background: var(--bg-blue-soft); color: var(--blue-mid); font-size: 12.5px; font-weight: 700; padding: 7px 15px; border-radius: 50px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .4px; }
.hero-eyebrow i { color: var(--red); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 26px; opacity: .7; }
.hero-trust span { font-family: var(--font-base); font-weight: 800; font-size: 15px; color: var(--text-mid); letter-spacing: .5px; }
.hero-sub { color: var(--text-mid); font-size: clamp(14px, 1.3vw, 16px); margin-top: 12px; max-width: 440px; line-height: 1.55; }

/* Section subtitle + Load More */
.section-sub { text-align: center; color: var(--text-muted); font-size: 14px; margin: 10px auto 0; max-width: 560px; }
.load-more-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 32px; }
.load-more { min-width: 210px; justify-content: center; }
.load-more[hidden] { display: none; }
.load-more.loading { pointer-events: none; opacity: .85; }
.lm-spinner { width: 16px; height: 16px; border: 2px solid rgba(255, 255, 255, .4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; display: inline-block; }
.lm-spinner[hidden] { display: none; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; pointer-events: none; }
.hero-slide.active { opacity: 1; position: relative; pointer-events: auto; }
.hero-slide h1, .hero-slide h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 900; letter-spacing: -.5px; }
.hero-slide h1 { color: var(--blue-dark); }
.accent-red { color: var(--red); }
.accent-blue { color: var(--blue-mid); }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-dots { display: flex; gap: 7px; margin-top: 26px; align-items: center; }
.hero-dots button { width: 8px; height: 8px; border-radius: 50px; border: none; background: #cbd5e0; cursor: pointer; transition: var(--trans); padding: 0; }
.hero-dots button.active { background: var(--red); width: 22px; }
.hero-media { position: relative; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .8s ease; }
.hero-img.active { opacity: 1; }

/* ---- Store bar ----------------------------------------------------------- */
.store-bar {
  background: var(--blue-dark); color: #e2e8f0; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px; padding: 34px var(--sec-pad-h);
}
.store-bar .label { color: #fff; font-weight: 700; margin-bottom: 10px; font-size: 14px; letter-spacing: .3px; }
.store-bar p { font-size: 14px; margin-bottom: 8px; }
.store-bar a { transition: var(--trans); }
.store-bar a:hover { color: #fff; }

/* ---- Category grid ------------------------------------------------------- */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 18px; }
.cat-card {
  position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1;
  box-shadow: var(--shadow-sm); transition: var(--trans);
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cat-card span {
  position: absolute; inset: auto 0 0 0; padding: 22px 12px 12px; color: #fff; font-weight: 700; font-size: 14px;
  background: linear-gradient(transparent, rgba(26, 54, 93, .92));
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cat-card:hover img { transform: scale(1.08); }

/* ---- Product grid & cards (one consistent design everywhere) ------------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 20px; }
.product-card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden; border: 1px solid #edf2f7;
  box-shadow: var(--shadow-sm); transition: var(--trans); display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #dbe4f0; }
.pc-media-wrap { position: relative; }
/* Product shots sit on white and are fully contained (never cropped),
   so the whole product shows regardless of its aspect ratio. */
.pc-media { display: block; position: relative; aspect-ratio: 1; background: #fff; overflow: hidden; }
.pc-media img { width: 100%; height: 100%; object-fit: contain; padding: 12px; opacity: 0; transition: opacity .5s ease, transform .5s ease; }
.pc-media.loaded img { opacity: 1; }
.product-card:hover .pc-media img { transform: scale(1.06); }
.pc-skeleton { position: absolute; inset: 0; background: linear-gradient(90deg, #eef2f7 25%, #e2e8f0 37%, #eef2f7 63%); background-size: 400% 100%; animation: shimmer 1.4s infinite; }
.pc-media.loaded .pc-skeleton { display: none; }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }
.pc-badge { position: absolute; top: 10px; left: 10px; padding: 4px 11px; border-radius: 8px; font-size: 11px; font-weight: 700; background: #fff; color: var(--text-mid); box-shadow: var(--shadow-sm); z-index: 2; }
.pc-badge.draft { background: #fef3c7; color: #92400e; }
.pc-badge.best { background: var(--red); color: #fff; }
.pc-badge.new { background: var(--blue-mid); color: #fff; }
.pc-badge.sale { background: var(--red); color: #fff; }
.pc-badge.out { background: #64748b; color: #fff; }
.pc-cart-out { background: #e2e8f0 !important; color: #64748b !important; cursor: not-allowed; }
.pc-lowstock { display: block; font-size: 12px; font-weight: 700; color: #c2410c; margin-bottom: 6px; }
.pc-wish { position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; border-radius: 50%; border: none; background: rgba(255, 255, 255, .92); color: var(--text-mid); cursor: pointer; display: grid; place-items: center; font-size: 15px; box-shadow: var(--shadow-sm); transition: var(--trans); z-index: 2; }
.pc-wish:hover { color: var(--red); transform: scale(1.08); }
.pc-wish.on { color: var(--red); }
.pc-body { padding: 14px 14px 16px; display: flex; flex-direction: column; flex: 1; }
.pc-name { font-family: var(--font-base); font-size: 14.5px; font-weight: 600; margin-bottom: 7px; line-height: 1.35; min-height: 2.6em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pc-name a:hover { color: var(--blue-mid); }
.pc-rating { display: flex; align-items: center; gap: 5px; color: #f6a623; font-size: 12px; margin-bottom: 10px; }
.pc-rating .stars { display: inline-flex; gap: 1px; }
.pc-rating-count { color: var(--text-muted); font-size: 11.5px; font-weight: 600; }
.pc-price-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-top: auto; margin-bottom: 12px; }
.pc-price { font-weight: 800; font-size: 17px; color: var(--blue-dark); }
.pc-old { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }
.pc-ask { font-size: 13px; font-weight: 700; color: var(--red); }
.pc-cart { display: flex; align-items: center; justify-content: center; gap: 8px; height: 42px; border-radius: 10px; background: var(--red); color: #fff; font-size: 13.5px; font-weight: 700; transition: var(--trans); }
.pc-cart:hover { background: #c53030; }
.pc-cart i { font-size: 14px; pointer-events: none; }

/* ---- Shop / Products page ------------------------------------------------ */
.shop-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.shop-head-titles h1 { font-family: var(--font-base); font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: var(--blue-dark); }
.shop-head-titles h1 span { color: var(--red); }
.shop-count { color: var(--text-muted); font-size: 13px; font-weight: 600; margin-top: 4px; }
.shop-title { font-family: var(--font-base); font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: var(--blue-dark); margin-bottom: 18px; }
.shop-title span { color: var(--red); font-weight: 700; }
/* Visually hidden but present in the DOM (for SEO + screen readers) */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.shop-search { display: flex; align-items: center; gap: 10px; width: 100%; max-width: 380px; padding: 0 6px 0 16px; background: #fff; border: 1.5px solid #e2e8f0; border-radius: 50px; }
.shop-search:focus-within { border-color: var(--blue-light); }
.shop-search > i { color: var(--text-muted); font-size: 14px; }
.shop-search input { flex: 1; min-width: 0; border: none; outline: none; padding: 11px 0; font-family: inherit; font-size: 16px; background: none; }
.shop-search button { flex-shrink: 0; width: 34px; height: 34px; border: none; border-radius: 50%; background: var(--blue-mid); color: #fff; cursor: pointer; display: grid; place-items: center; font-size: 13px; }
.shop-chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; margin-bottom: 26px; }
.shop-chips::-webkit-scrollbar { display: none; }
.chip { flex: 0 0 auto; padding: 8px 16px; border-radius: 50px; background: #fff; border: 1.5px solid #e2e8f0; font-size: 13px; font-weight: 600; color: var(--text-mid); transition: var(--trans); white-space: nowrap; }
.chip:hover { border-color: var(--blue-light); color: var(--blue-mid); }
.chip.active { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; }
.shop-subchips { margin-top: -14px; margin-bottom: 24px; }
.chip-sub { padding: 6px 13px; font-size: 12.5px; background: #f8fafc; }
.chip-sub.active { background: var(--red); border-color: var(--red); color: #fff; }
.chip-count { opacity: .6; font-weight: 700; margin-left: 3px; }
.chip-sub.active .chip-count { opacity: .85; }
.breadcrumb span[aria-current] { color: var(--text-dark); font-weight: 600; }
.oi-cat { display: block; font-size: 11.5px; color: var(--text-muted); margin-top: 1px; }
.co-item-cat { display: block; font-size: 11px; color: var(--text-muted); font-weight: 400; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.empty-state i { font-size: 46px; margin-bottom: 16px; color: #cbd5e0; }
.empty-state h3 { color: var(--text-mid); margin-bottom: 6px; }
.pagination, .admin-pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.page-link { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: #fff; border: 1.5px solid #e2e8f0; font-weight: 600; color: var(--text-mid); transition: var(--trans); }
.page-link:hover { border-color: var(--blue-light); }
.page-link.active { background: var(--blue-mid); border-color: var(--blue-mid); color: #fff; }

/* ---- Product detail ------------------------------------------------------ */
.breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 26px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--blue-mid); }
.breadcrumb i { font-size: 9px; }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
/* Let grid items shrink so a wide thumbnail strip scrolls instead of pushing
   the whole page wider than the viewport. */
.product-detail > * { min-width: 0; }
.pd-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid #edf2f7; box-shadow: var(--shadow-sm); aspect-ratio: 1; }
.pd-media img { width: 100%; height: 100%; object-fit: contain; padding: 22px; }
.pd-badge { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 5px 12px; border-radius: 8px; font-size: 11.5px; font-weight: 700; background: var(--blue-mid); color: #fff; }
.pd-cat { display: block; font-size: 12px; font-weight: 700; color: var(--blue-light); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 9px; }
.pd-info h1 { font-size: clamp(23px, 3.6vw, 32px); font-weight: 800; color: var(--blue-dark); line-height: 1.15; margin: 2px 0 14px; }
.pd-stockline { margin-bottom: 16px; }
.pd-stock { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 700; }
.pd-stock i { font-size: 13px; }
.pd-stock.in { color: #16a34a; }
.pd-stock.low { color: #c2410c; }
.pd-stock.out { color: #dc2626; }
.pd-add:disabled { background: #e2e8f0; color: #64748b; cursor: not-allowed; }
.cart-notice { display: flex; gap: 10px; align-items: flex-start; background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; border-radius: 10px; padding: 12px 14px; margin: 14px 0; font-size: 13.5px; line-height: 1.5; }
.cart-notice i { margin-top: 2px; }
.cart-notice span { display: inline; margin-right: 4px; }
.pd-price { font-size: 28px; font-weight: 800; color: var(--red); margin-bottom: 20px; }

/* Detail sections (Key Features, Description) */
.pd-section { margin-top: 28px; }
.pd-section-title { font-size: 17px; font-weight: 800; color: var(--blue-dark); letter-spacing: -.01em; margin-bottom: 14px; }
.pd-desc { color: var(--text-dark); font-size: 15.5px; line-height: 1.72; }
.pd-desc p { margin-bottom: 14px; }
.pd-desc p:last-child { margin-bottom: 0; }
.pd-features ul { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 12px 26px; }
.pd-features li { position: relative; padding-left: 19px; font-size: 15px; color: var(--text-dark); line-height: 1.5; }
.pd-features li::before { content: ''; position: absolute; left: 2px; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue-mid); }

/* Brand ("Make") display */
.pd-brand { display: flex; width: fit-content; align-items: center; margin: 0 0 12px; text-decoration: none; }
.pd-brand-logo { max-height: 46px; max-width: 155px; width: auto; object-fit: contain; }
.pd-brand-name { font-weight: 800; font-size: 17px; letter-spacing: .04em; text-transform: uppercase; color: var(--blue-dark); }
.pd-brand:hover .pd-brand-name { color: var(--blue-mid); }
.pc-brand { display: block; font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #8794a2; margin-bottom: 3px; }

/* Product image gallery (main image + thumbnails + arrows) */
.pd-media { aspect-ratio: auto; overflow: visible; border: none; box-shadow: none; background: transparent; }
.pd-media .pd-badge { z-index: 3; }
.pd-gallery { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.pd-gallery-main { position: relative; aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid #f4f6f9; box-shadow: 0 2px 10px rgba(2, 20, 50, .045); }
.pd-gallery .pd-gallery-main img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.pd-gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; border-radius: 50%; border: none; background: rgba(255, 255, 255, .82); box-shadow: 0 2px 8px rgba(2, 20, 50, .1); color: var(--blue-dark); cursor: pointer; display: grid; place-items: center; font-size: 12px; opacity: .65; transition: var(--trans); z-index: 2; }
.pd-gallery-arrow:hover { opacity: 1; background: #fff; transform: translateY(-50%) scale(1.08); }
.pd-gallery-arrow.prev { left: 2px; }
.pd-gallery-arrow.next { right: 2px; }
.pd-gallery-thumbs { display: flex; gap: 10px; overflow-x: auto; max-width: 100%; padding-bottom: 4px; scrollbar-width: thin; -webkit-overflow-scrolling: touch; }
.pd-thumb { flex: 0 0 auto; width: 68px; height: 68px; border-radius: 12px; border: 2px solid #e6ebf1; background: #fff; padding: 0; overflow: hidden; cursor: pointer; transition: var(--trans); }
.pd-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.pd-thumb:hover { border-color: var(--blue-light); }
.pd-thumb.active { border-color: var(--blue-mid); }
.pd-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 24px; }
.pd-actions .btn-continue { padding: 8px 16px; font-size: 13px; gap: 6px; }
.pd-actions .btn-continue i { font-size: 11px; }
.pd-meta { list-style: none; display: flex; flex-direction: column; gap: 11px; border-top: 1px solid #edf2f7; padding-top: 20px; }
.pd-meta li { display: flex; align-items: center; gap: 12px; color: var(--text-mid); font-size: 13.5px; }
.pd-meta i { color: var(--blue-mid); width: 20px; }

/* ---- Deals --------------------------------------------------------------- */
.deals-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
.deal-card { background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .15); border-radius: var(--radius-md); overflow: hidden; backdrop-filter: blur(4px); transition: var(--trans); }
.deal-card:hover { transform: translateY(-6px); background: rgba(255, 255, 255, .14); }
.deal-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.deal-body { padding: 18px; }
.deal-body h3 { font-size: 17px; margin-bottom: 8px; }
.deal-body p { font-size: 13.5px; color: #cbd5e0; }

/* ---- Why us -------------------------------------------------------------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
.why-card { text-align: center; padding: 34px 22px; border-radius: var(--radius-md); background: #fff; border: 1px solid #edf2f7; box-shadow: var(--shadow-sm); transition: var(--trans); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-icon { width: 66px; height: 66px; margin: 0 auto 18px; border-radius: 18px; display: grid; place-items: center; font-size: 26px; color: #fff; background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark)); }
.why-card h3 { font-size: 17px; margin-bottom: 8px; color: var(--blue-dark); }
.why-card p { font-size: 14px; color: var(--text-mid); }

/* ---- About snippet + about page ------------------------------------------ */
.about-snippet-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.about-snippet-inner h2 { font-size: clamp(24px, 4vw, 34px); color: var(--blue-dark); margin-bottom: 16px; }
.about-snippet-inner p { color: var(--text-mid); margin-bottom: 26px; }

/* About hero */
.about-hero { background: radial-gradient(110% 130% at 100% 0, #e8f0ff, transparent 55%), var(--bg-light); padding: clamp(28px, 4vw, 48px) var(--sec-pad-h); text-align: center; }
.about-hero-inner { max-width: 640px; margin: 0 auto; }
.ah-eyebrow { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid #dbe4f0; color: var(--blue-mid); font-size: 10.5px; font-weight: 700; padding: 5px 12px; border-radius: 50px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; }
.ah-eyebrow i { color: var(--red); }
.about-hero h1 { font-size: clamp(22px, 3.6vw, 32px); font-weight: 900; color: var(--blue-dark); line-height: 1.15; letter-spacing: -.3px; }
.about-hero p { color: var(--text-mid); font-size: clamp(13px, 1.2vw, 15px); line-height: 1.6; margin: 12px auto 0; max-width: 540px; }
.about-hero-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }

/* Stats band */
.about-stats-band { background: radial-gradient(120% 140% at 0 0, rgba(43,108,176,.4), transparent 55%), linear-gradient(120deg, #12233f, var(--blue-dark)); color: #fff; }
.asb-inner { max-width: 900px; margin: 0 auto; padding: clamp(20px, 3vw, 32px) var(--sec-pad-h); display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.asb-item { text-align: center; }
.asb-num { font-family: var(--font-base); font-size: clamp(22px, 3.2vw, 30px); font-weight: 900; color: #fff; line-height: 1; }
.asb-label { font-size: 11px; color: #b9c6db; margin-top: 6px; letter-spacing: .3px; }

/* About CTA */
.about-cta { background: radial-gradient(120% 160% at 100% 0, rgba(229,62,62,.5), transparent 55%), linear-gradient(120deg, #12233f, var(--blue-dark)); color: #fff; padding: clamp(30px, 4.5vw, 50px) var(--sec-pad-h); text-align: center; }
.about-cta-inner { max-width: 560px; margin: 0 auto; }
.about-cta h2 { font-size: clamp(20px, 3vw, 27px); font-weight: 800; margin-bottom: 9px; }
.about-cta p { color: #cbd5e0; font-size: 13.5px; line-height: 1.55; margin-bottom: 20px; }
.about-cta-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

.about-block { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; margin-bottom: 40px; }
.about-block:last-child { margin-bottom: 0; }
.about-block.reverse .about-img { order: 2; }
.about-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-badge { position: absolute; top: 14px; left: 14px; background: var(--red); color: #fff; padding: 5px 13px; border-radius: 50px; font-size: 11px; font-weight: 700; }
.eyebrow { font-size: 11.5px; font-weight: 700; color: var(--blue-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.eyebrow.light { color: #90cdf4; }
.about-copy h3 { font-size: clamp(18px, 2.4vw, 23px); color: var(--blue-dark); margin-bottom: 5px; }
.about-tagline { color: var(--red); font-weight: 600; font-size: 13.5px; margin-bottom: 10px; }
.about-copy p { color: var(--text-mid); font-size: 13.5px; line-height: 1.6; margin-bottom: 14px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 0; }
.about-tags span { background: var(--bg-blue-soft); color: var(--blue-mid); padding: 4px 12px; border-radius: 50px; font-size: 11.5px; font-weight: 600; }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-num { font-size: 26px; font-weight: 800; color: var(--blue-dark); }
.stat-label { font-size: 12px; color: var(--text-muted); }

/* ---- Services ------------------------------------------------------------ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.service-card { background: #fff; padding: 24px 22px; border-radius: var(--radius-md); border: 1px solid #edf2f7; box-shadow: var(--shadow-sm); transition: var(--trans); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue-mid), var(--red)); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #dbe4f0; }
.service-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 21px; color: #fff; background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark)); margin-bottom: 14px; }
.service-card h3 { font-size: 16px; color: var(--blue-dark); margin-bottom: 7px; }
.service-card p { font-size: 13px; color: var(--text-mid); line-height: 1.5; }

/* Service Center CTA — premium contained card */
.svc-cta { max-width: 1000px; margin: 0 auto; border-radius: var(--radius-lg); padding: clamp(30px, 5vw, 52px) var(--sec-pad-h); text-align: center; color: #fff; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); background: radial-gradient(120% 170% at 100% 0, rgba(229, 62, 62, .5), transparent 55%), radial-gradient(120% 170% at 0 100%, rgba(43, 108, 176, .55), transparent 55%), linear-gradient(120deg, #12233f, var(--blue-dark)); }
.svc-cta-icon { width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 16px; display: grid; place-items: center; font-size: 23px; background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .18); }
.svc-cta h2 { font-size: clamp(22px, 3.4vw, 30px); font-weight: 800; margin-bottom: 10px; }
.svc-cta p { color: #cbd5e0; font-size: 14px; line-height: 1.6; max-width: 480px; margin: 0 auto 22px; }
.svc-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* How it works — step flow */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step-card { text-align: center; padding: 0 6px; }
.step-num { width: 50px; height: 50px; border-radius: 50%; margin: 0 auto 14px; display: grid; place-items: center; font-family: var(--font-base); font-weight: 700; font-size: 20px; color: #fff; background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark)); box-shadow: 0 8px 20px rgba(30, 64, 175, .28); }
.step-card h3 { font-size: 15.5px; color: var(--blue-dark); margin-bottom: 6px; }
.step-card p { font-size: 13px; color: var(--text-mid); line-height: 1.5; }

/* ---- Gallery ------------------------------------------------------------- */
.gallery-masonry { columns: 4 220px; column-gap: 16px; }
.gallery-item { position: relative; display: block; margin-bottom: 16px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--trans); break-inside: avoid; cursor: pointer; }
.gallery-item:hover { box-shadow: var(--shadow-md); }
.gallery-item img { width: 100%; display: block; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 22px; background: linear-gradient(180deg, rgba(18,35,63,.15), rgba(18,35,63,.55)); opacity: 0; transition: opacity .3s ease; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { transform: scale(.8); transition: transform .3s ease; }
.gallery-item:hover .gallery-overlay i { transform: scale(1); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1100; background: rgba(10, 16, 28, .92); display: none; align-items: center; justify-content: center; padding: 44px 16px; }
.lightbox.open { display: flex; }
.lb-img { max-width: 92vw; max-height: 82vh; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 60px rgba(0, 0, 0, .5); }
.lb-close { position: absolute; top: 16px; right: 18px; width: 44px; height: 44px; border: none; border-radius: 50%; background: rgba(255, 255, 255, .12); color: #fff; font-size: 20px; cursor: pointer; display: grid; place-items: center; transition: var(--trans); }
.lb-close:hover { background: rgba(255, 255, 255, .24); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border: none; border-radius: 50%; background: rgba(255, 255, 255, .12); color: #fff; font-size: 17px; cursor: pointer; display: grid; place-items: center; transition: var(--trans); }
.lb-nav:hover { background: rgba(255, 255, 255, .24); }
.lb-prev { left: 14px; }
.lb-next { right: 14px; }
.lb-counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 12.5px; font-weight: 600; background: rgba(255, 255, 255, .12); padding: 5px 13px; border-radius: 50px; }

/* ---- Digital press ------------------------------------------------------- */
.hero-mini { padding: clamp(50px, 8vw, 90px) var(--sec-pad-h); text-align: center; }
.hero-mini-inner { max-width: 720px; margin: 0 auto; }
.hero-mini h1 { font-size: clamp(30px, 5vw, 48px); font-weight: 900; margin-bottom: 16px; }
.hero-mini h1 span { color: #90cdf4; }
.hero-mini p { color: #cbd5e0; margin-bottom: 26px; font-size: 16px; }
/* Digital Press hero (red-tinted to differentiate the print arm) */
.press-hero { background: radial-gradient(110% 130% at 100% 0, #ffe6e6, transparent 55%), var(--bg-light); }

.press-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.press-card { background: #fff; padding: 24px 22px; border-radius: var(--radius-md); border: 1px solid #edf2f7; box-shadow: var(--shadow-sm); transition: var(--trans); position: relative; overflow: hidden; }
.press-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--red), #b91c1c); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.press-card:hover::before { transform: scaleX(1); }
.press-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #f5d6d6; }
.press-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 21px; color: #fff; background: linear-gradient(135deg, var(--red), #b91c1c); margin-bottom: 14px; }
.press-card h3 { color: var(--blue-dark); font-size: 16px; margin-bottom: 7px; }
.press-card p { color: var(--text-mid); font-size: 13px; line-height: 1.5; }

/* Red-dominant CTA variant for Digital Press */
.press-cta { background: radial-gradient(120% 170% at 0 0, rgba(43, 108, 176, .4), transparent 55%), radial-gradient(120% 170% at 100% 100%, rgba(229, 62, 62, .6), transparent 55%), linear-gradient(120deg, #3a1114, #7a1a1f); }
.press-portfolio-note { margin-top: 40px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; background: var(--bg-blue-soft); border: 1px dashed var(--blue-light); border-radius: var(--radius-lg); padding: 32px; }
.press-portfolio-note > i { font-size: 40px; color: var(--blue-mid); }
.press-portfolio-note div { flex: 1; min-width: 240px; }
.press-portfolio-note h3 { color: var(--blue-dark); margin-bottom: 6px; }
.press-portfolio-note p { color: var(--text-mid); font-size: 14px; }

/* ---- Contact ------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; margin-bottom: 30px; }
.contact-card { background: #fff; padding: 24px 22px; border-radius: var(--radius-md); border: 1px solid #edf2f7; box-shadow: var(--shadow-sm); text-align: center; transition: var(--trans); position: relative; overflow: hidden; }
.contact-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue-mid), var(--red)); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.contact-card:hover::before { transform: scaleX(1); }
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #dbe4f0; }
.c-icon { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; font-size: 20px; color: #fff; background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark)); margin: 0 auto 14px; }
.contact-card h3 { color: var(--blue-dark); font-size: 16px; margin-bottom: 7px; }
.contact-card p { color: var(--text-mid); font-size: 13.5px; line-height: 1.55; white-space: pre-line; }
.contact-card p a:hover { color: var(--blue-mid); }
.contact-card a:hover { color: var(--blue-mid); }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); height: 340px; }
.contact-map iframe, .footer-map iframe { width: 100%; height: 100%; border: 0; }

/* ---- Footer (compact) ---------------------------------------------------- */
.site-footer { background: var(--blue-dark); color: #cbd5e0; padding: 34px var(--sec-pad-h) 0; }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 26px; }
.f-heading { color: #fff; font-weight: 700; margin-bottom: 12px; font-size: 13px; position: relative; padding-bottom: 8px; }
.f-heading::after { content: ''; position: absolute; left: 0; bottom: 0; width: 28px; height: 2.5px; background: var(--red); border-radius: 3px; }
.footer-col p, .footer-col a { font-size: 12.5px; margin-bottom: 6px; color: #b9c6db; line-height: 1.5; }
.footer-col a { display: block; transition: var(--trans); }
.footer-col a:hover { color: #fff; padding-left: 4px; }
/* Links inside paragraphs (phones, email) stay inline */
.footer-col p a { display: inline; }
.footer-col p a:hover { padding-left: 0; }
.footer-social { display: flex; gap: 9px; margin-top: 12px; }
.footer-social a { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .1); color: #fff; margin: 0; font-size: 13px; }
.footer-social a:hover { background: var(--red); padding: 0; }
.footer-map { margin-top: 12px; height: 120px; border-radius: var(--radius-sm); overflow: hidden; }
.footer-copy { text-align: center; padding: 16px; margin-top: 26px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: 11.5px; }

/* ---- Floating WhatsApp --------------------------------------------------- */
.float-wa { position: fixed; right: 22px; bottom: 22px; z-index: 800; width: 58px; height: 58px; border-radius: 50%; background: var(--green-wa); color: #fff; display: grid; place-items: center; font-size: 28px; box-shadow: 0 8px 26px rgba(37, 211, 102, .45); transition: var(--trans); animation: waPulse 2.4s infinite; }
.float-wa:hover { transform: scale(1.1); }
@keyframes waPulse { 0%, 100% { box-shadow: 0 8px 26px rgba(37, 211, 102, .45); } 50% { box-shadow: 0 8px 26px rgba(37, 211, 102, .8); } }

/* ---- Status pages -------------------------------------------------------- */
.status-page { min-height: 56vh; display: grid; place-items: center; text-align: center; }
.status-code { font-family: var(--font-base); font-size: clamp(70px, 14vw, 130px); font-weight: 900; color: var(--blue-dark); line-height: 1; }
.status-inner h1 { color: var(--text-dark); margin: 6px 0 12px; }
.status-inner p { color: var(--text-muted); margin-bottom: 24px; }

/* ---- Responsive ---------------------------------------------------------- */
/* Switch to mobile header + drawer nav below 900px */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .product-detail, .about-block, .about-block.reverse { grid-template-columns: 1fr; }
  .about-block.reverse .about-img { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .store-bar { grid-template-columns: 1fr; }

  .site-nav-strip, .mini-nav { display: none; }
  .nav-toggle { display: grid; place-items: center; width: 40px; height: 40px; margin-left: -8px; }
  .header-account .acc-label { display: none; }
  .header-account { padding: 0; border: none; border-radius: 50%; width: 40px; height: 40px; justify-content: center; }
  .header-inner { flex-wrap: wrap; gap: 10px 8px; }
  .nav-toggle-left { order: 0; }
  .brand { order: 1; margin-right: auto; }
  .header-right { order: 2; margin-left: 0; }
  .header-search { order: 3; flex-basis: 100%; max-width: none; }
  .mini-inner { gap: 8px; flex-wrap: nowrap; }
  .mini-header .brand { margin-right: auto; }
  .mini-header .header-right { margin-left: 0; }
}
@media (max-width: 720px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 2 140px; }
  .topbar { display: none; }

  /* Compact footer on mobile */
  .site-footer { padding-top: 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .footer-col:first-child { grid-column: 1 / -1; }
  .footer-col p, .footer-col a { font-size: 12px; margin-bottom: 5px; }
  .f-heading { font-size: 12.5px; margin-bottom: 10px; }
  .footer-map { height: 130px; }
  .footer-copy { font-size: 11px; padding: 14px; margin-top: 20px; }

  /* Mobile type scale — smaller, tighter headings */
  .hero-slide h1, .hero-slide h2 { font-size: clamp(22px, 6.2vw, 30px); }
  .hero-text { min-height: 130px; }
  .section-head h2 { font-size: clamp(20px, 5.4vw, 26px); }
  .section-head { margin-bottom: 26px; }
  .pd-info h1 { font-size: clamp(20px, 5.5vw, 26px); }
  .auth-head h1, .account-head h1 { font-size: clamp(21px, 6vw, 28px); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================================
   Customer accounts — header link, auth pages, account dashboard
   ========================================================================== */

/* Header account link — sizing lives in the Header section above */
.nav-account { margin-left: auto; }

/* Auth pages (login / register) */
.auth-section { min-height: 62vh; display: flex; align-items: center; justify-content: center; padding: clamp(28px, 6vw, 60px) var(--sec-pad-h); background: var(--bg-light); }
.auth-card { width: 100%; max-width: 440px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: clamp(26px, 5vw, 42px); }
.auth-head { text-align: center; margin-bottom: 22px; }
.auth-head h1 { font-size: clamp(24px, 4vw, 30px); color: var(--blue-dark); }
.auth-head h1 span { color: var(--red); }
.auth-head p { color: var(--text-mid); font-size: 14px; margin-top: 8px; }
.auth-errors { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; border-radius: var(--radius-sm); padding: 12px 14px; margin-bottom: 18px; font-size: 13.5px; }
.auth-errors div { display: flex; align-items: center; gap: 8px; margin: 3px 0; }
.auth-form label { display: block; font-size: 13.5px; font-weight: 600; color: var(--text-dark); margin-bottom: 14px; }
.auth-form .opt { color: var(--text-muted); font-weight: 400; }
.auth-form input { width: 100%; margin-top: 7px; padding: 13px 15px; border: 1.6px solid #e2e8f0; border-radius: var(--radius-sm); font-family: inherit; font-size: 16px; color: var(--text-dark); outline: none; transition: var(--trans); }
.auth-form input:focus { border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(43, 108, 176, .12); }
.auth-submit { width: 100%; justify-content: center; margin-top: 6px; }
.auth-alt { text-align: center; margin-top: 20px; font-size: 14px; color: var(--text-mid); }
.auth-alt a { color: var(--blue-mid); font-weight: 700; }
.auth-alt a:hover { text-decoration: underline; }
.auth-notice { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; border-radius: var(--radius-sm); padding: 12px 14px; margin-bottom: 18px; font-size: 13.5px; display: flex; align-items: center; gap: 8px; }
.code-input { letter-spacing: 8px; font-size: 22px !important; font-weight: 700; text-align: center; }
.verify-resend { margin: 0; }
.link-button { background: none; border: none; padding: 0; color: var(--blue-mid); font-weight: 700; font-family: inherit; font-size: inherit; cursor: pointer; }
.link-button:hover { text-decoration: underline; }
.verify-ok { color: #059669; }
.verify-no { color: #b45309; }
.verify-no a { color: var(--blue-mid); text-decoration: underline; }

/* Site-wide flash messages + email verification nudge */
.site-flash-wrap { max-width: 1180px; margin: 14px auto 0; padding: 0 20px; display: flex; flex-direction: column; gap: 8px; }
.site-flash { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; }
.site-flash.ok { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.site-flash.bad { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.verify-banner { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; max-width: 1180px; margin: 12px auto 0; padding: 11px 16px; background: #fffbeb; border: 1px solid #fcd34d; color: #92400e; border-radius: var(--radius-sm); font-size: 14px; }
.verify-banner i { font-size: 16px; }
.verify-banner a { margin-left: auto; color: #92400e; font-weight: 800; text-decoration: underline; white-space: nowrap; }

/* Account dashboard */
.account-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.account-head h1 { font-size: clamp(24px, 4vw, 32px); color: var(--blue-dark); }
.account-sub { color: var(--text-muted); font-size: 14px; margin-top: 4px; }
.account-grid { display: grid; grid-template-columns: 320px 1fr; gap: 22px; align-items: start; }
.account-card, .account-orders { background: #fff; border: 1px solid #edf2f7; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 24px; }
.account-card h3, .account-orders h3 { color: var(--blue-dark); font-size: 17px; margin-bottom: 16px; }
.account-info { list-style: none; margin-bottom: 18px; }
.account-info li { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid #f1f5f9; font-size: 14px; }
.account-info li:last-child { border-bottom: none; }
.account-info span { color: var(--text-muted); }
.account-empty { text-align: center; padding: 40px 16px; color: var(--text-muted); }
.account-empty i { font-size: 42px; color: #cbd5e0; margin-bottom: 14px; }
.account-empty p { margin-bottom: 18px; }
.order-list { display: flex; flex-direction: column; gap: 12px; }
.order-item { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px; border: 1px solid #edf2f7; border-radius: var(--radius-sm); transition: var(--trans); }
.order-item:hover { box-shadow: var(--shadow-sm); }
.oi-main { display: flex; flex-direction: column; gap: 3px; }
.oi-number { font-weight: 700; color: var(--blue-dark); }
.oi-date { font-size: 12.5px; color: var(--text-muted); }
.oi-side { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
.oi-total { font-weight: 800; color: var(--blue-dark); }
.oi-status { font-size: 11px; font-weight: 700; text-transform: capitalize; padding: 3px 10px; border-radius: 20px; }
.oi-status.status-pending { background: #fffbeb; color: #d97706; }
.oi-status.status-processing { background: #eff6ff; color: #2563eb; }
.oi-status.status-shipped { background: #eef2ff; color: #4f46e5; }
.oi-status.status-delivered { background: #ecfdf5; color: #059669; }
.oi-status.status-cancelled { background: #fef2f2; color: #dc2626; }
.oi-status.status-on-hold { background: #fff7ed; color: #ea580c; }
/* Clickable order rows (order history -> order detail). */
.order-item-link { cursor: pointer; }
.order-item-link:hover { border-color: #dbe4ef; box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.oi-chev { color: #cbd5e0; font-size: 13px; flex-shrink: 0; transition: var(--trans); }
.order-item-link:hover .oi-chev { color: var(--blue-dark); }

@media (max-width: 820px) { .account-grid { grid-template-columns: 1fr; } }

/* ============================================================================
   Customer order detail (receipt + delivery tracker)
   ========================================================================== */
.od-back { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; color: var(--blue-dark); margin-bottom: 18px; }
.od-back:hover { color: var(--red); }
.od-head { max-width: 720px; margin: 0 auto 22px; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.od-head h1 { font-size: clamp(20px, 3vw, 26px); color: var(--blue-dark); }
.od-head h1 span { color: var(--red); }
.od-sub { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.od-statuspill { font-size: 12px; padding: 5px 13px; flex-shrink: 0; }

.od-track { max-width: 720px; margin: 0 auto 20px; display: flex; align-items: flex-start; justify-content: space-between; padding: 22px 10px 6px; }
.od-step { display: flex; flex-direction: column; align-items: center; gap: 9px; flex: 0 0 auto; width: 74px; text-align: center; }
.od-dot { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: #eef2f7; color: #b6c2d2; font-size: 17px; border: 2px solid #eef2f7; transition: var(--trans); }
.od-step.done .od-dot { background: #ecfdf5; color: #059669; border-color: #a7f3d0; }
.od-step.current .od-dot { background: linear-gradient(135deg, #10b981, #059669); color: #fff; border-color: #059669; box-shadow: 0 6px 16px rgba(5, 150, 105, .35); }
.od-step-label { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.od-step.done .od-step-label, .od-step.current .od-step-label { color: var(--blue-dark); }
.od-bar { flex: 1 1 auto; height: 3px; background: #eef2f7; border-radius: 3px; margin-top: 21px; }
.od-bar.done { background: #a7f3d0; }

.od-alert { max-width: 720px; margin: 0 auto 20px; display: flex; align-items: flex-start; gap: 11px; padding: 13px 16px; border-radius: var(--radius-sm); font-size: 13.5px; line-height: 1.55; }
.od-alert i { margin-top: 2px; }
.od-alert-hold { background: #fff7ed; border: 1px solid #fed7aa; color: #9a3412; }
.od-alert-bad { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }

@media (max-width: 560px) {
  .od-step { width: 60px; }
  .od-dot { width: 38px; height: 38px; font-size: 15px; }
  .od-step-label { font-size: 11px; }
  .od-bar { margin-top: 18px; }
}

/* ============================================================================
   Cart, checkout & order confirmation
   ========================================================================== */
.pc-cart-form { margin: 0; width: 100%; }
.pc-cart { width: 100%; }
.pc-cart.loading { opacity: .7; pointer-events: none; }

/* Cart page */
.cart-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 22px; }
.cart-head h1 { font-size: clamp(24px, 4vw, 32px); color: var(--blue-dark); }
.cart-head h1 span { color: var(--red); }
.cart-count-label { color: var(--text-muted); font-size: 14px; font-weight: 600; }
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 12px; }
.cart-line { display: grid; grid-template-columns: 88px 1fr auto auto; align-items: center; gap: 16px; background: #fff; border: 1px solid #edf2f7; border-radius: var(--radius-md); padding: 12px; box-shadow: var(--shadow-sm); }
.cart-thumb { width: 88px; height: 88px; border-radius: 10px; overflow: hidden; background: #fff; border: 1px solid #f1f5f9; }
.cart-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.cart-info { min-width: 0; }
.cart-name { display: block; font-weight: 600; color: var(--blue-dark); font-size: 14.5px; margin-bottom: 3px; }
.cart-name:hover { color: var(--blue-mid); }
.cart-unit { font-size: 12.5px; color: var(--text-muted); margin-bottom: 8px; }
.cart-remove button { background: none; border: none; color: var(--text-muted); font-size: 12.5px; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; padding: 0; }
.cart-remove button:hover { color: var(--red); }
.cart-qty { display: inline-flex; align-items: center; gap: 4px; border: 1.5px solid #e2e8f0; border-radius: 50px; padding: 3px; }
.qty-btn { width: 30px; height: 30px; border: none; background: var(--bg-light); border-radius: 50%; font-size: 16px; color: var(--blue-dark); cursor: pointer; display: grid; place-items: center; line-height: 1; }
.qty-btn:hover { background: var(--bg-blue-soft); color: var(--blue-mid); }
.qty-val { min-width: 26px; text-align: center; font-weight: 700; font-size: 14px; }
.cart-line-total { font-weight: 800; color: var(--blue-dark); font-size: 15px; white-space: nowrap; }

/* Summary card (cart + checkout) */
.cart-summary, .checkout-summary { background: #fff; border: 1px solid #edf2f7; border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-sm); position: sticky; top: 90px; }
.cart-summary h3, .checkout-summary h3 { font-size: 16px; color: var(--blue-dark); margin-bottom: 16px; }
.cs-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-mid); padding: 7px 0; }
.cs-muted { color: var(--text-muted); font-size: 13px; }
.cs-total { display: flex; justify-content: space-between; font-weight: 800; color: var(--blue-dark); font-size: 18px; padding: 12px 0; margin-top: 6px; border-top: 1px solid #edf2f7; }
.cs-checkout { width: 100%; justify-content: center; margin-top: 12px; }
.cs-checkout-off { background: #e2e8f0; color: #94a3b8; cursor: not-allowed; box-shadow: none; }
.cs-checkout-off:hover { transform: none; box-shadow: none; }
.cs-soon { display: flex; align-items: flex-start; gap: 9px; margin-top: 12px; padding: 12px 14px; background: #fff7ed; border: 1px solid #fed7aa; border-radius: 12px; font-size: 13px; line-height: 1.5; color: #9a3412; }
.cs-soon i { margin-top: 2px; }
.cs-wa { width: 100%; justify-content: center; margin-top: 12px; }
.cs-testmode { display: flex; align-items: center; gap: 8px; margin-top: 12px; padding: 9px 12px; background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 10px; font-size: 12.5px; font-weight: 600; color: #1e40af; }
.cart-continue { display: block; text-align: center; margin-top: 12px; font-size: 13.5px; font-weight: 600; color: var(--blue-mid); }
.cart-continue:hover { text-decoration: underline; }
.cs-trust { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 7px; }
.cs-note { font-size: 12px; color: var(--text-muted); margin-top: 12px; line-height: 1.5; text-align: center; }
.pay-exact { display: flex; gap: 10px; align-items: flex-start; margin-top: 14px; padding: 12px 14px; background: var(--bg-blue-soft); border: 1px solid #d6e4ff; border-radius: var(--radius-sm); font-size: 12px; color: var(--text-mid); line-height: 1.5; }
.pay-exact i { color: var(--blue-mid); font-size: 15px; margin-top: 1px; flex-shrink: 0; }
.pay-exact strong { color: var(--blue-dark); display: block; margin-bottom: 2px; }

/* Checkout */
.checkout-head h1 { font-size: clamp(24px, 4vw, 32px); color: var(--blue-dark); margin-bottom: 18px; }
.checkout-head h1 span { color: var(--red); }
.checkout-guest { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; margin-bottom: 18px; background: var(--bg-blue-soft); border: 1px solid #d6e4ff; border-radius: var(--radius-sm); font-size: 13px; color: var(--text-mid); line-height: 1.5; }
.checkout-guest i { color: var(--blue-mid); font-size: 16px; margin-top: 1px; }
.checkout-guest a { color: var(--blue-mid); font-weight: 700; }
.checkout-guest a:hover { text-decoration: underline; }
.checkout-layout { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start; }
.checkout-form { background: #fff; border: 1px solid #edf2f7; border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); }
.checkout-form h3 { font-size: 16px; color: var(--blue-dark); margin-bottom: 16px; }
.co-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.co-field { display: flex; flex-direction: column; font-size: 13px; font-weight: 600; color: var(--text-dark); gap: 6px; }
.co-field .opt { color: var(--text-muted); font-weight: 400; }
.co-span { grid-column: 1 / -1; }
.co-field input, .co-field textarea { padding: 12px 14px; border: 1.6px solid #e2e8f0; border-radius: var(--radius-sm); font-family: inherit; font-size: 16px; color: var(--text-dark); outline: none; transition: var(--trans); }
.co-field input:focus, .co-field textarea:focus { border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(43, 108, 176, .12); }
.co-items { display: flex; flex-direction: column; gap: 9px; padding-bottom: 12px; margin-bottom: 6px; border-bottom: 1px solid #edf2f7; }
.co-item { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.co-item-qty { color: var(--text-muted); font-weight: 700; }
.co-item-name { flex: 1; color: var(--text-dark); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.co-item-total { font-weight: 700; color: var(--blue-dark); }

/* Product-detail buy row */
.pd-buy { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.pd-qty { display: inline-flex; align-items: center; gap: 6px; border: 1.5px solid #e2e8f0; border-radius: 50px; padding: 4px; }
.pd-qty input { width: 44px; text-align: center; border: none; outline: none; font-family: inherit; font-size: 16px; font-weight: 700; -moz-appearance: textfield; }
.pd-qty input::-webkit-outer-spin-button, .pd-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pd-add { flex: 1; min-width: 160px; justify-content: center; }

/* Order confirmation */
.order-done { text-align: center; max-width: 560px; margin: 0 auto 28px; }
.order-done-icon { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; font-size: 34px; margin: 0 auto 16px; }
.order-done-icon.ok { background: #dcfce7; color: #16a34a; }
.order-done-icon.pending { background: #fef3c7; color: #d97706; }
.order-done-icon.bad { background: #fee2e2; color: var(--red); }
.order-done h1 { font-size: clamp(22px, 3.6vw, 30px); color: var(--blue-dark); margin-bottom: 8px; }
.order-done p { color: var(--text-mid); font-size: 14.5px; }
.order-number { margin-top: 14px; font-size: 13px; color: var(--text-muted); }
.order-number strong { color: var(--blue-dark); font-size: 15px; letter-spacing: .3px; }
.order-card { max-width: 720px; margin: 0 auto; background: #fff; border: 1px solid #edf2f7; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); overflow: hidden; }
.order-items { padding: 8px 20px; }
.order-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid #f1f5f9; }
.order-item:last-child { border-bottom: none; }
.order-item img { width: 56px; height: 56px; border-radius: 10px; object-fit: contain; background: var(--bg-light); border: 1px solid #f1f5f9; padding: 4px; }
.oi-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.oi-name { font-weight: 600; color: var(--blue-dark); font-size: 14px; }
.oi-qty { font-size: 12.5px; color: var(--text-muted); }
.oi-line { font-weight: 700; color: var(--blue-dark); }
.order-totals { padding: 16px 20px; background: var(--bg-light); }
.order-pay { margin-top: 10px; font-size: 13px; color: var(--text-mid); }
.pay-pill { text-transform: capitalize; font-weight: 700; font-size: 12px; padding: 3px 10px; border-radius: 20px; }
.pay-pill.pay-paid { background: #dcfce7; color: #16a34a; }
.pay-pill.pay-unpaid { background: #fef3c7; color: #d97706; }
.pay-pill.pay-failed { background: #fee2e2; color: var(--red); }
.pay-pill.pay-refunded { background: #eef2ff; color: #4f46e5; }
.order-meta-grid { max-width: 720px; margin: 20px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.order-meta-card { background: #fff; border: 1px solid #edf2f7; border-radius: var(--radius-md); padding: 18px; box-shadow: var(--shadow-sm); }
.order-meta-card h4 { color: var(--blue-dark); font-size: 14px; margin-bottom: 8px; }
.order-meta-card p { color: var(--text-mid); font-size: 13.5px; line-height: 1.6; margin-bottom: 12px; }
.order-actions { max-width: 720px; margin: 22px auto 0; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 860px) {
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .cart-summary, .checkout-summary { position: static; }
}
@media (max-width: 560px) {
  .cart-line { grid-template-columns: 64px 1fr; grid-template-areas: "thumb info" "qty total"; row-gap: 10px; column-gap: 12px; }
  .cart-thumb { grid-area: thumb; width: 64px; height: 64px; }
  .cart-info { grid-area: info; }
  .cart-qty { grid-area: qty; justify-self: start; }
  .cart-line-total { grid-area: total; justify-self: end; align-self: center; }
  .co-grid { grid-template-columns: 1fr; }
  .order-meta-grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   Home redesign — dark hero, trust strip, category tiles, promo banners
   ========================================================================== */

/* ---- Dark hero ----------------------------------------------------------- */
.hero-v2 {
  background:
    radial-gradient(120% 120% at 85% 10%, rgba(43, 108, 176, .35), transparent 55%),
    linear-gradient(135deg, #0f2038 0%, var(--blue-dark) 55%, #142c50 100%);
  color: #fff; overflow: hidden;
}
.hero-v2-inner {
  max-width: 1280px; margin: 0 auto; padding: clamp(40px, 6vw, 78px) var(--sec-pad-h);
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(28px, 4vw, 56px);
}
.hero-v2-text { position: relative; min-height: 210px; }
.hero-v2-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16); color: #cbd8ec; font-size: 12px; font-weight: 700;
  padding: 7px 15px; border-radius: 50px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: .5px;
}
.hero-v2-eyebrow i { color: #f6a623; }
.hero-v2 .hero-slide h1 { color: #fff; font-size: clamp(30px, 4.4vw, 52px); font-weight: 900; letter-spacing: -1px; line-height: 1.08; }
.hero-v2 .accent-red { color: #ff6b6b; }
.hero-v2-sub { color: #b9c6db; font-size: clamp(14px, 1.4vw, 17px); margin-top: 16px; max-width: 460px; line-height: 1.6; }
.hero-v2-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.btn-hero-ghost { background: rgba(255, 255, 255, .08); color: #fff; border: 1.5px solid rgba(255, 255, 255, .3); }
.btn-hero-ghost:hover { background: #fff; color: var(--blue-dark); transform: translateY(-2px); }
.hero-v2-brands { display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; margin-top: 30px; }
.hero-v2-brands span { font-family: var(--font-base); font-weight: 800; font-size: 14px; color: rgba(255, 255, 255, .45); letter-spacing: .5px; }
.hero-v2 .hero-dots { margin-top: 26px; }
.hero-v2 .hero-dots button { background: rgba(255, 255, 255, .28); }
.hero-v2 .hero-dots button.active { background: #ff6b6b; }
.hero-v2-media { position: relative; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 60px rgba(0, 0, 0, .4); border: 1px solid rgba(255, 255, 255, .12); }

/* ---- Hero slider (white background, small auto-sliding images) ----------- */
.hero-slider { background: #fff; }
.hero-slider-inner { max-width: 820px; margin: 0 auto; padding: clamp(20px, 4vw, 40px) var(--sec-pad-h) clamp(16px, 3vw, 26px); }
.hero-viewport { overflow: hidden; height: clamp(190px, 32vw, 320px); cursor: grab; touch-action: pan-y; }
.hero-viewport:active { cursor: grabbing; }
.hero-track { display: flex; height: 100%; transition: transform .55s cubic-bezier(.4, 0, .2, 1); will-change: transform; }
.hero-track .hero-img { position: static; opacity: 1; flex: 0 0 100%; width: 100%; height: 100%; object-fit: contain; transition: none; -webkit-user-drag: none; user-select: none; }
@media (prefers-reduced-motion: reduce) { .hero-track { transition: none; } }
.hero-slider .hero-dots { justify-content: center; margin-top: 16px; }

/* ---- Trust strip (compact, premium) -------------------------------------- */
.trust-strip { background: #fff; border-bottom: 1px solid #eef2f7; }
.trust-inner {
  max-width: 1280px; margin: 0 auto; padding: 15px var(--sec-pad-h);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item + .trust-item { position: relative; }
.trust-item i { font-size: 14px; color: var(--blue-mid); flex-shrink: 0; width: 32px; height: 32px; display: grid; place-items: center; background: linear-gradient(135deg, #eef4ff, #e2ecff); border-radius: 9px; }
.trust-item strong { display: block; font-size: 12.5px; color: var(--blue-dark); font-weight: 700; letter-spacing: -.1px; line-height: 1.25; }
.trust-item span { display: block; font-size: 10.5px; color: var(--text-muted); line-height: 1.3; margin-top: 1px; }

/* ---- Category chips strip (horizontal scroll) ---------------------------- */
.cat-strip-wrap { background: #fff; border-bottom: 1px solid #edf2f7; }
.cat-strip { max-width: 1280px; margin: 0 auto; padding: 14px var(--sec-pad-h); display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.cat-strip::-webkit-scrollbar { display: none; }
.cat-chip { flex: 0 0 auto; width: 82px; display: flex; flex-direction: column; align-items: center; gap: 8px; scroll-snap-align: start; }
.cat-chip-ico { width: 64px; height: 64px; border-radius: 16px; background: var(--bg-light); border: 1px solid #edf2f7; overflow: hidden; display: grid; place-items: center; transition: var(--trans); }
.cat-chip:hover .cat-chip-ico { border-color: var(--blue-light); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.cat-chip-ico img { width: 100%; height: 100%; object-fit: cover; }
.cat-chip-ico.more { color: var(--blue-mid); font-size: 22px; }
.cat-chip-label { font-size: 12px; font-weight: 600; color: var(--text-mid); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 82px; }

/* ---- Section row heads (carousels) --------------------------------------- */
.row-head { max-width: 1280px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.row-head h2 { font-family: var(--font-base); font-size: clamp(19px, 2.6vw, 26px); font-weight: 800; color: var(--blue-dark); }
.row-head h2 span { color: var(--red); }
.row-view-all { font-size: 13.5px; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; transition: var(--trans); }
.row-view-all:hover { gap: 9px; }

/* ---- Product carousel ---------------------------------------------------- */
.pcar { position: relative; max-width: 1280px; margin: 0 auto; }
.pcar-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 4px 2px 8px; }
.pcar-track::-webkit-scrollbar { display: none; }
.pcar-track .product-card { flex: 0 0 220px; scroll-snap-align: start; }
.pcar-arrow { position: absolute; top: 42%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; border: 1px solid #e2e8f0; background: #fff; color: var(--blue-dark); cursor: pointer; box-shadow: var(--shadow-md); display: grid; place-items: center; font-size: 15px; z-index: 5; transition: opacity .25s ease, background .25s ease, color .25s ease; }
.pcar-arrow:hover { background: var(--blue-mid); color: #fff; border-color: var(--blue-mid); }
.pcar-arrow.prev { left: -14px; }
.pcar-arrow.next { right: -14px; }
.pcar-arrow.hide { opacity: 0; pointer-events: none; }
@media (hover: none) { .pcar-arrow { display: none; } }

/* ---- Promo banners ------------------------------------------------------- */
.sec-compact { padding-top: clamp(22px, 3.2vw, 38px); padding-bottom: clamp(22px, 3.2vw, 38px); }
.promo-section { display: grid; grid-template-columns: 1fr; gap: 14px; }
.promo-banner { position: relative; overflow: hidden; border-radius: var(--radius-md); min-height: 130px; display: flex; align-items: center; padding: clamp(18px, 3vw, 28px); color: #fff; background: radial-gradient(120% 140% at 100% 0, rgba(43, 108, 176, .5), transparent 55%), linear-gradient(120deg, #12233f, #1a365d); }
.promo-banner-content { max-width: 460px; }
.promo-eyebrow { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; padding: 4px 10px; border-radius: 50px; background: rgba(255, 255, 255, .16); margin-bottom: 9px; }
.promo-banner h3 { font-size: clamp(17px, 2.2vw, 22px); font-weight: 800; margin-bottom: 6px; }
.promo-banner p { font-size: 12.5px; color: rgba(255, 255, 255, .82); margin-bottom: 13px; line-height: 1.5; }
.promo-banner .btn { padding: 8px 18px; font-size: 12.5px; }
.promo-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.promo-mini { display: flex; align-items: center; background: #fff; border: 1px solid #edf2f7; border-radius: var(--radius-md); padding: 16px 18px; box-shadow: var(--shadow-sm); transition: var(--trans); }
.promo-mini:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.promo-mini h4 { font-size: 14.5px; color: var(--blue-dark); margin-bottom: 3px; }
.promo-mini p { font-size: 12px; color: var(--text-mid); margin-bottom: 8px; line-height: 1.4; }
.promo-link { font-size: 12px; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 6px; transition: var(--trans); }
.promo-mini:hover .promo-link { gap: 9px; }

/* ---- Secure payments ----------------------------------------------------- */
.pay-inner { max-width: 1280px; margin: 0 auto; padding: 15px var(--sec-pad-h); display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.pay-copy { display: flex; align-items: center; gap: 11px; }
.pay-ico { width: 34px; height: 34px; border-radius: 50%; background: var(--bg-blue-soft); color: var(--blue-mid); display: grid; place-items: center; font-size: 14px; flex-shrink: 0; }
.pay-copy strong { display: block; font-size: 12.5px; color: var(--blue-dark); }
.pay-copy span { display: block; font-size: 11px; color: var(--text-muted); }
.pay-logos { display: flex; flex-wrap: wrap; gap: 8px; }
.pay-logo { padding: 5px 11px; background: #fff; border: 1px solid #e2e8f0; border-radius: 7px; font-family: var(--font-base); font-weight: 800; font-size: 11px; color: var(--text-mid); letter-spacing: .3px; }

/* ---- Newsletter ---------------------------------------------------------- */
.news-strip { border-top: 1px solid #edf2f7; }
.wishlist-loading { text-align: center; color: var(--text-muted); padding: 40px 0; font-size: 15px; }
.tab-wish { position: relative; }
.tab-wish-badge { position: absolute; top: 2px; right: 50%; transform: translateX(16px); min-width: 16px; height: 16px; padding: 0 4px; border-radius: 9px; background: var(--red); color: #fff; font-size: 10px; font-weight: 700; line-height: 16px; text-align: center; }
.news-inner { max-width: 1280px; margin: 0 auto; padding: 18px var(--sec-pad-h); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.news-copy { display: flex; align-items: center; gap: 11px; }
.news-ico { width: 36px; height: 36px; border-radius: 50%; background: #fee2e2; color: var(--red); display: grid; place-items: center; font-size: 15px; flex-shrink: 0; }
.news-copy strong { display: block; font-size: 13.5px; color: var(--blue-dark); }
.news-copy span { display: block; font-size: 11.5px; color: var(--text-muted); max-width: 420px; }
.news-form { display: flex; gap: 8px; flex: 1; max-width: 420px; min-width: 240px; }
.news-form input { flex: 1; min-width: 0; padding: 10px 15px; border: 1.5px solid #e2e8f0; border-radius: 50px; font-family: inherit; font-size: 16px; outline: none; }
.news-form input:focus { border-color: var(--blue-light); }
.news-form .btn { flex-shrink: 0; padding: 9px 18px; font-size: 13px; }

/* ---- Mobile bottom tab bar (app-style) ----------------------------------- */
.tabbar { display: none; }

/* ---- Toast --------------------------------------------------------------- */
.toast { position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 20px); background: var(--blue-dark); color: #fff; padding: 12px 20px; border-radius: 50px; font-size: 14px; font-weight: 600; box-shadow: var(--shadow-lg); z-index: 1200; opacity: 0; transition: opacity .3s ease, transform .3s ease; pointer-events: none; max-width: 90vw; text-align: center; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---- Home redesign responsive -------------------------------------------- */
@media (max-width: 900px) {
  .hero-v2-inner { grid-template-columns: 1fr; }
  .hero-v2-media { order: -1; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
  .promo-cards { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero-v2-text { min-height: 0; }
  .trust-inner { padding: 13px var(--sec-pad-h); gap: 11px 12px; }
  .trust-item { gap: 9px; }
  .trust-item i { width: 30px; height: 30px; font-size: 13px; border-radius: 8px; }
  .trust-item strong { font-size: 11.5px; }
  .trust-item span { font-size: 10px; }
  .pcar-track .product-card { flex-basis: 46vw; }
  .cat-chip { width: 74px; }
  .cat-chip-ico { width: 58px; height: 58px; }
  .cat-chip-label { max-width: 74px; }
  .news-inner { justify-content: flex-start; }
  .news-form { max-width: none; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }

  /* The bottom tab bar already has an Account button, so drop the redundant
     account icon from the top header on mobile. */
  .header-account { display: none; }

  /* App-style bottom bar takes over; hide the floating WhatsApp to avoid dupes */
  .tabbar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 900; background: #fff; border-top: 1px solid #edf2f7; box-shadow: 0 -4px 20px rgba(15, 23, 42, .08); padding: 6px 4px calc(6px + env(safe-area-inset-bottom)); }
  .tabbar a, .tabbar button { flex: 1; background: none; border: none; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 6px 2px; font-size: 10.5px; font-weight: 600; color: var(--text-muted); font-family: inherit; transition: var(--trans); }
  .tabbar i { font-size: 18px; }
  .tabbar a.active { color: var(--red); }
  /* Reserve space for the fixed tab bar inside the (dark) footer so there is
     no white strip below it, and the copyright clears the bar. */
  .site-footer { padding-bottom: calc(52px + env(safe-area-inset-bottom)); }
  .float-wa { display: none; }
}
@media (max-width: 380px) {
  .cat-chip { width: 66px; }
  .cat-chip-ico { width: 54px; height: 54px; }
}

/* ---------------------------------------------------------------------------
   Product ratings & customer reviews
   Ratings render only when real reviews exist (never a "0 stars" state).
--------------------------------------------------------------------------- */
.stars { display: inline-flex; gap: 2px; color: #f6a623; }

/* Rating line under the product title */
.pd-rating { display: inline-flex; align-items: center; gap: 8px; margin: 2px 0 14px; font-size: 14px; color: var(--text-mid); text-decoration: none; }
.pd-rating .stars { font-size: 15px; }
.pd-rating-val { font-weight: 800; color: var(--text-dark); }
.pd-rating-count { color: var(--text-muted); font-size: 13px; }
.pd-rating:hover .pd-rating-count { text-decoration: underline; }

/* Reviews section */
.pd-reviews { margin-top: 48px; padding-top: 8px; }
.rv-summary { display: flex; align-items: center; gap: 18px; padding: 18px 20px; background: var(--bg-light); border: 1px solid #e2e8f0; border-radius: var(--radius-md); margin-bottom: 22px; }
.rv-score-num { font-size: 42px; font-weight: 800; line-height: 1; color: var(--blue-dark); }
.rv-score-meta { display: flex; flex-direction: column; gap: 5px; }
.rv-score-meta .stars { font-size: 18px; }
.rv-score-count { font-size: 13px; color: var(--text-muted); }
.rv-empty { color: var(--text-mid); margin-bottom: 22px; }
.rv-note { color: var(--text-mid); margin-bottom: 22px; }
.rv-note a { color: var(--blue-mid); font-weight: 700; }

/* Verified-purchase badge (form + list) */
.rv-verified { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: #15803d; background: #f0fdf4; border: 1px solid #bbf7d0; padding: 3px 9px; border-radius: 999px; }

/* Review form */
.rv-form { background: var(--white); border: 1px solid #e2e8f0; border-radius: var(--radius-md); padding: 20px; margin-bottom: 28px; box-shadow: var(--shadow-sm); }
.rv-form-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rv-form-head h3 { font-size: 17px; color: var(--text-dark); }
.rv-form textarea { width: 100%; border: 1px solid #cbd5e1; border-radius: var(--radius-sm); padding: 12px; font: inherit; font-size: 14.5px; resize: vertical; margin: 6px 0 14px; }
.rv-form textarea:focus { outline: none; border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(43, 108, 176, .15); }

/* Interactive star input (5→1 DOM order + row-reverse = left-to-right fill) */
.rv-stars-input { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.rv-stars-input input { position: absolute; opacity: 0; width: 0; height: 0; }
.rv-stars-input label { cursor: pointer; font-size: 26px; color: #cbd5e1; transition: color .12s; }
.rv-stars-input label:hover,
.rv-stars-input label:hover ~ label,
.rv-stars-input input:checked ~ label { color: #f6a623; }
.rv-stars-input:hover input:checked ~ label { color: #cbd5e1; }
.rv-stars-input:hover label:hover,
.rv-stars-input:hover label:hover ~ label { color: #f6a623; }
.rv-stars-input input:focus-visible + label { outline: 2px solid var(--blue-light); outline-offset: 2px; border-radius: 4px; }

/* Reviews list */
.rv-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.rv-item { border-bottom: 1px solid #edf2f7; padding-bottom: 18px; }
.rv-item:last-child { border-bottom: none; }
.rv-item-head { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.rv-author { font-weight: 700; color: var(--text-dark); }
.rv-item-stars { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.rv-item-stars .stars { font-size: 14px; }
.rv-date { font-size: 12.5px; color: var(--text-muted); }
.rv-body { color: var(--text-mid); line-height: 1.6; font-size: 14.5px; white-space: pre-line; }

@media (max-width: 480px) {
  .rv-summary { gap: 14px; padding: 16px; }
  .rv-score-num { font-size: 34px; }
}

/* --- Checkout promo code ---------------------------------------------------- */
.co-coupon { margin: 14px 0 16px; padding-top: 14px; border-top: 1px dashed #e2e8f0; }
.co-coupon-row { display: flex; gap: 8px; }
.co-coupon-input { flex: 1; min-width: 0; height: 42px; padding: 0 12px; border: 1.5px solid #cbd5e1; border-radius: var(--radius-sm); font: inherit; font-size: 14px; text-transform: uppercase; letter-spacing: .5px; }
.co-coupon-input:focus { outline: none; border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(43, 108, 176, .15); }
.co-coupon-apply { height: 42px; padding: 0 18px; border: none; border-radius: var(--radius-sm); background: var(--blue-dark); color: #fff; font-weight: 700; font-size: 14px; cursor: pointer; transition: var(--trans); white-space: nowrap; }
.co-coupon-apply:hover { background: #12294a; }
.co-coupon-applied { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 14px; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--radius-sm); color: #15803d; font-size: 14px; }
.co-coupon-applied .fa-tag { margin-right: 4px; }
.co-coupon-remove { background: none; border: none; color: #64748b; font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: underline; }
.co-coupon-remove:hover { color: var(--red); }
.co-coupon-err { margin-top: 8px; color: var(--red); font-size: 13px; display: flex; align-items: center; gap: 6px; }
.cs-discount { color: #15803d; font-weight: 600; }

/* --- Legal / policy pages --------------------------------------------------- */
.legal-doc { max-width: 800px; margin: 0 auto; }
.legal-doc h1 { font-size: clamp(26px, 4vw, 36px); color: var(--blue-dark); margin-bottom: 6px; }
.legal-updated { color: var(--text-muted); font-size: 13px; margin-bottom: 20px; }
.legal-intro { font-size: 16px; color: var(--text-mid); line-height: 1.7; margin-bottom: 8px; padding-bottom: 20px; border-bottom: 1px solid #e2e8f0; }
.legal-doc h2 { font-size: 19px; color: var(--blue-dark); margin: 28px 0 10px; }
.legal-doc p { color: var(--text-mid); line-height: 1.75; margin-bottom: 12px; }
.legal-doc ul { margin: 4px 0 14px; padding-left: 22px; }
.legal-doc li { color: var(--text-mid); line-height: 1.7; margin-bottom: 8px; }
.legal-help { margin-top: 32px; padding: 16px 18px; background: var(--bg-blue-soft); border-radius: var(--radius-md); color: var(--text-mid); font-size: 14.5px; }
.legal-help a { color: var(--blue-mid); font-weight: 700; }

/* Footer legal row */
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; padding: 18px 20px 0; }
.footer-legal a { color: rgba(255, 255, 255, .75); font-size: 13.5px; }
.footer-legal a:hover { color: #fff; }

/* --- Signup consent + opt-in ------------------------------------------------ */
.auth-form label.auth-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; font-weight: 400; color: var(--text-mid); line-height: 1.5; cursor: pointer; margin-bottom: 14px; }
.auth-form label.auth-check input { width: 18px; height: 18px; margin: 1px 0 0; padding: 0; flex-shrink: 0; accent-color: var(--blue-dark); cursor: pointer; }
.auth-consent { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; margin: 2px 0 6px; }
.auth-consent a { color: var(--blue-mid); font-weight: 600; }
