/* =========================================================
   YOHE INTERNATIONAL — Store pages
   Loaded alongside style.css on shop / product / cart /
   checkout / search / about / contact / policy pages.
   ========================================================= */

/* ---------- utility bits ---------- */
.badge-cod {
  display: inline-flex; align-items: center; gap: 8px;
  background: #e7f6ec; color: #1a7f37;
  border: 1px solid #bfe6cb;
  font-size: .8rem; font-weight: 600;
  padding: 7px 14px; border-radius: 999px;
}
.badge-cod i { color: #1a7f37; }
.topbar-cod { color: var(--red-soft); font-weight: 500; }

/* ---------- header search ---------- */
.nav-search { position: relative; }
.nav-search input {
  border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 40px 8px 16px; font-size: 13px; width: 210px;
  background: var(--paper-2);
  transition: width .3s var(--ease), border-color .25s var(--ease);
}
.nav-search input:focus { outline: none; width: 250px; border-color: var(--red); background: #fff; }
.nav-search button {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  border: 0; background: none; color: var(--muted); width: 32px; height: 32px;
  border-radius: 50%; cursor: pointer;
}
.nav-search button:hover { color: var(--red); }
@media (max-width: 991.98px) {
  .nav-search { margin: 10px 0; }
  .nav-search input, .nav-search input:focus { width: 100%; }
}

/* category dropdown in navbar */
.nav-cats .dropdown-menu {
  border: 1px solid var(--line); border-radius: 14px; padding: 8px;
  box-shadow: var(--shadow);
}
.nav-cats .dropdown-item {
  border-radius: 10px; font-size: .9rem; padding: 8px 12px;
  display: flex; align-items: center; gap: 10px;
}
.nav-cats .dropdown-item i { color: var(--red); width: 18px; text-align: center; }
.nav-cats .dropdown-item:hover { background: var(--paper-2); color: var(--red); }

/* ---------- page hero / breadcrumb ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  color: #fff; padding: 54px 0 46px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; width: 300px; height: 300px;
  border: 44px solid rgba(225,27,34,.12); border-radius: 50%;
  right: -120px; top: -120px;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); text-transform: uppercase; margin: 0 0 8px; }
.page-hero p { color: rgba(255,255,255,.7); margin: 0 auto; max-width: 560px; }
.crumbs { font-size: .82rem; color: var(--muted); margin-bottom: 22px; }
.crumbs a:hover { color: var(--red); }
.crumbs span { color: var(--ink); }

/* ---------- shop layout ---------- */
.shop-wrap { padding: 56px 0 90px; }
.shop-grid-2 { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: start; }
@media (max-width: 991.98px) { .shop-grid-2 { grid-template-columns: 1fr; gap: 26px; } }

.cat-side { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 4px; }
.cat-side a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 12px;
  font-size: .92rem; color: var(--ink-2);
  border: 1px solid transparent;
}
.cat-side a i { color: var(--muted); width: 18px; text-align: center; }
.cat-side a span {
  margin-left: auto; font-size: .72rem; color: var(--muted);
  background: var(--paper-2); border-radius: 999px; padding: 1px 9px;
}
.cat-side a:hover { background: var(--paper-2); }
.cat-side a.active { background: var(--red); color: #fff; border-color: var(--red); }
.cat-side a.active i, .cat-side a.active span { color: #fff; }
.cat-side a.active span { background: rgba(255,255,255,.2); }
@media (max-width: 991.98px) {
  .cat-side { position: static; flex-direction: row; flex-wrap: wrap; }
  .cat-side a { flex: 0 0 auto; }
  .cat-side a span { display: none; }
}

.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; margin-bottom: 24px; flex-wrap: wrap;
}
.shop-toolbar .count { color: var(--muted); font-size: .9rem; }
.shop-toolbar select {
  border: 1px solid var(--line); border-radius: 10px;
  padding: 8px 34px 8px 12px; font-size: .88rem; background: #fff; cursor: pointer;
}
.shop-head h1 { font-size: 1.9rem; text-transform: uppercase; margin: 0 0 4px; }
.shop-head p { color: var(--muted); margin: 0 0 26px; max-width: 620px; }

.product-card .product-media { display: block; }
.product-body h3 a:hover { color: var(--red); }

/* ---------- coming soon shell ---------- */
.coming-soon {
  text-align: center; padding: 70px 24px;
  border: 2px dashed var(--line); border-radius: var(--radius);
  background: var(--paper-2);
}
.coming-soon i { font-size: 44px; color: var(--red); margin-bottom: 14px; }
.coming-soon h2 { text-transform: uppercase; margin-bottom: 8px; }
.coming-soon p { color: var(--muted); max-width: 460px; margin: 0 auto 20px; }

/* ---------- empty states ---------- */
.empty-state { text-align: center; padding: 80px 24px; }
.empty-state.small { padding: 40px 16px; }
.empty-state i { font-size: 48px; color: var(--line); margin-bottom: 16px; }
.empty-state h2 { text-transform: uppercase; margin-bottom: 8px; }
.empty-state p { color: var(--muted); margin-bottom: 20px; }

/* ---------- product detail ---------- */
.pd-wrap { padding: 40px 0 90px; }
.pd-gallery { position: sticky; top: 96px; }
.pd-stage {
  position: relative; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; background: var(--paper-2);
}
.pd-stage img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.pd-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.pd-thumb {
  width: 72px; height: 72px; border-radius: 10px; overflow: hidden;
  border: 2px solid var(--line); background: none; padding: 0; cursor: pointer;
}
.pd-thumb.active { border-color: var(--red); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 991.98px) { .pd-gallery { position: static; } }

.pd-brand { text-transform: uppercase; letter-spacing: 3px; font-size: .72rem; color: var(--red); font-weight: 600; }
.pd-name { font-size: 2rem; text-transform: uppercase; margin: 4px 0 4px; }
.pd-type { color: var(--muted); margin-bottom: 16px; }
.pd-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.pd-price .price { font-size: 1.9rem; }
.pd-price .price-old { font-size: 1.05rem; }
.pd-save { font-size: .78rem; font-weight: 600; color: #1a7f37; background: #e7f6ec; padding: 3px 10px; border-radius: 999px; }
.pd-desc { color: var(--ink-2); margin: 16px 0 22px; }

.pd-buy { border-top: 1px solid var(--line); padding-top: 22px; }
.pd-field { margin-bottom: 20px; }
.pd-field > label {
  display: block; font-size: .78rem; text-transform: uppercase;
  letter-spacing: 1px; font-weight: 600; margin-bottom: 10px; color: var(--ink);
}
.pd-swatches, .pd-sizes { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch input, .size-btn input { position: absolute; opacity: 0; pointer-events: none; }
.swatch span {
  display: inline-block; padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line); font-size: .85rem; cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.swatch input:checked + span { border-color: var(--red); background: var(--red); color: #fff; }
.size-btn span {
  display: grid; place-items: center; min-width: 46px; height: 44px; padding: 0 10px;
  border: 1px solid var(--line); border-radius: 10px; font-weight: 600;
  font-family: "Oswald", sans-serif; cursor: pointer;
}
.size-btn input:checked + span { border-color: var(--red); background: var(--red); color: #fff; }
.pd-sizelink { display: inline-block; margin-top: 10px; font-size: .8rem; color: var(--red); }
.pd-sizelink:hover { text-decoration: underline; }

.qty.qty-lg { border-radius: 12px; }
.qty.qty-lg button { width: 40px; height: 44px; font-size: 18px; }
.qty.qty-lg input {
  width: 54px; height: 44px; text-align: center; border: 0;
  font-weight: 600; font-family: "Oswald", sans-serif; font-size: 1rem;
  -moz-appearance: textfield;
}
.qty.qty-lg input::-webkit-outer-spin-button,
.qty.qty-lg input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pd-qtyrow { display: flex; align-items: center; gap: 18px; }
.pd-qtyrow > label { margin-bottom: 0; }

.pd-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.pd-cta .btn { flex: 1; min-width: 160px; }
.pd-perks { list-style: none; padding: 20px 0 0; margin: 22px 0 0; border-top: 1px solid var(--line); }
.pd-perks li { display: flex; align-items: center; gap: 12px; color: var(--ink-2); font-size: .9rem; margin-bottom: 10px; }
.pd-perks i { color: var(--red); width: 18px; text-align: center; }

.pd-specs { margin-top: 64px; }
.pd-specs h2, .pd-related h2 { text-transform: uppercase; font-size: 1.4rem; margin-bottom: 18px; }
.pd-specs table { width: 100%; border-collapse: collapse; max-width: 640px; }
.pd-specs th, .pd-specs td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); font-size: .92rem; }
.pd-specs th { width: 200px; color: var(--muted); font-weight: 500; }
.pd-related { margin-top: 64px; }

/* ---------- cart page ---------- */
.cart-page-wrap { padding: 56px 0 90px; }
.cart-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
@media (max-width: 991.98px) { .cart-layout { grid-template-columns: 1fr; } }
.cart-row {
  display: grid; grid-template-columns: 90px 1fr auto auto auto;
  gap: 18px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line);
}
.cart-row img { width: 90px; height: 90px; border-radius: 12px; object-fit: cover; background: var(--paper-2); }
.cr-main h3 { font-size: 1.05rem; text-transform: uppercase; margin: 0 0 2px; }
.cr-main span { font-size: .8rem; color: var(--muted); display: block; margin-bottom: 6px; }
.cr-remove { border: 0; background: none; color: var(--muted); font-size: .78rem; cursor: pointer; padding: 0; }
.cr-remove:hover { color: var(--red); }
.cr-price { color: var(--muted); font-size: .9rem; }
.cr-sub { font-family: "Oswald", sans-serif; font-weight: 600; font-size: 1.1rem; color: var(--ink); min-width: 84px; text-align: right; }
@media (max-width: 575.98px) {
  .cart-row { grid-template-columns: 70px 1fr auto; }
  .cart-row img { width: 70px; height: 70px; }
  .cr-price { display: none; }
  .cr-sub { grid-column: 2 / 4; text-align: left; }
}
.cart-aside, .co-aside {
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px; position: sticky; top: 96px;
}
.cart-aside h2, .co-aside h2 { text-transform: uppercase; font-size: 1.2rem; margin: 0 0 16px; }
.sum-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; font-size: .92rem; }
.sum-row.muted { color: var(--muted); }
.sum-row.save { color: #1a7f37; }
.sum-row.grand {
  border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px;
  font-family: "Oswald", sans-serif; text-transform: uppercase;
}
.sum-row.grand strong { font-size: 1.4rem; color: var(--red); }
.cart-aside .btn, .co-aside .btn { margin-top: 14px; }

/* ---------- checkout ---------- */
.checkout-wrap { padding: 56px 0 90px; }
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
@media (max-width: 991.98px) { .checkout-grid { grid-template-columns: 1fr; } }
.co-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; margin-bottom: 24px;
}
.co-card h2 { font-size: 1.15rem; text-transform: uppercase; margin: 0 0 18px; }
.co-card .form-label { font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.co-card .form-control, .co-card .form-select {
  border-radius: 10px; border-color: var(--line); padding: 11px 14px;
}
.co-card .form-control:focus, .co-card .form-select:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(225,27,34,.12);
}
.pay-option {
  display: flex; gap: 14px; align-items: flex-start;
  border: 2px solid var(--red); background: #fff5f5;
  border-radius: 12px; padding: 16px;
}
.pay-option i { color: var(--red); font-size: 20px; margin-top: 2px; }
.pay-option h3 { font-size: .95rem; text-transform: uppercase; margin: 0 0 3px; }
.pay-option p { margin: 0; font-size: .84rem; color: var(--muted); }

.co-lines { list-style: none; padding: 0; margin: 0 0 14px; }
.co-lines li { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); }
.co-lines img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; background: var(--paper-2); }
.co-nm { display: block; font-size: .88rem; font-weight: 600; }
.co-mt { display: block; font-size: .76rem; color: var(--muted); }
.co-amt { margin-left: auto; font-weight: 600; font-size: .9rem; }
.co-codline {
  margin-top: 14px; font-size: .82rem; color: #1a7f37;
  background: #e7f6ec; border-radius: 10px; padding: 10px 12px;
}
.co-codline i { margin-right: 6px; }

