/*
Theme Name: Inde Roots
Theme URI: https://inderoots.in
Author: Inde Roots
Description: Premium luxury furniture e-commerce theme. Faithful WordPress port of the Inde Roots Shopify store (Impulse 7.4.0 architecture). Includes full-screen Me-Nu overlay, bestseller gallery, cart drawer, newsletter modal, arch hero, custom cursor, and WooCommerce integration.
Version: 1.0.3
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Proprietary
Text Domain: inderoots
Tags: e-commerce, woocommerce, luxury, dark, one-page
*/

/* ═══════════════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════════════ */
:root {
  /* Typography */
  --font-heading:         'Montserrat', sans-serif;
  --font-body:            'Domine', serif;
  --size-header:          36px;
  --weight-header:        400;
  --lh-header:            1;
  --ls-header:            0em;
  --size-body:            14px;
  --weight-body:          400;
  --lh-body:              1.4;
  --ls-body:              0em;
  --size-collection-title:20px;

  /* Brand Palette */
  --color-dark:           #1c1d1d;
  --color-dark2:          #111111;
  --color-dark3:          #333333;
  --color-gold:           #b68f34;
  --color-gold-lt:        #ffeb94;
  --color-grey-900:       #cccccc;
  --color-grey-700:       #999999;
  --color-grey-600:       #666666;
  --color-white:          #ffffff;

  /* UI */
  --btn-radius:           500px;
  --grid-overlay:         0;
  --icon-weight:          3px;
  --icon-cap:             round;
  --page-width:           1200px;
  --page-padding:         0 30px;
}

/* ═══════════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: var(--size-body);
  font-weight: var(--weight-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  background-color: var(--color-dark);
  color: var(--color-white);
  overflow-x: hidden;
  cursor: none; /* custom cursor takes over */
}

body.menu-is-open { overflow: hidden; }
body.drawer-open  { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--weight-header);
  line-height: var(--lh-header);
  letter-spacing: var(--ls-header);
}

.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: var(--page-padding);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════
   UTILITY ANIMATIONS
═══════════════════════════════════════════════════════════════ */
@keyframes namaFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes namaFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}
@keyframes linkreveal {
  from { transform: translate3d(0,-110%,0); }
  to   { transform: translate3d(0,0,0); }
}

@keyframes goldGradientMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes greyGradientAnim {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ═══════════════════════════════════════════════════════════════
   GRADIENT TEXT UTILITIES
═══════════════════════════════════════════════════════════════ */
.gold-gradient-text,
.gold-gradient-animation {
  background: linear-gradient(90deg,#b68f34,#ffeb94,#ba9647,#ffeb94,#b68f34);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldGradientMove 4s ease infinite;
}

.grey-gradient-animation {
  background: linear-gradient(90deg,#555,#ccc,#555,#aaa,#555);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: greyGradientAnim 6s ease infinite;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--btn-radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: opacity .2s ease, transform .2s ease;
  cursor: pointer;
}
.btn:hover { opacity: .85; transform: translateY(-1px); }

.btn--gold {
  background: linear-gradient(90deg,#b68f34,#ffeb94,#ba9647);
  color: var(--color-dark);
}
.btn--outline {
  border: 1px solid var(--color-grey-900);
  color: var(--color-white);
}
.btn--dark {
  background: var(--color-dark3);
  color: var(--color-white);
}

/* ═══════════════════════════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════════════════════════ */
#Cursor {
  pointer-events: none;
  position: fixed;
  z-index: 1000000;
  top: -30px; left: -30px;
  mix-blend-mode: difference;
}
.cursor__circle {
  --cursor-size: 48px;
  width: var(--cursor-size);
  height: var(--cursor-size);
  border-radius: 50%;
  background-color: #e8bc69;
  transition: width .2s ease, height .2s ease, background .2s ease;
}
#Cursor.hv-me.hv-big .cursor__circle { --cursor-size: 100px; }
#Cursor.hv-me.hv-md  .cursor__circle { --cursor-size: 80px; }
#Cursor.hv-me.hv-sm  .cursor__circle { --cursor-size: 10px; }
#Cursor::after {
  font-family: var(--font-heading);
  font-weight: 600;
  color: #fff;
  font-size: 10px;
  letter-spacing: 1px;
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#Cursor.hv-scroll-down::after { content: 'Scroll Down'; }
#Cursor.hv-drag::after        { content: 'DRAG'; }
#Cursor.hv-click::after       { content: 'CLICK'; }
#Cursor.overlay .cursor__circle {
  width: 48px; height: 48px;
  background-color: #e8bc69;
}
@media (hover: none) { #Cursor { display: none; } }

/* ═══════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════ */
#IndeRootsHeader {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0 30px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s ease, box-shadow .4s ease;
}
#IndeRootsHeader.is-sticky {
  background: rgba(18,18,18,.95);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
  backdrop-filter: blur(10px);
}

/* Logo */
.site-header__logo { z-index: 91; }

/* Logo sizing — square logo so width=height; contain keeps aspect ratio */
.site-header__logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

/* White logo: shown by default on dark header */
.logo--white { display: block; }
.logo--dark  { display: none; }

/* Dark logo: shown on sticky (light bg) header */
#IndeRootsHeader.is-sticky .logo--white { display: none; }
#IndeRootsHeader.is-sticky .logo--dark  { display: block; }

/* Account sidebar logo */
.ia-sidebar__logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);   /* always white on dark sidebar */
  opacity: .9;
}

/* Header Right Icons */
.site-header__icons {
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 91;
}
.site-header__icons a,
.site-header__icons button {
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0;
}
.site-header__icons svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: var(--icon-weight); stroke-linecap: var(--icon-cap); }
.site-header__icons .limited-edition-link {
  font-size: 10px;
  letter-spacing: 2px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 500px;
  padding: 7px 16px;
  transition: border-color .2s;
}
.site-header__icons .limited-edition-link:hover { border-color: rgba(255,255,255,.7); }
@media (max-width: 768px) {
  .site-header__icons .limited-edition-link { display: none; }
}
.cart-count-bubble {
  background: var(--color-gold);
  color: var(--color-dark);
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
}


/* ═══════════════════════════════════════════════════════════════════
   ME/NU TRIGGER
   ─────────────────────────────────────────────────────────────────
   · Fixed at top-center, z-index 9200 (sits ABOVE the arch at 9100)
   · Width 70px, height 95px, arch-shaped border-radius
   · Dark background via ::before (z-index 0)
   · .trigger-text at z-index 10 — always visible above ::before
═══════════════════════════════════════════════════════════════════ */
#nama-menu-trigger {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 95px;
  border-radius: 5em 5em 2.5em 2.5em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9200;   /* above arch (9100) and overlay (905) */
  isolation: isolate;
}

/* Dark arch background — z-index 0 inside trigger stacking context */
#nama-menu-trigger::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 95px;
  background: radial-gradient(circle, #111 0%, #333 100%);
  border-radius: 20em 20em 2.5em 2.5em;
  transform-origin: 50% 0;
  transform: scale(1, 1);
  transition: transform .5s cubic-bezier(.72, .02, 1, .55);
  z-index: 0;
}

/* Text wrapper — z-index 10 ensures it is ALWAYS above ::before */
.trigger-text {
  position: relative;
  z-index: 10;
  display: block;
  text-align: center;
  text-transform: uppercase;
  padding-left: 4px;
  padding-top: 5px;
  pointer-events: none;
  line-height: 1;
}
.trigger-text span {
  font-family: var(--font-heading);
  display: block;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-weight: 600;
  font-size: 10px;
  line-height: 19px;
  letter-spacing: 6px;
  text-transform: uppercase;
}

/* Open / close toggle helpers */
.open-visible { display: none !important; }
.is-open .open-visible { display: block !important; }
.is-open .open-hide { display: none !important; }

/* Mobile */
@media (max-width: 768px) {
  #nama-menu-trigger { width: 60px; height: 80px; }
  #nama-menu-trigger::before { height: 80px; width: 98%; }
  .trigger-text span { font-size: 9px; letter-spacing: 5px; line-height: 17px; }
}

/* ═══════════════════════════════════════════════════════════════════
   FULL-SCREEN BLURRED OVERLAY (behind arch, above page content)
═══════════════════════════════════════════════════════════════════ */
#NamaOverlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 905;
  display: none;
  cursor: pointer;
}
body.menu-is-open #NamaOverlay { display: block; }

/* ═══════════════════════════════════════════════════════════════════
   THE ARCH — nav.inderoots-mainmenu
   ─────────────────────────────────────────────────────────────────
   · Fixed at top-center, width 380px, height 560px
   · border-radius: 200px 200px 28px 28px  (tall arch shape)
   · z-index 9100 (below trigger 9200, above overlay 905)
   · Hidden by default; body.menu-is-open reveals it
   · Contains: search, nav links, quick links, email
═══════════════════════════════════════════════════════════════════ */
.inderoots-mainmenu {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 560px;
  border-radius: 200px 200px 28px 28px;
  background: #1c1c1c;
  z-index: 9100;
  display: none;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding-top: 110px;   /* space for the trigger above */
}
body.menu-is-open .inderoots-mainmenu {
  display: flex !important;
}

@media (max-width: 768px) {
  .inderoots-mainmenu {
    width: min(90vw, 340px);
    height: 520px;
    padding-top: 95px;
    border-radius: 160px 160px 22px 22px;
  }
}

