/* ═══════════════════════════════════════════════════════════════
   AROE HOME DESIGN — Main Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ── Tokens ──────────────────────────────────────────────────── */
:root {
  --clr-bg:         #141210;
  --clr-bg-2:       #1c1916;
  --clr-bg-card:    #1e1b17;
  --clr-gold:       #c4a46b;
  --clr-gold-light: #d4b882;
  --clr-white:      #f5f2ed;
  --clr-muted:      #8a8278;
  --clr-border:     rgba(196,164,107,0.2);

  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'DM Sans', system-ui, sans-serif;

  --header-h: 150px;
  --container: 1280px;
  --radius:    4px;

  --ease-out: cubic-bezier(0.16,1,0.3,1);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--clr-bg);
  color: var(--clr-white);
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }
ul { list-style: none; }

/* ── Utility ─────────────────────────────────────────────────── */
.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: 40px;
}
.section-eyebrow {
  display: block;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 12px;
}
.placeholder-img {
  background: var(--clr-bg-2);
  width: 100%;
  height: 100%;
  min-height: 200px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .3s var(--ease-out);
  white-space: nowrap;
}
.btn--gold {
  background: var(--clr-gold);
  color: var(--clr-bg);
}
.btn--gold:hover { background: var(--clr-gold-light); }
.btn--outline {
  background: transparent;
  color: var(--clr-white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn--outline:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}
.btn__arrow { transition: transform .3s; }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--sm { padding: 10px 20px; font-size: 12px; }

.btn-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--clr-white);
  transition: all .3s;
}
.btn-play svg { width: 18px; height: 18px; margin-left: 3px; }
.btn-play:hover { border-color: var(--clr-gold); color: var(--clr-gold); background: rgba(196,164,107,0.1); }

.btn-circle-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--clr-gold);
  color: var(--clr-gold);
  font-size: 16px;
  transition: all .3s;
}
a:hover .btn-circle-arrow { background: var(--clr-gold); color: var(--clr-bg); }

/* ══════════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: linear-gradient(180deg, rgba(14,12,10,0.82) 0%, rgba(14,12,10,0) 100%);
  transition: background .4s, backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(18,15,12,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--clr-border);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding-inline: 40px;
  gap: 40px;
}

/* Logo */
.site-logo { flex-shrink: 0; }
.site-logo img,
.site-logo .custom-logo { height: 136px; width: auto; }
.site-logo .custom-logo-link { display: flex; align-items: center; }
.site-logo__text {
  font-family: var(--ff-serif);
  font-size: 24px;
  letter-spacing: 0.2em;
  color: var(--clr-white);
}

/* Nav */
.site-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; gap: 32px; }
.nav-list li a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(245,242,237,0.8);
  transition: color .25s;
  position: relative;
}
.nav-list li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-gold);
  transition: width .3s var(--ease-out);
}
.nav-list li a:hover { color: var(--clr-white); }
.nav-list li a:hover::after { width: 100%; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.header-actions__search,
.header-actions__cart {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,242,237,0.8);
  transition: color .25s;
  position: relative;
}
.header-actions__search svg,
.header-actions__cart svg { width: 20px; height: 20px; }
.header-actions__search:hover,
.header-actions__cart:hover { color: var(--clr-white); }
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--clr-gold);
  color: var(--clr-bg);
  font-size: 10px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--clr-white);
  transition: all .3s;
}

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14,12,10,0.97);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-overlay__inner { position: relative; width: min(90%, 600px); }
.search-overlay__inner .search-field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-white);
  font-family: var(--ff-serif);
  font-size: 32px;
  padding: 16px 0;
  outline: none;
}
.search-overlay__inner .search-field::placeholder { color: var(--clr-muted); }
.search-overlay__close {
  position: absolute;
  top: -60px;
  right: 0;
  color: var(--clr-muted);
  font-size: 24px;
  transition: color .25s;
}
.search-overlay__close:hover { color: var(--clr-white); }

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(14,12,10,0.85) 0%,
    rgba(14,12,10,0.5) 50%,
    rgba(14,12,10,0.2) 100%
  );
}

