/* InduSarees design system — cream, gold, red accent */

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=IBM+Plex+Sans:wght@400;500;600&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --base: #F9F7F2;
  --surface: #FFFFFF;
  --brand: #1A1A1A;
  --gold: #C5A059;
  --gold-dark: #A68B4B;
  --accent: #B22222;
  --text: #1A1A1A;
  --muted: #5C5C5C;
  --border: #E8E4DF;
  --shadow: 0 4px 24px rgba(26, 26, 26, 0.06);
  --radius: 4px;
  --font-heading: "Space Grotesk", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --font-brand-script: "Great Vibes", "Pinyon Script", cursive;
  --contact-bg: #ffedeb;
  --max-width: 1200px;
  --header-max: 880px;
  --header-h: 58px;
  --header-logo-h: 50px;
  --header-logo-w: 132px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--base);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--brand);
  margin: 0 0 0.5em;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 228, 223, 0.85);
  padding-top: var(--safe-top);
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}

.site-header .container {
  width: min(100% - 2rem, var(--header-max));
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "logo end";
  align-items: center;
  column-gap: 1.25rem;
  height: var(--header-h);
  min-height: 0;
}

.menu-toggle {
  display: none;
}

.logo {
  grid-area: logo;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1;
}

.logo-text {
  text-decoration: none;
  color: inherit;
  line-height: 1;
}

.logo-text:hover {
  color: inherit;
}

.logo-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.12em;
  font-weight: 400;
  line-height: 1;
  color: var(--brand);
}

.logo-indu {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-brand-script);
  font-size: calc(1.72rem + 2pt);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
}

.logo-i {
  position: relative;
  display: inline-block;
  line-height: inherit;
}

.logo-i-char {
  font-style: normal;
}

.logo-i-dot {
  position: absolute;
  top: 0.1em;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 0.22em;
  height: 0.22em;
  min-width: 4px;
  min-height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.logo-sarees {
  font-family: var(--font-body);
  margin-left: 0.02em;
  font-size: calc(0.62rem + 2pt);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.logo-text:hover .logo-sarees {
  color: var(--accent);
}

.hero-logo {
  display: inline-block;
  margin-bottom: 1.25rem;
  line-height: 0;
}

.hero-logo img,
.hero-logo .hero-logo-img {
  width: min(300px, 78vw);
  height: auto;
  object-fit: contain;
}

.header-end {
  grid-area: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.5rem, 1.5vw, 1rem);
  min-width: 0;
  height: 100%;
}

.header-nav {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: clamp(0.65rem, 1.4vw, 1.15rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-main li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-main a {
  font-size: calc(0.72rem + 2pt);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0;
  transition: color 0.2s;
}

.nav-main a:hover {
  color: var(--brand);
}

.nav-wa-mobile { display: none; }

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.1rem;
  flex-shrink: 0;
  padding-left: 0.65rem;
  margin-left: 0.15rem;
  border-left: 1px solid var(--border);
  height: 28px;
}

.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  background: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  color: var(--brand);
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}

.icon-btn:hover {
  background: rgba(197, 160, 89, 0.16);
  color: var(--accent);
}

.icon-glyph {
  font-size: 1rem;
  line-height: 1;
}

.icon-svg {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
}

.icon-svg-wa {
  color: #25D366;
}

.icon-btn[data-tip]::before {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 30;
}

.icon-btn[data-tip]:hover::before,
.icon-btn[data-tip]:focus-visible::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.cart-link {
  position: relative;
}

.cart-link .icon-btn-graphic {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -3px;
  right: -5px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  pointer-events: none;
}

.cart-badge[hidden] {
  display: none !important;
}

.icon-btn-caption {
  display: none;
}

.icon-btn-graphic {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none !important;
  }

  .header-nav {
    position: static;
    grid-column: auto;
  }

  .nav-main {
    display: flex !important;
    flex-direction: row;
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--gold-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #fff;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #EDE8DF 0%, #F9F7F2 40%, #E8DFD0 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(197, 160, 89, 0.15), transparent),
    linear-gradient(90deg, rgba(249, 247, 242, 0.92) 0%, rgba(249, 247, 242, 0.4) 55%, transparent 100%);
  z-index: 1;
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(160deg, #D4C4A8 0%, #C5A059 30%, #A68B4B 60%, #8B7355 100%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 3px,
    rgba(255, 255, 255, 0.03) 3px,
    rgba(255, 255, 255, 0.03) 6px
  );
}

.hero .container { position: relative; z-index: 2; }

.hero-content { max-width: 520px; padding: 4rem 0; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 420px;
}

/* ── Trust bar ── */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.trust-item {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.trust-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

/* ── Sections ── */
.section { padding: 4.5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.5rem;
}

.section-header .gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0.75rem auto 0;
}

.section-header p {
  color: var(--muted);
  max-width: 480px;
  margin: 0.75rem auto 0;
}

/* ── Collection cards ── */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.collection-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  box-shadow: var(--shadow);
}