/* ── In-arch search ── */
.menu-search-wrap {
  width: 260px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.menu-search-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding-bottom: 8px;
  background: none;
}
.menu-search-form .search-icon {
  width: 16px; height: 16px;
  stroke: #999; fill: none; flex-shrink: 0; margin-right: 8px;
}
.menu-search-form input[type="search"] {
  background: none; border: 0; color: #fff;
  font-family: var(--font-heading); font-size: 12px;
  letter-spacing: 1px; width: 100%; outline: none; padding: 0;
}
.menu-search-form input::placeholder { color: #6c757d; }

/* ── Nav link list inside arch ── */
#menuList,
.menu-quick-links,
.menu-email {
  width: 280px;
  text-align: center;
  list-style: none;
  margin: 0; padding: 0;
}
#menuList { flex-shrink: 0; }
.menu-quick-links { margin-top: 8px; }
.menu-email { margin-top: 6px; }

/* Primary links */
.main_menu--links {
  overflow: hidden;
  opacity: 0;
  transition: opacity .2s ease-in;
}
body.menu-is-open .main_menu--links {
  animation: namaFadeIn .2s .3s forwards;
}
.main_menu--links li {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
.main_menu--links a {
  font-family: var(--font-heading);
  font-size: 26px;
  color: #ddd;
  display: inline-block;
  text-decoration: none;
  transform: translate3d(0, -110%, 0);
  animation: linkreveal 1.5s .4s cubic-bezier(.19, 1, .22, 1) forwards;
  height: 42px;
  line-height: 42px;
  transition: color .1s linear;
}
.main_menu--links a.is-open { color: #666; }
.main_menu--links a:not(.is-open):hover {
  background: linear-gradient(90deg, #b68f34, #ffeb94, #ba9647, #ffeb94);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Quick links */
.menu-quick-links a {
  font-family: var(--font-heading);
  font-size: 13px !important;
  height: 26px !important;
  line-height: 26px;
  color: #888 !important;
  -webkit-text-fill-color: #888 !important;
  background: none !important;
  transform: none !important;
  animation: none !important;
  display: block;
  text-decoration: none;
  transition: color .15s;
}
.menu-quick-links a:hover {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

/* Email */
.menu-email {
  font-family: var(--font-heading);
  font-size: 10px;
  color: #555;
  letter-spacing: 2px;
  text-align: center;
  list-style: none;
}

/* Staggered delays */
.animate-delay-1  { animation-delay: .7s  !important; }
.animate-delay-2  { animation-delay: .8s  !important; }
.animate-delay-3  { animation-delay: .9s  !important; }
.animate-delay-4  { animation-delay: 1s   !important; }
.animate-delay-5  { animation-delay: 1.1s !important; }
.animate-delay-6  { animation-delay: 1.2s !important; }
.animate-delay-7  { animation-delay: 1.3s !important; }
.animate-delay-8  { animation-delay: 1.4s !important; }
.animate-delay-9  { animation-delay: 1.5s !important; }
.animate-delay-10 { animation-delay: 1.6s !important; }

/* Keyframes */
@keyframes linkreveal {
  from { transform: translate3d(0, -110%, 0); }
  to   { transform: translate3d(0, 0, 0); }
}
@keyframes namaFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   BESTSELLER GALLERY OVERLAY
═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   BESTSELLER GALLERY OVERLAY
═══════════════════════════════════════════════════════════════ */
.menu-gallery {
  background: #111;
  padding: 0 25vw;
  width: 100vw; height: 100vh;
  position: fixed;
  top: 0; left: 0;
  z-index: 99999;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #333 #111;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  user-select: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease-in, visibility .2s ease-in;
}
.menu-gallery.open {
  visibility: visible;
  opacity: 1;
}
.menu-gallery::-webkit-scrollbar { width: 2px; background: #333; }
.menu-gallery::-webkit-scrollbar-thumb { background: #333; border-radius: 16px; }

.btn-close-menu-gallery {
  position: fixed !important;
  top: 40px; left: 40px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #222;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100000;
  transition: background .2s ease;
}
.btn-close-menu-gallery:hover { background: #333; }

.menu__item {
  flex: none;
  padding: .5rem 2rem;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.menu__item img {
  position: absolute;
  z-index: 9;
  width: 300px;
  border-radius: 8px;
  opacity: 0;
  top: -150%;
  left: 100%;
  visibility: hidden;
  transition: all .2s ease-in;
  transform: translateX(-40px);
  pointer-events: none;
}
.menu__item:hover img {
  opacity: 1;
  visibility: visible;
  transform: translateX(-70px);
}
.menu__item:nth-child(even) img { left: auto; right: 100%; }
.menu__item-inner {
  font-family: var(--font-heading);
  white-space: nowrap;
  position: relative;
  cursor: pointer;
  font-size: 4vw;
  padding: .5rem;
  display: inline-block;
  background: linear-gradient(90deg,#292929,#7d7d7d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform .2s ease;
}
.menu__item-inner::before {
  content: '';
  top: 55%;
  width: 6rem;
  height: 1px;
  background: currentColor;
  position: absolute;
  right: calc(100% + 2rem);
  opacity: 0;
  pointer-events: none;
}
.menu__item-inner:hover,
.menu__item-inner:hover::before {
  background: linear-gradient(90deg,#b68f34,#ffeb94,#ba9647,#ffeb94,#b68f34);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translate3d(2rem,0,0);
  font-style: italic;
}
.menu__item-inner:hover::before { opacity: 1; }

@media (max-width: 768px) {
  .menu-gallery { padding: 0 15vw; }
  .menu__item-inner { font-size: 7vw; }
}

/* ═══════════════════════════════════════════════════════════════
   SITE SEARCH (HEADER)
═══════════════════════════════════════════════════════════════ */
.site-header__search-container {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 950;
  background: linear-gradient(-45deg,#191a1a 20%,#393939);
  padding: 20px 30px;
  transform: translateY(-110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.site-header__search-container.is-active { transform: translateY(0); }

.site-search-form {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.06);
  border-radius: 100px;
  padding: 10px 20px;
  max-width: 700px;
  margin: 0 auto;
}
.site-search-form input[type="search"] {
  flex: 1;
  background: none;
  border: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  outline: none;
}
.site-search-form input::placeholder { color: #888; }
.site-search-form button { color: #fff; padding: 0 10px; }
.site-search-form button svg { width: 20px; height: 20px; stroke: #fff; fill: none; }

/* ═══════════════════════════════════════════════════════════════
   CART DRAWER
═══════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════
   INDEROOTS CART DRAWER
═══════════════════════════════════════════════════════════════ */

/* Overlay */
.ir-cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(2px);
  z-index: 9000;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
body.drawer-open .ir-cart-overlay { opacity: 1; visibility: visible; }

/* Drawer panel */
.ir-cart {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: #1a1a1a;
  z-index: 9100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.25,1,.5,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.4);
}
.ir-cart.is-open { transform: translateX(0); }

/* Header */
.ir-cart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 20px;
  flex-shrink: 0;
}
.ir-cart__title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}
.ir-cart__close {
  background: none; border: none;
  color: #888; cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
  flex-shrink: 0;
}
.ir-cart__close:hover { background: #2a2a2a; color: #fff; }

/* Divider */
.ir-cart__divider {
  border: none;
  border-top: 1px solid #2a2a2a;
  margin: 0;
}

/* Items area */
.ir-cart__items {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}
.ir-cart__items::-webkit-scrollbar { width: 4px; }
.ir-cart__items::-webkit-scrollbar-track { background: transparent; }
.ir-cart__items::-webkit-scrollbar-thumb { background: #333; border-radius: 2px; }

/* Empty state */
.ir-cart__empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 200px; gap: 14px;
  padding: 40px;
}
.ir-cart__empty p { font-family: var(--font-heading); font-size: 13px; color: #555; margin: 0; }
.ir-cart__shop-link {
  font-family: var(--font-heading); font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--color-gold, #b8952a); text-decoration: none;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
}

/* ── Cart item row ── */
.ir-cart-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 20px 28px;
  border-bottom: 1px solid #222;
  transition: opacity .25s;
}
.ir-cart-item:last-child { border-bottom: none; }

/* Image */
.ir-cart-item__img-wrap {
  display: block;
  width: 76px; height: 76px;
  border-radius: 8px;
  overflow: hidden;
  background: #2a2a2a;
  flex-shrink: 0;
  text-decoration: none;
}
.ir-cart-item__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.ir-cart-item__img-placeholder {
  width: 100%; height: 100%;
  background: #2a2a2a;
}

/* Details col */
.ir-cart-item__details { min-width: 0; }
.ir-cart-item__name {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 400;
  color: #e0e0e0; text-decoration: none;
  display: block; line-height: 1.4;
  margin-bottom: 5px;
  transition: color .2s;
}
.ir-cart-item__name:hover { color: #fff; }

/* Variants: Color: TROPHY GOLD */
.ir-cart-item__variants { margin-bottom: 10px; }
.ir-cart-item__variant {
  display: block;
  font-family: var(--font-heading);
  font-size: 10px; letter-spacing: .8px;
  color: #666; text-transform: uppercase;
  line-height: 1.6;
}
.ir-cart-item__variant strong { color: #888; font-weight: 500; }

/* Qty stepper: − 1 + */
.ir-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid #333;
  border-radius: 4px;
  overflow: hidden;
  height: 30px;
}
.ir-qty-stepper__btn {
  background: none; border: none;
  color: #888; cursor: pointer;
  width: 30px; height: 30px;
  font-size: 16px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
  flex-shrink: 0;
}
.ir-qty-stepper__btn:hover { background: #2a2a2a; color: #fff; }
.ir-qty-stepper__num {
  font-family: var(--font-heading);
  font-size: 13px; color: #fff;
  width: 32px; text-align: center;
  flex-shrink: 0;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
  line-height: 30px;
}

/* Right col: price + remove */
.ir-cart-item__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.ir-cart-item__price {
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 400;
  color: #fff; white-space: nowrap;
}
.ir-cart-item__remove {
  background: none; border: none;
  color: #444; cursor: pointer;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
  flex-shrink: 0;
}
.ir-cart-item__remove:hover { background: #2a2a2a; color: #ccc; }

/* ── Footer ── */
.ir-cart__footer {
  flex-shrink: 0;
  padding: 0 28px 28px;
}
.ir-cart__subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 6px;
}
.ir-cart__subtotal-label {
  font-family: var(--font-heading);
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: #555;
}
.ir-cart__subtotal-amount {
  font-family: var(--font-heading);
  font-size: 16px; font-weight: 400;
  color: #fff;
}
.ir-cart__tax-note {
  font-family: var(--font-heading);
  font-size: 10px; color: #444;
  margin: 0 0 18px; letter-spacing: .3px;
}

/* Checkout button — gold */
.ir-cart__checkout {
  display: block; width: 100%;
  background: var(--color-gold, #b8952a);
  color: #111;
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  text-align: center; text-decoration: none;
  padding: 17px 24px;
  border-radius: 6px;
  transition: opacity .2s, transform .15s;
}
.ir-cart__checkout:hover { opacity: .9; transform: translateY(-1px); }

/* Mobile */
@media (max-width: 480px) {
  .ir-cart { width: 100vw; }
  .ir-cart-item { padding: 16px 20px; gap: 12px; }
  .ir-cart__header { padding: 20px 20px 16px; }
  .ir-cart__footer { padding: 0 20px 24px; }
}


/* ═══════════════════════════════════════════════════════════════
   NEWSLETTER MODAL
═══════════════════════════════════════════════════════════════ */
#newsletterModal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}
#newsletterModal.is-active {
  opacity: 1;
  visibility: visible;
}
.modal__inner {
  background: var(--color-dark);
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 0;
  max-width: 680px;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
}
.newsletter-popup__image-wrapper {
  width: 45%;
  flex-shrink: 0;
  overflow: hidden;
}
.newsletter-popup__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsletter-popup__content {
  padding: 50px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.newsletter-tagline {
  margin-bottom: 20px;
}
.newsletter-tagline img { max-width: 140px; }
.newsletter-popup__content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 400;
}
.newsletter-popup__content p {
  font-family: var(--font-body);
  font-size: 13px;
  color: #888;
  margin-bottom: 28px;
  line-height: 1.6;
}
.newsletter-input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newsletter-input-group input[type="email"] {
  background: rgba(255,255,255,.06);
  border: 1px solid #333;
  border-radius: 500px;
  padding: 12px 20px;
  color: #fff;
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .2s;
}
.newsletter-input-group input[type="email"]:focus { border-color: var(--color-gold); }
.newsletter-input-group input::placeholder { color: #555; }
.newsletter-subscribe-btn {
  background: linear-gradient(90deg,#b68f34,#ffeb94,#ba9647,#ffeb94,#b68f34);
  background-size: 200% 200%;
  animation: goldGradientMove 3s ease infinite;
  color: var(--color-dark);
  border: none;
  border-radius: 500px;
  padding: 14px 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s;
}
.newsletter-subscribe-btn:hover { opacity: .85; }
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  transition: background .2s;
  z-index: 10;
}
.modal__close:hover { background: rgba(255,255,255,.2); }
.modal__close svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2.5; }

@media (max-width: 600px) {
  .modal__inner { flex-direction: column; }
  .newsletter-popup__image-wrapper { width: 100%; height: 200px; }
  .newsletter-popup__content { padding: 30px 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO — VIDEO SECTION (DESKTOP)
═══════════════════════════════════════════════════════════════ */
.hero-video-section {
  position: relative;
  width: 100%; height: 100vh;
  overflow: hidden;
  background: #0a0704;
}

.hero-video-section video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
/* design-arch not used — scroll clip applied directly to video element */
.design-arch {
  display: none !important;
}
@media (max-width: 768px) {
  .hero-video-section { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO — MOBILE SLIDER
═══════════════════════════════════════════════════════════════ */
.hero-slider-section {
  width: 100%; height: 100vh;
  background: linear-gradient(180deg,#222,#1a1a1a,#141415,#121111);
  display: none;
  position: relative;
}
.hero-slider-section .swiper { width: 100%; height: 100%; }
.hero-slider-section .swiper-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.swiper-pagination-bullet {
  background: rgba(255,255,255,.4);
  opacity: 1;
  width: 6px; height: 6px;
}
.swiper-pagination-bullet-active { background: var(--color-gold); }

@media (max-width: 768px) {
  .hero-slider-section { display: block; }
}

/* ═══════════════════════════════════════════════════════════════
   COLLECTIONS LOGO BAR
═══════════════════════════════════════════════════════════════ */
/* ── Collections section — "Discover the collections" ── */
.collections-section {
  padding: 80px 20px 60px;
  background: #fff;
}
.collections-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Heading — large, light-weight, grey gradient matching screenshot */
.collections-heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.01em;
  background: linear-gradient(90deg, #555 0%, #bbb 50%, #888 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 60px;
  line-height: 1.15;
}

/* Icon + label row — centered, even gaps */
.collections-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.collections-item {
  flex: 0 0 auto;
  width: clamp(140px, 18vw, 220px);
  padding: 0 10px;
}

.collections-item__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  cursor: pointer;
}

/* SVG / image icon wrapper */
.collections-item__icon-wrap {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: transform .3s ease;
}
.collections-item__link:hover .collections-item__icon-wrap {
  transform: translateY(-6px);
}

/* SVG line-art icons — match screenshot stroke style */
.collections-item__icon-wrap svg {
  width: 100%;
  height: 100%;
  stroke: #888;
  transition: stroke .3s ease;
}
.collections-item__link:hover .collections-item__icon-wrap svg {
  stroke: #333;
}

/* Uploaded category image fallback */
.collections-item__image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: grayscale(1) contrast(0.6);
  transition: filter .3s ease, transform .3s ease;
}
.collections-item__link:hover .collections-item__image {
  filter: grayscale(0.3) contrast(0.8);
}

/* Label text — matches screenshot: 12px, grey, generous tracking */
.collections-item__label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #777;
  margin: 0;
  transition: color .3s ease;
  text-transform: none;
}
.collections-item__link:hover .collections-item__label {
  color: #222;
}

/* Mobile: horizontal scroll */
@media (max-width: 768px) {
  .collections-section { padding: 60px 16px 40px; }
  .collections-heading { font-size: clamp(24px, 7vw, 40px); margin-bottom: 40px; }
  .collections-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 16px;
    scrollbar-width: none;
    gap: 0;
  }
  .collections-row::-webkit-scrollbar { display: none; }
  .collections-item { width: 28vw; min-width: 110px; flex-shrink: 0; }
  .collections-item__icon-wrap { width: 80px; height: 80px; }
  .collections-item__label { font-size: 11px; }
}

/* ═══════════════════════════════════════════════════════════════
   TEXT INTRO SECTION
   White bg · grey eyebrow · large gradient heading · small body
═══════════════════════════════════════════════════════════════ */
.intro-text-section {
  background: #fff;
  text-align: center;
  padding: 70px 20px 50px;
}
.intro-eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  color: #aaa;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.intro-heading {
  font-family: var(--font-heading);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  background: linear-gradient(90deg, #444 0%, #bbb 60%, #999 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.intro-body {
  font-family: var(--font-body);
  font-size: 14px;
  color: #777;
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .intro-text-section { padding: 50px 16px 36px; }
  .intro-heading { font-size: clamp(32px, 9vw, 52px); }
}

/* ═══════════════════════════════════════════════════════════════
   MARQUEE PRODUCT CAROUSEL
   ─────────────────────────────────────────────────────────────
   Exact match to inderoots.in screenshot:
   · Full viewport width — NO page-width constraint
   · Cards: ~300px wide, tall portrait (~460px), rounded corners 20px
   · 5 height variants creating visual rhythm
   · Cards bottom-aligned so tops vary (like screenshot)
   · Image fills card fully, object-fit: cover
   · Product name: dark pill top-left, visible always
   · Quick view: dark wide pill bottom-center, appears on hover
   · Continuous auto-scroll, pauses on hover
   · White background, gap 16px between cards
   · "Invest Now" dark pill button centered below
═══════════════════════════════════════════════════════════════ */
.marquee-section {
  background: #fff;
  padding: 0 0 60px;
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
}

/* ── Scrolling track ──
   4 full cards + partial clipped cards on each edge.
   Track doubled → translateX(-50%) loops seamlessly. */
.marquee-track {
  display: flex;
  align-items: center;    /* all same height — vertically centred */
  gap: 14px;
  padding: 0;
  width: max-content;
  animation: marqueeScroll 36s linear infinite;
  will-change: transform;
  cursor: default;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Card — full bleed portrait image, uniform height ── */
.marquee-card {
  flex-shrink: 0;
  width: calc(25vw - 17px);
  height: 60vh;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #d6d0c9;
  cursor: pointer;
}

/* Remove old height variant classes — all cards same height now */
.marquee-card--h1,
.marquee-card--h2,
.marquee-card--h3,
.marquee-card--h4,
.marquee-card--h5 { height: 60vh; min-height: 420px; }

/* ── Inner link fills full card ── */
.marquee-card__inner {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  border-radius: 18px;
}

/* ── Image stack — full bleed, only .is-active shown ── */
.marquee-card__imgs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
}

.marquee-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transition: opacity .4s ease;
}
.marquee-card__img.is-active { opacity: 1; }

/* Subtle zoom on hover */
.marquee-card:hover .marquee-card__img.is-active {
  transform: scale(1.04);
  transition: opacity .4s ease, transform .7s cubic-bezier(.25,1,.5,1);
}

/* Placeholder */
.marquee-card__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #d8d4cf, #bfbab4);
}

/* ── Product name — dark rounded pill, top-left ── */
.marquee-card__name {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(18, 18, 18, 0.88);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.35;
  padding: 10px 14px;
  border-radius: 100px;        /* full pill / circle for short names */
  max-width: calc(100% - 32px);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .25s ease, transform .25s ease;
}
.marquee-card:hover .marquee-card__name {
  opacity: 1;
  transform: translateY(0);
}

/* ── Quick view — dark wide pill, bottom, hover only ── */
.marquee-card__quickview {
  position: absolute;
  bottom: 14px;
  left: 12px;
  right: 12px;
  background: rgba(18, 18, 18, 0.9);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 14px 20px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
  z-index: 3;
}
.marquee-card:hover .marquee-card__quickview {
  opacity: 1;
  transform: translateY(0);
}

/* ── Progress dots — between name and quickview ── */
.marquee-card__dots {
  position: absolute;
  top: 56px;
  left: 16px;
  display: flex;
  gap: 4px;
  z-index: 4;
  opacity: 0;
  transition: opacity .25s ease;
}
.marquee-card:hover .marquee-card__dots { opacity: 1; }
.marquee-card__dot {
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,.4);
  transition: background .2s, width .2s;
}
.marquee-card__dot.is-active {
  background: #fff;
  width: 26px;
}

/* ── Invest Now CTA ── */
.marquee-cta {
  text-align: center;
  padding: 50px 0 0;
}
.marquee-cta__btn {
  display: inline-block;
  background: #1c1c1c;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-decoration: none;
  padding: 16px 44px;
  /* CHANGE 3: sharp square corners + 1px border — luxury boutique style */
  border-radius: 0;
  border: 1px solid #1c1c1c;
  text-transform: uppercase;
  transition: background .2s, color .2s, border-color .2s;
}
.marquee-cta__btn:hover {
  background: transparent;
  color: #1c1c1c;
  border-color: #1c1c1c;
}

/* ── Mobile: 2 cards ── */
@media (max-width: 768px) {
  .marquee-card,
  .marquee-card--h1, .marquee-card--h2, .marquee-card--h3,
  .marquee-card--h4, .marquee-card--h5 {
    width: calc(50vw - 11px);
    height: 300px;
    min-height: 0;
  }
  .marquee-track { gap: 10px; }
  .marquee-card__name { font-size: 10px; padding: 8px 12px; top: 12px; left: 12px; }
  .marquee-card__quickview { font-size: 11px; padding: 11px 16px; bottom: 10px; left: 8px; right: 8px; }
  .marquee-card__dots { top: 48px; left: 12px; }
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT GRID — WooCommerce
═══════════════════════════════════════════════════════════════ */
.products-section { padding: 60px 0; }
.products-section .section-header__title {
  font-size: 28px;
  margin-bottom: 40px;
}

.woo-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .woo-products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .woo-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.grid-product {
  position: relative;
}
.grid-product__content {}
.grid-product__image-mask {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.grid-product__image-ratio {
  position: relative;
  padding-bottom: 150%;
  overflow: hidden;
}
.grid-product__image-ratio img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.grid-product:hover .grid-product__image-ratio img { transform: scale(1.04); }

.grid-product__secondary-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .4s ease;
}
.grid-product:hover .grid-product__secondary-image { opacity: 1; }
.grid-product__secondary-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 768px) { .grid-product__secondary-image { display: none; } }

.grid-product__tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 500px;
}
.grid-product__tag--sale {
  background: var(--color-gold);
  color: var(--color-dark);
}
.grid-product__tag--new {
  background: #fff;
  color: var(--color-dark);
}
.hover--title {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 3;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  white-space: nowrap;
}
.grid-product:hover .hover--title { opacity: 1; }

.quick-product__btn {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%) translateY(10px);
  z-index: 4;
  background: rgba(255,255,255,.9);
  color: var(--color-dark);
  border-radius: 500px;
  padding: 8px 18px;
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
  white-space: nowrap;
}
.grid-product:hover .quick-product__btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.grid-product__link { display: block; margin-top: 12px; }
.grid-product__meta { padding: 0 4px; }
.grid-product__title {
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--color-grey-900);
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.grid-product__price {
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--color-grey-700);
}
.grid-product__price--original {
  text-decoration: line-through;
  color: #555;
  margin-right: 6px;
}

/* ═══════════════════════════════════════════════════════════════
   QUICK VIEW MODAL
   Exact match to screenshot:
   · Fixed fullscreen backdrop — blurred grey
   · White modal panel, large rounded corners (24px)
   · Max width 960px, two-column layout (image left, details right)
   · X close top-right
   · Left: image gallery with dark circle prev/next arrows
   · Right: title, designer gold link, MRP large price,
            color swatches row, ADD TO CART dark + BUY NOW gold,
            3 accordion rows
═══════════════════════════════════════════════════════════════ */

/* Backdrop */
#QuickViewModal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(180, 175, 170, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#QuickViewModal.is-active { display: flex; }
body.qv-open { overflow: hidden; }

/* White modal panel */
.qv-modal-inner {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
  scrollbar-width: none;
}
.qv-modal-inner::-webkit-scrollbar { display: none; }

/* X close button */
.qv-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: none; border: 0;
  cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background .15s;
}
.qv-close:hover { background: #f0f0f0; }
.qv-close svg { width: 20px; height: 20px; }

/* Loading spinner */
.qv-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.qv-spinner {
  width: 36px; height: 36px;
  border: 3px solid #eee;
  border-top-color: #c9a84c;
  border-radius: 50%;
  animation: qvSpin .7s linear infinite;
}
@keyframes qvSpin { to { transform: rotate(360deg); } }

/* ── Two-column layout ── */
.qv-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: 480px;
}

/* ── LEFT: Gallery ── */
.qv-gallery {
  position: relative;
  background: #f8f8f8;
  border-radius: 24px 0 0 24px;
  overflow: hidden;
}
.qv-slides { width: 100%; height: 100%; min-height: 480px; position: relative; }
.qv-slide {
  position: absolute; inset: 0;
  display: none;
  align-items: center; justify-content: center;
}
.qv-slide.is-active { display: flex; }
.qv-slides .qv-slide:first-child { display: flex; } /* show first before JS */
.qv-slide img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 24px;
}
.qv-slide--placeholder .qv-placeholder-inner {
  width: 200px; height: 200px;
  background: linear-gradient(135deg, #e8e4df, #d8d4cf);
  border-radius: 16px;
}

/* Gallery arrows — dark circle buttons */
.qv-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: #1c1c1c;
  border: 0; border-radius: 50%;
  cursor: pointer; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, transform .15s;
}
.qv-arrow:hover { background: #333; transform: translateY(-50%) scale(1.05); }
.qv-arrow--prev { left: 16px; }
.qv-arrow--next { right: 16px; }
.qv-arrow svg {
  width: 18px; height: 18px;
  stroke: #fff; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

/* ── RIGHT: Details ── */
.qv-details {
  padding: 44px 40px 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  max-height: 90vh;
  scrollbar-width: none;
}
.qv-details::-webkit-scrollbar { display: none; }

/* Header — title left, designer right */
.qv-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.qv-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: #111;
  line-height: 1.1;
  margin: 0;
}
.qv-designer {
  text-align: right;
  flex-shrink: 0;
}
.qv-designer__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 10px;
  color: #aaa;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.qv-designer__name {
  font-family: var(--font-heading);
  font-size: 12px;
  color: #c9a84c;
  text-decoration: underline;
  letter-spacing: .5px;
}
.qv-designer__name:hover { color: #a8872a; }

/* Price */
.qv-price-wrap { margin-top: -6px; }
.qv-price-mrp {
  font-family: var(--font-heading);
  font-size: 11px;
  color: #aaa;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}
.qv-price {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 400;
  color: #111;
  line-height: 1;
}
.qv-price .woocommerce-Price-amount { font-size: 36px; }
.qv-price del { font-size: 16px; color: #aaa; text-decoration: line-through; margin-right: 8px; font-weight: 300; }
.qv-price ins { text-decoration: none; }
.qv-shipping {
  font-family: var(--font-heading);
  font-size: 11px;
  color: #999;
  margin-top: 6px;
}

/* Color swatches */
.qv-color-label {
  font-family: var(--font-heading);
  font-size: 10px;
  color: #888;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.qv-color-sep { margin: 0 6px; color: #bbb; }
.qv-color-name { color: #888; }
.qv-swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.qv-swatch {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  outline: 1.5px solid #ddd;
  cursor: pointer;
  transition: outline-color .15s, transform .15s;
  flex-shrink: 0;
}
.qv-swatch.is-selected {
  outline: 2.5px solid #c9a84c;
  transform: scale(1.1);
}
.qv-swatch:hover { outline-color: #888; }

/* CTA buttons */
.qv-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.qv-btn-atc {
  width: 100%;
  background: #1c1c1c;
  color: #fff;
  border: 0; border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 18px 24px;
  cursor: pointer;
  transition: background .2s;
}
.qv-btn-atc:hover { background: #333; }
.qv-btn-atc--disabled { background: #bbb; cursor: not-allowed; }
.qv-btn-buy {
  width: 100%;
  display: block; text-align: center;
  background: linear-gradient(90deg, #b8912a 0%, #e8c84a 50%, #b8912a 100%);
  color: #fff;
  border: 0; border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 24px;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
}
.qv-btn-buy:hover { opacity: .9; transform: translateY(-1px); }

/* Accordions */
.qv-accordions { display: flex; flex-direction: column; margin-top: 4px; }
.qv-accordion { border-top: 1px solid #ebebeb; }
.qv-accordion:last-child { border-bottom: 1px solid #ebebeb; }
.qv-accordion__trigger {
  width: 100%; background: none; border: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 500;
  color: #555; letter-spacing: 2.5px; text-transform: uppercase;
}
.qv-accordion__icon {
  width: 18px; height: 18px;
  stroke: #888; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.qv-accordion__trigger.is-open .qv-accordion__icon { transform: rotate(180deg); }
.qv-accordion__panel {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
}
.qv-accordion__inner {
  padding: 0 0 18px;
  font-family: var(--font-body);
  font-size: 13px; color: #666; line-height: 1.7;
}
.qv-accordion__inner a { color: #c9a84c; }

/* ── Mobile ── */
@media (max-width: 768px) {
  #QuickViewModal { padding: 0; align-items: flex-end; }
  .qv-modal-inner { border-radius: 20px 20px 0 0; max-width: 100%; max-height: 95vh; }
  .qv-layout { grid-template-columns: 1fr; }
  .qv-gallery { border-radius: 20px 20px 0 0; min-height: 300px; }
  .qv-slides { min-height: 300px; }
  .qv-details { padding: 24px 20px; }
  .qv-title { font-size: 22px; }
  .qv-price .woocommerce-Price-amount { font-size: 26px; }
  .qv-header { flex-direction: column; gap: 6px; }
  .qv-designer { text-align: left; }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   SITE FOOTER — matches live Shopify inderoots footer exactly
═══════════════════════════════════════════════════════════════ */

/* Footer wrapper */
.inderoots-site-footer {
  background-color: var(--color-dark);
  padding: 100px 0 20px;
  position: relative;
  /* overflow visible — hover images use position:fixed so they don't need clipping here */
}
.inderoots-site-footer .page-width {
  padding-bottom: 40px;
}

/* Scroll-reveal spacer: height = 100vh minus the footer's own height
   so the footer content sits at the very bottom on first load */
.full--height-block {
  /* Half-page spacer — footer reveals at 50vh scroll */
  height: 50vh;
  min-height: 200px;
}

/* ── Slogan ── */
.inderootsSlogan {
  text-align: center;
  padding: 0 30px 60px;
}
.inderootsSlogan__title--large h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 400;
  line-height: 1;
  margin: 0;
}
.inderootsSlogan__title--small h3 {
  font-family: var(--font-heading);
  font-size: clamp(13px, 1.8vw, 24px);
  font-weight: 300;
  margin: 10px 0 0;
}

/* Dark gradient text (matches .footer__gradient-dark-text) */
.footer__gradient-dark-text {
  background: linear-gradient(90deg, #7d7d7d, #030303);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Bottom content bar ── */
.inderootsFooterContent {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  gap: 20px;
  padding: 0 30px 20px;
}

/* Column widths: payment | menu/arch | social */
.inderoots__payment-icons { flex: 0 0 160px; }
.inderoots__menu-items    { flex: 1 1 auto; position: relative; min-width: 0; }
.inderoots__social-icons  { flex: 0 0 80px; }

/* Payment icons */
.inderoots__payment-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 6px;
  max-width: 160px;
}
.inderoots__payment-icons img {
  width: 28px;
  height: auto;
  display: inline-block;
  flex-shrink: 0;
}

/* ── Arch behind center column ── */
.inderoots__menu-items::after {
  content: '';
  position: absolute;
  background: #1e1e1e;
  width: 520px;
  bottom: -40px;
  top: auto;
  border-radius: 260px 260px 0 0;
  height: 420px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
}
.inderoots__menu-items .arch-content {
  position: relative;
  z-index: 10;
  padding: 60px 20px 40px;
  text-align: center;
}

/* Nav lists inside arch */
.inderoots__menu-items ul {
  margin: 0;
  text-align: center;
  list-style: none;
  padding: 0;
}
.inderoots__menu-items ul li {
  display: inline-block;
  padding: 0 7px;
}
.inderoots__menu-items .menu-list-1 {
  margin: 20px 0 30px;
}
.inderoots__menu-items ul li a {
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: capitalize;
  color: var(--color-grey-900);
  text-decoration: none;
  transition: color .2s;
}
.inderoots__menu-items ul li a:hover {
  color: var(--color-gold);
}
.inderoots__menu-items .menu-list-2 li {
  padding: 0;
}
.inderoots__menu-items .menu-list-2 a {
  font-size: 11px;
  color: var(--color-grey-600);
  padding: 0 6px;
}

/* Copyright */
.copyright p {
  font-family: var(--font-heading);
  font-size: 11px;
  text-align: center;
  color: var(--color-grey-600);
  margin: 10px 0;
}

/* ── Social icons ── */
.inderoots__social-icons .social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
.inderoots__social-icons .social-icons li {
  padding: 0 10px;
  list-style: none;
}
.inderoots__social-icons .social-icons li:first-child {
  margin-left: -10px;
}
.inderoots__social-icons .social-icons a {
  color: var(--color-grey-900);
  display: flex;
  align-items: center;
}
.inderoots__social-icons li .gold-icon,
.inderoots__social-icons li:hover .grey-icon { display: none; }
.inderoots__social-icons li:hover .gold-icon  { display: block; }

/* ── Mouse-trail product images (ImageTrail / GSAP) ──
   Must cover the entire footer so cursor movement anywhere triggers images.
   pointer-events: none so it never blocks clicks on links beneath it. */
/* Image trail — JS moves this to <body>, sets inline styles per image */
.random__hover--images {
  position: fixed;
  top: 0; left: 0;
  width: 0; height: 0; /* size doesn't matter — images are fixed individually */
  pointer-events: none;
  z-index: 9000;
}
.random__hover--images img {
  position: fixed;
  top: 0; left: 0;
  width: 160px;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

/* ── WhatsApp fixed button ── */
.whatsapp-icon {
  display: block;
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 20px;
  left: 40px;
  z-index: 99;
  transition: opacity .3s;
}
.whatsapp-icon img { width: 50px; }
body.footer__is-inview .whatsapp-icon { opacity: 0; pointer-events: none; }

/* ── Mobile ── */
@media (max-width: 768px) {
  .inderoots-site-footer { padding-top: 0; }
  .inderootsFooterContent { flex-wrap: wrap; padding: 0 20px 20px; }
  .inderoots__menu-items { flex: 0 0 100%; }
  .inderoots__menu-items::after { content: none; }
  .inderoots__payment-icons {
    flex: 0 0 50%;
    order: 10; margin-top: 20px; padding-bottom: 20px;
  }
  .inderoots__social-icons {
    flex: 0 0 50%;
    order: 9; margin-top: 20px; padding-bottom: 20px;
  }
  .inderootsFooterContent { align-items: center; }
  .inderoots__payment-icons img { width: 22px; }
  .inderoots__menu-items ul li a { font-size: 13px; }
  .inderoots__menu-items ul li { padding: 0 5px; }
  .inderoots__menu-items .menu-list-2 li { display: block; }
  .inderoots__social-icons .social-icons { justify-content: unset; }
  .whatsapp-icon { bottom: 80px; left: 20px; }
}


/* ═══════════════════════════════════════════════════════════════
   SINGLE PRODUCT PAGE
═══════════════════════════════════════════════════════════════ */

/* Page shell */
.sp-page { background:#f0ede8; color:#111; padding-top:72px; min-height:100vh; }

/* Breadcrumb */
.sp-breadcrumb { font-family:var(--font-heading); font-size:11px; color:#999; display:flex; flex-wrap:wrap; align-items:center; gap:5px; padding:14px 0 8px; }
.sp-breadcrumb a { color:#999; text-decoration:none; }
.sp-breadcrumb a:hover { color:#555; }

/* ═══════════════════════
   1. HERO / SLIDER
═══════════════════════ */
.sp-hero { background:#f0ede8; padding-bottom:0; overflow:hidden; position:relative; }

.sp-slider { position:relative; width:100%; }

.sp-slider__track {
  display:flex; align-items:center; gap:20px;
  width:max-content;
  transition:transform .42s cubic-bezier(.25,1,.5,1);
  will-change:transform;
  padding-bottom:30px;
}

.sp-slider__item { flex-shrink:0; width:320px; opacity:.4; transform:scale(.87); transition:opacity .4s, transform .4s; }
.sp-slider__item.is-active { opacity:1; transform:scale(1); }

.sp-slider__card { border-radius:20px; overflow:hidden; background:#e8e4df; aspect-ratio:3/4; }
.sp-slider__card img { width:100%; height:100%; object-fit:cover; display:block; }

.sp-slider__arrow {
  position:absolute; top:40%; transform:translateY(-50%);
  background:#1a1a1a; color:#fff; border:none; border-radius:50%;
  width:40px; height:40px; display:flex; align-items:center; justify-content:center;
  cursor:pointer; z-index:20; box-shadow:0 2px 12px rgba(0,0,0,.2); transition:background .2s;
}
.sp-slider__arrow:hover { background:#444; }
.sp-slider__arrow--prev { left:22px; }
.sp-slider__arrow--next { right:22px; }

.sp-slider__dots { position:absolute; bottom:8px; left:50%; transform:translateX(-50%); display:flex; gap:7px; }
.sp-slider__dot { width:6px; height:6px; border-radius:50%; background:#bbb; border:none; padding:0; cursor:pointer; transition:background .25s, width .25s; }
.sp-slider__dot.is-active { background:#333; width:20px; border-radius:3px; }

/* ═══════════════════════
   2. INFO — WIDE ARCH
   Exact match Image 1: very wide shallow white dome
   rising from carousel bottom, title sits above the peak
═══════════════════════ */
.sp-arch-wrap {
  position:relative;
  background:#f0ede8;   /* warm grey outside the arch */
  overflow:hidden;
  padding-bottom:60px;
  text-align:center;
}

/* The white dome — very wide semicircle */
.sp-arch-dome {
  position:absolute;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  /* Width >> viewport so arch edges are off-screen */
  width:160vw;
  /* Height of the dome = how tall the arch rises */
  height:700px;
  background:#fff;
  border-radius:50% 50% 0 0 / 100% 100% 0 0;
  z-index:0;
}

.sp-arch-inner {
  position:relative;
  z-index:1;
  max-width:500px;
  margin:0 auto;
  padding:56px 20px 0;
}

/* Title */
.sp-info-title { font-family:var(--font-heading); font-size:clamp(22px,3.5vw,44px); font-weight:400; line-height:1.1; margin:0 0 10px; }

/* Designer */
.sp-info-designer { font-family:var(--font-heading); font-size:12px; color:#666; letter-spacing:.4px; margin-bottom:16px; }
.sp-info-designer a { color:#333; text-decoration:underline; text-underline-offset:2px; }
.sp-info-designer a:hover { color:var(--color-gold); }

/* Price */
.sp-info-price-row { display:flex; align-items:baseline; justify-content:center; gap:6px; flex-wrap:wrap; margin-bottom:4px; }
.sp-info-mrp { font-family:var(--font-heading); font-size:10px; letter-spacing:2px; text-transform:uppercase; color:#999; }
.sp-info-price .woocommerce-Price-amount,
.sp-info-price .amount { font-family:var(--font-heading); font-size:22px; font-weight:400; color:#111; }
.sp-info-price ins { text-decoration:none; }
.sp-info-price del { font-size:15px; opacity:.4; }
.sp-info-tax { font-family:var(--font-heading); font-size:11px; color:#999; margin-bottom:14px; }
.sp-info-qty-label { font-family:var(--font-heading); font-size:10px; letter-spacing:2.5px; text-transform:uppercase; color:#999; margin-bottom:6px; }

.sp-info-stock { font-family:var(--font-heading); font-size:11px; margin-bottom:8px; }
.sp-info-stock.in  { color:#5a8c44; }
.sp-info-stock.out { color:#b04040; }

/* ATC form */
.sp-info-atc form.cart { display:flex; flex-direction:column; align-items:center; gap:12px; }
.sp-info-atc .quantity { display:flex; align-items:center; border:1px solid #d8d8d8; border-radius:100px; overflow:hidden; height:44px; width:fit-content; }
.sp-info-atc .quantity input[type="number"] { width:52px; text-align:center; background:transparent; border:none; outline:none; font-family:var(--font-heading); font-size:15px; color:#111; -moz-appearance:textfield; }
.sp-info-atc .quantity input::-webkit-outer-spin-button,
.sp-info-atc .quantity input::-webkit-inner-spin-button { -webkit-appearance:none; }
.sp-info-atc .quantity .plus,
.sp-info-atc .quantity .minus { background:none; border:none; color:#555; width:38px; height:44px; font-size:18px; display:flex; align-items:center; justify-content:center; cursor:pointer; }
.sp-info-atc .quantity .plus:hover,
.sp-info-atc .quantity .minus:hover { color:#111; }

.sp-info-atc .single_add_to_cart_button,
.sp-info-atc button[name="add-to-cart"],
.sp-info-atc input[name="add-to-cart"] {
  width:100% !important; max-width:280px !important;
  background:#111 !important; color:#fff !important;
  font-family:var(--font-heading) !important; font-size:11px !important;
  font-weight:700 !important; letter-spacing:2.5px !important; text-transform:uppercase !important;
  padding:16px 24px !important; border:none !important; border-radius:100px !important;
  cursor:pointer !important; display:block !important; text-align:center !important;
  transition:background .2s !important;
}
.sp-info-atc .single_add_to_cart_button:hover { background:#333 !important; }

/* Blueprint */
.sp-info-blueprint { margin:32px auto 0; max-width:200px; }
.sp-info-blueprint img { width:100%; display:block; }

/* Description */
.sp-info-desc { margin-top:28px; font-family:var(--font-body,'Domine',serif); font-size:14px; color:#444; line-height:1.85; text-align:center; }
.sp-info-desc p { margin:0 0 14px; }

/* ═══════════════════════
   3. LIFESTYLE AUTO-SCROLL
   Never-ending, faster (15s), no gap at end
═══════════════════════ */
.sp-life-wrap { width:100%; overflow:hidden; background:#fff; padding:24px 0; }

.sp-life-track {
  display:flex; gap:14px; width:max-content;
  /* 15s = faster scroll */
  animation:spLifeScroll 15s linear infinite;
  will-change:transform;
}
.sp-life-wrap:hover .sp-life-track { animation-play-state:paused; }

@keyframes spLifeScroll {
  0%   { transform:translateX(0); }
  /* translateX to exactly 1/3 of total width (3× copies) */
  100% { transform:translateX(calc(-33.333%)); }
}

.sp-life-card { flex-shrink:0; width:260px; aspect-ratio:3/4; border-radius:14px; overflow:hidden; background:#e8e4df; }
.sp-life-card img { width:100%; height:100%; object-fit:cover; display:block; }

/* ═══════════════════════
   4. TECHNICAL DETAILS CARD (Image 4)
   Clean rows, subtle dividers, no table
═══════════════════════ */
.sp-tech-section { background:#fff; padding:60px 20px 56px; text-align:center; }

.sp-tech-card {
  background:#edeae5; border-radius:18px;
  max-width:480px; margin:0 auto 48px;
  padding:38px 44px; text-align:left;
}
.sp-tech-title { font-family:var(--font-heading); font-size:24px; font-weight:300; text-align:center; color:#333; margin:0 0 28px; }
.sp-tech-title strong { font-weight:700; color:#111; }

.sp-tech-rows { display:flex; flex-direction:column; }
.sp-tech-row {
  display:flex; gap:16px; align-items:flex-start;
  padding:12px 0; border-bottom:1px solid #d9d6d0;
}
.sp-tech-row:last-child { border-bottom:none; }
.sp-tech-key { font-family:var(--font-heading); font-size:11px; text-transform:uppercase; letter-spacing:.5px; color:#888; flex:0 0 140px; padding-top:2px; }
.sp-tech-val { font-family:var(--font-heading); font-size:12px; color:#111; flex:1; }

.sp-pdf-link { display:inline-flex; align-items:center; color:#888; transition:color .2s; }
.sp-pdf-link:hover { color:var(--color-gold); }

/* Badges */
.sp-badges { display:flex; justify-content:center; gap:40px; flex-wrap:wrap; max-width:620px; margin:0 auto; }
.sp-badge { display:flex; flex-direction:column; align-items:center; gap:8px; max-width:105px; text-align:center; }
.sp-badge img { width:36px; height:36px; opacity:.55; }
.sp-badge span { font-family:var(--font-heading); font-size:11px; color:#888; line-height:1.5; }

/* ═══════════════════════
   5. TAGLINE + DRAG (Image 5)
═══════════════════════ */
.sp-drag-section { background:#fff; }

.sp-tagline {
  font-family:var(--font-heading); font-size:clamp(22px,3vw,42px);
  font-weight:500; text-align:center; padding:48px 20px 40px; margin:0;
}

.sp-drag {
  position:relative; width:100%; aspect-ratio:16/7;
  overflow:hidden; cursor:col-resize; user-select:none;
}
.sp-drag__before,
.sp-drag__after { position:absolute; inset:0; overflow:hidden; }
.sp-drag__before { width:50%; z-index:2; border-right:2px solid rgba(255,255,255,.55); }
.sp-drag__before img,
.sp-drag__after  img { width:100vw; height:100%; object-fit:cover; display:block; pointer-events:none; }
.sp-drag__handle {
  position:absolute; top:50%; z-index:5;
  left:calc(50% - 30px); transform:translateY(-50%);
  background:rgba(30,30,30,.72); backdrop-filter:blur(8px);
  color:#fff; border-radius:100px;
  font-family:var(--font-heading); font-size:11px; letter-spacing:2px;
  padding:11px 18px; cursor:col-resize;
  transition:left 0s linear; user-select:none;
}
.sp-hero-img img { width:100%; max-height:65vh; object-fit:cover; display:block; }

/* ═══════════════════════
   6. ABOUT DESIGNER (Image 6)
   Arch-frame photo on left, text on right
═══════════════════════ */
.sp-about {
  display:flex; gap:60px; align-items:flex-start;
  padding:70px 0; background:#fff;
}
/* Arched frame — arch-top rectangle matching Image 6 exactly */
.sp-about__frame {
  flex:0 0 260px; width:260px;
  border:1.5px solid #ddd;
  border-radius:50% 50% 6px 6px / 45% 45% 6px 6px; /* arch top */
  overflow:hidden; background:#f6f6f4;
  aspect-ratio:3/4;
  display:flex; align-items:center; justify-content:center;
}
.sp-about__frame img { width:100%; height:100%; object-fit:cover; display:block; }
.sp-about__frame--empty {
  font-family:var(--font-heading); font-size:18px; color:#888;
  text-align:center; padding:20px;
}

.sp-about__text { flex:1; padding-top:8px; }
.sp-about__eyebrow { font-family:var(--font-heading); font-size:11px; letter-spacing:2px; text-transform:uppercase; color:#888; margin:0 0 12px; }
.sp-about__name { font-family:var(--font-heading); font-size:clamp(32px,5vw,58px); font-weight:400; line-height:1.05; margin:0 0 20px; }
.sp-rte { font-family:var(--font-body,'Domine',serif); font-size:14px; color:#555; line-height:1.75; }
.sp-rte p { margin:0 0 12px; }
.sp-about__shop-label { font-family:var(--font-heading); font-size:12px; color:#888; margin:16px 0 3px; }
.sp-about__shop-link { font-family:var(--font-heading); font-size:13px; color:#333; text-decoration:underline; text-underline-offset:3px; }
.sp-about__shop-link:hover { color:var(--color-gold); }

/* ═══════════════════════
   7. YOU MAY ALSO LIKE (Image 7)
   Horizontal scroll row, large faded heading
═══════════════════════ */
.sp-related { padding:50px 0 70px; background:#fff; }
.sp-related-title { font-family:var(--font-heading); font-weight:700; font-size:clamp(28px,6vw,72px); color:#e8e4df; text-align:center; margin:0 0 30px; letter-spacing:.02em; }
.sp-related-row { display:flex; gap:16px; overflow-x:auto; padding-bottom:6px; scrollbar-width:none; -webkit-overflow-scrolling:touch; }
.sp-related-row::-webkit-scrollbar { display:none; }

.sp-rcard { flex-shrink:0; width:260px; }
.sp-rcard__img-wrap { display:block; position:relative; border-radius:14px; overflow:hidden; aspect-ratio:2/3; background:#e8e4df; margin-bottom:10px; }
.sp-rcard__img-a, .sp-rcard__img-b { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; transition:opacity .3s; }
.sp-rcard__img-b { opacity:0; }
.sp-rcard__img-wrap:hover .sp-rcard__img-a { opacity:0; }
.sp-rcard__img-wrap:hover .sp-rcard__img-b { opacity:1; }
.sp-rcard__blank { width:100%; height:100%; background:#e0ddd8; }
.sp-rcard__qv { position:absolute; bottom:10px; left:10px; right:10px; background:#111; color:#fff; border-radius:100px; font-family:var(--font-heading); font-size:11px; letter-spacing:1px; text-align:center; padding:10px; opacity:0; transition:opacity .25s; pointer-events:none; z-index:3; }
.sp-rcard__img-wrap:hover .sp-rcard__qv { opacity:1; }

.sp-rcard__meta { padding:0 2px; }
.sp-rcard__name { font-family:var(--font-heading); font-size:12px; color:#333; text-decoration:none; display:block; line-height:1.4; margin-bottom:3px; }
.sp-rcard__name em { font-style:normal; color:#888; }
.sp-rcard__name:hover { color:var(--color-gold); }
.sp-rcard__price { font-family:var(--font-heading); font-size:13px; font-weight:500; color:#111; margin:0 0 5px; }
.sp-rcard__swatches { display:flex; flex-wrap:wrap; gap:5px; }
.sp-rcard__swatch { width:16px; height:16px; border-radius:50%; border:1.5px solid rgba(0,0,0,.12); display:inline-block; }

/* ═══════════════════════
   8. FOOTER on product page (Image 8)
   Reuses inderoots-site-footer styles + adds spacer
═══════════════════════ */
.sp-footer { margin-top:0; }

/* Spacer: creates the scroll-reveal effect — footer appears as you scroll */
.sp-footer-spacer { height:40vh; }

/* ═══════════════════════
   STICKY BAR
═══════════════════════ */
.sp-sticky { position:fixed; bottom:0; left:0; right:0; z-index:200; background:rgba(12,12,12,.95); backdrop-filter:blur(12px); padding:10px 0; transform:translateY(100%); transition:transform .3s ease; }
.sp-sticky.is-visible { transform:translateY(0); }
.sp-sticky__inner { display:flex; align-items:center; justify-content:space-between; gap:16px; }
.sp-sticky__name { font-family:var(--font-heading); font-size:13px; color:#fff; flex:1; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.sp-sticky__btns { display:flex; gap:10px; flex-shrink:0; }
.sp-sticky__atc { background:#111; color:#fff; border:1px solid #3a3a3a; border-radius:100px; font-family:var(--font-heading); font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; padding:13px 26px; cursor:pointer; transition:background .2s; }
.sp-sticky__atc:hover { background:#333; }
.sp-sticky__buy { background:#b8952a; color:#fff; border-radius:100px; font-family:var(--font-heading); font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; padding:13px 26px; text-decoration:none; transition:opacity .2s; }
.sp-sticky__buy:hover { opacity:.85; }

/* ═══════════════════════
   MOBILE
═══════════════════════ */
@media (max-width:1024px) {
  .sp-slider__item { width:70vw; }
  .sp-arch-dome { width:200vw; height:500px; }
  .sp-about { flex-direction:column; gap:28px; padding:50px 20px; }
  .sp-about__frame { flex:0 0 auto; width:220px; }
  .sp-tech-card { padding:26px 22px; }
  .sp-badges { gap:28px; }
  .sp-rcard { width:220px; }
  .sp-life-card { width:200px; }
}
@media (max-width:640px) {
  .sp-page { padding-top:66px; }
  .sp-slider__item { width:84vw; }
  .sp-slider__arrow--prev { left:10px; }
  .sp-slider__arrow--next { right:10px; }
  .sp-arch-dome { width:240vw; height:400px; }
  .sp-arch-inner { padding-top:40px; }
  .sp-drag { aspect-ratio:4/3; }
  .sp-related-title { font-size:26px; }
  .sp-sticky__name { display:none; }
}



/* ── Bestseller card info (matches single product page style) ── */
.grid-product__shipping {
  font-family: var(--font-heading);
  font-size: 10px;
  color: #999;
  margin: 3px 0 0;
  font-weight: 300;
}
.grid-product__stock {
  font-family: var(--font-heading);
  font-size: 10px;
  color: #5a8c44;
  margin: 2px 0 0;
  font-weight: 500;
}
.grid-product__price--mrp {
  font-family: var(--font-heading);
  font-size: 11px;
  color: #aaa;
  text-decoration: line-through;
  font-weight: 300;
  margin-right: 5px;
}
.grid-product__price--mrp .woocommerce-Price-amount { color: #aaa; }
.grid-product__price--sale {
  font-family: var(--font-heading);
  font-size: 12px;
  color: #222;
  font-weight: 400;
}
.grid-product__price--sale .woocommerce-Price-amount { color: #222; }

/* ═══════════════════════════════════════════════════════════════
   BESTSELLER AUTO-SCROLL MARQUEE
═══════════════════════════════════════════════════════════════ */
.bs-marquee-section {
  padding: 0 0 50px;
  overflow: hidden;
}

.bs-marquee-wrap {
  width: 100%;
  overflow: hidden;
  padding: 10px 0 0;
}

/* Auto-scrolling track — same mechanic as product marquee */
.bs-marquee-track {
  display: flex;
  align-items: flex-start;   /* top-align so info sections line up */
  gap: 16px;
  width: max-content;
  animation: bsMarqueeScroll 32s linear infinite;
  will-change: transform;
}
.bs-marquee-wrap:hover .bs-marquee-track {
  animation-play-state: paused;
}

@keyframes bsMarqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Card — white, rounded, portrait image + info below ── */
.bs-card {
  flex-shrink: 0;
  width: calc(25vw - 16px);  /* 4 cards visible */
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8e4df;
  display: flex;
  flex-direction: column;
}

/* Image area */
.bs-card__img-wrap {
  display: block;
  position: relative;
  height: 55vh;
  min-height: 360px;
  overflow: hidden;
  background: #f5f3f0;
  text-decoration: none;
}

.bs-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .4s ease, transform .5s ease;
}
.bs-card__img--primary  { opacity: 1; }
.bs-card__img--hover    { opacity: 0; }
.bs-card__img-wrap:hover .bs-card__img--primary { opacity: 0; transform: scale(1.04); }
.bs-card__img-wrap:hover .bs-card__img--hover   { opacity: 1; }

.bs-card__placeholder { width: 100%; height: 100%; background: #e8e4df; }

/* Quick view on hover */
.bs-card__qv {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  background: #111;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 1px;
  text-align: center;
  padding: 11px;
  border-radius: 100px;
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
  z-index: 3;
}
.bs-card__img-wrap:hover .bs-card__qv { opacity: 1; }

/* Info section */
.bs-card__info {
  padding: 14px 16px 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bs-card__title {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.5px;
  text-decoration: none;
  line-height: 1.4;
  display: block;
  transition: color .2s;
}
.bs-card__title:hover { color: var(--color-gold, #b8952a); }

/* Price */
.bs-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 3px;
}
.bs-card__mrp {
  font-family: var(--font-heading);
  font-size: 11px;
  color: #aaa;
  text-decoration: line-through;
  font-weight: 300;
}
.bs-card__mrp .woocommerce-Price-amount { color: #aaa; }
.bs-card__sale {
  font-family: var(--font-heading);
  font-size: 12px;
  color: #222;
  font-weight: 400;
}
.bs-card__sale .woocommerce-Price-amount { color: #222; }

.bs-card__shipping {
  font-family: var(--font-heading);
  font-size: 10px;
  color: #999;
  margin: 0;
  font-weight: 300;
}
.bs-card__stock {
  font-family: var(--font-heading);
  font-size: 10px;
  color: #5a8c44;
  margin: 0;
  font-weight: 500;
}

/* Mobile */
@media (max-width: 768px) {
  .bs-card { width: calc(50vw - 12px); }
  .bs-card__img-wrap { height: 260px; min-height: 0; }
  .bs-marquee-track { gap: 10px; }
}

/* ═══════════════════════════════════════════════════════════════
   WHO WE ARE — Brand Statement Section
═══════════════════════════════════════════════════════════════ */
.wwa-section {
  background: #ffffff;
  padding: 90px 0 80px;
  text-align: center;
}

/* Eyebrow */
.wwa-eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 32px;
}

/* Statement block */
.wwa-statement {
  max-width: 720px;
  margin: 0 auto 56px;
}

.wwa-text {
  font-family: var(--font-heading);
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.75;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 18px;
}
.wwa-text:last-child { margin-bottom: 0; }

/* Brand name highlight */
.wwa-brand {
  font-weight: 700;
  color: var(--color-gold, #b8952a);
  font-style: normal;
}

/* Category line */
.wwa-categories {
  font-family: var(--font-heading);
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.6;
  margin-top: 24px;
}
.wwa-cat { white-space: nowrap; }
.wwa-cat sup {
  font-size: 9px;
  font-weight: 400;
  vertical-align: super;
  margin-left: 1px;
  color: #666;
}

/* Feature icons row */
.wwa-icons {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding-top: 12px;
}

.wwa-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 110px;
}

.wwa-icon svg {
  width: 52px;
  height: 52px;
  color: #888;
  transition: color .2s;
}
.wwa-icon:hover svg { color: var(--color-gold, #b8952a); }

.wwa-icon span {
  font-family: var(--font-heading);
  font-size: 11px;
  color: #666;
  letter-spacing: 0.3px;
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .wwa-section { padding: 60px 0 56px; }
  .wwa-icons { gap: 32px; }
  .wwa-icon svg { width: 42px; height: 42px; }
  .wwa-text { font-size: 13px; }
}


/* ═══════════════════════════════════════════════════════════════
   INDEROOTS — MY ACCOUNT PAGE
═══════════════════════════════════════════════════════════════ */

/* WooCommerce account page wrapper */
.woocommerce-account .woocommerce {
  max-width: none !important;
  padding: 0 !important;
}
.woocommerce-account #MainContent {
  background: #f7f5f2;
  min-height: 100vh;
  padding-top: 80px;
}

/* ── Two-column layout ── */
/* ═══════════════════════════════════════════════════════════════
   MY ACCOUNT PAGE — Original Inderoots Design
   Dark sidebar (280px) + warm cream content area
═══════════════════════════════════════════════════════════════ */

/* Page shell — full width, no extra padding */
.ia-page-shell {
  background: #f7f5f2;
  min-height: 100vh;
  padding: 0 !important;
}
.ia-page-shell .woocommerce {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}

/* ── Outer grid: sidebar | content ── */
.ia-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}

/* ══════════════════════════════════════
   SIDEBAR
══════════════════════════════════════ */
.ia-sidebar {
  background: #111111;
  padding: 32px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  scrollbar-width: none;
}
.ia-sidebar::-webkit-scrollbar { display: none; }

/* Brand at top */
.ia-sidebar__brand {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #222;
}
.ia-sidebar__brand a { text-decoration: none; }
.ia-sidebar__logo { max-height: 36px; width: auto; display: block; filter: brightness(0) invert(1); opacity: .85; }
.ia-sidebar__site-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* User row */
.ia-sidebar__user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

/* Avatar circle — gold gradient */
.ia-sidebar__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b8952a 0%, #e8c76a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ia-sidebar__initials {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #111;
  letter-spacing: .5px;
}
.ia-sidebar__user-info { min-width: 0; }
.ia-sidebar__name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ia-sidebar__email {
  font-family: var(--font-heading);
  font-size: 10px;
  color: #555;
  margin: 0;
  letter-spacing: .3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Nav */
.ia-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.ia-nav__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: #666;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: background .18s, color .18s;
  position: relative;
  cursor: pointer;
}
.ia-nav__item:hover { background: #1a1a1a; color: #ccc; }
.ia-nav__item--active { background: #1a1a1a; color: var(--color-gold, #b8952a); }
.ia-nav__item--logout { margin-top: 16px; border-top: 1px solid #1e1e1e; padding-top: 18px; color: #444; }
.ia-nav__item--logout:hover { color: #e05555; background: rgba(224,85,85,.06); }

.ia-nav__icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.ia-nav__icon svg { width: 16px; height: 16px; }
.ia-nav__label { flex: 1; }
.ia-nav__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-gold, #b8952a);
  flex-shrink: 0;
}

/* Shop button at bottom */
.ia-sidebar__shop-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 14px;
  margin-top: 24px;
  background: var(--color-gold, #b8952a);
  color: #111;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: opacity .2s;
}
.ia-sidebar__shop-btn:hover { opacity: .85; }

/* ══════════════════════════════════════
   CONTENT AREA
══════════════════════════════════════ */
.ia-content {
  background: #f7f5f2;
  padding: 44px 52px;
  min-height: 100vh;
}

/* WooCommerce strips its own wrappers */
.ia-content .woocommerce-MyAccount-content { padding: 0; background: transparent; }

/* Content headings */
.ia-content h2,
.ia-content .woocommerce-MyAccount-content > h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 300;
  color: #111;
  margin: 0 0 28px;
  letter-spacing: -.3px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e5e0;
}
.ia-content p {
  font-family: var(--font-heading);
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   DASHBOARD
══════════════════════════════════════ */
.ia-dash {}

/* Welcome banner */
.ia-dash__banner {
  background: #111;
  border-radius: 14px;
  padding: 36px 40px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.ia-dash__banner-eyebrow {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-gold, #b8952a);
  margin: 0 0 6px;
}
.ia-dash__banner-name {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 300;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -.5px;
}
.ia-dash__banner-sub {
  font-family: var(--font-heading);
  font-size: 12px;
  color: #555;
  margin: 0;
}
.ia-dash__banner-deco {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  color: var(--color-gold, #b8952a);
}
.ia-dash__banner-deco svg { width: 100%; height: 100%; }

/* Stat tiles */
.ia-dash__tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.ia-tile {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ece9e4;
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.ia-tile:hover {
  border-color: #bbb;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
  transform: translateY(-2px);
}
.ia-tile__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.ia-tile__num {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 200;
  color: #111;
  line-height: 1;
}
.ia-tile__icon {
  width: 22px; height: 22px;
  color: #ccc;
  flex-shrink: 0;
}
.ia-tile__icon--lg { width: 28px; height: 28px; color: #fff; }
.ia-tile__label {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #888;
  margin: 0;
}
/* Gold CTA tile */
.ia-tile--gold {
  background: #111;
  border-color: #111;
  justify-content: space-between;
}
.ia-tile--gold .ia-tile__label { color: #fff; font-size: 12px; letter-spacing: 1.5px; }
.ia-tile--gold:hover { border-color: var(--color-gold, #b8952a); }

/* Section header */
.ia-dash__section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.ia-dash__section-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: #111;
  margin: 0;
  letter-spacing: .3px;
}
.ia-dash__view-all {
  font-family: var(--font-heading);
  font-size: 11px;
  color: var(--color-gold, #b8952a);
  text-decoration: none;
  letter-spacing: .5px;
}

/* Orders list */
.ia-orders { display: flex; flex-direction: column; gap: 4px; }
.ia-order-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1px solid #ece9e4;
  border-radius: 10px;
  padding: 16px 20px;
  text-decoration: none;
  transition: border-color .18s, box-shadow .18s;
}
.ia-order-row:hover { border-color: #ccc; box-shadow: 0 2px 10px rgba(0,0,0,.04); }
.ia-order-row__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ia-order-row__col--status { flex: 0 0 auto; }
.ia-order-row__key {
  font-family: var(--font-heading);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #bbb;
}
.ia-order-row__val {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: #111;
}
.ia-order-row__arrow { width: 14px; height: 14px; color: #ccc; flex-shrink: 0; margin-left: 12px; }

/* Status badges */
.ia-status {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  font-weight: 500;
  white-space: nowrap;
}
.ia-status--completed  { background: #edf7ea; color: #2d6127; }
.ia-status--processing { background: #fff8e6; color: #b8952a; }
.ia-status--pending    { background: #f0f0ee; color: #666; }
.ia-status--on-hold    { background: #e8f3fd; color: #1a5e8a; }
.ia-status--cancelled  { background: #fdecea; color: #b04040; }
.ia-status--refunded   { background: #f5f0ff; color: #6b3fa0; }

/* Empty state */
.ia-dash__empty {
  text-align: center;
  padding: 70px 40px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #ece9e4;
}
.ia-dash__empty-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  color: #ccc;
}
.ia-dash__empty-icon svg { width: 100%; height: 100%; }
.ia-dash__empty h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: #111;
  margin: 0 0 8px;
}
.ia-dash__empty p {
  font-size: 13px;
  color: #888;
  margin: 0 0 24px;
}

/* Shared button */
.ia-btn,
.ia-content a.button,
.ia-content .button,
.ia-content input[type="submit"],
.ia-content button[type="submit"] {
  display: inline-block;
  background: #111;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 1px solid #111;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.ia-btn:hover,
.ia-content a.button:hover,
.ia-content .button:hover,
.ia-content input[type="submit"]:hover {
  background: transparent;
  color: #111;
}

/* ══════════════════════════════════════
   WC ORDERS TABLE (orders endpoint)
══════════════════════════════════════ */
.ia-content .woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-heading);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ece9e4;
}
.ia-content .woocommerce-orders-table thead tr { background: #f9f8f6; }
.ia-content .woocommerce-orders-table thead th {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #aaa;
  font-weight: 400;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #ece9e4;
}
.ia-content .woocommerce-orders-table tbody tr { border-bottom: 1px solid #f2efea; }
.ia-content .woocommerce-orders-table tbody tr:last-child { border-bottom: none; }
.ia-content .woocommerce-orders-table tbody tr:hover { background: #fafaf8; }
.ia-content .woocommerce-orders-table tbody td { padding: 16px 18px; font-size: 13px; color: #333; vertical-align: middle; }
.ia-content .woocommerce-orders-table__cell-order-number a { font-weight: 600; color: #111; text-decoration: none; }
.ia-content .woocommerce-orders-table__cell-order-number a:hover { color: var(--color-gold, #b8952a); }

/* ══════════════════════════════════════
   ADDRESS CARDS
══════════════════════════════════════ */
.ia-content .woocommerce-Addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.ia-content .woocommerce-Address {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ece9e4;
  padding: 26px 28px;
}
.ia-content .woocommerce-Address-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0ede8;
}
.ia-content .woocommerce-Address-title h3 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0;
  border: none;
  padding: 0;
}
.ia-content .woocommerce-Address-title .edit {
  font-family: var(--font-heading);
  font-size: 11px;
  color: var(--color-gold, #b8952a);
  text-decoration: none;
  letter-spacing: .5px;
}
.ia-content address {
  font-family: var(--font-heading);
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  font-style: normal;
}

/* ══════════════════════════════════════
   EDIT ACCOUNT / FORM FIELDS
══════════════════════════════════════ */
.ia-content fieldset {
  background: #fff;
  border: 1px solid #ece9e4;
  border-radius: 12px;
  padding: 26px 28px;
  margin-bottom: 20px;
}
.ia-content fieldset legend {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #111;
  padding: 0 8px;
}
.ia-content .form-row { margin-bottom: 16px; }
.ia-content .form-row label,
.ia-content .woocommerce-form-row label {
  display: block;
  font-family: var(--font-heading);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #999;
  margin-bottom: 7px;
}
.ia-content .form-row input[type="text"],
.ia-content .form-row input[type="email"],
.ia-content .form-row input[type="tel"],
.ia-content .form-row input[type="password"],
.ia-content .form-row select,
.ia-content .woocommerce-form-row input {
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  font-family: var(--font-heading);
  font-size: 13px;
  color: #111;
  padding: 12px 16px;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}
.ia-content .form-row input:focus,
.ia-content .form-row select:focus { border-color: var(--color-gold, #b8952a); }

/* ══════════════════════════════════════
   NOTICES
══════════════════════════════════════ */
.ia-content .woocommerce-message {
  background: #edf7ea;
  border-left: 3px solid #3a7a2e;
  border-radius: 8px;
  padding: 14px 18px;
  font-family: var(--font-heading);
  font-size: 13px;
  color: #2d6127;
  margin-bottom: 20px;
  list-style: none;
}
.ia-content .woocommerce-error {
  background: #fdecea;
  border-left: 3px solid #b04040;
  border-radius: 8px;
  padding: 14px 18px;
  font-family: var(--font-heading);
  font-size: 13px;
  color: #922b21;
  margin-bottom: 20px;
  list-style: none;
}
.ia-content .woocommerce-info {
  background: #fff;
  border: 1px solid #ece9e4;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 13px;
  color: #888;
}
.ia-content .woocommerce-info::before { display: none; }

/* ══════════════════════════════════════
   MOBILE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .ia-wrap { grid-template-columns: 1fr; }
  .ia-sidebar {
    position: static;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 20px;
  }
  .ia-sidebar__brand { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
  .ia-sidebar__user { margin-bottom: 0; }
  .ia-sidebar__email { display: none; }
  .ia-nav { flex-direction: row; flex-wrap: wrap; width: 100%; gap: 4px; }
  .ia-nav__item { padding: 8px 14px; border-radius: 100px; font-size: 10px; }
  .ia-nav__icon { display: none; }
  .ia-nav__dot { display: none; }
  .ia-sidebar__shop-btn { display: none; }
  .ia-content { padding: 28px 20px; }
  .ia-dash__tiles { grid-template-columns: repeat(2, 1fr); }
  .ia-content .woocommerce-Addresses { grid-template-columns: 1fr; }
  .ia-dash__banner { padding: 28px 24px; }
  .ia-dash__banner-deco { display: none; }
}
@media (max-width: 480px) {
  .ia-dash__tiles { grid-template-columns: 1fr 1fr; }
  .ia-order-row__col--status { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   WOOCOMMERCE OVERRIDES
═══════════════════════════════════════════════════════════════ */
.woocommerce-page { background: var(--color-dark); color: #fff; }

/* Shop archive */
.woocommerce ul.products { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; list-style: none; padding: 0; }
@media (max-width: 1024px) { .woocommerce ul.products { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 768px)  { .woocommerce ul.products { grid-template-columns: repeat(2,1fr); } }

.woocommerce ul.products li.product a img { border-radius: 10px; }
.woocommerce ul.products li.product .price {
  font-family: var(--font-heading);
  font-size: 12px;
  color: #777777;      /* CHANGE 4: muted grey — no aggressive red */
  font-weight: 300;    /* sleek lightweight */
}
/* Override WC default red strike-through */
.woocommerce ul.products li.product .price del,
.woocommerce ul.products li.product .price del .woocommerce-Price-amount,
.woocommerce div.product .price del,
.woocommerce div.product .price del .woocommerce-Price-amount {
  color: #aaaaaa !important;    /* muted grey — not red */
  font-weight: 300 !important;
  opacity: 1 !important;
}
.woocommerce ul.products li.product .price ins,
.woocommerce ul.products li.product .price ins .woocommerce-Price-amount,
.woocommerce div.product .price ins,
.woocommerce div.product .price ins .woocommerce-Price-amount {
  color: #222222 !important;    /* dark charcoal for current price */
  font-weight: 400 !important;
  text-decoration: none !important;
}
/* CHANGE 4: Remove aggressive SALE badges — luxury boutique style */
.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale {
  display: none !important;
}
.woocommerce ul.products li.product h2, 
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-grey-900);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: linear-gradient(90deg,#b68f34,#ffeb94,#ba9647);
  color: var(--color-dark);
  border-radius: var(--btn-radius);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 11px;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
}
.woocommerce a.button:hover { opacity: .85; }

/* Single product */
.woocommerce div.product .product_title {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 1px;
}
.woocommerce div.product .price {
  font-family: var(--font-heading);
  color: var(--color-grey-900);
  font-size: 16px;
}
.woocommerce div.product p.stock {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
}
.woocommerce div.product .woocommerce-product-details__short-description {
  font-family: var(--font-body);
  color: #888;
  line-height: 1.7;
}

/* Cart & Checkout dark theme */
.woocommerce table.shop_table {
  border-collapse: collapse;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
}
.woocommerce table.shop_table th {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  border-bottom: 1px solid #2a2a2a;
  padding: 14px 20px;
}
.woocommerce table.shop_table td { padding: 16px 20px; border-bottom: 1px solid #1e1e1e; }
.woocommerce .cart-collaterals { background: #1a1a1a; border-radius: 12px; padding: 24px; }
.woocommerce .cart_totals h2 { font-family: var(--font-heading); color: #fff; font-size: 16px; }

/* ═══════════════════════════════════════════════
   CHECKOUT PAGE — full styling
═══════════════════════════════════════════════ */
.woocommerce-checkout { background: var(--color-dark); }

/* Form labels */
.woocommerce form .form-row label {
  font-family: var(--font-heading);
  font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; color: #888;
}
/* Input fields */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px; color: #fff;
  padding: 12px 16px; font-family: var(--font-body);
}
.woocommerce form .form-row input.input-text:focus {
  border-color: var(--color-gold); outline: none;
}

/* ── ORDER SUMMARY product name — fix vertical text overflow ── */
.woocommerce-checkout-review-order-table .product-name,
.wc-block-order-summary .wc-block-order-summary-item__description,
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-product-name,
.wc-block-components-product-name,
.woocommerce-checkout .product-name {
  font-family: var(--font-heading) !important;
  font-size: 12px !important;
  color: #ccc !important;
  /* Fix: allow wrapping horizontally, not vertically */
  word-break: normal !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  white-space: normal !important;
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  /* Ensure proper width */
  max-width: 160px !important;
  display: block !important;
  line-height: 1.4 !important;
}

/* Order summary table layout fix */
.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
}
.woocommerce-checkout-review-order-table td,
.woocommerce-checkout-review-order-table th {
  font-family: var(--font-heading);
  font-size: 12px;
  color: #ccc;
  padding: 10px 8px;
  vertical-align: middle;
  border-bottom: 1px solid #222;
}
.woocommerce-checkout-review-order-table .product-name {
  width: 50%;
}
.woocommerce-checkout-review-order-table .product-total {
  text-align: right;
  color: #fff;
  font-weight: 500;
}

/* Block checkout order summary fix */
.wc-block-order-summary,
.wp-block-woocommerce-checkout-order-summary-block {
  font-family: var(--font-heading) !important;
}
.wc-block-order-summary-item__product-details-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 12px !important;
}
.wc-block-order-summary-item__description {
  flex: 1 !important;
  min-width: 0 !important;
  font-size: 12px !important;
  color: #ccc !important;
  line-height: 1.4 !important;
}
/* Product image in block checkout */
.wc-block-order-summary-item__image {
  flex-shrink: 0 !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 6px !important;
  overflow: hidden !important;
}
.wc-block-order-summary-item__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
/* Prices in block checkout */
.wc-block-components-product-price,
.wc-block-order-summary-item__individual-prices {
  font-family: var(--font-heading) !important;
  font-size: 12px !important;
  color: #fff !important;
}
.wc-block-components-product-price del {
  color: #666 !important;
  font-size: 11px !important;
}

/* ── CART DRAWER subtotal fix ── */
/* Ensure CartSubtotal renders HTML correctly */
#CartSubtotal {
  font-family: var(--font-heading);
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}
/* Strip WC span wrappers inside CartSubtotal */
#CartSubtotal .woocommerce-Price-amount,
#CartSubtotal .amount {
  font-family: var(--font-heading);
  font-size: 14px;
  color: #fff;
}
#CartSubtotal bdi { unicode-bidi: normal; }

/* ═══════════════════════════════════════════════════════════════
   MISC SECTION HELPERS
═══════════════════════════════════════════════════════════════ */
.index-section { position: relative; }

.random-hover-images {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.random-hover-images img {
  position: absolute;
  width: 300px;
  border-radius: 12px;
  opacity: 0;
  transition: opacity .4s ease, transform .4s ease;
}

/* AOS fade utility */
[data-aos="image-fade-in"] { opacity: 0; transition: opacity .6s ease; }
[data-aos="image-fade-in"].aos-animate { opacity: 1; }

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 99999;
  background: var(--color-gold);
  color: var(--color-dark);
  padding: 8px 16px;
  font-family: var(--font-heading);
}
.skip-link:focus { top: 0; }


/* ═══════════════════════════════════════════════════════════════════════════
   COLLECTION / SHOP PAGE
   Visual reference: inderoots.in screenshots (white bg, pill categories,
   white product cards, dark text — as seen in provided screenshots)
═══════════════════════════════════════════════════════════════════════════ */

/* ── Page-level: light background on shop ── */
.template-collection body,
.template-collection .main-content {
  background: var(--color-dark);
  color: var(--color-white);
}

/* ── Collection header section ── */
.NamahomeSection {
  width: 100%;
  background: var(--color-dark);
}
.inderoots__collection--header {
  padding: 120px 40px 30px;
  background: var(--color-dark);
  text-align: center;
}
.inderoots--header {
  margin-bottom: 30px;
}
.inderoots__collection--title {
  font-family: var(--font-heading);
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.02em;
  display: block;
  margin-bottom: 0;
}
/* "Discover" — dark to light gradient */
.inderoots__collection--title span:first-child {
  display: block;
  background: linear-gradient(90deg, #111 0%, #bbb 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* "The Collection" — dark */
.inderoots__collection--title span:last-child {
  display: block;
  background: linear-gradient(90deg, #555 0%, #bbb 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inderoots__collection--description { display: none; }

/* ── Category pills — pill border style matching screenshot 1 ── */
.inderoots_collection--subcategories {
  border-top: none;
  margin-top: 24px;
  padding: 0 20px 20px;
}
.inderoots_collection--subcategories .grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0; padding: 0;
}
.inderoots_collection--subcategories .grid__item {
  flex: 0 0 auto;
  margin: 0; padding: 0;
}
/* Pill style: bordered rounded button */
.collection-item--overlaid-box {
  display: inline-block;
  padding: 8px 18px;
  border: 1.5px solid #bbb;
  border-radius: 100px;
  text-decoration: none;
  transition: border-color .2s, background .2s;
  background: transparent;
}
.collection-item--overlaid-box:hover {
  border-color: #333;
  background: #f8f8f8;
}
.collection-item__title {
  font-family: var(--font-heading);
  font-size: 10px;
  color: #333;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  display: block;
  -webkit-text-fill-color: initial;
  transition: color .2s;
}
.collection-item--overlaid-box:hover .collection-item__title { color: #111; }

/* ── Collection content wrapper ── */
.inderoots-collection-wrapper { position: relative; }
.collection-content { width: 100%; background: #fff; }
.collection-content .page-width { padding: 0 40px; }
.collection-content .grid { display: block; }

/* ── Filter bar ── */
.collection-grid__wrapper { padding-top: 0; }
.collection-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0 18px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.collection-filter__item--drawer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.js-drawer-open-collection-filters {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #111;
  border: 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 11px;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 100px;
  transition: background .15s;
}
.js-drawer-open-collection-filters svg {
  width: 18px; height: 18px;
  stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round;
}
.js-drawer-open-collection-filters:hover { background: #333; }
.collection-filter__item--count {
  font-family: var(--font-heading);
  font-size: 10px; color: #888;
  letter-spacing: 2px; text-transform: uppercase;
}
.collection-filter__item--sort {
  display: flex; align-items: center; gap: 16px;
}
.collection-filter__sort-container select {
  background: none; border: 0;
  border-bottom: 1px solid #ddd;
  color: #555; font-family: var(--font-heading);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 8px 4px 0; cursor: pointer;
  -webkit-appearance: none; appearance: none;
}
.collection-filter__sort-container select:focus { outline: none; }

/* ── Grid slider ── */
#AdjustGrid { max-width: 120px; width: 100%; text-align: right; margin-left: auto; }
#GridChanger {
  -webkit-appearance: none; appearance: none;
  display: block; width: 100%; height: 1.5em;
  background: transparent;
  box-shadow: 0.3em 0.3em 0.4em #c1c2c5 inset, -0.3em -0.3em 0.4em #fff inset;
  border: 1px solid #eee; border-radius: 0.75em;
  padding: 0 0.1em; cursor: pointer;
}
#GridChanger:focus { outline: transparent; border: 1px solid #eee; }
#GridChanger::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 1.3em; height: 1.3em; border-radius: 50%;
  background: radial-gradient(circle, #111 0, #333 100%);
  border: 0; cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
  transition: all 0.1s linear;
}
#GridChanger::-moz-range-thumb {
  width: 1.3em; height: 1.3em; border-radius: 50%;
  background: radial-gradient(circle, #111 0, #333 100%);
  border: 0; cursor: pointer;
}

/* ── Variable grid ── */
.variable-collection-grid { display: flex; flex-wrap: wrap; }
.variable-collection-grid[data-grid-size="1"],
.variable-collection-grid[data-grid-size="3"],
.variable-collection-grid[data-grid-size="4"] { margin-left: -22px !important; }
[data-grid-size="1"] .main-product--grid__item { width: 100%; padding-left: 22px !important; }
[data-grid-size="2"] .main-product--grid__item { width: 50%; padding-left: 22px; }
[data-grid-size="3"] .main-product--grid__item { width: 33.333%; padding-left: 22px !important; }
[data-grid-size="4"] .main-product--grid__item { width: 25%; padding-left: 22px !important; }
.variable-collection-grid[data-grid-size="4"] .grid-product__content { min-height: 590px; }
.variable-collection-grid[data-grid-size="3"] .grid-product__content { min-height: 700px; }
.variable-collection-grid[data-grid-size="4"] .merge-author-title { display: block !important; }
.variable-collection-grid[data-grid-size="4"] .merge-excerpt-price { flex-direction: column-reverse; }
.variable-collection-grid[data-grid-size="4"] .grid-product__author { text-align: left !important; margin-left: 0 !important; }
.variable-collection-grid[data-grid-size="4"] .grid-product__price,
.variable-collection-grid[data-grid-size="4"] .grid-product__colors { width: 100% !important; text-align: left !important; }
.variable-collection-grid[data-grid-size="4"] .grid-product__colors { margin-top: 15px; }
.variable-collection-grid[data-grid-size="3"] .grid-product__bubble-text,
.variable-collection-grid[data-grid-size="4"] .grid-product__bubble-text { display: none !important; }

/* ── Product card — WHITE card with border-radius (matching screenshots 2-3) ── */
.main-product--grid__item { margin-bottom: 24px; }

/* ── Product card — dark Inderoots style ── */
.grid-product__content {
  position: relative;
  background: #161616;
  border: 0.5px solid #242424;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .3s ease, transform .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.grid-product__content:hover {
  border-color: #333;
  transform: translateY(-3px);
}

/* Sale / badge */
.grid-product__tag {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  font-family: var(--font-heading);
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  background: rgba(182,143,52,0.15);
  color: #b68f34;
  border: 0.5px solid #b68f34;
}
.grid-product__tag--sale { background: rgba(182,143,52,0.15); color: #b68f34; border-color: #b68f34; }
.grid-product__tag--new  { background: rgba(255,255,255,0.08); color: #ccc; border-color: #333; }

/* Image area */
.grid__item-image-wrapper { flex: 1; }
.grid-product__image-mask { position: relative; }
.grid__image-ratio--square {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
  background: #1e1c19;
  border-radius: 12px 12px 0 0;
}
.grid__image-ratio--square .media { position: absolute; inset: 0; }
.grid__image-ratio--square .media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.25,1,.5,1), opacity .4s ease;
}
/* Secondary image fade-in on hover */
.grid__image-ratio--square .media--secondary {
  opacity: 0;
  transition: opacity .5s ease;
}
.grid-product__image-mask:hover .media--secondary { opacity: 1; }
.grid-product__image-mask:hover .grid__image-ratio--square img { transform: scale(1.04); }

/* Product img placeholder when no image uploaded */
.product-img-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1e1c19 0%, #252220 100%);
}

/* Bubble badge */
.grid-product__bubble-text {
  position: absolute; bottom: 12px; right: 12px;
  font-family: var(--font-heading);
  font-size: 9px; letter-spacing: .15em; text-transform: uppercase;
  background: rgba(0,0,0,.7); border-radius: 100px;
  padding: 4px 12px; color: #ccc; z-index: 2;
  border: 0.5px solid #333;
}
.grid-product__bubble-text p { margin: 0; }

/* Quick view button */
.quick-product__btn {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  background: #1c1d1d;
  color: #fff;
  border: 0.5px solid #333;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 9px; letter-spacing: .15em; text-transform: uppercase;
  padding: 10px 24px;
  cursor: pointer; white-space: nowrap;
  transition: opacity .25s, transform .25s, background .2s;
  z-index: 10;
  pointer-events: all;
}
.quick-product__btn:hover { background: #b68f34; border-color: #b68f34; color: #111; }
.grid-product__image-mask:hover .quick-product__btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Error state inside modal */
.qv-error {
  text-align: center; padding: 60px 40px;
  font-family: var(--font-heading); font-size: 13px;
  color: #666; letter-spacing: 1px;
}
.qv-error a { color: #b68f34; }

/* ── Product info block ── */
.grid-product__content-block {
  padding: 16px 18px 20px;
  background: #161616;
  border-top: 0.5px solid #1e1e1e;
  flex-shrink: 0;
}
.grid-product__link { text-decoration: none; color: inherit; }
.grid-product__meta { display: flex; flex-direction: column; gap: 6px; }
.merge-author-title { display: flex; flex-direction: column; gap: 3px; }

.grid-product__title--body {
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 500;
  color: #ddd; letter-spacing: .02em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.grid-product__title--body sup { font-size: 8px; vertical-align: super; color: #666; }

.grid-product__author--body {
  font-family: var(--font-heading);
  font-size: 10px; color: #444;
  letter-spacing: .08em; text-transform: uppercase;
}
.grid-product__author--body a { color: #555; text-decoration: none; }
.grid-product__author--body a:hover { color: #b68f34; }

.merge-excerpt-price {
  display: flex; flex-wrap: wrap;
  align-items: flex-start; gap: 4px; margin-top: 8px;
}

/* Price */
.grid-product__price {
  font-family: var(--font-heading);
  font-size: 13px; color: #bbb; letter-spacing: .02em; line-height: 1.6;
  width: 100%;
}
.grid-product__price--original {
  font-size: 11px; color: #555; text-decoration: line-through; margin-right: 4px;
}
.grid-product__price .woocommerce-Price-amount { color: #bbb; }
.shipping_at_checkout small { font-size: 10px; color: #444; display: block; margin-top: 2px; }
.inverntory-status { font-size: 9px; color: #4a8a5a; font-family: var(--font-heading); letter-spacing: .08em; margin-top: 2px; }
.inverntory-status .out-of-stock { color: #666; }

/* Colors */
.grid-product__colors {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-top: 10px;
}
.grid-product__colors .label {
  font-family: var(--font-heading);
  font-size: 9px; color: #444; letter-spacing: .1em;
  text-transform: uppercase; display: block; width: 100%;
}
.color-swatch--small {
  display: inline-block; width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid #1c1d1d; outline: 1.5px solid #333;
  cursor: pointer; transition: outline-color .15s;
}
.color-swatch--with-image { background-size: cover; background-position: center; }
.color-swatch--small:hover { outline-color: #b68f34; }

/* ── Filter drawer — dark panel ── */
#FilterDrawer {
  position: fixed; top: 0; left: 0;
  width: 320px; height: 100vh; background: #111;
  z-index: 9500;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.77,0,.18,1);
  display: flex; flex-direction: column; overflow: hidden;
}
#FilterDrawer.is-open { transform: translateX(0); }
#FilterDrawer .drawer__fixed-header { padding: 24px 24px 0; flex-shrink: 0; }
#FilterDrawer .drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; border-bottom: 1px solid #1e1e1e;
}
#FilterDrawer .drawer__title {
  font-family: var(--font-heading); font-size: 18px; color: #fff;
  font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
}
#FilterDrawer .drawer__close-button {
  background: none; border: 0; cursor: pointer; padding: 6px;
}
#FilterDrawer .drawer__close-button svg {
  width: 20px; height: 20px; stroke: #888; fill: none;
  stroke-width: 2; stroke-linecap: round;
}
#FilterDrawer .drawer__scrollable {
  flex: 1; overflow-y: auto; padding: 20px 24px 40px;
  scrollbar-width: thin; scrollbar-color: #2a2a2a #111;
}
.collection-sidebar__group {
  border-bottom: 1px solid #1e1e1e; padding-bottom: 16px; margin-bottom: 16px;
}
.collapsible-trigger-btn {
  width: 100%; background: none; border: 0;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-heading); font-size: 10px; color: #888;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 0 0 12px; cursor: pointer;
}
.collapsible-trigger-btn svg {
  width: 14px; height: 14px; stroke: #666; fill: none;
  stroke-width: 2; transition: transform .2s;
}
.collapsible-trigger-btn.is-open svg { transform: rotate(180deg); }
.collapsible-content { overflow: hidden; transition: height .28s ease; }
.collapsible-content--sidebar .collapsible-content__inner { padding: 8px 0 4px; }
.tag-list { list-style: none; margin: 0; padding: 0; }
.tag { margin-bottom: 8px; }
.tag__checkbox-wrapper { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.tag__checkbox {
  width: 16px; height: 16px; flex-shrink: 0;
  border: 1px solid #2a2a2a; border-radius: 3px; position: relative;
  transition: background .15s, border-color .15s;
}
.tag__input { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.tag__input:checked + .tag__checkbox {
  background: var(--color-gold, #c9a84c); border-color: var(--color-gold, #c9a84c);
}
.tag__input:checked + .tag__checkbox::after {
  content: ''; position: absolute; left: 4px; top: 1px;
  width: 5px; height: 9px;
  border: 2px solid #111; border-top: 0; border-left: 0; transform: rotate(45deg);
}
.tag__text {
  font-family: var(--font-heading); font-size: 10px; color: #888;
  letter-spacing: 1px; text-transform: uppercase;
}
.price-range__input {
  flex: 1; background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 6px;
  color: #888; font-family: var(--font-heading); font-size: 11px; padding: 8px 10px;
}
.price-range__input:focus { outline: none; border-color: var(--color-gold, #c9a84c); }
.btn-nama-filter-apply {
  background: var(--color-gold, #c9a84c); color: #111; border: 0; border-radius: 100px;
  font-family: var(--font-heading); font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  padding: 12px 24px; cursor: pointer; width: 100%; transition: opacity .2s;
}
.btn-nama-filter-apply:hover { opacity: .85; }
.btn-nama-filter-clear {
  border: 1px solid #2a2a2a; border-radius: 100px; color: #888; text-decoration: none;
  font-family: var(--font-heading); font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  padding: 12px 24px; text-align: center; display: block; transition: border-color .2s, color .2s;
}
.btn-nama-filter-clear:hover { border-color: #888; color: #fff; }

/* ── Breadcrumb ── */
.breadcrumbs.inderoots { margin: 0; }
.breadcrumbs__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; flex-wrap: wrap; gap: 4px;
}
.breadcrumbs__item { display: inline-flex; align-items: center; }
.breadcrumbs__item:not(:last-child)::after {
  content: ''; display: inline-block;
  border-style: solid; border-width: .10em .10em 0 0;
  width: .2em; height: .2em; transform: rotate(45deg); margin-left: 6px; color: #888;
}
.breadcrumbs__link {
  font-family: var(--font-heading); font-size: .8em; letter-spacing: 1px; margin-top: 10px;
  color: #888; text-decoration: none;
}
.breadcrumbs__link:hover { color: #333; }

/* ── Pagination ── */
.inderoots-pagination { margin: 40px 0; display: flex; justify-content: center; }
.inderoots-pagination .page-numbers {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
}
.inderoots-pagination .page-numbers a,
.inderoots-pagination .page-numbers span {
  font-family: var(--font-heading); font-size: 12px; color: #555;
  letter-spacing: 2px; border: 1px solid #ddd; border-radius: 50%;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: border-color .15s, color .15s;
}
.inderoots-pagination .page-numbers a:hover { border-color: #333; color: #111; }
.inderoots-pagination .page-numbers .current { border-color: #111; color: #111; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .inderoots__collection--header { padding: 100px 16px 20px; }
  .collection-content .page-width { padding: 0 16px; }
  .inderoots__collection--title { font-size: clamp(36px, 10vw, 60px); }
  .collection-filter { flex-wrap: wrap; gap: 10px; }
  [data-grid-size="2"] .main-product--grid__item { width: 50% !important; }
  [data-grid-size="1"] .main-product--grid__item { width: 100% !important; padding-left: 22px !important; }
  #AdjustGrid { max-width: 60px; }
  #FilterDrawer { width: min(85vw, 300px); }
  .collection-filter__item--count { display: none; }
  .inderoots_collection--subcategories .grid { gap: 8px; }
}


/* ═══════════════════════════════════════════════════════════
   GLOBAL SAFEGUARD — prevent any accidental vertical text
═══════════════════════════════════════════════════════════ */
/* Ensure no element accidentally gets vertical text rendering */
.woocommerce *,
.wc-block-components *,
.wc-block-checkout *,
.wp-block-woocommerce-checkout *,
.woocommerce-cart *,
.woocommerce-checkout * {
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
}

/* Block checkout: product name must wrap horizontally */
.wc-block-components-product-details,
.wc-block-components-product-name,
.wc-block-order-summary-item__description,
.wc-block-order-summary-item__name {
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  max-width: 100% !important;
  display: block !important;
  font-family: var(--font-heading) !important;
  font-size: 12px !important;
  color: #ccc !important;
  line-height: 1.5 !important;
}

/* Cart subtotal HTML rendering */
#CartSubtotal * {
  font-family: inherit;
  color: inherit;
  font-size: inherit;
}

/* ═══════════════════════════════════════════════════════════
   CHECKOUT ORDER SUMMARY — hard fix for vertical text overflow
═══════════════════════════════════════════════════════════ */

/* Force all checkout/cart text horizontal */
.woocommerce-checkout *,
.woocommerce-cart *,
.wc-block-checkout *,
.wc-block-cart * {
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
}

/* Classic checkout order table */
.woocommerce-checkout-review-order-table {
  table-layout: fixed !important;
  width: 100% !important;
}
.woocommerce-checkout-review-order-table .product-name {
  width: 55% !important;
  word-break: break-word !important;
  white-space: normal !important;
  overflow: hidden !important;
  font-family: var(--font-heading) !important;
  font-size: 12px !important;
  color: #ccc !important;
  line-height: 1.4 !important;
}
.woocommerce-checkout-review-order-table .product-total {
  width: 45% !important;
  text-align: right !important;
  white-space: nowrap !important;
  font-family: var(--font-heading) !important;
  font-size: 12px !important;
  color: #fff !important;
}
/* Hide variation/description inside product name cell */
.woocommerce-checkout-review-order-table .product-name .variation,
.woocommerce-checkout-review-order-table .product-name dd,
.woocommerce-checkout-review-order-table .product-name dt {
  display: none !important;
}

/* Block checkout order summary items */
.wc-block-order-summary-item {
  display: grid !important;
  grid-template-columns: 52px 1fr auto !important;
  align-items: start !important;
  gap: 12px !important;
  padding: 12px 0 !important;
}
.wc-block-order-summary-item__image {
  width: 52px !important;
  height: 52px !important;
  flex-shrink: 0 !important;
  border-radius: 6px !important;
  overflow: hidden !important;
}
.wc-block-order-summary-item__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.wc-block-order-summary-item__description {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  min-width: 0 !important;
}
/* Product name — no overflow */
.wc-block-order-summary-item__description .wc-block-components-product-name,
.wc-block-components-product-name {
  font-family: var(--font-heading) !important;
  font-size: 12px !important;
  color: #ccc !important;
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  display: block !important;
  line-height: 1.4 !important;
  writing-mode: horizontal-tb !important;
}
/* Hide long product details/description in summary */
.wc-block-order-summary-item__description .wc-block-components-product-details,
.wc-block-order-summary-item__description .wc-block-components-product-details__item {
  display: none !important;
}
/* Price column */
.wc-block-order-summary-item__total {
  white-space: nowrap !important;
  font-family: var(--font-heading) !important;
  font-size: 12px !important;
  color: #fff !important;
  text-align: right !important;
}

/* ══════════════════════════════════════════════════════════
   CHECKOUT ORDER SUMMARY — definitive vertical text fix
══════════════════════════════════════════════════════════ */

/* Force entire checkout to horizontal text */
.woocommerce-checkout *,
.woocommerce-cart * {
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
}

/* Classic checkout order review table */
.woocommerce-checkout-review-order-table {
  table-layout: fixed !important;
  width: 100% !important;
}
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  vertical-align: middle !important;
  font-family: var(--font-heading) !important;
  font-size: 12px !important;
  color: #ccc !important;
  padding: 12px 8px !important;
  border-bottom: 1px solid #222 !important;
}
/* Product name cell — hard constrained */
.woocommerce-checkout-review-order-table td.product-name {
  width: 60% !important;
  word-break: break-word !important;
  white-space: normal !important;
  overflow: hidden !important;
  vertical-align: middle !important;
  line-height: 1.4 !important;
}
/* Hide EVERYTHING inside product-name except the actual <a> link */
.woocommerce-checkout-review-order-table td.product-name > *:not(a),
.woocommerce-checkout-review-order-table td.product-name .variation,
.woocommerce-checkout-review-order-table td.product-name dd,
.woocommerce-checkout-review-order-table td.product-name dt,
.woocommerce-checkout-review-order-table td.product-name p {
  display: none !important;
}
.woocommerce-checkout-review-order-table td.product-name a {
  color: #ccc !important;
  text-decoration: none !important;
  font-size: 12px !important;
  font-family: var(--font-heading) !important;
  white-space: normal !important;
  word-break: break-word !important;
  display: block !important;
}
/* Price cell */
.woocommerce-checkout-review-order-table td.product-total {
  width: 40% !important;
  text-align: right !important;
  white-space: nowrap !important;
  color: #fff !important;
}

/* WooCommerce Blocks checkout order summary */
.wc-block-components-order-summary,
.wc-block-order-summary {
  font-family: var(--font-heading) !important;
}
/* Each item row */
.wc-block-order-summary-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 14px 0 !important;
  border-bottom: 1px solid #222 !important;
}
/* Thumbnail */
.wc-block-order-summary-item__image {
  flex: 0 0 52px !important;
  width: 52px !important; height: 52px !important;
  border-radius: 6px !important; overflow: hidden !important;
}
.wc-block-order-summary-item__image img {
  width: 100% !important; height: 100% !important; object-fit: cover !important;
}
/* Middle text block */
.wc-block-order-summary-item__description {
  flex: 1 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
}
/* Product name — horizontal, wrapped */
.wc-block-components-product-name {
  font-family: var(--font-heading) !important;
  font-size: 12px !important; color: #ccc !important;
  white-space: normal !important; word-break: break-word !important;
  overflow-wrap: break-word !important; display: block !important;
  line-height: 1.4 !important; writing-mode: horizontal-tb !important;
}
/* HIDE description/meta completely */
.wc-block-components-product-details,
.wc-block-order-summary-item__description .wc-block-components-product-details,
.wc-block-order-summary-item__full-price {
  display: none !important;
}
/* Price on right */
.wc-block-order-summary-item__individual-prices,
.wc-block-order-summary-item__total {
  flex-shrink: 0 !important;
  text-align: right !important;
  font-family: var(--font-heading) !important;
  font-size: 12px !important; color: #fff !important;
  white-space: nowrap !important;
}

/* Subtotal / totals section */
.wc-block-components-totals-wrapper,
.wc-block-components-totals-item {
  font-family: var(--font-heading) !important;
  font-size: 12px !important; color: #ccc !important;
}
.wc-block-components-totals-item__value { color: #fff !important; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE — page-contact.php
═══════════════════════════════════════════════════════════════ */

/* Hero */
.contact-hero {
  background: var(--color-dark);
  padding: 160px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, #2a1a08 0%, transparent 70%);
  pointer-events: none;
}
.contact-hero__inner { position: relative; z-index: 1; }
.contact-hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}
.contact-hero__title {
  font-family: var(--font-body);
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 300;
  color: var(--color-offwhite);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.contact-hero__sub {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #666;
  text-transform: uppercase;
}

/* Body: info + form */
.contact-body {
  background: #fff;
  padding: 80px 40px;
}
.contact-body__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

/* Info column */
.contact-info__heading,
.contact-form-wrap__heading {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 12px;
}
.contact-info__divider {
  height: 0.5px;
  background: #e0d8cc;
  margin-bottom: 36px;
}
.contact-info__block { margin-bottom: 28px; }
.contact-info__label {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 6px;
}
.contact-info__value {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: #111;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
}
.contact-info__value:hover { color: var(--color-gold); }
.contact-info__value--plain { line-height: 1.7; }

/* Social icons */
.contact-social {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}
.contact-social__link {
  width: 38px; height: 38px;
  border: 0.5px solid #ddd;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.contact-social__link:hover {
  border-color: var(--color-gold);
  background: #faf7f2;
}
.contact-social__link img { filter: brightness(0); width: 16px; height: 16px; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form__field { display: flex; flex-direction: column; }
.contact-form__input,
.contact-form__textarea {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 300;
  color: #111;
  background: transparent;
  border: none;
  border-bottom: 0.5px solid #ccc;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  resize: none;
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder { color: #aaa; }
.contact-form__input:focus,
.contact-form__textarea:focus { border-bottom-color: var(--color-gold); }

.contact-form__agree {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-form__agree input[type="checkbox"] {
  width: 14px; height: 14px;
  margin-top: 2px;
  accent-color: var(--color-gold);
  flex-shrink: 0;
  cursor: pointer;
}
.contact-form__agree label {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: #888;
  cursor: pointer;
  line-height: 1.6;
}
.contact-form__agree label a { color: var(--color-gold); text-decoration: none; }
.contact-form__agree label a:hover { text-decoration: underline; }

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-dark);
  background: var(--color-gold);
  border: none;
  padding: 16px 36px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  align-self: flex-start;
  margin-top: 8px;
}
.contact-form__submit:hover { background: #d4b87a; transform: translateY(-1px); }
.contact-form__submit svg { flex-shrink: 0; }

.contact-success {
  background: #f5f2ec;
  border-left: 3px solid var(--color-gold);
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 13px;
  color: #555;
  letter-spacing: 0.05em;
}

/* FAQ section */
.contact-faq {
  background: var(--color-dark);
  padding: 100px 40px;
}
.contact-faq__inner { max-width: 860px; margin: 0 auto; }
.contact-faq__header { text-align: center; margin-bottom: 60px; }
.contact-faq__title {
  font-family: var(--font-body);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--color-offwhite);
  margin: 12px 0 0;
  letter-spacing: -0.01em;
}

/* FAQ items */
.faq-item {
  border-bottom: 0.5px solid #2a2a2a;
}
.faq-item:first-child { border-top: 0.5px solid #2a2a2a; }

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--color-offwhite);
  transition: color 0.2s;
}
.faq-item__q:hover { color: var(--color-gold); }
.faq-item.is-open .faq-item__q { color: var(--color-gold); }

.faq-item__icon { flex-shrink: 0; transition: transform 0.3s; }
.faq-item__icon .faq-v { transition: opacity 0.3s; }
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }

.faq-item__a {
  padding: 0 0 24px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 300;
  color: #888;
  line-height: 1.8;
  letter-spacing: 0.03em;
  max-width: 680px;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-hero { padding: 120px 24px 60px; }
  .contact-body { padding: 60px 24px; }
  .contact-body__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-faq { padding: 60px 24px; }
}

/* Footer nav label & contact link */
.footer-where-label {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--color-grey-600);
  text-align: center;
  width: 100%;
  display: block;
  margin: 0 0 8px;
}
.footer-contact-link { color: var(--color-gold) !important; }

/* Ensure arch-content is fully centered */
.inderoots__menu-items .arch-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   B2B PAGE — page-b2b.php (original Inderoots design)
═══════════════════════════════════════════════════════════════ */

/* Hero */
.b2b-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: #1a1a18;
}
.b2b-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 40%, #2a2520 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 70% 30%, #1e1c18 0%, transparent 60%),
    linear-gradient(180deg, #0e0e0c 0%, #1a1a16 100%);
}
/* Decorative metal-texture lines */
.b2b-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(35deg, transparent, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px),
    repeating-linear-gradient(-35deg, transparent, transparent 60px, rgba(255,255,255,0.01) 60px, rgba(255,255,255,0.01) 61px);
}

/* Arch shape rising from bottom */
.b2b-hero__arch {
  position: relative;
  z-index: 2;
  width: 520px;
  max-width: 90vw;
  background: #f5f2ec;
  border-radius: 260px 260px 0 0;
  padding: 56px 40px 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.b2b-hero__label {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #aaa;
  margin: 0 0 8px;
}
.b2b-hero__title {
  font-family: var(--font-body);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  color: #111;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1;
}
.b2b-hero__divider {
  display: block;
  width: 1px;
  height: 36px;
  background: #ccc;
  margin: 4px 0;
}
.b2b-hero__subtitle {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #555;
  margin: 0;
}

/* Intro */
.b2b-intro {
  background: #fff;
  padding: 80px 60px;
  border-bottom: 0.5px solid #eee;
}
.b2b-intro__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.b2b-intro__col p {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 1.9;
  letter-spacing: 0.02em;
  margin: 0;
  text-align: center;
}

/* Section label */
.b2b-section-label {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #aaa;
  margin: 0 0 16px;
}
.b2b-section-label--light { color: rgba(255,255,255,0.35); }

/* Partnership */
.b2b-partnership {
  background: #fff;
  padding: 100px 60px;
}
.b2b-partnership__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.b2b-partnership__title {
  font-family: var(--font-body);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: #111;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
}
.b2b-partnership__title em {
  font-style: italic;
  color: var(--color-gold);
}
.b2b-partnership__body {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 300;
  color: #666;
  line-height: 1.9;
  margin: 0 0 16px;
}
.b2b-partnership__email {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  text-decoration: none;
  border-bottom: 0.5px solid var(--color-gold);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.b2b-partnership__email:hover { opacity: 0.7; }

/* Partnership image placeholder */
.b2b-partnership__image-block {
  width: 100%;
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, #1a1a18 0%, #2e2c28 50%, #1a1a18 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.b2b-partnership__image-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.02) 20px, rgba(255,255,255,0.02) 21px);
}

/* Process */
.b2b-process {
  background: #f9f7f4;
  padding: 100px 60px;
}
.b2b-process__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.b2b-process__image-block {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1e1c18 0%, #2a2820 60%, #111 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.b2b-process__image-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(80deg, transparent, transparent 8px, rgba(255,255,255,0.03) 8px, rgba(255,255,255,0.03) 9px);
}
.b2b-process__title {
  font-family: var(--font-body);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 300;
  color: #111;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.b2b-process__title em { font-style: italic; color: var(--color-gold); }
.b2b-process__sub {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 300;
  color: #777;
  line-height: 1.9;
  margin: 0 0 12px;
}

/* Steps */
.b2b-steps { margin-top: 40px; border-top: 0.5px solid #e0dbd4; }
.b2b-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 0.5px solid #e0dbd4;
  cursor: default;
}
.b2b-step__num {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #bbb;
  flex-shrink: 0;
  padding-top: 2px;
  min-width: 28px;
}
.b2b-step__title {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #222;
  margin: 0 0 4px;
}
.b2b-step__desc {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 300;
  color: #999;
  line-height: 1.7;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s;
  opacity: 0;
}
.b2b-step:hover .b2b-step__desc,
.b2b-step:focus-within .b2b-step__desc {
  max-height: 80px;
  opacity: 1;
}
.b2b-step:hover .b2b-step__num { color: var(--color-gold); }

/* Form section */
.b2b-form-section {
  background: var(--color-dark);
  padding: 100px 40px;
  display: flex;
  justify-content: center;
}
.b2b-form-wrap {
  background: #161614;
  border-radius: 16px;
  padding: 60px 56px;
  width: 100%;
  max-width: 800px;
  text-align: center;
}
.b2b-form__title {
  font-family: var(--font-body);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  color: var(--color-offwhite);
  letter-spacing: -0.01em;
  margin: 0 0 48px;
}
.b2b-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: left;
}
.b2b-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.b2b-form__field { display: flex; flex-direction: column; }
.b2b-form__input,
.b2b-form__textarea {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 300;
  color: var(--color-offwhite);
  background: transparent;
  border: none;
  border-bottom: 0.5px solid #333;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  resize: none;
}
.b2b-form__input::placeholder,
.b2b-form__textarea::placeholder { color: #555; }
.b2b-form__input:focus,
.b2b-form__textarea:focus { border-bottom-color: var(--color-gold); }
.b2b-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-dark);
  background: var(--color-offwhite);
  border: none;
  width: 80px; height: 80px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  flex-direction: column;
  margin-top: 8px;
}
.b2b-form__submit:hover { background: var(--color-gold); transform: scale(1.05); }
.b2b-form__submit span { font-size: 10px; letter-spacing: 0.2em; }
.b2b-success { background: rgba(201,169,110,0.1); border-left: 2px solid var(--color-gold); padding: 20px 24px; font-family: var(--font-heading); font-size: 13px; color: #aaa; letter-spacing: 0.05em; text-align: left; }

/* Mobile */
@media (max-width: 768px) {
  .b2b-hero__arch { width: 90vw; padding: 40px 24px 48px; }
  .b2b-intro { padding: 60px 24px; }
  .b2b-intro__inner { grid-template-columns: 1fr; gap: 32px; }
  .b2b-partnership, .b2b-process { padding: 60px 24px; }
  .b2b-partnership__inner, .b2b-process__inner { grid-template-columns: 1fr; gap: 40px; }
  .b2b-partnership__image { display: none; }
  .b2b-form-section { padding: 60px 16px; }
  .b2b-form-wrap { padding: 40px 24px; }
  .b2b-form__row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES — Terms & Conditions / Privacy Policy
   Shared styles via .legal-page, .legal-hero, .legal-body
═══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.legal-hero {
  background: var(--color-dark);
  padding: 160px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 0%, #1a1200 0%, transparent 70%);
  pointer-events: none;
}
.legal-hero__inner { position: relative; z-index: 1; }

.legal-hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}
.legal-hero__title {
  font-family: var(--font-body);
  font-size: clamp(42px, 8vw, 96px);
  font-weight: 300;
  color: var(--color-white);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
.legal-hero__meta {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-grey-600);
}

/* ── Thin gold rule under hero ── */
.legal-hero::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.6;
}

/* ── Body: sidebar + content ── */
.legal-body {
  background: #0e0e0e;
  padding: 80px 40px 120px;
}
.legal-body__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}

/* ── TOC Sidebar ── */
.legal-toc {
  position: sticky;
  top: 100px;
}
.legal-toc__label {
  font-family: var(--font-heading);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-grey-600);
  margin-bottom: 20px;
}
.legal-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 1px solid #222;
  padding-left: 20px;
}
.legal-toc__list li {
  margin-bottom: 12px;
}
.legal-toc__list a {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--color-grey-600);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}
.legal-toc__list a:hover { color: var(--color-gold); }

/* ── Main content ── */
.legal-content {
  color: #bbb;
}

.legal-intro {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: #ddd;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 0.5px solid #222;
}

/* ── Section ── */
.legal-section {
  padding: 48px 0;
  border-bottom: 0.5px solid #1e1e1e;
}
.legal-section:last-child { border-bottom: none; }

.legal-section__title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.legal-section__num {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 300;
  color: #2a2a2a;
  line-height: 1;
  flex-shrink: 0;
  background: linear-gradient(90deg, #b68f34, #ffeb94);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.6;
}

.legal-section p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.85;
  color: #999;
  margin-bottom: 16px;
}
.legal-section p:last-child { margin-bottom: 0; }

/* ── List ── */
.legal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.legal-list li {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.85;
  color: #999;
  padding: 10px 0 10px 24px;
  border-bottom: 0.5px solid #1a1a1a;
  position: relative;
}
.legal-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  opacity: 0.5;
  font-size: 11px;
  top: 12px;
}
.legal-list li strong {
  color: #ccc;
  font-weight: 600;
}

/* ── Contact block ── */
.legal-contact-block {
  margin-top: 24px;
  padding: 28px 32px;
  border: 0.5px solid #222;
  border-left: 2px solid var(--color-gold);
  background: rgba(182, 143, 52, 0.04);
}
.legal-contact-block p {
  font-family: var(--font-heading);
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #888;
  margin-bottom: 6px !important;
}
.legal-contact-block p:first-child { color: #ccc; letter-spacing: 0.1em; }
.legal-contact-block a {
  color: var(--color-gold);
  text-decoration: none;
  transition: opacity 0.2s;
}
.legal-contact-block a:hover { opacity: 0.7; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .legal-body { padding: 60px 24px 80px; }
  .legal-body__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .legal-toc {
    position: static;
    border-bottom: 0.5px solid #222;
    padding-bottom: 32px;
  }
  .legal-toc__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    border-left: none;
    padding-left: 0;
  }
  .legal-toc__list li { margin-bottom: 0; }
}
@media (max-width: 600px) {
  .legal-hero { padding: 120px 24px 60px; }
  .legal-section { padding: 36px 0; }
}

/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGE — Tab switcher (combined Terms + Privacy page)
═══════════════════════════════════════════════════════════════ */

.legal-tabs {
  display: inline-flex;
  gap: 0;
  margin-top: 40px;
  border: 0.5px solid #2e2e2e;
  border-radius: 500px;
  padding: 4px;
  background: rgba(255,255,255,0.03);
}

.legal-tab {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-grey-600);
  padding: 10px 28px;
  border-radius: 500px;
  cursor: pointer;
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
  border: none;
  background: none;
}
.legal-tab:hover { color: var(--color-white); }
.legal-tab.is-active {
  background: linear-gradient(90deg, #b68f34, #e8c96a, #b68f34);
  color: var(--color-dark);
  font-weight: 700;
}

/* Panels */
.legal-body__panels { background: #0e0e0e; }
.legal-panel { display: none; padding: 80px 40px 120px; }
.legal-panel.is-active { display: block; }

@media (max-width: 600px) {
  .legal-tabs { flex-direction: column; border-radius: 16px; width: 100%; max-width: 320px; }
  .legal-tab  { text-align: center; }
  .legal-panel { padding: 60px 24px 80px; }
}