/* When no image is set, show dark gradient */
.hero__bg:not(:has(.hero__img)) {
  background: linear-gradient(135deg, #1a1510 0%, #0e0c0a 60%, #1c1a14 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-h);
}
.hero__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--clr-white);
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--clr-gold);
}
.hero__subtitle {
  font-size: 15px;
  font-weight: 300;
  color: rgba(245,242,237,0.7);
  max-width: 320px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero__play-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.6);
}

/* Instagram sidebar */
.hero__instagram-sidebar {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.hero__instagram-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.5);
  transition: color .25s;
}
.hero__instagram-link:hover { color: var(--clr-gold); }
.hero__instagram-link svg { width: 18px; height: 18px; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 40px;
  border: 1.5px solid rgba(245,242,237,0.3);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero__scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--clr-gold);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ══════════════════════════════════════════════════════════════
   COLLECTION SECTION
   ══════════════════════════════════════════════════════════════ */
.collection-section {
  padding: 120px 0;
  background: var(--clr-bg);
}
.collection-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}
.collection-section__content { }
.collection-section__title {
  font-family: var(--ff-serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--clr-white);
  margin-bottom: 24px;
}
.collection-section__title em {
  font-style: italic;
  color: var(--clr-gold);
}
.collection-section__content p {
  font-size: 15px;
  color: rgba(245,242,237,0.6);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 36px;
}
.collection-section__gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 140px;
  grid-template-rows: 1fr auto;
  gap: 12px;
}
.collection-section__main-img {
  grid-row: 1 / 2;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
}
.collection-section__main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.collection-section__main-img:hover img { transform: scale(1.03); }
.collection-section__thumbs {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.collection-section__thumb {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
}
.collection-section__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.collection-section__thumb:hover img { transform: scale(1.05); }
.collection-section__pagination {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  padding-right: 8px;
}
.collection-section__pg-num {
  font-family: var(--ff-serif);
  font-size: 14px;
  color: var(--clr-muted);
}
.collection-section__pg-num.active { color: var(--clr-white); }
.collection-section__pg-line {
  flex: 1;
  height: 1px;
  background: var(--clr-border);
  max-width: 60px;
}

/* ══════════════════════════════════════════════════════════════
   FEATURED PRODUCTS
   ══════════════════════════════════════════════════════════════ */
.featured-products {
  padding: 80px 0 100px;
  background: var(--clr-bg-2);
}
.featured-products__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.featured-products__title {
  font-family: var(--ff-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  color: var(--clr-white);
  line-height: 1.15;
}
.featured-products__title em { font-style: italic; color: var(--clr-gold); }
.featured-products__all {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-muted);
  transition: color .25s;
}
.featured-products__all:hover { color: var(--clr-gold); }

/* Slider */
.featured-products__slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  padding-inline: 40px;
}
.featured-swiper { flex: 1; overflow: hidden; }
.featured-swiper .swiper-slide { width: 260px; margin-right: 20px; }

.product-card {
  background: var(--clr-bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color .3s;
}
.product-card:hover { border-color: var(--clr-border); }
.product-card__link { display: block; }
.product-card__image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--clr-bg-2);
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.product-card:hover .product-card__image img { transform: scale(1.04); }
.product-card__no-img { width: 100%; height: 100%; min-height: 260px; background: var(--clr-bg-2); }
.product-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s;
}
.product-card:hover .product-card__overlay { opacity: 1; transform: translateY(0); }
.product-card__cart {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-gold);
  color: var(--clr-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, transform .25s;
}
.product-card__cart:hover { background: var(--clr-gold-light); transform: scale(1.08); }
.product-card__cart svg { width: 16px; height: 16px; }
.product-card__info {
  padding: 16px 18px 18px;
}
.product-card__title {
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--clr-white);
  margin-bottom: 6px;
}
.product-card__price .price {
  font-family: var(--ff-sans);
  font-size: 14px;
  color: rgba(245,242,237,0.7);
}
.product-card__price ins { text-decoration: none; }
.product-card__price del { color: var(--clr-muted); font-size: 12px; margin-right: 4px; }

/* Slider nav */
.slider-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
  z-index: 2;
}
.slider-nav svg { width: 18px; height: 18px; }
.slider-nav:hover { background: var(--clr-gold); border-color: var(--clr-gold); color: var(--clr-bg); }
.slider-nav--prev { margin-right: 24px; }
.slider-nav--next { margin-left: 24px; }