.collection-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.4s ease;
}

.collection-card:hover .collection-card-bg { transform: scale(1.05); }

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.65) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.collection-card h3 {
  color: #fff;
  font-size: 1.15rem;
  margin: 0;
}

.collection-card span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bg-silk { background: linear-gradient(145deg, #8B2942, #C5A059); }
.bg-wedding { background: linear-gradient(145deg, #1F4D3A, #C5A059); }
.bg-daily { background: linear-gradient(145deg, #6B7B8C, #E8E4DF); }
.bg-new { background: linear-gradient(145deg, #B22222, #D4A574); }
.bg-all { background: linear-gradient(145deg, #1A1A1A, #C5A059); }
.bg-cotton { background: linear-gradient(145deg, #D4C4A8, #8B7355); }
.bg-party { background: linear-gradient(145deg, #4A1942, #D4A574); }

.indusarees-shop-hub .section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.indusarees-shop-hub .section-header p {
  color: var(--muted);
  margin: 0;
}

.indusarees-shop-hub-grid {
  margin-bottom: 2rem;
}

/* ── Product grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.product-card:hover { box-shadow: var(--shadow); }

.product-image {
  aspect-ratio: 3 / 4;
  background: linear-gradient(180deg, #EDE8DF, #D4C4A8);
  position: relative;
}

.product-image .badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gold);
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-info { padding: 1rem 1rem 1.25rem; }

.product-info h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.product-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.product-price {
  font-weight: 600;
  font-size: 1rem;
}

.product-price del {
  color: var(--muted);
  font-weight: 400;
  margin-right: 0.35rem;
}

/* ── Brand story ── */
.brand-story {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brand-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.brand-story-visual {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #F9F7F2, #C5A05933, #B2222215);
  border: 1px solid var(--border);
}

.brand-story h2 { font-size: 2rem; margin-bottom: 1rem; }

.brand-story p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* ── Footer / Contact ── */
.site-footer {
  background: var(--contact-bg);
  color: var(--muted);
  padding: 3.5rem 0 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 240px) 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.footer-grid > * {
  min-width: 0;
}

.site-footer h4 {
  color: var(--brand);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.site-footer a { color: var(--gold-dark); }
.site-footer a:hover { color: var(--accent); }

.footer-brand {
  max-width: 240px;
  margin-top: -5rem;
}

.footer-logo {
  line-height: 0;
  margin-bottom: 0;
}

.footer-logo img {
  width: 234px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 0 -3.25rem;
}

.footer-brand p {
  margin: 0 0 0.35rem;
  line-height: 1.5;
}

.footer-brand > img {
  width: 234px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 0 -3.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

/* ── Shop page ── */
.page-hero {
  padding: 3rem 0 2rem;
  text-align: center;
}

.page-hero h1 { font-size: 2.25rem; }

.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  padding-bottom: 4rem;
}

.filters {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  height: fit-content;
  position: sticky;
  top: calc(var(--header-h) + var(--safe-top) + 1rem);
}

.filters h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 1.25rem 0 0.75rem;
}

.filters h3:first-child { margin-top: 0; }

.filter-list { list-style: none; margin: 0; padding: 0; }

.filter-list li {
  padding: 0.35rem 0;
  font-size: 0.9rem;
}

.filter-list a {
  color: var(--muted);
  text-decoration: none;
  display: block;
}

.filter-list a:hover,
.filter-list a.is-active {
  color: var(--accent);
  font-weight: 500;
}

.shop-mobile-filters {
  display: none;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.shop-mobile-filters a {
  flex: 1 1 calc(50% - 0.25rem);
  min-width: calc(50% - 0.25rem);
  text-align: center;
  padding: 0.75rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.shop-mobile-filters a:hover {
  border-color: var(--gold);
  color: var(--accent);
}

.shop-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;
}

.filter-chip,
.filter-clear {
  font-size: 0.8rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

.filter-chip:hover,
.filter-clear:hover {
  border-color: var(--gold);
  color: var(--accent);
}

.filter-clear {
  color: var(--muted);
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ── Product detail ── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 2rem 0 4rem;
}

.product-gallery-main {
  aspect-ratio: 3 / 4;
  background: linear-gradient(180deg, #EDE8DF, #C5A05944);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.product-thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.product-thumbs div {
  width: 72px;
  aspect-ratio: 3 / 4;
  background: var(--border);
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
}

.product-thumbs div.active { border-color: var(--gold); }

.product-summary h1 { font-size: 1.75rem; margin-bottom: 0.5rem; }

.product-summary .price {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1rem 0;
}

.product-summary .price del {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 400;
  margin-right: 0.5rem;
}

.product-attrs {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  margin: 1.5rem 0;
}

.product-attrs dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.5rem 1rem;
  margin: 0;
  font-size: 0.9rem;
}

.product-attrs dt { color: var(--muted); font-weight: 500; }
.product-attrs dd { margin: 0; }

.stock-badge {
  display: inline-block;
  font-size: 0.8rem;
  color: #1F4D3A;
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.qty-input {
  width: 64px;
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  text-align: center;
}

.delivery-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--base);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--muted);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #25D366;
}

/* ── My Account (login / signup) ── */
.account-auth {
  padding-block: 3rem 4rem;
  max-width: 420px;
}

.account-auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.account-auth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--base);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.account-auth-btn:hover {
  background: rgba(197, 160, 89, 0.14);
  border-color: var(--gold-dark);
  color: var(--gold-dark);
}

.account-auth-btn--signup {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--base);
}

.account-auth-btn--signup:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--base);
}

.account-auth-social {
  margin-bottom: 0.25rem;
}

.account-auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0 1rem;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: lowercase;
}

.account-auth-divider::before,
.account-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Nextend Social Login — Google button */
.account-auth-social .nsl-container {
  margin: 0;
}

.account-auth-social .nsl-container-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.account-auth-social .nsl-button {
  min-height: 3.25rem !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-heading) !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}

.account-auth-social .nsl-button-google {
  background: #fff !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
}

.account-auth-social .nsl-button-google:hover {
  border-color: var(--gold) !important;
  background: rgba(197, 160, 89, 0.08) !important;
}

/* Preview mockup (static HTML only) */
.account-auth-btn--google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  cursor: default;
}

.account-auth-btn--google::before {
  content: 'G';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc05 75%, #ea4335 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}

.woocommerce-account:not(.logged-in) .woocommerce > p,
.woocommerce-account:not(.logged-in) .woocommerce-form-row-wide + p:not(.form-row) {
  display: none;
}

.woocommerce-account:not(.logged-in) .u-column1 h2,
.woocommerce-account:not(.logged-in) .u-column2 h2 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--gold-dark);
}

/* Hide WooCommerce forms until Login / Signup is chosen */
.woocommerce-account:not(.logged-in) #customer_login {
  display: none;
  max-width: 420px;
  margin: 0 auto;
}

.woocommerce-account:not(.logged-in).indusarees-account-login #customer_login,
.woocommerce-account:not(.logged-in).indusarees-account-signup #customer_login {
  display: block;
}

.woocommerce-account:not(.logged-in).indusarees-account-login .u-column2,
.woocommerce-account:not(.logged-in).indusarees-account-signup .u-column1 {
  display: none;
}

.woocommerce-account:not(.logged-in).indusarees-account-login .u-column1,
.woocommerce-account:not(.logged-in).indusarees-account-signup .u-column2 {
  width: 100%;
  float: none;
}

button.account-auth-btn {
  cursor: pointer;
  width: 100%;
}

/* Hide Kadence default header when custom InduSarees header is active */
body.indusarees-has-custom-header #masthead.site-header-wrap,
body.indusarees-has-custom-header .site-top-header-wrap,
body.indusarees-has-custom-header .site-main-header-wrap,
body.indusarees-has-custom-header .site-bottom-header-wrap,
body.indusarees-has-custom-header .site-branding,
body.indusarees-has-custom-header #mobile-drawer {
  display: none !important;
}

body.indusarees-has-custom-header header.site-header[data-indusarees-header],
body.indusarees-has-custom-header #indusarees-masthead {
  display: block !important;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .collections-grid,
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --header-h: 58px;
    --header-logo-h: 40px;
    --header-logo-w: 96px;
  }

  .site-header .container {
    width: min(100% - 1rem, 100%);
    overflow: visible;
  }

  .header-inner {
    grid-template-columns: 2.5rem minmax(0, 1fr) minmax(7.85rem, max-content);
    grid-template-areas: "toggle logo actions";
    column-gap: 0.25rem;
    min-height: var(--header-h);
    overflow: visible;
  }

  .menu-toggle {
    display: inline-flex !important;
    grid-area: toggle;
  }

  .logo-text {
    grid-area: logo;
    justify-self: center;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .logo-indu {
    font-size: calc(1.35rem + 1pt);
  }

  .logo-sarees {
    font-size: calc(0.52rem + 1pt);
    letter-spacing: 0.12em;
  }

  .hero-logo img,
  .hero-logo .hero-logo-img {
    width: min(240px, 70vw);
  }

  .header-end {
    display: contents;
  }

  .header-actions {
    grid-area: actions;
    display: flex !important;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 0;
    padding-left: 0;
    margin-left: 0;
    border-left: none;
    height: auto;
    overflow: visible;
    flex-shrink: 0;
    min-width: 7.85rem;
  }

  .header-actions .icon-btn,
  .header-actions .icon-btn-stack {
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 2.55rem;
    height: auto;
    min-height: 2.5rem;
    padding: 0.1rem 0 0;
    gap: 0.12rem;
    flex-shrink: 0;
    overflow: visible;
  }

  .header-actions .icon-btn[data-tip]::before {
    display: none;
  }

  .icon-btn-caption {
    display: block;
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--muted);
    line-height: 1;
    text-align: center;
    max-width: 2.55rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-actions .icon-svg {
    width: 1.1rem;
    height: 1.1rem;
  }

  .icon-btn-wa .icon-svg-wa {
    color: #25D366;
  }

  .cart-badge {
    top: -4px;
    right: -6px;
    min-width: 15px;
    height: 15px;
    font-size: 0.52rem;
    line-height: 15px;
  }

  .indusarees-shop-hub,
  .indusarees-shop-hub-grid {
    display: block;
  }

  .indusarees-shop-hub-grid.collections-grid {
    display: grid !important;
  }

  .header-nav {
    grid-column: 1 / -1;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    justify-content: stretch;
  }

  .nav-main {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 0.35rem 0 0.5rem;
  }

  .nav-main.open {
    display: flex;
  }

  .nav-main li {
    border-bottom: 1px solid var(--border);
  }

  .nav-main li:last-child {
    border-bottom: none;
  }

  .nav-main a {
    display: block;
    padding: 0.85rem 1rem;
    font-size: 0.82rem;
    color: var(--brand);
    white-space: normal;
  }

  .nav-wa-mobile {
    display: list-item;
  }

  .nav-wa-mobile a {
    color: var(--gold-dark);
    font-weight: 600;
  }

  .hero-visual { width: 100%; opacity: 0.25; clip-path: none; }
  .hero-content { max-width: 100%; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-story-inner { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters-desktop { display: none; }
  .shop-mobile-filters { display: flex; }
  .product-detail { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── WordPress / Kadence / WooCommerce integration ── */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  padding-bottom: 0 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  padding: 0 1rem;
}

.woocommerce ul.products li.product .price {
  padding: 0 1rem 1rem;
  font-weight: 600;
}

.woocommerce span.onsale {
  background: var(--gold) !important;
  color: var(--brand) !important;
  border-radius: 0;
  min-height: auto;
  line-height: 1.4;
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.woocommerce a.button,
.woocommerce button.button.alt,
.woocommerce #respond input#submit.alt {
  background: var(--accent) !important;
  color: #fff !important;
  border-radius: var(--radius) !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.woocommerce a.button:hover,
.woocommerce button.button.alt:hover {
  background: var(--gold-dark) !important;
}

.woocommerce div.product .product_title {
  font-family: var(--font-heading);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  color: var(--brand);
}

.single-product .delivery-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--base);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--muted);
}

.entry-content { max-width: var(--max-width); margin-inline: auto; }
.entry-content h1, .entry-content h2 { font-family: var(--font-heading); }

/* WordPress / Kadence header logo — sizing handled by .logo crop wrapper above */

/* Kadence footer — contact section (custom footer uses .site-footer) */
.site-footer {
  background-color: #ffedeb !important;
}

/* My Account */
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 0.5rem 0;
  color: var(--text);
  text-decoration: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
  color: var(--brand);
  font-weight: 600;
}

.woocommerce-account form.login,
.woocommerce-account form.register {
  max-width: 420px;
}

/* ── Single product (reference layout) ── */
.indusarees-single-product .site-main .product,
.indusarees-single-product div.product {
  display: grid !important;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%) !important;
  gap: 2rem 2rem !important;
  align-items: start !important;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 2rem 1.25rem 3rem;
}

/* ── Gallery column — custom InduSarees gallery ── */
.indusarees-single-product div.product .images.indusarees-images,
.indusarees-single-product div.product .indusarees-product-gallery {
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative;
  opacity: 1 !important;
  visibility: visible !important;
}

.indusarees-single-product .indusarees-gallery-main {
  position: relative;
  aspect-ratio: 3 / 4;
  background: #f0ece6;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none !important;
  box-shadow: none !important;
}

.indusarees-single-product .indusarees-gallery-main-img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

.indusarees-single-product .indusarees-gallery-zoom-btn {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 20;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.88) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231A1A1A' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 1a5.5 5.5 0 1 0 3.9 9.4l3.1 3.1 1-1-3.1-3.1A5.5 5.5 0 0 0 6.5 1zm0 1.5a4 4 0 1 1 0 8 4 4 0 0 1 0-8z'/%3E%3Cpath d='M10 9.5h1v3h-3v-1h2z'/%3E%3C/svg%3E") center / 14px no-repeat;
  border-radius: 50%;
  opacity: 0.85;
  cursor: pointer;
  pointer-events: auto;
  transition: opacity 0.2s;
}

.indusarees-single-product .indusarees-gallery-zoom-btn:hover {
  opacity: 1;
}

/* Suppress WooCommerce hover-zoom artefacts if any plugin re-injects them */
.indusarees-single-product .zoomImg,
.indusarees-single-product .woocommerce-product-gallery__trigger {
  display: none !important;
}

/* Thumbnail strip */
.indusarees-single-product .indusarees-gallery-thumbs {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.4rem;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
  width: 100%;
  position: relative;
  z-index: 2;
}

.indusarees-single-product .indusarees-gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.indusarees-single-product .indusarees-gallery-thumbs li {
  flex: 0 0 70px;
  margin: 0;
}

.indusarees-single-product .indusarees-gallery-thumb {
  display: block;
  width: 70px;
  height: 94px;
  padding: 0;
  border: 2px solid var(--border);
  border-radius: 3px;
  background: #f0ece6;
  opacity: 0.55;
  cursor: pointer;
  overflow: hidden;
  transition: opacity 0.2s, border-color 0.15s;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.indusarees-single-product .indusarees-gallery-thumb.is-active {
  border-color: var(--brand);
  opacity: 1;
}

.indusarees-single-product .indusarees-gallery-thumb:hover {
  border-color: var(--gold);
  opacity: 0.85;
}

.indusarees-single-product .indusarees-gallery-thumb img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  pointer-events: none;
}

/* Lightbox */
.indusarees-gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.indusarees-gallery-lightbox.is-open {
  display: flex;
  pointer-events: auto;
}

body.indusarees-lightbox-open {
  overflow: hidden;
}

.indusarees-lightbox-stage {
  max-width: min(96vw, 900px);
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.indusarees-lightbox-stage img {
  max-width: 100%;
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.indusarees-lightbox-close,
.indusarees-lightbox-prev,
.indusarees-lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  transition: background 0.15s;
}

.indusarees-lightbox-close:hover,
.indusarees-lightbox-prev:hover,
.indusarees-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

.indusarees-lightbox-close {
  top: 1rem;
  right: 1rem;
  font-size: 2.25rem;
}

.indusarees-lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.indusarees-lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Sale badge — top-left overlay on gallery */
.indusarees-single-product .indusarees-gallery-main span.onsale,
.indusarees-single-product .indusarees-gallery-main span.indusarees-sale-pct {
  position: absolute !important;
  top: 0.75rem !important;
  left: 0.75rem !important;
  z-index: 5;
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 0.65rem;
  border-radius: 2px;
  min-width: 3rem;
  text-align: center;
}

/* Summary column */
.indusarees-single-product div.product .summary.entry-summary {
  grid-column: 2;
  grid-row: 1;
}

/* Tabs span full width below gallery+summary */
.indusarees-single-product div.product .woocommerce-tabs {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 1rem;
}

.indusarees-category-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.75rem;
  margin: 0.35rem 0 1rem;
}

.indusarees-category-rating .star-rating {
  margin: 0;
}

.indusarees-review-count {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.indusarees-review-category-note {
  flex: 1 1 100%;
  font-size: 0.75rem;
  color: var(--muted);
}

.indusarees-price-block--sale {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 0.75rem 0 1.25rem;
}

.indusarees-price-block--sale del {
  order: 1;
  font-size: 1rem !important;
  color: var(--muted) !important;
  font-weight: 400 !important;
  opacity: 0.85;
}

.indusarees-price-block--sale del::before {
  content: 'MRP ';
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 0.25rem;
}

.indusarees-price-block--sale ins {
  order: 2;
  text-decoration: none;
  font-size: 1.75rem !important;
  font-weight: 700 !important;
  color: var(--accent) !important;
  line-height: 1.2;
}

.indusarees-price-block--sale ins::before {
  content: 'You pay';
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

/* ── Single product: quantity + Add to Cart stack ── */
.indusarees-single-product form.cart {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

/* Quantity row: label + input inline */
.indusarees-single-product form.cart .quantity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.indusarees-single-product form.cart .quantity label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  white-space: nowrap;
}

/* Qty stepper — styled like the reference screenshot */
.indusarees-single-product form.cart .qty {
  width: 120px;
  height: 46px;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  text-align: center;
  font-family: var(--font-body);
  background: var(--surface);
}

/* ADD TO CART — full width, prominent black bar with pulse animation */
@keyframes indusarees-cart-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(26, 26, 26, 0.45); }
  60%  { box-shadow: 0 0 0 10px rgba(26, 26, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(26, 26, 26, 0); }
}

.indusarees-single-product form.cart .single_add_to_cart_button,
.indusarees-single-product form.cart button[type="submit"].single_add_to_cart_button {
  width: 100% !important;
  flex: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #1A1A1A !important;
  background-color: #1A1A1A !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-align: center !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  padding: 1rem 1.5rem !important;
  min-height: 3.2rem !important;
  border-radius: var(--radius) !important;
  border: none !important;
  cursor: pointer;
  animation: indusarees-cart-pulse 2s ease-out 1.5s infinite;
  transition: background 0.2s ease, transform 0.15s ease;
}

.indusarees-single-product form.cart .single_add_to_cart_button:hover {
  background: #2a2a2a !important;
  background-color: #2a2a2a !important;
  transform: translateY(-1px);
  animation: none;
}

.indusarees-single-product form.cart .single_add_to_cart_button.is-adding {
  opacity: 0.75;
  animation: none;
}

.indusarees-single-product form.cart .single_add_to_cart_button.is-added {
  background: #1F4D3A !important;
  background-color: #1F4D3A !important;
  animation: none;
}

/* BUY IT NOW — full width, red */
.indusarees-single-product .indusarees-buy-now {
  display: block !important;
  width: 100% !important;
  background: var(--accent) !important;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1rem 1.5rem !important;
  border-radius: var(--radius) !important;
  border: none !important;
  cursor: pointer;
  transition: background 0.2s ease;
  text-align: center;
}

.indusarees-single-product .indusarees-buy-now:hover {
  background: #8B1A1A !important;
}

/* ── Trust badges — circular seal style (4-up) ── */
.indusarees-trust-badges {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--border);
}

.indusarees-trust-badges li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.indusarees-trust-badges li .badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .indusarees-trust-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.indusarees-reviews-tab-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  background: var(--base);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.indusarees-single-product .woocommerce-tabs ul.tabs {
  border-bottom: 1px solid var(--border);
  padding-left: 0;
}

.indusarees-single-product .woocommerce-tabs ul.tabs li a {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .indusarees-single-product div.product {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    padding-inline: 1rem;
  }

  .indusarees-single-product div.product .images.indusarees-images,
  .indusarees-single-product div.product .indusarees-product-gallery,
  .indusarees-single-product div.product .summary.entry-summary {
    grid-column: 1 !important;
  }

  .indusarees-single-product div.product .woocommerce-tabs {
    grid-row: auto;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Product page — border / box-shadow removal
   Kadence can add borders to entry-content, .product, or column wrappers.
   ──────────────────────────────────────────────────────────────────────────── */
.indusarees-single-product .site-main,
.indusarees-single-product .entry-content,
.indusarees-single-product div.product,
.indusarees-single-product .content-area,
.indusarees-single-product .kadence-column,
.indusarees-single-product .wp-block-kadence-column,
body.single-product .entry-content {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Product page — right column typography polish
   ──────────────────────────────────────────────────────────────────────────── */
.indusarees-single-product .summary h1.product_title {
  font-size: 1.55rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem !important;
}

.indusarees-single-product .summary .woocommerce-product-details__short-description {
  font-size: 0.88rem !important;
  color: var(--muted) !important;
  line-height: 1.55;
  margin-bottom: 0.5rem !important;
}

/* Stock notice */
.indusarees-single-product .summary .stock {
  font-size: 0.82rem !important;
  font-weight: 600 !important;
}

/* Add to Cart form — compact top spacing */
.indusarees-single-product form.cart {
  margin-top: 0.75rem !important;
}

/* Trust badge label — let the <br> from PHP create line breaks */
.indusarees-trust-badges li .badge-label {
  display: block;
  text-align: center;
  line-height: 1.3;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Wishlist button
   ──────────────────────────────────────────────────────────────────────────── */
.indusarees-wishlist-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.6rem 1rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.indusarees-wishlist-btn:hover {
  border-color: #c0392b;
  color: #c0392b;
}

.indusarees-wishlist-btn.is-wishlisted {
  border-color: #c0392b;
  color: #c0392b;
}

.indusarees-wishlist-btn .wishlist-heart {
  font-size: 1rem;
  line-height: 1;
}

.indusarees-wishlist-btn.is-wishlisted .wishlist-heart {
  color: #c0392b;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Guest cart notice (cart-session.js)
   ──────────────────────────────────────────────────────────────────────────── */
.indusarees-guest-cart-notice {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #1A1A1A;
  color: #fff;
  font-size: 0.82rem;
  padding: 0.7rem 1rem 0.7rem 1.1rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  max-width: calc(100vw - 2rem);
  white-space: nowrap;
}

.indusarees-guest-cart-notice a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  margin-left: 0.25rem;
}

.indusarees-gcn-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0 0.25rem;
  margin-left: 0.25rem;
}

.indusarees-gcn-close:hover { color: #fff; }

