:root {
  --orange: #e8650d;
  --orange-dark: #b54708;
  --orange-hover: #c95408;
  --orange-soft: #fdf1e8;
  --ink: #1d1d1f;
  --grey: #6e6e73;
  --grey-light: #86868b;
  --bg: #ffffff;
  --band: #f5f5f7;
  --line: #e8e8ed;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 4px 24px rgba(0, 0, 0, .06);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, .10);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Manrope', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.022em
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px
}

.eyebrow {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-dark)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: inherit;
  font-weight: 700;
  font-size: .92rem;
  padding: .8rem 1.7rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all .25s cubic-bezier(.4, 0, .2, 1)
}

.btn-primary {
  background: var(--orange);
  color: #fff
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(232, 101, 13, .6)
}

.btn-dark {
  background: var(--ink);
  color: #fff
}

.btn-dark:hover {
  background: #000;
  transform: translateY(-1px)
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid #d2d2d7
}

.btn-ghost:hover {
  border-color: var(--ink)
}

.btn-block {
  width: 100%
}

.link {
  color: var(--orange-dark);
  font-weight: 700;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap .2s
}

.link:hover {
  gap: .65rem
}

.link .ic {
  width: 16px;
  height: 16px
}

.ic {
  display: inline-flex;
  flex-shrink: 0
}

.ic svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round
}

section {
  padding: 20px 0
}

section.band {
  background: var(--band);
  padding: 32px 0px
}

.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 21px;
  gap: 20px;
  flex-wrap: wrap
}

.sec-head h2 {
  font-size: 16px;
  font-weight: 100;
  letter-spacing: 8px
}

.sec-head p {
  font-size: .96rem;
  margin-top: .4rem;
  color: var(--grey)
}

/* HERO SLIDER */
.hero-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 345px;
  display: flex;
  align-items: center
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease;
  background-size: cover;
  background-position: center
}

.hero-slide.on {
  opacity: 1;
  visibility: visible;
  z-index: 1
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, .05))
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 48px;
  color: #fff;
  max-width: 560px
}

.hero-content .eyebrow {
  color: #ffb27a
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 12px 0 16px
}

.hero-content p {
  font-size: 1.05rem;
  opacity: .92;
  margin-bottom: 26px
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: .2s
}

.hero-dot.on {
  background: #fff;
  width: 22px;
  border-radius: 5px
}

/* SPLIT HERO (main slider + two side banners) */
.hero-split {
  display: grid;
  grid-template-columns: 1.85fr 1fr;
  gap: 14px;
  height: 400px
}

.hero-split-left {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%
}

.hero-split-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%
}

.side-banner {
  flex: 1;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 0
}

.side-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, .1))
}

.side-banner-content {
  position: relative;
  z-index: 1;
  padding: 22px 24px;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.side-banner-content .eyebrow {
  color: #ffb27a;
  font-size: .7rem
}

.side-banner-content h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 4px 0 10px;
  line-height: 1.2
}

.side-banner-content .btn {
  padding: .5rem 1.1rem;
  font-size: .8rem;
  align-self: flex-start
}

@media(max-width:860px) {
  .hero-split {
    grid-template-columns: 1fr;
    height: auto
  }

  .hero-split-left {
    height: 300px
  }

  .hero-split-right {
    flex-direction: row
  }

  .side-banner {
    height: 180px
  }
}

@media(max-width:560px) {
  .hero-split-right {
    flex-direction: column
  }

  .side-banner {
    height: 160px
  }
}

/* CATEGORY BADGES */
.cat-badges-wrap {
  position: relative
}

.cat-badges {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 4px 2px 10px;
  scrollbar-width: none
}

.cat-badges::-webkit-scrollbar {
  display: none
}

.cat-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  width: 118px;
  text-align: center
}

.cb-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--band);
  flex-shrink: 0
}

.cb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.cb-label {
  font-size: .86rem;
  font-weight: 700
}

.cat-scroll-btn {
  position: absolute;
  right: -6px;
  top: 42px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .2s
}

.cat-scroll-btn:hover {
  background: var(--band)
}

.cat-scroll-btn .ic {
  width: 16px;
  height: 16px
}

@media(max-width:560px) {
  .cat-badge {
    width: 92px
  }

  .cat-scroll-btn {
    display: none
  }
}

/* announcement */
.announce {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  padding: .6rem 1rem;
  letter-spacing: .02em;
  position: relative
}

.announce b {
  color: #ff9650
}

.announce .x {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, .7);
  cursor: pointer;
  width: 24px;
  height: 24px
}

.announce .x .ic {
  width: 15px;
  height: 15px
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, .06)
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 18px
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.04em;
  white-space: nowrap
}

.logo b {
  color: var(--orange);
  font-weight: 800
}

.nav-links {
  display: flex;
  gap: 30px;
  font-size: .86rem;
  font-weight: 700
}

.nav-links a {
  color: var(--ink);
  opacity: .78;
  transition: opacity .2s;
  position: relative;
  padding: 4px 0
}

.nav-links a:hover {
  opacity: 1
}

.nav-links a.sale {
  color: var(--orange-dark);
  opacity: 1
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 6px
}

.iconbtn {
  background: none;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  position: relative;
  transition: background .2s
}

.iconbtn:hover {
  background: var(--band)
}

.iconbtn .ic {
  width: 21px;
  height: 21px
}

.iconbtn .count {
  position: absolute;
  top: 5px;
  right: 5px;
  background: var(--orange);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px
}

.nav-toggle {
  display: none
}

/* search expanding bar */
.searchbar {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  border-bottom: 1px solid transparent
}

.searchbar.open {
  max-height: 80px;
  border-color: rgba(0, 0, 0, .06)
}