/* ══════════════════════════════════════════════════════════════
   BRAND SECTION
   ══════════════════════════════════════════════════════════════ */
.brand-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.brand-section__content {
  padding: 100px 80px 100px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--clr-bg);
  max-width: 640px;
  margin-left: auto;
  width: 100%;
  padding-left: calc((100vw - var(--container)) / 2 + 40px);
}
.brand-section__title {
  font-family: var(--ff-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--clr-white);
  margin-bottom: 24px;
}
.brand-section__title em { font-style: italic; color: var(--clr-gold); }
.brand-section__content p {
  font-size: 15px;
  color: rgba(245,242,237,0.6);
  line-height: 1.75;
  max-width: 360px;
  margin-bottom: 36px;
}
.brand-section__media {
  position: relative;
  overflow: hidden;
  background: var(--clr-bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-section__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,12,10,0.55);
}
.brand-section__play {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
}
.brand-section__video-label {
  position: relative;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.6);
  text-align: center;
  line-height: 1.6;
}
.brand-section__media > div:last-of-type { display: flex; flex-direction: column; align-items: center; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer-trust {
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 48px 0;
}
.footer-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.footer-trust__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--clr-gold);
}
.footer-trust__item strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-white);
  margin-bottom: 4px;
}
.footer-trust__item span {
  font-size: 12px;
  color: var(--clr-muted);
  line-height: 1.5;
}

/* Footer main */
.footer-main {
  background: var(--clr-bg);
  padding: 80px 0 40px;
}
.footer-main__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-col h4 {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--clr-muted);
  transition: color .25s;
}
.footer-col ul li a:hover { color: var(--clr-gold); }
.footer-col--brand p {
  font-size: 14px;
  color: var(--clr-muted);
  line-height: 1.7;
  max-width: 280px;
  margin: 16px 0 24px;
}
.footer-logo img { height: 44px; width: auto; }
.footer-logo__text {
  font-family: var(--ff-serif);
  font-size: 20px;
  letter-spacing: 0.25em;
  color: var(--clr-white);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.footer-logo__text small {
  font-family: var(--ff-sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--clr-muted);
  margin-top: 4px;
}
.footer-social { display: flex; gap: 16px; }
.footer-social__link { color: var(--clr-muted); transition: color .25s; }
.footer-social__link:hover { color: var(--clr-gold); }
.footer-social__link svg { width: 20px; height: 20px; }

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--clr-muted);
}
.footer-payment {
  font-size: 13px;
  color: var(--clr-muted);
}

/* ══════════════════════════════════════════════════════════════
   WOOCOMMERCE PAGES
   ══════════════════════════════════════════════════════════════ */
.woo-main {
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 100px;
  min-height: 80vh;
}
.woo-main .woocommerce-notices-wrapper { margin-bottom: 32px; }

/* Shop title */
.woo-main .woocommerce-products-header__title {
  font-family: var(--ff-serif);
  font-size: 48px;
  font-weight: 500;
  color: var(--clr-white);
  margin-bottom: 48px;
}

/* Products grid */
.woo-main ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
}
.woo-main ul.products li.product {
  background: var(--clr-bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color .3s;
}
.woo-main ul.products li.product:hover { border-color: var(--clr-border); }

/* Toolbar */
.woo-main .woocommerce-ordering select,
.woo-main .woocommerce-result-count {
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  color: var(--clr-white);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-family: var(--ff-sans);
  font-size: 13px;
}

/* Pagination */
.woo-main .woocommerce-pagination ul {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin-top: 60px;
  justify-content: center;
}
.woo-main .woocommerce-pagination ul li a,
.woo-main .woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  color: var(--clr-muted);
  font-size: 13px;
  transition: all .25s;
}
.woo-main .woocommerce-pagination ul li a:hover,
.woo-main .woocommerce-pagination ul li span.current {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-bg);
}