/* ---------- order success ---------- */
.success-wrap { padding: 80px 0 100px; }
.success-box { max-width: 560px; margin: 0 auto; text-align: center; }
.success-box .tick {
  width: 84px; height: 84px; border-radius: 50%;
  background: #e7f6ec; color: #1a7f37;
  display: grid; place-items: center; font-size: 38px; margin: 0 auto 22px;
}
.success-box h1 { text-transform: uppercase; margin-bottom: 8px; }
.success-box .ref {
  display: inline-block; margin: 12px 0 20px;
  font-family: "Oswald", sans-serif; letter-spacing: 2px;
  background: var(--paper-2); border: 1px dashed var(--line);
  border-radius: 10px; padding: 8px 18px; font-size: 1.1rem;
}
.order-detail {
  text-align: left; background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; margin: 24px 0 28px;
}

/* ---------- prose / policy / about ---------- */
.prose-wrap { padding: 56px 0 90px; }
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.4rem; text-transform: uppercase; margin: 34px 0 12px; }
.prose h3 { font-size: 1.05rem; margin: 22px 0 8px; }
.prose p, .prose li { color: var(--ink-2); }
.prose ul { padding-left: 20px; margin-bottom: 16px; }
.prose li { margin-bottom: 6px; }
.prose .updated { color: var(--muted); font-size: .85rem; margin-bottom: 24px; }
.prose table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; font-size: .9rem; }
.prose th { background: var(--paper-2); }