.searchbar .inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0
}

.searchbar .ic {
  width: 19px;
  height: 19px;
  color: var(--grey)
}

.searchbar input {
  flex: 1;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 1rem;
  background: none;
  color: var(--ink)
}

/* drawer (mobile nav) */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none
}

.drawer .scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  opacity: 0;
  transition: opacity .3s
}

.drawer .panel {
  position: absolute;
  top: 0;
  bottom: 0;
  background: #fff;
  box-shadow: -12px 0 40px rgba(0, 0, 0, .15);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column
}

.drawer.left .panel {
  left: 0;
  width: min(320px, 84vw);
  transform: translateX(-100%)
}

.drawer.right .panel {
  right: 0;
  width: min(400px, 92vw);
  transform: translateX(100%)
}

.drawer.open {
  pointer-events: auto
}

.drawer.open .scrim {
  opacity: 1
}

.drawer.open .panel {
  transform: none
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line)
}

.drawer-head b {
  font-size: 1.05rem;
  font-weight: 800
}

.drawer-close {
  background: var(--band);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center
}

.drawer-close .ic {
  width: 17px;
  height: 17px
}

.drawer-links {
  display: grid;
  gap: 2px;
  padding: 14px
}

.drawer-links a {
  padding: 13px 14px;
  border-radius: 11px;
  font-weight: 700;
  font-size: 1rem;
  transition: background .2s
}

.drawer-links a:hover {
  background: var(--band)
}

/* CART DRAWER */
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px
}

.ship-bar {
  background: var(--band);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 18px;
  font-size: .8rem;
  color: var(--grey)
}

.ship-bar b {
  color: var(--ink)
}

.ship-track {
  height: 6px;
  background: #e0e0e6;
  border-radius: 999px;
  margin-top: 8px;
  overflow: hidden
}

.ship-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 999px;
  width: 0;
  transition: width .4s
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line)
}

.cart-item img {
  width: 74px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  background: #e9ecef;
  flex-shrink: 0
}

.cart-item .ci-main {
  flex: 1;
  min-width: 0
}

.cart-item b {
  font-size: .9rem;
  font-weight: 700;
  display: block
}

.cart-item .ci-opt {
  font-size: .76rem;
  color: var(--grey-light);
  margin-bottom: 8px
}

.cart-item .ci-row {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden
}

.qty button {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.qty button .ic {
  width: 14px;
  height: 14px
}

.qty button:hover {
  background: var(--band)
}

.qty span {
  min-width: 32px;
  text-align: center;
  font-size: .84rem;
  font-weight: 700
}

.buy-row .qty span {
  min-width: 36px
}

.cart-item .price {
  font-weight: 800;
  font-size: .9rem
}

.ci-remove {
  background: none;
  border: none;
  color: var(--grey-light);
  font-size: .74rem;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 4px
}

.ci-remove:hover {
  color: var(--orange-dark)
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--grey)
}

.cart-empty .ic {
  width: 46px;
  height: 46px;
  color: var(--grey-light);
  margin: 0 auto 16px
}

.cart-foot {
  border-top: 1px solid var(--line);
  padding: 20px 22px
}

.cart-foot .totals {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: .88rem;
  color: var(--grey)
}

.cart-foot .totals.grand {
  color: var(--ink);
  font-weight: 800;
  font-size: 1.05rem;
  margin: 10px 0 16px
}

.cart-foot .note {
  font-size: .74rem;
  color: var(--grey-light);
  text-align: center;
  margin-top: 10px
}

/* PRODUCT CARD */
.prod {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  position: relative
}

.prod:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover)
}

.prod .ph {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #e9ecef
}

.prod .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .4s, transform .6s
}

.prod .ph img.alt {
  position: absolute;
  inset: 0;
  opacity: 0
}

.prod:hover .ph img.main {
  opacity: 0
}

.prod:hover .ph img.alt {
  opacity: 1;
  transform: scale(1.04)
}

.prod .badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2
}

.prod .badge {
  font-size: .66rem;
  font-weight: 800;
  padding: .28rem .7rem;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase
}

.prod .badge.new {
  background: var(--ink);
  color: #fff
}

.prod .badge.sale {
  background: var(--orange);
  color: #fff
}

.wish {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s
}

.wish .ic {
  width: 18px;
  height: 18px;
  color: var(--ink)
}

.wish:hover {
  transform: scale(1.08)
}

.wish.on .ic {
  color: var(--orange)
}

.wish.on .ic svg {
  fill: var(--orange)
}

.quick {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: .28s;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.prod:hover .quick {
  opacity: 1;
  transform: none
}

.quick .btn {
  width: 100%;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  box-shadow: var(--shadow);
  font-size: .84rem;
  padding: .7rem;
  text-align: center
}

.quick .btn:hover {
  background: var(--ink);
  color: #fff
}

.prod .info {
  padding: 16px 4px 6px
}

.prod .cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px
}

.prod .cat {
  font-size: .72rem;
  color: var(--grey-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em
}

.prod h3 {
  font-size: 15px;
  font-weight: 500;
  margin: 4px 0 6px;
  color: #494949
}

.prod .rate {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .76rem;
  color: var(--grey);
  margin-left: auto
}

.prod .rate .ic {
  width: 13px;
  height: 13px;
  color: var(--orange)
}

.prod .rate .ic svg {
  fill: var(--orange);
  stroke: none
}

.prod .prc {
  display: flex;
  align-items: center;
  gap: 8px
}

.prod .prc .now {
  font-weight: 700;
  font-size: 14px;
  color: #b44e1b
}

.prod .prc .was {
  font-size: .84rem;
  color: var(--grey-light);
  text-decoration: line-through
}

.prod .swatches {
  display: flex;
  gap: 5px;
  margin-top: 10px
}

.prod .sw {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .12)
}