/* Single product */
.woo-main .woocommerce div.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.woo-main .woocommerce div.product .woocommerce-product-gallery {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.woo-main .woocommerce div.product .product_title {
  font-family: var(--ff-serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--clr-white);
  margin-bottom: 16px;
}
.woo-main .woocommerce div.product .price {
  font-size: 24px;
  color: var(--clr-gold);
  margin-bottom: 24px;
}
.woo-main .woocommerce div.product .woocommerce-product-details__short-description {
  font-size: 15px;
  color: rgba(245,242,237,0.65);
  line-height: 1.75;
  margin-bottom: 32px;
}
.woo-main .woocommerce #respond input#submit,
.woo-main .woocommerce a.button,
.woo-main .woocommerce button.button,
.woo-main .woocommerce input.button,
.woo-main .woocommerce .single_add_to_cart_button {
  background: var(--clr-gold) !important;
  color: var(--clr-bg) !important;
  font-family: var(--ff-sans) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: var(--radius) !important;
  padding: 16px 32px !important;
  transition: background .25s !important;
  cursor: pointer !important;
}
.woo-main .woocommerce #respond input#submit:hover,
.woo-main .woocommerce a.button:hover,
.woo-main .woocommerce button.button:hover,
.woo-main .woocommerce input.button:hover,
.woo-main .woocommerce .single_add_to_cart_button:hover {
  background: var(--clr-gold-light) !important;
}

/* Cart / Checkout */
.woo-main .woocommerce-cart-form,
.woo-main .woocommerce-checkout {
  color: var(--clr-white);
}
.woo-main .woocommerce table.shop_table {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.woo-main .woocommerce table.shop_table th,
.woo-main .woocommerce table.shop_table td {
  border-top: 1px solid var(--clr-border);
  padding: 16px;
  color: var(--clr-white);
}
.woo-main .woocommerce table.shop_table thead th {
  background: var(--clr-bg-2);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* WC form fields */
.woo-main .woocommerce-input-wrapper input,
.woo-main .woocommerce-input-wrapper select,
.woo-main .woocommerce-input-wrapper textarea,
.woo-main .woocommerce form .input-text {
  background: var(--clr-bg-2) !important;
  border: 1px solid var(--clr-border) !important;
  color: var(--clr-white) !important;
  padding: 12px 16px !important;
  border-radius: var(--radius) !important;
  font-family: var(--ff-sans) !important;
  font-size: 14px !important;
}
.woo-main .woocommerce form label {
  font-size: 13px;
  color: rgba(245,242,237,0.6);
  margin-bottom: 6px;
}

/* Notices */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 14px;
}
.woocommerce-message { background: rgba(196,164,107,0.15); border-left: 3px solid var(--clr-gold); color: var(--clr-white); }
.woocommerce-error { background: rgba(220,50,47,0.15); border-left: 3px solid #dc322f; color: var(--clr-white); }

/* ══════════════════════════════════════════════════════════════
   GENERAL PAGES
   ══════════════════════════════════════════════════════════════ */
.site-main, .page-main {
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 100px;
  min-height: 80vh;
}
.page-title {
  font-family: var(--ff-serif);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 500;
  color: var(--clr-white);
  margin-bottom: 40px;
}
.entry-content {
  font-size: 15px;
  color: rgba(245,242,237,0.7);
  line-height: 1.8;
  max-width: 720px;
}
.entry-content h2, .entry-content h3 {
  font-family: var(--ff-serif);
  color: var(--clr-white);
  margin: 32px 0 16px;
}
.entry-content p { margin-bottom: 20px; }
.entry-content a { color: var(--clr-gold); }
.entry-content a:hover { text-decoration: underline; }

/* Posts grid */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.post-card { background: var(--clr-bg-card); border-radius: var(--radius); overflow: hidden; }
.post-card__image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-card__body { padding: 24px; }
.post-card__title { font-family: var(--ff-serif); font-size: 20px; color: var(--clr-white); margin-bottom: 12px; }
.post-card__title a:hover { color: var(--clr-gold); }
.post-card__excerpt { font-size: 14px; color: var(--clr-muted); line-height: 1.6; margin-bottom: 20px; }

/* ══════════════════════════════════════════════════════════════
   WHATSAPP FLOAT
   ══════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform .3s, box-shadow .3s;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-main__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-trust__grid { grid-template-columns: repeat(2, 1fr); }
  .woo-main ul.products { grid-template-columns: repeat(3, 1fr); }
  .brand-section { grid-template-columns: 1fr; }
  .brand-section__content { padding: 80px 40px; max-width: 100%; margin: 0; }
  .brand-section__media { min-height: 400px; }
  .collection-section__grid { grid-template-columns: 1fr 1.2fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --header-h: 72px; }
  .site-logo img, .site-logo .custom-logo { height: 52px; }
  .container { padding-inline: 20px; }

  .site-nav,
  .header-actions__cta { display: none; }
  .hamburger { display: flex; }
  .header-inner { gap: 16px; }

  /* Mobile nav */
  .site-nav.open {
    display: flex;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(14,12,10,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  .site-nav.open .nav-list { flex-direction: column; text-align: center; gap: 28px; }
  .site-nav.open .nav-list li a { font-size: 22px; font-family: var(--ff-serif); }

  .hero__instagram-sidebar { display: none; }
  .hero__title { font-size: 44px; }

  .collection-section { padding: 72px 0; }
  .collection-section__grid { grid-template-columns: 1fr; gap: 48px; }
  .collection-section__content p { max-width: 100%; }

  .featured-swiper .swiper-slide { width: 220px; }
  .featured-products__slider-wrap { padding-inline: 20px; }
  .slider-nav--prev { margin-right: 12px; }
  .slider-nav--next { margin-left: 12px; }

  .footer-trust__grid { grid-template-columns: 1fr 1fr; }
  .footer-main__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .woo-main ul.products { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .woo-main .woocommerce div.product { grid-template-columns: 1fr; gap: 40px; }
  .woo-main .woocommerce div.product .woocommerce-product-gallery { position: static; }

  .posts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-trust__grid { grid-template-columns: 1fr; }
  .woo-main ul.products { grid-template-columns: 1fr 1fr; gap: 12px; }
  .brand-section__content { padding: 60px 20px; }
}

/* ══════════════════════════════════════════════════════════════
   COLLECTION PAGE (taxonomy-product_cat)
   ══════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────── */
.col-hero {
  position: relative;
  height: 62vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.col-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1510 0%, #0e0c0a 100%);
}
.col-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.col-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(14,12,10,0.88) 0%,
    rgba(14,12,10,0.55) 45%,
    rgba(14,12,10,0.1) 100%
  );
}
.col-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
  padding-top: calc(var(--header-h) + 20px);
}
.col-hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 600;
  line-height: 1.0;
  color: var(--clr-white);
  margin-bottom: 16px;
}
.col-hero__title em { font-style: italic; color: var(--clr-gold); display: block; }
.col-hero__divider {
  width: 40px;
  height: 1px;
  background: var(--clr-gold);
  margin: 20px 0;
}
.col-hero__desc {
  font-size: 15px;
  color: rgba(245,242,237,0.65);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 28px;
}
.col-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.col-hero__play-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.55);
}