.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin: 30px 0; }
.about-values .feature-card { text-align: left; }

/* ---------- contact form ---------- */
.contact-form .form-control {
  border-radius: 10px; border-color: var(--line); padding: 12px 14px; margin-bottom: 14px;
}
.contact-form .form-control:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(225,27,34,.12); }

/* ---------- category cards as links (home) ---------- */
a.cat-card { color: inherit; display: block; }
a.cat-card:hover { color: inherit; }
.cat-card .cat-go {
  font-family: "Oswald", sans-serif; text-transform: uppercase;
  letter-spacing: 1px; font-size: 13px; color: var(--red);
  display: inline-flex; align-items: center;
}
/* neutralise the big icon-tile styling on the small "Shop >" arrow
   WITHOUT touching font-family/weight (Font Awesome needs those) */
.cat-card .cat-go i {
  font-size: 12px;
  color: inherit;
  background: none;
  width: auto; height: auto;
  min-width: 0;
  display: inline-block;
  place-items: initial;
  border-radius: 0;
  box-shadow: none;
  margin: 0 0 0 6px;
  transition: margin .25s var(--ease);
}
.cat-card:hover .cat-go i { margin-left: 12px; }

/* ---------- Shop menu: open on hover (desktop only) ---------- */
@media (min-width: 992px) {
  .main-nav .nav-cats.dropdown { position: relative; }

  /* menu is always in the DOM flow-free; visibility toggles on hover so the
     menu itself stays a hover target (no flicker) */
  .main-nav .nav-cats > .dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    margin: 14px 0 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s var(--ease), transform .18s var(--ease), visibility 0s linear .18s;
  }
  /* invisible bridge across the gap between link and menu */
  .main-nav .nav-cats > .dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: -16px;
    height: 16px;
  }
  .main-nav .nav-cats:hover > .dropdown-menu,
  .main-nav .nav-cats:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .18s var(--ease), transform .18s var(--ease), visibility 0s;
  }
}