/* FOOTER */
footer {
  background: var(--band);
  padding: 60px 0 30px;
  margin-top: 10px
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
  gap: 36px;
  margin-bottom: 40px
}

footer .logo {
  margin-bottom: 1rem;
  display: block
}

.foot-about p {
  font-size: .86rem;
  color: var(--grey);
  max-width: 32ch;
  margin-bottom: 1.1rem
}

.foot-locale select {
  font-family: inherit;
  font-size: .8rem;
  font-weight: 700;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d2d2d7;
  border-radius: 999px;
  padding: .4rem 1rem;
  cursor: pointer;
  outline: none;
  margin-right: 8px
}

footer h4 {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 800
}

footer ul {
  list-style: none;
  display: grid;
  gap: .65rem
}

footer ul a {
  font-size: .86rem;
  color: var(--grey);
  transition: .2s
}

footer ul a:hover {
  color: var(--orange-dark)
}

.foot-news {
  display: flex;
  gap: 8px;
  margin-top: 6px
}

.foot-news input {
  flex: 1;
  border: 1px solid #d2d2d7;
  border-radius: 999px;
  padding: .6rem 1rem;
  font-family: inherit;
  font-size: .82rem;
  outline: none;
  min-width: 0
}

.foot-bottom {
  border-top: 1px solid #d8d8dd;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--grey-light);
  flex-wrap: wrap;
  gap: 14px
}

.socials {
  display: flex;
  gap: 16px;
  font-weight: 600
}

.socials a:hover {
  color: var(--orange-dark)
}

.pay {
  display: flex;
  gap: 7px
}

.pay span {
  border: 1px solid #d2d2d7;
  border-radius: 6px;
  padding: .18rem .55rem;
  font-size: .66rem;
  font-weight: 800;
  color: var(--grey);
  background: #fff
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1)
}

.reveal.in {
  opacity: 1;
  transform: none
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink);
  color: #fff;
  padding: .8rem 1.4rem;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 600;
  z-index: 200;
  opacity: 0;
  transition: .35s;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-hover)
}

.toast .ic {
  width: 16px;
  height: 16px;
  color: #7be0a3
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0)
}

@media(max-width:1080px) {
  .nav-links {
    display: none
  }

  .nav-toggle {
    display: flex
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}

.cat-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.ctile {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow)
}

.ctile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s
}

.ctile:hover img {
  transform: scale(1.06)
}

.ctile-lbl {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .4)
}

.ctile-lbl .ic {
  width: 20px;
  height: 20px
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.promo {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 54px;
  background-image: linear-gradient(rgba(20, 20, 22, .55), rgba(20, 20, 22, .7)), url('https://images.unsplash.com/photo-1441984904996-e0b6ba687e04?w=1400&q=80');
  background-size: cover;
  background-position: center
}

.promo>div {
  max-width: 520px
}

.promo-grid .promo {
  padding: 28px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center
}

.promo-grid .promo>div {
  max-width: none
}

.promo-grid .promo h2 {
  color: #fff;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  margin: .3rem 0 .5rem;
  line-height: 1.2
}

.promo-grid .promo p {
  color: rgba(255, 255, 255, .85);
  font-size: .86rem;
  margin-bottom: 14px
}

.promo-grid .promo .eyebrow {
  font-size: .7rem
}

.promo-grid .promo .btn {
  padding: .55rem 1.2rem;
  font-size: .82rem
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.val {
  display: flex;
  gap: 14px;
  align-items: center
}

.vic {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-dark);
  flex-shrink: 0;
  box-shadow: var(--shadow)
}

.vic .ic {
  width: 22px;
  height: 22px
}

.val b {
  display: block;
  font-size: .92rem;
  font-weight: 800
}

.val span {
  font-size: .8rem;
  color: var(--grey)
}

.editorial {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center
}

.editorial img {
  border-radius: var(--radius-lg);
  aspect-ratio: 5/4;
  object-fit: cover;
  box-shadow: var(--shadow)
}

.qcard {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow)
}

.iggrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px
}

.iggrid img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  transition: .3s
}

.iggrid a:hover img {
  transform: scale(1.04);
  filter: brightness(.95)
}

@media(max-width:980px) {

  .grid-4,
  .cat-tiles {
    grid-template-columns: repeat(2, 1fr)
  }

  .grid-3,
  .values {
    grid-template-columns: 1fr
  }

  .promo-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .editorial {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .promo {
    padding: 34px
  }

  .iggrid {
    grid-template-columns: repeat(3, 1fr)
  }

  .values {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:560px) {

  .grid-4,
  .cat-tiles {
    gap: 12px
  }

  .promo-grid {
    grid-template-columns: 1fr
  }
}

/* ═══ PLP (category / shop listing) ═══ */
.crumb {
  font-size: .82rem;
  color: var(--grey)
}

.crumb b {
  color: var(--ink)
}

.plp-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap
}

.plp-tools {
  display: flex;
  align-items: center;
  gap: 12px
}

.sortwrap {
  font-size: .82rem;
  color: var(--grey);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px
}

.sortwrap select {
  font-family: inherit;
  font-size: .84rem;
  font-weight: 700;
  color: var(--ink);
  border: 1px solid #d2d2d7;
  border-radius: 999px;
  padding: .5rem .9rem;
  cursor: pointer;
  outline: none;
  background: #fff
}

.mfilter {
  display: none;
  padding: .5rem 1rem;
  font-size: .84rem
}

.plp {
  display: grid;
  grid-template-columns: 236px 1fr;
  gap: 34px;
  align-items: start
}

.filters {
  position: sticky;
  top: 88px
}

.filters-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px
}