/* ── Filter bar ────────────────────────────────────────────── */
.col-products {
  padding: 52px 0 80px;
  background: var(--clr-bg);
}
.col-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 0;
  margin-bottom: 40px;
  gap: 24px;
}
.col-filter-tabs {
  display: flex;
  gap: 0;
}
.col-filter-tab {
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-muted);
  padding: 14px 20px;
  border-bottom: 2px solid transparent;
  transition: color .25s, border-color .25s;
  white-space: nowrap;
}
.col-filter-tab:hover { color: var(--clr-white); }
.col-filter-tab.active {
  color: var(--clr-white);
  border-bottom-color: var(--clr-gold);
}
.col-filter-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--clr-muted);
  white-space: nowrap;
}
.col-filter-sort select {
  background: transparent;
  border: none;
  color: var(--clr-white);
  font-family: var(--ff-sans);
  font-size: 13px;
  cursor: pointer;
  outline: none;
  appearance: none;
  padding-right: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c4a46b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}

/* ── Product grid ──────────────────────────────────────────── */
.col-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.col-product-card { background: var(--clr-bg-card); overflow: hidden; }
.col-product-card.hidden { display: none; }
.col-product-card__inner { display: block; }
.col-product-card__img {
  aspect-ratio: 1;
  overflow: hidden;
  background: #1a1714;
  position: relative;
}
.col-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.col-product-card:hover .col-product-card__img img { transform: scale(1.04); }
.col-product-card__no-img { width: 100%; height: 100%; min-height: 260px; background: #1a1714; }
.col-product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 16px;
  gap: 12px;
}
.col-product-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.col-product-card__name {
  font-size: 13px;
  font-weight: 400;
  color: var(--clr-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.col-product-card__price .price,
.col-product-card__price {
  font-size: 13px;
  color: rgba(245,242,237,0.6);
}
.col-product-card__price ins { text-decoration: none; }

/* "+" button */
.btn-cart-circle {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(196,164,107,0.4);
  color: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
}
.btn-cart-circle svg { width: 14px; height: 14px; }
.btn-cart-circle:hover { background: var(--clr-gold); border-color: var(--clr-gold); color: var(--clr-bg); }

/* Pagination */
.col-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}
.col-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  color: var(--clr-muted);
  font-size: 13px;
  transition: all .25s;
}
.col-pagination .page-numbers:hover,
.col-pagination .page-numbers.current {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-bg);
}