/* =========================================================
   VIVID â€” brighter header + colourful home page
   ========================================================= */
:root {
  --amber: #ff9f1c;
  --blue:  #2f7df6;
  --teal:  #11b3a6;
  --grape: #7a4bd0;
  --lime:  #24b563;
  --pink:  #ff4d8d;
}

/* ---------- Top bar: red gradient, brighter ---------- */
.topbar {
  background: linear-gradient(90deg, var(--red-dark), var(--red) 45%, #ff5a5f 100%);
  color: #fff;
  border-bottom: 2px solid rgba(255,255,255,.15);
}
.topbar a { color: #fff; }
.topbar a:hover { color: #ffe08a; }
.topbar-left i, .topbar-right i { color: #ffe08a; }
.topbar-right a { background: rgba(255,255,255,.16); color: #fff; }
.topbar-right a:hover { background: #fff; color: var(--red); }
.topbar-cod { color: #fff; font-weight: 600; }
.topbar-cod i { color: #ffe08a; }

/* ---------- Navbar: strong red underline + always-on shadow ---------- */
.main-nav {
  background: linear-gradient(180deg, #ffffff 0%, #fff6f6 100%);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 10px 30px -16px rgba(225,27,34,.45);
}
.main-nav.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 14px 34px -14px rgba(225,27,34,.5);
}
.main-nav .nav-link { font-weight: 600; color: var(--ink); }
.main-nav .nav-link.active { color: var(--red); }

/* ---------- Logo: double ring + glow + pulse ---------- */
.navbar-brand img {
  width: 54px; height: 54px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px var(--red), 0 10px 22px -6px rgba(225,27,34,.75);
  animation: logoPulse 2.6s var(--ease) infinite;
}
@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--red), 0 10px 22px -6px rgba(225,27,34,.55); }
  50%      { box-shadow: 0 0 0 5px rgba(225,27,34,.35), 0 10px 26px -4px rgba(225,27,34,.85); }
}
.brand-text {
  font-size: 25px;
  background: linear-gradient(90deg, var(--red), #ff6a3d);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-text small {
  -webkit-text-fill-color: var(--ink-2);
  color: var(--ink-2);
  letter-spacing: 5px;
  font-weight: 600;
}

/* ---------- Cart button: solid gradient ---------- */
.btn-cart {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 24px -12px rgba(225,27,34,.8);
}
.btn-cart:hover { color: #fff; border-color: transparent; transform: translateY(-2px); filter: brightness(1.05); }
.btn-cart .cart-count { background: #fff; color: var(--red); }
.btn-cart .cart-count.has { background: var(--amber); color: #3a2400; }

/* ---------- HOME hero: warmer, more colour ---------- */
body[data-page="home"] .hero {
  background:
    radial-gradient(720px 420px at 88% 6%, rgba(255,159,28,.16), transparent 70%),
    radial-gradient(760px 460px at 10% 6%, #ffffff 0%, #fff8f4 45%, #fff0f1 100%),
    linear-gradient(180deg, #ffffff, #fff6f4);
}
body[data-page="home"] .blob-1 {
  width: 480px; height: 480px; right: -150px; top: -140px;
  opacity: .7;
}
body[data-page="home"] .blob-2 {
  background: radial-gradient(circle at 40% 40%, rgba(255,159,28,.5), transparent 70%);
}
body[data-page="home"] .hero-grid { opacity: .7; }
body[data-page="home"] .hero-badge {
  background: linear-gradient(135deg, var(--red), #ff7a45);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(225,27,34,.7);
}
body[data-page="home"] .hero-badge i { color: #fff; }
body[data-page="home"] .hero h1 .txt-accent { text-shadow: 0 8px 24px rgba(225,27,34,.28); }
body[data-page="home"] .hero h1 .txt-outline { -webkit-text-stroke: 2px var(--red); }

/* secondary hero button must read on the light background */
body[data-page="home"] .hero .btn-ghost {
  color: var(--red);
  border-color: var(--red);
  background: rgba(255,255,255,.7);
  font-weight: 600;
}
body[data-page="home"] .hero .btn-ghost:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

body[data-page="home"] .hero-stats { gap: 14px; }
body[data-page="home"] .hero-stats .stat {
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px -18px rgba(20,22,26,.35);
  border-bottom: 3px solid var(--red);
}
body[data-page="home"] .hero-stats .stat:nth-child(2) { border-color: var(--amber); }
body[data-page="home"] .hero-stats .stat:nth-child(3) { border-color: var(--blue); }
body[data-page="home"] .hero-stats .stat:nth-child(4) { border-color: var(--teal); }
body[data-page="home"] .hero-stats .num { font-size: 2rem; }
body[data-page="home"] .float-tag i { color: var(--amber); }

/* ---------- Marquee: multi-stop gradient ---------- */
body[data-page="home"] .marquee {
  background: linear-gradient(90deg, var(--red-dark), var(--red) 30%, #ff7a45 60%, var(--red) 100%);
}
body[data-page="home"] .marquee-track i { color: #ffe08a; opacity: 1; }

/* ---------- Categories: colourful cards ---------- */
body[data-page="home"] #categories { background: linear-gradient(180deg, #ffffff, #fff4ef); }
body[data-page="home"] .cat-card {
  border-top: 4px solid var(--red);
  box-shadow: 0 16px 34px -22px rgba(20,22,26,.3);
}
body[data-page="home"] .cat-card:hover { box-shadow: 0 26px 48px -20px rgba(225,27,34,.4); }
body[data-page="home"] .cat-card > i { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
body[data-page="home"] .cat-card .cat-go,
body[data-page="home"] .cat-card .cat-go i { color: var(--red); }

body[data-page="home"] #categories [class*="col-"]:nth-child(6n+2) .cat-card { border-top-color: var(--amber); }
body[data-page="home"] #categories [class*="col-"]:nth-child(6n+2) .cat-card > i { background: linear-gradient(135deg, var(--amber), #f57c00); }
body[data-page="home"] #categories [class*="col-"]:nth-child(6n+2) .cat-card .cat-go,
body[data-page="home"] #categories [class*="col-"]:nth-child(6n+2) .cat-card .cat-go i { color: #d97706; }

body[data-page="home"] #categories [class*="col-"]:nth-child(6n+3) .cat-card { border-top-color: var(--blue); }
body[data-page="home"] #categories [class*="col-"]:nth-child(6n+3) .cat-card > i { background: linear-gradient(135deg, var(--blue), #1b5fd0); }
body[data-page="home"] #categories [class*="col-"]:nth-child(6n+3) .cat-card .cat-go,
body[data-page="home"] #categories [class*="col-"]:nth-child(6n+3) .cat-card .cat-go i { color: var(--blue); }

body[data-page="home"] #categories [class*="col-"]:nth-child(6n+4) .cat-card { border-top-color: var(--teal); }
body[data-page="home"] #categories [class*="col-"]:nth-child(6n+4) .cat-card > i { background: linear-gradient(135deg, var(--teal), #0a8f85); }
body[data-page="home"] #categories [class*="col-"]:nth-child(6n+4) .cat-card .cat-go,
body[data-page="home"] #categories [class*="col-"]:nth-child(6n+4) .cat-card .cat-go i { color: #0a8f85; }

body[data-page="home"] #categories [class*="col-"]:nth-child(6n+5) .cat-card { border-top-color: var(--grape); }
body[data-page="home"] #categories [class*="col-"]:nth-child(6n+5) .cat-card > i { background: linear-gradient(135deg, var(--grape), #5f34b0); }
body[data-page="home"] #categories [class*="col-"]:nth-child(6n+5) .cat-card .cat-go,
body[data-page="home"] #categories [class*="col-"]:nth-child(6n+5) .cat-card .cat-go i { color: var(--grape); }

body[data-page="home"] #categories [class*="col-"]:nth-child(6n+6) .cat-card { border-top-color: var(--lime); }
body[data-page="home"] #categories [class*="col-"]:nth-child(6n+6) .cat-card > i { background: linear-gradient(135deg, var(--lime), #178a4a); }
body[data-page="home"] #categories [class*="col-"]:nth-child(6n+6) .cat-card .cat-go,
body[data-page="home"] #categories [class*="col-"]:nth-child(6n+6) .cat-card .cat-go i { color: #178a4a; }

/* ---------- Featured / alt section: soft red tint ---------- */
body[data-page="home"] .section-alt { background: linear-gradient(180deg, #fff6f2, #fdeef0); }

/* ---------- Why: colourful feature icons ---------- */
body[data-page="home"] #why .feature-card { border-top: 4px solid var(--red); }
body[data-page="home"] #why .feature-card i {
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 12px 24px -10px rgba(225,27,34,.6);
}
body[data-page="home"] #why .row > div:nth-child(2) .feature-card { border-top-color: var(--amber); }
body[data-page="home"] #why .row > div:nth-child(2) .feature-card i { background: linear-gradient(135deg, var(--amber), #f57c00); box-shadow: 0 12px 24px -10px rgba(255,159,28,.6); }
body[data-page="home"] #why .row > div:nth-child(3) .feature-card { border-top-color: var(--blue); }
body[data-page="home"] #why .row > div:nth-child(3) .feature-card i { background: linear-gradient(135deg, var(--blue), #1b5fd0); box-shadow: 0 12px 24px -10px rgba(47,125,246,.6); }
body[data-page="home"] #why .row > div:nth-child(4) .feature-card { border-top-color: var(--teal); }
body[data-page="home"] #why .row > div:nth-child(4) .feature-card i { background: linear-gradient(135deg, var(--teal), #0a8f85); box-shadow: 0 12px 24px -10px rgba(17,179,166,.6); }

/* ---------- Size chart accent ---------- */
body[data-page="home"] .sizechart-frame { border-color: var(--red); }
body[data-page="home"] .check-list i { background: linear-gradient(135deg, var(--red), var(--amber)); }

/* ---------- Section headings: gradient accent word ---------- */
body[data-page="home"] .section-head h2 .txt-accent {
  background: linear-gradient(90deg, var(--red), #ff7a45);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* =========================================================
   NEW ARRIVALS carousel (home, after hero)
   ========================================================= */
.na-section {
  padding: 74px 0 40px;
  background: linear-gradient(180deg, #fff6f4 0%, #ffffff 100%);
}
.na-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.na-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}
.na-head h2 .txt-accent {
  background: linear-gradient(90deg, var(--red), #ff7a45);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.na-nav { display: flex; gap: 10px; }
.na-nav button {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  display: grid; place-items: center;
  font-size: 15px;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.na-nav button:hover {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

.na-carousel { position: relative; }
.na-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.na-track::-webkit-scrollbar { display: none; }
.na-item {
  flex: 0 0 calc((100% - 24px * 3) / 4);
  scroll-snap-align: start;
}
.na-item .product-card { height: 100%; }

@media (max-width: 1199.98px) { .na-item { flex-basis: calc((100% - 24px * 2) / 3); } }
@media (max-width: 900px)     { .na-item { flex-basis: calc((100% - 24px) / 2); } }
@media (max-width: 560px)     { .na-item { flex-basis: 82%; } }


/* =========================================================
   QUICK-VIEW modal (grid "Add" -> choose colour / size / qty)
   ========================================================= */
.qv-content {
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.qv-close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 5;
  background-color: #fff;      /* keep Bootstrap's X background-image */
  border-radius: 50%;
  width: 40px; height: 40px;
  padding: 0;
  background-position: center;
  background-size: 14px;
  opacity: 1;
  box-shadow: var(--shadow);
}
.qv-close:hover { background-color: #fff; opacity: 1; transform: scale(1.06); }
.qv-grid { display: grid; grid-template-columns: 1fr 1fr; }
.qv-media { background: var(--paper-2); padding: 26px; display: flex; flex-direction: column; }
.qv-content { max-height: 92vh; }
.qv-stage { position: relative; border-radius: 14px; overflow: hidden; }
.qv-stage img { width: 100%; aspect-ratio: 1 / 1; max-height: 60vh; object-fit: cover; display: block; }
.qv-thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.qv-thumb {
  width: 56px; height: 56px;
  border: 2px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: none; padding: 0; cursor: pointer;
}
.qv-thumb.active { border-color: var(--red); }
.qv-thumb img { width: 100%; height: 100%; object-fit: cover; }

.qv-info { padding: 34px 32px; overflow-y: auto; max-height: 84vh; }
.qv-name { font-size: 1.6rem; text-transform: uppercase; margin: 4px 0; }
.qv-type { color: var(--muted); margin-bottom: 12px; }
.qv-info .pd-price { margin: 10px 0 12px; }
.qv-info .badge-cod { margin-bottom: 8px; }
.qv-desc { color: var(--ink-2); font-size: .9rem; margin: 14px 0 20px; }
.qv-info #qvForm { border-top: 1px solid var(--line); padding-top: 20px; }
.qv-full { display: block; text-align: center; margin-top: 14px; font-size: .85rem; color: var(--red); font-weight: 600; }
.qv-full:hover { text-decoration: underline; }

@media (max-width: 767.98px) {
  .qv-grid { grid-template-columns: 1fr; }
  .qv-media { padding: 18px; }
  .qv-info { max-height: none; padding: 24px 20px; }
}


/* =========================================================
   SIZE-CHART modal
   ========================================================= */
.sc-content {
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.sc-close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 5;
  background-color: #fff;      /* keep Bootstrap's X background-image */
  border-radius: 50%;
  width: 40px; height: 40px;
  padding: 0;
  background-position: center;
  background-size: 14px;
  opacity: 1;
  box-shadow: var(--shadow);
}
.sc-close:hover { background-color: #fff; opacity: 1; transform: scale(1.06); }
.sc-body { padding: 28px; text-align: center; }
.sc-body h3 {
  text-transform: uppercase;
  font-size: 1.2rem;
  margin: 0 0 16px;
}
.sc-body h3 i { color: var(--red); margin-right: 8px; }
.sc-body img {
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.sc-body p {
  color: var(--muted);
  font-size: .88rem;
  margin: 16px 0 0;
}
.sc-body p a { color: var(--red); font-weight: 600; }


/* ===================================================================
   COMPARE (guest) — card toggle, nav pill, floating tray, table
   =================================================================== */
.product-card { position: relative; }

.pc-compare {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(255,255,255,.94);
  color: var(--ink-2); cursor: pointer; display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.12); transition: transform .15s, background .15s, color .15s;
}
.pc-compare:hover { transform: scale(1.08); color: var(--red); }
.pc-compare.in { background: var(--red); border-color: var(--red); color: #fff; }

.pd-compare { margin-top: 12px; display: inline-flex; align-items: center; gap: 8px; }
.pd-compare.in { background: var(--red); border-color: var(--red); color: #fff; }

.btn-compare {
  position: relative; display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
}
.btn-compare:hover { color: var(--red); border-color: var(--red); }
.btn-compare .cart-count { position: absolute; top: -6px; right: -6px; }
.btn-compare .cart-count:not(.has) { display: none; }

/* floating tray */
.compare-tray {
  position: fixed; left: 50%; bottom: 20px; transform: translate(-50%, 140%);
  z-index: 1050; display: flex; align-items: center; gap: 16px;
  background: #14171c; color: #fff; padding: 12px 16px; border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35); transition: transform .28s ease;
  max-width: calc(100vw - 32px);
}
.compare-tray.show { transform: translate(-50%, 0); }
.compare-tray .ct-thumbs { display: flex; gap: 8px; }
.compare-tray .ct-thumb {
  position: relative; width: 46px; height: 46px; border-radius: 10px; overflow: hidden;
  border: 0; padding: 0; cursor: pointer; background: #222;
}
.compare-tray .ct-thumb img { width: 100%; height: 100%; object-fit: cover; }
.compare-tray .ct-x {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(225,27,34,.85); color: #fff; opacity: 0; transition: opacity .15s;
}
.compare-tray .ct-thumb:hover .ct-x { opacity: 1; }
.compare-tray .ct-actions { display: flex; gap: 8px; white-space: nowrap; }

/* compare table */
.compare-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.compare-table th, .compare-table td {
  border-bottom: 1px solid var(--line); border-right: 1px solid var(--line);
  padding: 14px 16px; text-align: left; vertical-align: middle; font-size: .92rem;
}
.compare-table thead th { background: var(--paper-2); vertical-align: top; position: relative; }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table th:last-child, .compare-table td:last-child { border-right: 0; }
.compare-table .cmp-row-label {
  background: var(--paper-2); font-weight: 700; text-transform: uppercase;
  font-size: .72rem; letter-spacing: .5px; color: var(--muted); width: 130px;
}
.compare-table .cmp-media { display: block; width: 100%; max-width: 150px; border-radius: 10px; overflow: hidden; margin-bottom: 8px; }
.compare-table .cmp-media img { width: 100%; height: 110px; object-fit: cover; display: block; }
.compare-table .cmp-brand { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.compare-table .cmp-name { display: block; font-weight: 700; color: var(--ink); }
.compare-table .cmp-name:hover { color: var(--red); }
.compare-table .cmp-price { font-weight: 800; color: var(--red); }
.compare-table .cmp-old { color: var(--muted); font-weight: 500; margin-left: 4px; }
.compare-table .cmp-remove {
  position: absolute; top: 8px; right: 8px; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--muted); cursor: pointer;
}
.compare-table .cmp-remove:hover { background: var(--red); border-color: var(--red); color: #fff; }
.compare-foot { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }

@media (max-width: 560px) {
  .compare-tray { left: 16px; right: 16px; transform: translateY(160%); }
  .compare-tray.show { transform: translateY(0); }
}