.filters-head b {
  font-size: 1rem;
  font-weight: 800
}

.fgroup {
  border-top: 1px solid var(--line);
  padding: 18px 0
}

.fgroup h4 {
  font-size: .84rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: 0
}

.fopt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  color: var(--ink);
  cursor: pointer;
  padding: 5px 0;
  user-select: none
}

.fopt input {
  display: none
}

.box {
  width: 18px;
  height: 18px;
  border: 1.5px solid #c7c7cd;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: .15s
}

.box .ic {
  width: 12px;
  height: 12px;
  color: #fff;
  opacity: 0
}

.fopt input:checked+.box {
  background: var(--orange);
  border-color: var(--orange)
}

.fopt input:checked+.box .ic {
  opacity: 1
}

.radio {
  width: 18px;
  height: 18px;
  border: 1.5px solid #c7c7cd;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: .15s
}

.fopt input:checked+.radio {
  border-color: var(--orange)
}

.fopt input:checked+.radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--orange)
}

.fopt.checked .box {
  background: var(--orange);
  border-color: var(--orange)
}

.fopt.checked .box .ic {
  opacity: 1
}

.fopt.checked .radio {
  border-color: var(--orange)
}

.fopt.checked .radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--orange)
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px
}

.chip {
  border: 1px solid #d2d2d7;
  background: #fff;
  border-radius: 10px;
  min-width: 46px;
  padding: .3rem .7rem;
  font-family: inherit;
  font-size: .78rem;
  font-weight: 600;
  color: #4a4a4f;
  cursor: pointer;
  transition: .18s;
  text-align: center
}

.chip.on {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink)
}

.chip.soldout {
  opacity: .4;
  text-decoration: line-through;
  cursor: not-allowed
}

.cws {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.cw {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0
}

.cw .ic {
  width: 14px;
  height: 14px;
  color: #fff;
  opacity: 0;
  mix-blend-mode: difference
}

.cw.on {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--orange)
}

.cw.on .ic {
  opacity: 1
}

.active-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px
}

.achip {
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: .78rem;
  font-weight: 700;
  padding: .35rem .8rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  border: none
}

.achip .ic {
  width: 12px;
  height: 12px
}

.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px
}

.pager a,
.pager span {
  min-width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .86rem;
  font-weight: 700;
  color: var(--ink);
  border: 1px solid #d2d2d7
}

.pager a:hover {
  border-color: var(--ink)
}

.pager .on {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink)
}

.pager .dis {
  opacity: .35;
  pointer-events: none
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--grey)
}

.empty-state .ic {
  width: 48px;
  height: 48px;
  color: var(--grey-light);
  margin: 0 auto 16px
}

@media(max-width:1080px) {
  .plp {
    grid-template-columns: 1fr
  }

  .filters {
    display: none
  }

  .mfilter {
    display: inline-flex
  }

  #filterPanel .filters {
    display: block;
    position: static
  }

  #filterPanel {
    padding: 0 18px 18px;
    overflow-y: auto
  }

  #filterPanel .filters-head {
    padding: 18px 0
  }

  #mFilterX {
    display: flex
  }
}

/* ═══ PDP (product detail) ═══ */
.pdp {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: start
}

.gallery {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  position: sticky;
  top: 88px
}

.thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.thumb {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: none;
  aspect-ratio: 4/5
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.thumb.on {
  border-color: var(--ink);
  border-width: 2px
}

.main-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #e9ecef
}

.main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.opt-row {
  margin-bottom: 22px
}

.opt-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px
}

.opt-label b {
  font-size: .9rem;
  font-weight: 800
}

.opt-label span {
  font-size: .84rem;
  color: var(--grey)
}

.size-warn {
  font-size: .78rem;
  color: var(--orange-dark);
  font-weight: 700;
  margin-top: 8px;
  display: none
}

.size-warn.show {
  display: block
}

.buy-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 8px
}

.buy-row .qty {
  height: 38px
}

.buy-row .qty button {
  width: 38px;
  height: 38px
}

.buy-row .btn {
  height: 48px;
  flex: 1 1 0;
  min-width: 0;
  white-space: nowrap
}

.buy-row .wish {
  width: 48px;
  height: 48px;
  border-radius: 12px !important;
  position: static
}

.trust-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 22px 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.trust-row div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--grey);
  font-weight: 600
}

.trust-row .ic {
  width: 18px;
  height: 18px;
  color: var(--orange-dark)
}

.acc {
  margin-top: 6px
}

.acc-item {
  border-bottom: 1px solid var(--line)
}

.acc-head {
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 800;
  color: var(--ink);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer
}

.acc-head .ic {
  width: 18px;
  height: 18px;
  transition: transform .25s
}

.acc-item.open .acc-head .ic {
  transform: rotate(180deg)
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s
}

.acc-body p {
  padding-bottom: 18px;
  color: var(--grey);
  font-size: .9rem;
  white-space: pre-line
}

.rev-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow)
}

.rs-score {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.rs-score b {
  font-size: 2.6rem;
  font-weight: 800
}

.rs-bars {
  display: grid;
  gap: 7px
}

.rs-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .76rem;
  color: var(--grey)
}

.rs-bar .rt {
  flex: 1;
  height: 7px;
  background: #e6e6ea;
  border-radius: 999px;
  overflow: hidden
}

.rs-bar .rf {
  height: 100%;
  background: var(--orange);
  border-radius: 999px
}

.review {
  padding: 18px 0;
  border-top: 1px solid var(--line)
}

.review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px
}

.review-head b {
  font-size: .92rem;
  font-weight: 800
}

.review-stars {
  color: var(--orange);
  display: flex;
  gap: 2px
}

.review-stars .ic {
  width: 14px;
  height: 14px
}