/* ── Feature section ────────────────────────────────────────── */
.col-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}
.col-feature__media {
  position: relative;
  overflow: hidden;
  background: #1a1410;
}
.col-feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.col-feature__content {
  background: var(--clr-bg-2);
  padding: 72px 80px 72px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.col-feature__title {
  font-family: var(--ff-serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.col-feature__content p {
  font-size: 14px;
  color: rgba(245,242,237,0.6);
  line-height: 1.75;
  max-width: 340px;
  margin-bottom: 32px;
}
.col-feature__badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--clr-border);
}
.col-feature__badge svg {
  width: 52px;
  height: 52px;
  color: var(--clr-gold);
  flex-shrink: 0;
}
.col-feature__badge strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-white);
}
.col-feature__badge span {
  font-size: 11px;
  color: var(--clr-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Lifestyle gallery ──────────────────────────────────────── */
.col-lifestyle {
  display: grid;
  grid-template-columns: 340px 1fr;
  background: var(--clr-bg);
  min-height: 420px;
  overflow: hidden;
}
.col-lifestyle__text {
  padding: 72px 48px 72px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--clr-border);
  padding-left: calc((100vw - var(--container)) / 2 + 40px);
}
.col-lifestyle__icon {
  margin-bottom: 20px;
  color: var(--clr-gold);
}
.col-lifestyle__icon svg { width: 36px; height: 44px; }
.col-lifestyle__eyebrow {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-white);
  line-height: 1.5;
  margin-bottom: 16px;
}
.col-lifestyle__sub {
  font-size: 14px;
  color: rgba(245,242,237,0.55);
  line-height: 1.7;
  margin-bottom: 32px;
}
.col-lifestyle__gallery {
  position: relative;
  overflow: hidden;
}
.col-lifestyle-swiper { height: 100%; }
.col-lifestyle__slide {
  height: 100%;
}
.col-lifestyle__slide--placeholder {
  background: var(--clr-bg-2);
}
.col-lifestyle__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.col-lifestyle__nav {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  display: flex;
  gap: 8px;
}
.col-lifestyle__nav .slider-nav {
  background: rgba(20,18,16,0.7);
  backdrop-filter: blur(8px);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .col-products-grid { grid-template-columns: repeat(3, 1fr); }
  .col-feature { grid-template-columns: 1fr; }
  .col-feature__media { min-height: 320px; }
  .col-lifestyle { grid-template-columns: 280px 1fr; }
}
@media (max-width: 768px) {
  .col-hero { height: auto; min-height: 520px; align-items: flex-end; }
  .col-hero__title { font-size: 52px; }
  .col-products-grid { grid-template-columns: repeat(2, 1fr); }
  .col-filter-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .col-filter-tab { padding: 12px 14px; font-size: 11px; }
  .col-lifestyle { grid-template-columns: 1fr; }
  .col-lifestyle__text { padding: 52px 20px; border-right: none; border-bottom: 1px solid var(--clr-border); }
  .col-lifestyle__gallery { min-height: 360px; }
}
@media (max-width: 480px) {
  .col-products-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .col-feature__content { padding: 48px 20px; }
}

/* ══════════════════════════════════════════════════════════════
   SINGLE PRODUCT PAGE
   ══════════════════════════════════════════════════════════════ */