.review-date {
  font-size: .78rem;
  color: var(--grey-light)
}

.review p {
  font-size: .9rem;
  color: var(--grey)
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.sticky-buy {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 12px 18px;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 14px
}

.sticky-buy b {
  display: block;
  font-size: .86rem;
  font-weight: 800
}

.sticky-buy span {
  font-size: .86rem;
  color: var(--grey)
}

.sticky-buy>div:first-child {
  flex: 1;
  min-width: 0
}

.sticky-buy .btn {
  flex-shrink: 0;
  white-space: nowrap
}

@media(max-width:980px) {
  .pdp {
    grid-template-columns: 1fr;
    gap: 26px
  }

  .gallery {
    position: static;
    grid-template-columns: 1fr
  }

  .thumbs {
    flex-direction: row;
    order: 2
  }

  .thumb {
    width: 70px;
    flex-shrink: 0
  }

  .rev-summary {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center
  }

  .grid-2 {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:860px) {
  .sticky-buy {
    display: flex
  }

  .grid-2 {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:520px) {
  .grid-2 {
    grid-template-columns: 1fr
  }
}

/* ═══ Static content pages (about/contact/privacy/terms) + blog ═══ */
.content-page {
  max-width: 780px;
  margin: 0 auto
}

.content-page h2,
.content-page h3 {
  margin: 1.6em 0 .6em
}

.content-page p {
  margin-bottom: 1em;
  color: var(--grey)
}

.content-page ul,
.content-page ol {
  margin: 0 0 1em 1.4em;
  color: var(--grey)
}

.content-page img {
  border-radius: var(--radius);
  margin: 1em 0
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.contact-info {
  display: grid;
  gap: 18px
}

.contact-info .row {
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.contact-info .ic {
  width: 20px;
  height: 20px;
  color: var(--orange-dark);
  flex-shrink: 0;
  margin-top: 2px
}

@media(max-width:860px) {
  .contact-grid {
    grid-template-columns: 1fr
  }
}

.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover)
}

.blog-card img {
  aspect-ratio: 16/10;
  object-fit: cover
}

.blog-card .info {
  padding: 18px
}

.blog-card .info .cat {
  font-size: .72rem;
  color: var(--grey-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px
}

.blog-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px
}

.blog-card p {
  color: var(--grey);
  font-size: .88rem
}

.blog-meta {
  font-size: .8rem;
  color: var(--grey-light);
  margin-bottom: 12px
}

.blog-body {
  font-size: 1rem;
  color: var(--ink)
}

.blog-body p {
  margin-bottom: 1.2em;
  color: var(--grey)
}

.blog-body h2,
.blog-body h3 {
  margin: 1.4em 0 .6em
}

.blog-body img {
  border-radius: var(--radius);
  margin: 1em 0;
  width: 100%
}

.comment {
  padding: 16px 0;
  border-top: 1px solid var(--line)
}

.comment b {
  font-size: .9rem;
  font-weight: 800
}

.comment .review-date {
  margin-left: 8px
}

.comment p {
  color: var(--grey);
  font-size: .9rem;
  margin-top: 4px
}

.gtag-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px
}

.ggrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px
}

.gitem {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: #e9ecef
}

.gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s
}

.gitem:hover img {
  transform: scale(1.05)
}

.gitem .gcap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .55));
  color: #fff;
  font-weight: 700;
  font-size: .86rem;
  opacity: 0;
  transition: .25s
}

.gitem:hover .gcap {
  opacity: 1
}

@media(max-width:860px) {
  .ggrid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:560px) {
  .ggrid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:520px) {
  .ggrid {
    gap: 10px
  }
}

/* FORMS (auth, checkout, account) */
.field {
  border: 1px solid #d2d2d7;
  border-radius: 9px;
  padding: .48rem .85rem;
  font-family: inherit;
  font-size: .875rem;
  outline: none;
  width: 100%;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s
}

.field:focus {
  border-color: var(--orange)
}

textarea.field {
  resize: vertical
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

@media(max-width:560px) {
  .field-grid {
    grid-template-columns: 1fr
  }
}

label.flabel {
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: 3px;
  display: block;
  color: var(--grey)
}

.field-group {
  display: grid;
  gap: 3px
}

/* AUTH PAGES */
.auth-wrap {
  max-width: 440px;
  margin: 0 auto
}

.auth-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow)
}

.auth-card h1 {
  font-size: 1.6rem;
  margin-bottom: 6px
}

.auth-card .sub {
  color: var(--grey);
  font-size: .9rem;
  margin-bottom: 24px
}

.auth-card form {
  display: grid;
  gap: 14px
}

.auth-foot {
  text-align: center;
  font-size: .86rem;
  color: var(--grey);
  margin-top: 20px
}

/* ACCOUNT LAYOUT */
.acct-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start
}

@media(max-width:780px) {
  .acct-grid {
    grid-template-columns: 1fr
  }
}

.acct-nav {
  display: grid;
  gap: 2px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px
}

.acct-nav a {
  padding: 11px 14px;
  border-radius: 11px;
  font-weight: 700;
  font-size: .88rem;
  color: var(--grey);
  transition: .2s;
  display: flex;
  align-items: center;
  gap: 10px
}

.acct-nav a:hover {
  background: var(--band);
  color: var(--ink)
}

.acct-nav a.on {
  background: var(--orange-soft);
  color: var(--orange-dark)
}

.acct-nav a .ic {
  width: 17px;
  height: 17px
}

.acct-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px
}

.acct-card h2 {
  font-size: 1.2rem;
  margin-bottom: 18px
}

/* ORDERS */
.otable {
  width: 100%;
  border-collapse: collapse
}

.otable th {
  text-align: left;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--grey-light);
  padding: 0 0 10px;
  border-bottom: 1px solid var(--line)
}

.otable td {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: .88rem
}

.otable td:last-child,
.otable th:last-child {
  text-align: right
}

.otable a.link {
  font-size: .84rem
}

.ostatus {
  display: inline-flex;
  align-items: center;
  padding: .3rem .8rem;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  text-transform: capitalize
}

.ostatus.pending,
.ostatus.unpaid {
  background: #fff4e5;
  color: #b54708
}

.ostatus.paid,
.ostatus.processing {
  background: #e8f0fe;
  color: #1d4ed8
}

.ostatus.shipped {
  background: #ecfdf5;
  color: #047857
}

.ostatus.delivered {
  background: #ecfdf3;
  color: #067647
}

.ostatus.cancelled,
.ostatus.failed,
.ostatus.refunded {
  background: #fef2f2;
  color: #b91c1c
}

.ostatus.open {
  background: #e8f0fe;
  color: #1d4ed8
}

.ostatus.closed {
  background: #ecfdf3;
  color: #067647
}

/* CHECKOUT */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: start
}

@media(max-width:900px) {
  .checkout-grid {
    grid-template-columns: 1fr
  }
}

.ostep {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin-bottom: 12px
}

.ostep h3 {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink)
}

.ostep .field-grid {
  gap: 10px
}

.ostep .field-group+.field-group,
.ostep .field-grid {
  margin-top: 10px
}

.pay-opts {
  display: grid;
  gap: 8px
}

.pay-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 600;
  font-size: .86rem
}

.pay-opt input {
  accent-color: var(--orange)
}

.pay-opt.on {
  border-color: var(--orange);
  background: var(--orange-soft)
}

.coupon-row {
  display: flex;
  gap: 8px
}

.coupon-row .field {
  flex: 1
}

.osum-item {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: .84rem
}

.osum-item img {
  width: 46px;
  height: 56px;
  object-fit: cover;
  border-radius: 7px;
  background: #e9ecef;
  flex-shrink: 0
}

.osum-item .ci-opt {
  font-size: .76rem;
  color: var(--grey-light)
}

.osum-totals {
  margin-top: 14px
}

.osum-totals .totals {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: .88rem;
  color: var(--grey)
}

.osum-totals .totals.grand {
  color: var(--ink);
  font-weight: 800;
  font-size: 1.05rem;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line)
}

/* WISHLIST heart toggle (PDP/PLP) */
.wish-btn {
  border: none;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: .2s
}

.wish-btn:hover {
  background: #fff
}

.wish-btn .ic {
  width: 18px;
  height: 18px
}

.prod .ph .wish-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px
}

.wish-btn.active {
  color: var(--orange)
}

.wish-btn.active svg {
  fill: currentColor
}

/* REVIEW rating input */
.rate-input {
  display: flex;
  gap: 6px
}

.rate-input .ic {
  width: 24px;
  height: 24px;
  color: #d2d2d7;
  cursor: pointer;
  transition: color .15s
}

.rate-input .ic.on {
  color: var(--orange)
}

.rate-input .ic.on svg {
  fill: currentColor;
  stroke: none
}

.rev-row {
  margin-top: 10px
}

.rev-form {
  margin-top: 10px;
  max-width: 420px
}

/* EMPTY/CENTERED STATE for account pages */
.acct-empty {
  text-align: center;
  padding: 50px 20px;
  color: var(--grey)
}

.acct-empty .ic {
  width: 42px;
  height: 42px;
  color: var(--grey-light);
  margin: 0 auto 14px
}

/* CHAT WIDGET */
.chat-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232, 101, 13, .45);
  transition: .25s
}

.chat-fab:hover {
  background: var(--orange-hover);
  transform: scale(1.07)
}

.chat-fab .ic {
  width: 24px;
  height: 24px
}

.chat-fab .chat-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: #dc2626;
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  display: none
}

.chat-panel {
  position: fixed;
  bottom: 92px;
  right: 28px;
  z-index: 901;
  width: 340px;
  max-height: 520px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .14);
  display: flex;
  flex-direction: column;
  transform: scale(.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s cubic-bezier(.4, 0, .2, 1), opacity .25s
}

.chat-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all
}

.chat-head {
  background: var(--orange);
  color: #fff;
  border-radius: 18px 18px 0 0;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px
}

.chat-head-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px
}

.chat-head-info {
  flex: 1
}

.chat-head-info b {
  font-size: .95rem
}

.chat-head-info span {
  font-size: .74rem;
  opacity: .85;
  display: block
}

.chat-close-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .8);
  cursor: pointer;
  padding: 4px
}

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 200px;
  max-height: 310px
}

.chat-bubble {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: .84rem;
  line-height: 1.5;
  word-break: break-word
}

.chat-bubble.visitor {
  align-self: flex-end;
  background: var(--orange);
  color: #fff;
  border-bottom-right-radius: 4px
}

.chat-bubble.admin {
  align-self: flex-start;
  background: var(--band);
  color: var(--ink);
  border-bottom-left-radius: 4px
}

.chat-bubble .cb-time {
  font-size: .68rem;
  opacity: .65;
  margin-top: 3px
}

.chat-start-form {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px
}

.chat-start-form input,
.chat-start-form textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 12px;
  font-size: .85rem;
  font-family: inherit;
  outline: none;
  resize: none
}

.chat-start-form input:focus,
.chat-start-form textarea:focus {
  border-color: var(--orange)
}

.chat-footer {
  border-top: 1px solid var(--line);
  padding: 10px 12px;
  display: flex;
  gap: 8px;
  align-items: flex-end
}

.chat-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: .85rem;
  resize: none;
  max-height: 80px;
  line-height: 1.4;
  padding: 4px 0
}