.sp-page { padding-top: var(--header-h); }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.sp-breadcrumb {
  padding: 18px 0;
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-bg);
}
.sp-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  font-size: 12px;
  color: var(--clr-muted);
}
.sp-breadcrumb__list li + li::before { content: '>'; margin-right: 8px; }
.sp-breadcrumb__list a { color: var(--clr-muted); transition: color .2s; }
.sp-breadcrumb__list a:hover { color: var(--clr-gold); }
.sp-breadcrumb__list li:last-child { color: rgba(245,242,237,0.5); }

/* ── Layout ──────────────────────────────────────────────────── */
.sp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-top: 40px;
  padding-bottom: 80px;
  align-items: start;
}

/* ── Gallery ─────────────────────────────────────────────────── */
.sp-gallery {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.sp-gallery__thumbs-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.sp-thumbs-swiper { flex: 1; overflow: hidden; height: 520px; }
.sp-thumb {
  width: 80px !important;
  height: 80px !important;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: border-color .25s;
  position: relative;
  flex-shrink: 0;
}
.sp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sp-thumb.active { border-color: var(--clr-gold); }
.sp-thumb__play {
  position: absolute;
  inset: 0;
  background: rgba(14,12,10,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
}
.sp-thumb__play svg { width: 18px; height: 18px; margin-left: 2px; }
.sp-gallery__nav {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted);
  transition: all .25s;
}
.sp-gallery__nav svg { width: 16px; height: 16px; }
.sp-gallery__nav:hover { border-color: var(--clr-gold); color: var(--clr-gold); }

.sp-gallery__main { position: relative; }
.sp-main-swiper { border-radius: 4px; overflow: hidden; background: var(--clr-bg-2); }
.sp-gallery__img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.sp-gallery__no-img { width: 100%; aspect-ratio: 1; background: var(--clr-bg-2); }
.sp-gallery__rotate-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.45);
  white-space: nowrap;
  pointer-events: none;
}
.sp-gallery__rotate-hint svg { width: 16px; height: 16px; }

/* ── Product info ─────────────────────────────────────────────── */
.sp-info { }
.sp-info__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 12px;
  transition: opacity .2s;
}
.sp-info__cat:hover { opacity: .75; }
.sp-info__title {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 500;
  color: var(--clr-white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.sp-info__short-desc {
  font-size: 14px;
  color: rgba(245,242,237,0.6);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 420px;
}
.sp-info__price-block { margin-bottom: 28px; }
.sp-info__price .price,
.sp-info__price { font-family: var(--ff-serif); font-size: 32px; color: var(--clr-white); line-height: 1; }
.sp-info__price ins { text-decoration: none; }
.sp-info__price del { color: var(--clr-muted); font-size: 20px; margin-right: 8px; }
.sp-info__installments {
  font-size: 13px;
  color: rgba(245,242,237,0.5);
  margin-top: 6px;
}

.sp-info__section { margin-bottom: 28px; }
.sp-info__label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 12px;
}

/* Color swatches */
.sp-swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.sp-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
}
.sp-swatch:hover { transform: scale(1.12); }
.sp-swatch--active { border-color: var(--clr-gold) !important; }