.chat-send-btn {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: .2s
}

.chat-send-btn:hover {
  background: var(--orange-hover)
}

.chat-send-btn .ic {
  width: 16px;
  height: 16px
}

.chat-closed-msg {
  text-align: center;
  font-size: .82rem;
  color: var(--grey);
  padding: 18px 14px;
  border-top: 1px solid var(--line)
}

@media(max-width:400px) {
  .chat-panel {
    width: calc(100vw - 20px);
    right: 10px;
    bottom: 80px
  }
}

/* HEADER DESIGN 2 — marketplace bar style */
.h2-wrap {
  position: sticky;
  top: 0;
  z-index: 80;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08)
}

.h2-top {
  background: #fff;
  border-bottom: 1px solid var(--line)
}

.h2-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 16px
}

.h2-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.04em;
  white-space: nowrap;
  color: var(--orange);
  flex-shrink: 0
}

.h2-logo b {
  color: var(--ink)
}

.h2-search {
  flex: 1;
  display: flex;
  border: 2px solid var(--orange);
  border-radius: 8px;
  overflow: hidden;
  max-width: 640px
}

.h2-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: .55rem .9rem;
  font-size: .9rem;
  font-family: inherit;
  background: #fff;
  color: var(--ink)
}

.h2-search button {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 0 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: .2s
}

.h2-search button:hover {
  background: var(--orange-hover)
}

.h2-search button .ic {
  width: 18px;
  height: 18px
}

.h2-top .h2-inner {
  height: 66px
}

.h2-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  flex-shrink: 0
}

.h2-cart {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  color: var(--ink);
  display: flex;
  align-items: center;
  padding: 6px
}

.h2-cart .ic {
  width: 22px;
  height: 22px
}

.h2-cart-count {
  position: absolute;
  top: -2px;
  right: -4px;
  background: var(--orange);
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  min-width: 17px;
  height: 17px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px
}

.h2-act-link {
  font-size: .84rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  position: relative
}

.h2-act-link:hover {
  color: var(--orange)
}

.h2-phone {
  font-size: .82rem;
  font-weight: 700;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 4px;
  border-left: 1px solid var(--line);
  padding-left: 14px;
  white-space: nowrap
}

/* Nav bar */
.h2-nav {
  background: #555;
  overflow-x: auto;
  scrollbar-width: none
}

.h2-nav::-webkit-scrollbar {
  display: none
}

.h2-nav .h2-inner {
  height: 38px;
  gap: 0;
  overflow: hidden
}

.h2-nav-link {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .88);
  padding: 0 14px;
  height: 38px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, .1);
  transition: background .15s
}

.h2-nav-link:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff
}

.h2-nav-link.h2-all {
  background: var(--orange);
  color: #fff;
  font-weight: 700
}

.h2-nav-link.h2-all:hover {
  background: var(--orange-hover)
}

/* Mobile */
.h2-mob-search {
  display: none
}

@media(max-width:680px) {
  .h2-top .h2-inner {
    height: 54px
  }

  .h2-search {
    max-width: none
  }

  .h2-phone {
    display: none
  }

  .h2-act-link span.ic {
    display: none
  }
}

@media(max-width:480px) {
  .h2-logo {
    font-size: 1.2rem
  }

  .h2-actions .h2-act-link:not(.cart-link) {
    display: none
  }
}

/* PDP warranty / delivery meta table */
.pdp-meta-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 18px 0;
  padding: 14px 16px;
  background: var(--band);
  border-radius: 12px;
  font-size: .88rem
}

.pdp-meta-row {
  display: flex;
  align-items: center;
  gap: 0
}

.pdp-meta-label {
  font-weight: 700;
  color: var(--grey);
  min-width: 110px
}

.pdp-meta-sep {
  color: var(--grey-light);
  padding: 0 10px
}

.pdp-meta-val {
  color: var(--ink);
  font-weight: 600
}

/* full (rich text) product description */
.pdp-longdesc {
  max-width: 100%;
  color: var(--grey);
  line-height: 1.75;
  font-size: .95rem
}

.pdp-longdesc>*:first-child {
  margin-top: 0
}

.pdp-longdesc p {
  margin: 0 0 14px
}

.pdp-longdesc h2,
.pdp-longdesc h3 {
  color: var(--ink);
  font-weight: 800;
  margin: 24px 0 10px;
  line-height: 1.3
}

.pdp-longdesc h2 {
  font-size: 1.15rem
}

.pdp-longdesc h3 {
  font-size: 1rem
}

.pdp-longdesc ul,
.pdp-longdesc ol {
  margin: 0 0 14px;
  padding-left: 22px
}

.pdp-longdesc li {
  margin-bottom: 6px
}

.pdp-longdesc a {
  color: var(--ink);
  text-decoration: underline
}

.pdp-longdesc strong,
.pdp-longdesc b {
  color: var(--ink)
}

.pdp-longdesc blockquote {
  margin: 0 0 14px;
  padding: 2px 0 2px 16px;
  border-left: 3px solid var(--line);
  color: var(--grey)
}

.pdp-longdesc img {
  max-width: 100%;
  height: auto;
  border-radius: 12px
}

/* Store logo image (replaces text logo when uploaded) */
.logo .site-logo-img,
.h2-logo .site-logo-img {
  height: 36px;
  max-width: 160px;
  object-fit: contain;
  display: block
}

.foot-about .logo .site-logo-img {
  height: 30px
}

/* POPUP BANNER */
#popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px)
}

#popup-card {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
  position: relative;
  overflow: hidden;
  animation: popupIn .35s cubic-bezier(.4, 0, .2, 1)
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: scale(.92) translateY(16px)
  }
}