/* Dimensions */
.sp-dims { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.sp-dim {
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.sp-dim svg { width: 28px; height: 28px; color: var(--clr-gold); }
.sp-dim__value { font-size: 13px; font-weight: 500; color: var(--clr-white); }
.sp-dim__label { font-size: 10px; color: var(--clr-muted); letter-spacing: 0.08em; }

/* Quantity + ATC */
.sp-info__section--actions { }
.sp-qty-atc { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.sp-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  overflow: hidden;
}
.sp-qty__btn {
  width: 44px;
  height: 52px;
  font-size: 20px;
  font-weight: 300;
  color: var(--clr-muted);
  transition: color .2s, background .2s;
  flex-shrink: 0;
}
.sp-qty__btn:hover { color: var(--clr-white); background: rgba(255,255,255,0.05); }
.sp-qty__input {
  width: 52px;
  height: 52px;
  background: transparent;
  border: none;
  border-left: 1px solid var(--clr-border);
  border-right: 1px solid var(--clr-border);
  color: var(--clr-white);
  font-family: var(--ff-sans);
  font-size: 15px;
  text-align: center;
  outline: none;
  -moz-appearance: textfield;
}
.sp-qty__input::-webkit-inner-spin-button,
.sp-qty__input::-webkit-outer-spin-button { display: none; }
.sp-atc {
  flex: 1;
  justify-content: center;
  height: 52px;
  min-width: 180px;
  font-size: 13px;
  padding: 0 24px;
}

/* WhatsApp */
.sp-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: var(--clr-white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 12px 0;
  transition: border-color .25s, background .25s;
}
.sp-whatsapp svg { width: 20px; height: 20px; fill: #25d366; }
.sp-whatsapp:hover { border-color: #25d366; background: rgba(37,211,102,0.06); }

/* Secure badge */
.sp-secure {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--clr-muted);
}
.sp-secure svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Mini trust bar ──────────────────────────────────────────── */
.sp-trust-bar {
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 36px 0;
}
.sp-trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.sp-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.sp-trust-item svg { width: 32px; height: 32px; flex-shrink: 0; color: var(--clr-gold); }
.sp-trust-item strong { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clr-white); margin-bottom: 4px; }
.sp-trust-item span { font-size: 12px; color: var(--clr-muted); line-height: 1.5; }

/* ── Product details ─────────────────────────────────────────── */
.sp-details { padding: 80px 0; background: var(--clr-bg); }
.sp-details__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.sp-details__title {
  font-family: var(--ff-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.sp-details__title em { font-style: italic; color: var(--clr-gold); }
.sp-details__desc {
  font-size: 14px;
  color: rgba(245,242,237,0.6);
  line-height: 1.75;
  margin-bottom: 24px;
}
.sp-details__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sp-details__bullets li {
  font-size: 14px;
  color: rgba(245,242,237,0.7);
  padding-left: 20px;
  position: relative;
}
.sp-details__bullets li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--clr-gold);
  font-size: 16px;
  line-height: 1;
}
.sp-details__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
}
.sp-details__img-wrap { overflow: hidden; border-radius: 3px; background: var(--clr-bg-2); }
.sp-details__img-wrap:first-child { grid-row: span 2; }
.sp-details__img-wrap--placeholder { min-height: 200px; }
.sp-details__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease-out); }
.sp-details__img-wrap:hover .sp-details__img { transform: scale(1.03); }

/* ── Related products ─────────────────────────────────────────── */
.sp-related { padding: 60px 0 80px; background: var(--clr-bg-2); }
.sp-related .section-eyebrow { display: block; margin-bottom: 32px; }
.sp-related__slider-wrap { position: relative; padding-inline: 40px; margin-top: 8px; }
.sp-related-swiper { overflow: hidden; }
.sp-related-swiper .swiper-slide { width: 240px; margin-right: 2px; }
.sp-related__nav {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}

/* ── Footer trust (produto) ──────────────────────────────────── */
.sp-footer-trust {
  padding: 48px 0;
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
}
.sp-footer-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.sp-footer-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.sp-footer-trust__item svg { width: 36px; height: 36px; flex-shrink: 0; color: var(--clr-gold); }
.sp-footer-trust__item strong { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--clr-white); margin-bottom: 4px; }
.sp-footer-trust__item span { font-size: 12px; color: var(--clr-muted); line-height: 1.5; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sp-layout { grid-template-columns: 1fr; gap: 40px; }
  .sp-gallery { position: static; }
  .sp-details__grid { grid-template-columns: 1fr; gap: 48px; }
  .sp-trust-bar__grid,
  .sp-footer-trust__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .sp-gallery { grid-template-columns: 72px 1fr; gap: 8px; }
  .sp-thumbs-swiper { height: 380px; }
  .sp-dims { grid-template-columns: repeat(2, 1fr); }
  .sp-related__nav { display: none; }
  .sp-details__images { grid-template-columns: 1fr; }
  .sp-details__img-wrap:first-child { grid-row: span 1; }
  .sp-trust-bar__grid,
  .sp-footer-trust__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .sp-qty-atc { flex-direction: column; }
  .sp-atc { width: 100%; }
  .sp-trust-bar__grid,
  .sp-footer-trust__grid { grid-template-columns: 1fr; }
}