.popup-hiding #popup-card {
  animation: popupOut .25s ease forwards
}

@keyframes popupOut {
  to {
    opacity: 0;
    transform: scale(.95) translateY(8px)
  }
}

#popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(0, 0, 0, .12);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: .2s
}

#popup-close:hover {
  background: rgba(0, 0, 0, .28)
}

.popup-img img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  display: block
}

.popup-body {
  padding: 28px 28px 30px
}

.popup-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2
}

.popup-msg {
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 22px
}

.popup-btn {
  border-radius: 999px;
  padding: .85rem 2rem;
  font-size: .95rem
}

@media(max-width:480px) {
  .popup-body {
    padding: 20px 20px 24px
  }

  .popup-title {
    font-size: 1.25rem
  }
}

/* BACK TO TOP */
#back-to-top {
  position: fixed;
  bottom: 96px;
  left: 28px;
  z-index: 800;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s;
  pointer-events: none
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all
}

#back-to-top:hover {
  background: var(--orange);
  transform: translateY(-2px)
}

#back-to-top .ic {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center
}

#back-to-top .ic svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

@media(max-width:560px) {
  .foot-news {
    flex-direction: column;
    width: 100%
  }

  .foot-news input,
  .foot-news .btn {
    width: 100%
  }
}

/* ── Hot deals ─────────────────────────────────────────── */
.prod .badge.deal {
  background: #dc2626;
  color: #fff;
  font-weight: 800;
  letter-spacing: .02em
}

.hot-deals {
  padding-top: 48px
}

.hot-deals .hd-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 21px
}

.hot-deals .hd-head h2 {
  margin: 2px 0 0
}

.hot-deals .hd-sub {
  color: var(--grey);
  font-size: .92rem;
  margin: 6px 0 0;
  max-width: 52ch
}

.hd-flame {
  font-size: .95em
}

.hd-timer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px
}

.hd-timer-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey)
}

.hd-clock-row {
  display: flex;
  gap: 8px
}

.hd-unit {
  min-width: 56px;
  padding: 8px 6px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  text-align: center;
  line-height: 1.1
}

.hd-unit b {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums
}

.hd-unit span {
  display: block;
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .7;
  margin-top: 2px
}

/* PDP deal badge + countdown strip */
.hot-deal-tag {
  background: #dc2626;
  color: #fff;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .03em;
  padding: 4px 9px;
  border-radius: 999px
}

.hot-deal-strip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: -10px 0 20px;
  padding: 9px 14px;
  border-radius: 12px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  font-size: .86rem
}

.hot-deal-strip .hd-clock {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  background: #dc2626;
  color: #fff;
  padding: 2px 8px;
  border-radius: 8px
}

@media(max-width:700px) {
  .hot-deals .hd-head {
    align-items: flex-start
  }

  .hd-timer {
    align-items: flex-start
  }

  .hd-unit {
    min-width: 48px
  }
}

/* ── "N remaining" stock badge (store setting: stock_badge_scope) ────────── */
.prod .stock-left {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .28rem .7rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, .86);
  color: #fff
}

.stock-left-line {
  color: #dc2626;
  font-weight: 700;
  font-size: .86rem;
  margin-bottom: 16px
}

/* ── Admin-defined product sections ─────────────────────────────────────── */
.psec-rail {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(var(--psec-rows, 1), auto);
  grid-auto-columns: calc((100% - 3*22px)/4);
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  scrollbar-width: thin
}

.psec-rail>.prod {
  scroll-snap-align: start
}

.psec-rail::-webkit-scrollbar {
  height: 6px
}

.psec-rail::-webkit-scrollbar-thumb {
  background: var(--line, #e5e5e5);
  border-radius: 999px
}

.psec-nav {
  display: flex;
  gap: 8px
}

.psec-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line, #e5e5e5);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s
}

.psec-arrow:hover {
  background: var(--ink);
  color: #fff
}

.psec-arrow .ic {
  width: 18px;
  height: 18px
}

.psec-arrow:not(.next) .ic {
  transform: rotate(180deg)
}

@media(max-width:980px) {
  .psec-rail {
    grid-auto-columns: calc((100% - 22px)/2)
  }
}

@media(max-width:560px) {
  .psec-rail {
    grid-auto-columns: 78%;
    gap: 12px
  }
}

/* ── Popup banner templates (setting: popup_template) ───────────────────── */
/* image_top is the base look above; these two restyle the same markup. */
#popup-card.popup-tpl-image_left {
  max-width: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch
}

.popup-tpl-image_left .popup-img {
  height: 100%
}

.popup-tpl-image_left .popup-img img {
  height: 100%;
  max-height: none;
  min-height: 340px
}

.popup-tpl-image_left .popup-body {
  display: flex;
  flex-direction: column;
  justify-content: center
}

.popup-tpl-image_left .popup-btn {
  align-self: flex-start
}

#popup-card.popup-tpl-image_overlay {
  max-width: 560px
}

.popup-tpl-image_overlay .popup-img img {
  max-height: none;
  height: 440px
}

.popup-tpl-image_overlay .popup-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .85) 15%, rgba(0, 0, 0, .35) 65%, rgba(0, 0, 0, 0));
  color: #fff
}

.popup-tpl-image_overlay .popup-title,
.popup-tpl-image_overlay .popup-msg {
  color: #fff
}

.popup-tpl-image_overlay .popup-msg {
  opacity: .92
}

@media(max-width:640px) {
  #popup-card.popup-tpl-image_left {
    grid-template-columns: 1fr
  }

  .popup-tpl-image_left .popup-img img {
    min-height: 0;
    max-height: 200px
  }

  .popup-tpl-image_overlay .popup-img img {
    height: 340px
  }
}