/*
   Devrani Jethani — Design Tokens
   Palette: Deep Red (primary), Ivory (base), Gold (accent), Charcoal (ink)
   Type: Playfair Display (display/serif) + Jost (body/utility sans)
   ========================================================================== */

:root {
  --color-red-deep: #64131f;
  --color-red-dark: #3d0b13;
  --color-ivory: #fbf7ef;
  --color-ivory-soft: #f4ede1;
  --color-gold: #c49a4a;
  --color-gold-light: #e3c27d;
  --color-charcoal: #211d1a;
  --color-charcoal-soft: #665d54;
  --color-white: #ffffff;

  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 2px;
  --radius-md: 4px;
  --shadow-card: 0 10px 30px rgba(42, 38, 34, 0.08);
  --shadow-lift: 0 16px 40px rgba(42, 38, 34, 0.16);
  --container-width: 1320px;
  /* Compacted from 4.75rem — tighter vertical rhythm across sections */
  --section-pad: 3.5rem;
  --luxury-line: rgba(100, 19, 31, 0.15);
  --luxury-shadow: 0 22px 60px rgba(42, 28, 18, 0.12);
  --page-banner-image: url("<?= BASE_PATH ?>/public/images/page-banner.png");
}

/* ---------- Reset ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html {
  overflow-x: clip;
  width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: #211d1a;
  background: #fbf7ef;
  font-size: 16px;
  line-height: 1.6;
  /* STICKY FIX: same reasoning as html above */
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0 0 0.5em;
  color: var(--color-charcoal);
}

p {
  margin: 0 0 1em;
}

button {
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-pad) 0;
}

.alt-bg {
  background: var(--color-ivory-soft);
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.68rem;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 1.9rem;
}

.section-head h2 {
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.025em;
}

/* Signature motif: a slender gold rule with a diamond centre-mark, used once
   per major section break rather than as a repeated numbered device */
.motif-divider {
  width: 120px;
  height: 14px;
  margin: 0 auto 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.motif-divider::before,
.motif-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 46px;
  height: 1px;
  background: var(--color-gold-light);
}

.motif-divider::before {
  left: 0;
}

.motif-divider::after {
  right: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.95rem 1.55rem;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid transparent;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: #c69b4c;
  color: #241b16;
  border-color: #c69b4c;
}

.btn-gold:hover {
  background: #e2c078;
  color: #241b16;
}

.btn-charcoal {
  background: var(--color-charcoal);
  color: var(--color-ivory);
}

.btn-charcoal:hover {
  background: var(--color-charcoal-soft);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-ivory);
  border-color: rgba(251, 246, 236, 0.5);
}

.btn-outline-light:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-charcoal);
  border-color: var(--color-charcoal);
}

.btn-outline-dark:hover {
  background: var(--color-charcoal);
  color: var(--color-ivory);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky !important;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 239, 0.97);
  transition: box-shadow 0.3s ease;
  backdrop-filter: blur(16px);
  /* STICKY FIX: guarantee this element itself never becomes a transformed
     or overflow-clipped context — either of those also silently disables
     sticky children/self in some browsers. */
  will-change: auto;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(42, 38, 34, 0.09);
}

.topbar {
  background: #3d0b13;
  color: #f8f1e7;
  height: 40px;
  overflow: hidden;
}

.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.topbar-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 12px;
}

.topbar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f8f1e7;
  text-decoration: none;
  transition: color 0.25s ease;
}

.topbar-contact a:hover {
  color: #d4a84f;
}

.topbar-contact svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.topbar-divider {
  opacity: 0.85;
}
.topbar-offer-slider {
  position: relative;
  height: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbar-offer {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  font-size: 12px;
  letter-spacing: 0.02em;

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    visibility 0.45s ease;
}

.topbar-offer.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.topbar-icon {
  color: #d4a84f;
  display: inline-flex;
  align-items: center;
}

.topbar-offer b {
  opacity: 0.45;
  font-weight: 400;
}

.topbar-offer strong {
  color: #d4a84f;
  font-weight: 600;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 12px;
}

.topbar-links a {
  color: #f8f1e7;
  text-decoration: none;
  transition: color 0.25s ease;
}

.topbar-links a:hover {
  color: #d4a84f;
}

.topbar-links span {
  opacity: 0.35;
}

/* =========================================================
   NAVBAR — DEVRANI JETHANI
   Premium Luxury Navigation
   ========================================================= */

.main-nav {
  position: relative;
  z-index: 1000;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 88px;
  padding: 0 1.5rem;
  background: var(--color-ivory, #fffaf2);
  border-bottom: 1px solid rgba(42, 38, 34, 0.08);
}

.main-nav > .container {
  width: 100%;
  max-width: var(--container-width, 1400px);
  margin: 0 auto;
  display: grid;
  /* was 220px — logo is 260px wide and was overflowing its own column */
  grid-template-columns: 260px minmax(0, 1fr) 160px;
  align-items: center;
  gap: 25px;
}

/* =========================================================
   LOGO
   ========================================================= */

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 260px;
  min-width: 260px;
  flex: 0 0 260px;
  text-decoration: none;
  color: inherit;
}

.logo-mark {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: #fffaf2;
  color: var(--color-red-deep, #741520);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
}
.logo-mark img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    background: transparent;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-title {
  margin: 0;
  color: var(--color-red-deep, #741520);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.logo-sub {
  margin-top: 2px;
  color: var(--color-charcoal-soft, #7b716b);
  font-family: var(--font-body);
  font-size: 0.61rem;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 1.8vw, 1.8rem);
  min-width: 0;
  width: 100%;
}

.nav-links > a,
.nav-dropdown-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  padding: 0;
  color: #2a2420;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.nav-links > a::after,
.nav-dropdown-trigger::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 25px;

  width: 0;
  height: 1px;

  background: var(--color-red-deep, #741520);

  transition: width 0.25s ease;
}

.nav-links > a:hover,
.nav-dropdown-trigger:hover {
  color: var(--color-red-deep, #741520);
}

.nav-links > a:hover::after,
.nav-dropdown:hover .nav-dropdown-trigger::after {
  width: 100%;
}

/* =========================================================
   NAV DROPDOWN WRAPPER
   ========================================================= */

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 88px;
}

/* Dropdown trigger */
.nav-dropdown-trigger {
  gap: 6px;
}

/* Dropdown arrow */
.nav-caret {
    width: 7px;
    height: 7px;
    display: inline-block;
    border-right: 1.5px solid var(--color-gold, #c9a24f);
    border-bottom: 1.5px solid var(--color-gold, #c9a24f);
    transform: rotate(45deg);
    margin-left: 8px;
    margin-top: -4px;
    transition: transform 0.25s ease;
}
.nav-dropdown:hover .nav-caret {
  color: var(--color-red-deep, #741520);
  transform: rotate(180deg);
}

/* =========================================================
   DROPDOWN MENU
   ========================================================= */

.nav-dropdown-menu {
  position: absolute;

  top: calc(100% - 1px);
  left: 50%;

  width: 240px;

  padding: 10px;

  background: #fffaf2;

  border: 1px solid rgba(42, 38, 34, 0.1);

  box-shadow: 0 20px 45px rgba(28, 23, 21, 0.14);

  opacity: 0;
  visibility: hidden;

  transform: translate(-50%, 12px);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;

  pointer-events: none;

  z-index: 1200;
}

/* Small gold line */

.nav-dropdown-menu::before {
  content: "";

  position: absolute;

  top: -1px;
  left: 22px;
  right: 22px;

  height: 2px;

  background: var(--color-gold, #c9a24f);
}

/* Dropdown links */

.nav-dropdown-menu a {
  position: relative;

  display: flex !important;
  align-items: center;

  width: 100%;
  height: auto !important;

  min-height: 46px;

  padding: 11px 13px;

  color: var(--color-charcoal, #2a2622);

  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;

  text-decoration: none;

  white-space: nowrap;

  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    padding-left 0.2s ease;
}

/* Disable normal underline from parent navigation */

.nav-dropdown-menu a::after {
  content: none !important;
}

.nav-dropdown-menu a:hover {
  padding-left: 17px;

  color: var(--color-red-deep, #741520);

  background: rgba(201, 162, 79, 0.08);
}

/* Arrow appearing on hover */

.nav-dropdown-menu a span {
  display: block;
}

.nav-dropdown-menu a::before {
  content: "→";

  position: absolute;

  right: 14px;

  color: var(--color-gold, #c9a24f);

  opacity: 0;

  transform: translateX(-5px);

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.nav-dropdown-menu a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Open dropdown on desktop hover */

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;

  transform: translate(-50%, 0);

  pointer-events: auto;
}

/* =========================================================
   NAV ACTIONS
   ========================================================= */

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 0.65rem;

  flex: 0 0 auto;
}

/* =========================================================
   ICON BUTTON
   ========================================================= */

.icon-btn {
  position: relative;

  width: 43px;
  height: 43px;

  flex: 0 0 43px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: 1px solid rgba(42, 38, 34, 0.12);
  border-radius: 50%;

  background: transparent;

  color: var(--color-charcoal, #2a2622);

  text-decoration: none;

  cursor: pointer;

  transition:
    border-color 0.25s ease,
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.icon-btn svg {
  display: block;

  width: 19px;
  height: 19px;

  flex: 0 0 auto;
}

.icon-btn:hover {
  border-color: var(--color-gold, #c9a24f);

  background: #ffffff;

  color: var(--color-red-deep, #741520);

  transform: translateY(-1px);
}

/* =========================================================
   WHATSAPP
   ========================================================= */

.whatsapp-btn {
  color: #19864a;

  border-color: rgba(25, 134, 74, 0.25);
}

.whatsapp-btn:hover {
  color: #19864a;

  border-color: rgba(25, 134, 74, 0.45);

  background: rgba(25, 134, 74, 0.04);
}

/* =========================================================
   BAG
   ========================================================= */

.bag-btn {
  position: relative;
}

.bag-count {
  position: absolute;

  top: -5px;
  right: -3px;

  width: 18px;
  height: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--color-red-deep, #741520);

  color: #ffffff;

  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;

  line-height: 1;
}

/* =========================================================
   HAMBURGER
   ========================================================= */

.hamburger {
  display: none;

  width: 43px;
  height: 43px;

  flex: 0 0 43px;

  align-items: center;
  justify-content: center;

  flex-direction: column;

  gap: 5px;

  padding: 0;

  border: 1px solid rgba(42, 38, 34, 0.12);
  border-radius: 50%;

  background: transparent;

  cursor: pointer;
}

.hamburger span {
  display: block;

  width: 19px;
  height: 1.5px;

  background: var(--color-charcoal, #2a2622);

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* =========================================================
   SEARCH OVERLAY
   ========================================================= */

.search-overlay {
  position: fixed;

  inset: 0;

  z-index: 5000;

  display: none;

  align-items: center;
  justify-content: center;

  padding: 2rem;

  background: rgba(28, 23, 21, 0.96);
}

.search-overlay.active {
  display: flex;
}

.search-form {
  width: min(720px, 90vw);

  display: flex;
  align-items: center;

  gap: 0.5rem;
}

.search-form input {
  flex: 1;

  width: 100%;

  padding: 1rem 0;

  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);

  border-radius: 0;

  outline: none;

  background: transparent;

  color: #ffffff;

  font-family: var(--font-body);
  font-size: 1.15rem;
}

.search-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.search-form button {
  flex: 0 0 auto;

  padding: 1rem 0 1rem 1.5rem;

  border: none;
  border-radius: 0;

  background: transparent;

  color: var(--color-gold-light, #e4bd70);

  font-family: var(--font-body);
  font-weight: 500;

  cursor: pointer;
}

/* =========================================================
   MOBILE MENU
   IMPORTANT:
   Hidden by default.
   Only .active opens it.
   ========================================================= */

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;

  background: rgba(15, 11, 10, 0.55);
  backdrop-filter: blur(2px);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;

  top: 0;
  right: 0;

  width: min(390px, 88vw);
  height: 100dvh;

  z-index: 9999;

  display: flex;
  flex-direction: column;

  padding: 24px 28px 30px;

  overflow-x: hidden;
  overflow-y: auto;

  background: var(--color-charcoal, #211816);
  background-image: radial-gradient(
    ellipse at top right,
    rgba(201, 162, 79, 0.1),
    transparent 55%
  );

  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.25);

  visibility: hidden;
  transform: translateX(100%);

  transition:
    transform 0.35s ease,
    visibility 0.35s ease;
}

.mobile-menu.active {
  visibility: visible;
  transform: translateX(0);
}

/* Mobile menu brand/logo row shown after tapping hamburger */
.mobile-menu-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-bottom: 1.1rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu-brand .logo-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  background: #fffaf2;
}

.mobile-menu-brand .logo-title {
  color: var(--color-gold-light, #e3c27d);
  font-size: 1.08rem;
}

.mobile-menu-brand .logo-sub {
  color: rgba(255, 250, 242, 0.6);
  font-size: 0.56rem;
}

/* Mobile menu links */

.mobile-menu a {
  display: flex;
  align-items: center;

  min-height: 52px;

  padding: 12px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

  color: #fffaf2;

  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;

  text-decoration: none;

  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.mobile-menu a:hover {
  padding-left: 6px;

  color: var(--color-gold-light, #e4bd70);
}

/* Mobile WhatsApp */

.mobile-whatsapp {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;

  margin-top: 25px;

  min-height: 48px !important;

  padding: 12px 18px !important;

  border: 1px solid rgba(201, 162, 79, 0.45) !important;

  background: rgba(201, 162, 79, 0.08);

  color: var(--color-gold-light, #e4bd70) !important;
}

/* =========================================================
   DESKTOP SAFETY
   ========================================================= */

@media (min-width: 1025px) {
  .nav-links {
    display: flex;
  }

  .nav-actions {
    display: flex;
  }

  .hamburger {
    display: none !important;
  }

  /* display:none (not just visibility/transform) so the off-canvas panel
     can never contribute to the page's scrollable width on desktop */
  .mobile-menu {
    display: none !important;
  }

  .mobile-menu-backdrop {
    display: none !important;
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1200px) {
  .main-nav > .container {
    gap: 1.25rem;
  }

  .nav-links {
    gap: 1.25rem;
  }

  .nav-links > a,
  .nav-dropdown-trigger {
    font-size: 0.82rem;
  }

  .nav-actions {
    gap: 0.45rem;
  }
}

/* =========================================================
   TABLET / MOBILE NAV
   ========================================================= */

@media (max-width: 1024px) {
  .main-nav {
    min-height: 76px;

    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .main-nav > .container {
    grid-template-columns: auto 1fr auto;

    gap: 1rem;
  }

  .nav-links {
    display: none !important;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hamburger {
    display: inline-flex !important;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {
  .main-nav {
    min-height: 70px;

    padding-left: 1rem;
    padding-right: 1rem;
  }

  .logo {
    gap: 0.6rem;
  }

  .logo-mark {
    width: 43px;
    height: 43px;

    flex-basis: 43px;

    font-size: 1.25rem;
  }

  .logo-title {
    font-size: 1.12rem;
  }

  .logo-sub {
    font-size: 0.52rem;
    letter-spacing: 0.15em;
  }

  .nav-actions {
    gap: 0.4rem;
  }

  .icon-btn {
    width: 40px;
    height: 40px;

    flex-basis: 40px;
  }

  .icon-btn svg {
    width: 18px;
    height: 18px;
  }

  .hamburger {
    width: 40px;
    height: 40px;

    flex-basis: 40px;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
  .main-nav {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .logo {
    min-width: 0;
  }

  .logo-title {
    font-size: 1rem;
  }

  .logo-sub {
    font-size: 0.47rem;
  }

  /* Hide desktop utility icons on very small screens.
       Hamburger remains visible. */

  .nav-actions .icon-btn {
    display: none;
  }

  .nav-actions .hamburger {
    display: inline-flex !important;
  }

  .mobile-menu {
    width: min(360px, 90vw);
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(42, 38, 34, 0.78) 0%,
    rgba(42, 38, 34, 0.45) 55%,
    rgba(42, 38, 34, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-ivory);
  max-width: 640px;
}

.hero-content .eyebrow {
  color: var(--color-gold-light);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--color-ivory);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(251, 246, 236, 0.85);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1.6rem;
  margin-top: 0;
  flex-wrap: wrap;
  align-items: center;
}

/* ==========================================================================
   Category / Occasion Grids
   ========================================================================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-4px);
}

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

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(28, 17, 11, 0.78) 100%
  );
}

.category-name {
  position: absolute;
  left: 1.2rem;
  bottom: 1.15rem;
  z-index: 2;
  color: var(--color-ivory);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.category-name em {
  font-style: normal;
  opacity: 0.7;
  font-size: 0.75rem;
}

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

.occasion-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: none;
}

.occasion-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.occasion-card:hover img {
  transform: scale(1.06);
}

.occasion-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(42, 38, 34, 0.35);
  display: none;
}

.occasion-card span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: var(--color-ivory);
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Product Grid / Card
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

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

.product-media {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--color-red-deep);
  color: var(--color-ivory);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
}

.product-info {
  padding: 1.1rem 1.2rem 1.4rem;
}

.product-info h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.product-fabric {
  font-size: 0.82rem;
  color: var(--color-charcoal-soft);
  margin-bottom: 0.5rem;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-red-deep);
  font-weight: 600;
}

.product-mrp {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #9a9187;
  text-decoration: line-through;
  margin-left: 0.5rem;
  font-weight: 400;
}

/* ==========================================================================
   Wedding Collection
   ========================================================================== */
.wedding-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.wedding-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.wedding-media img {
  aspect-ratio: 9/10;
  object-fit: cover;
}

.wedding-copy .eyebrow {
  color: var(--color-gold);
}

.wedding-copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.wedding-copy p {
  max-width: 440px;
  color: var(--color-charcoal-soft);
}

/* ==========================================================================
   About / Why Choose Us
   ========================================================================== */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-media img {
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-copy p {
  color: var(--color-charcoal-soft);
  max-width: 480px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--color-white);
  padding: 1.9rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  text-align: center;
  border-top: 2px solid var(--color-gold);
}

.why-card h3 {
  font-size: 1.1rem;
}

.why-card p {
  font-size: 0.92rem;
  color: var(--color-charcoal-soft);
  margin: 0;
}

/* ==========================================================================
   Gallery + Lightbox
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.gallery-item {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, 0.94);
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 88vw;
  max-height: 88vh;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  background: none;
  border: none;
  color: var(--color-ivory);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin: 0;
}

.testimonial-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--color-charcoal);
}

.testimonial-card footer {
  font-size: 0.82rem;
  color: var(--color-red-deep);
  letter-spacing: 0.03em;
}

/* ==========================================================================
   Instagram
   ========================================================================== */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.instagram-item {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.instagram-item:hover img {
  transform: scale(1.08);
}

/* ==========================================================================
   Showroom CTA + Footer
   ========================================================================== */
.showroom-cta {
  position: relative;
  background: #241c18;
  color: var(--color-ivory);
  padding: var(--section-pad) 0;
  text-align: center;
  overflow: hidden;
}

.showroom-cta-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
}

.showroom-cta-media-item {
  flex: 1 1 33.334%;
  display: block;
  background-size: cover;
  background-position: center;
  filter: saturate(0.9) brightness(0.75);
}

.showroom-cta-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(31, 20, 15, 0.72), rgba(31, 20, 15, 0.86)),
    radial-gradient(ellipse at top, rgba(198, 161, 91, 0.18), transparent 60%);
}

.showroom-cta-inner {
  position: relative;
  z-index: 2;
}

.showroom-cta .eyebrow {
  color: var(--color-gold-light, #e3c27d);
}

.showroom-cta h2 {
  color: var(--color-ivory);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.showroom-cta p {
  max-width: 520px;
  margin: 0 auto 2rem;
  color: rgba(251, 246, 236, 0.75);
}

.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   PREMIUM FOOTER
   ========================================================= */

.site-footer {
  position: relative;
  background: #3d0b13;
  background-image:
    radial-gradient(
      ellipse at top left,
      rgba(201, 162, 79, 0.1),
      transparent 55%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(201, 162, 79, 0.07),
      transparent 55%
    );
  color: rgba(251, 246, 236, 0.75);
  padding: 4.25rem 0 0;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-gold-light) 20%,
    var(--color-gold) 50%,
    var(--color-gold-light) 80%,
    transparent
  );
}


/* =========================================================
   FOOTER GRID
   FIX: reduced from 6 to 5 columns. Policies column removed
   from the grid entirely — it now lives in .footer-bottom-strip
   as .footer-policy-links (see below).
   ========================================================= */

.footer-grid {
  position: relative;
  display: grid;

  /*
   * Brand
   * Shop
   * Company
   * Boring Road
   * Kankarbagh
   */
  grid-template-columns:
    1.45fr
    0.8fr
    0.8fr
    1.25fr
    1.25fr;

  gap: 2.2rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid rgba(251, 246, 236, 0.1);
}


/* =========================================================
   FOOTER BRAND
   ========================================================= */

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand .logo-mark {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(227, 194, 125, 0.4);
  background: #fffaf2;
  margin-bottom: 0.9rem;
  overflow: hidden;
}

.footer-brand .logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand p {
  margin: 0.4rem 0 0;
  color: var(--color-ivory);
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}

.footer-tagline {
  color: rgba(251, 246, 236, 0.6) !important;
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  line-height: 1.6;
  max-width: 300px;
}


/* =========================================================
   SOCIAL
   ========================================================= */

.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(227, 194, 125, 0.35);
  color: var(--color-gold-light);
  font-size: 0.72rem;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: #3d0b13;
  transform: translateY(-2px);
}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.footer-col {
  min-width: 0;
}

.footer-col h4 {
  position: relative;
  color: var(--color-gold-light);
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1.15rem;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 1px;
  background: rgba(227, 194, 125, 0.5);
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0 0 0.65rem;
  color: rgba(251, 246, 236, 0.75);
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.footer-col a {
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--color-gold-light);
  padding-left: 3px;
}


/* =========================================================
   SHOWROOM COLUMNS
   ========================================================= */

.footer-showroom {
  padding-right: 0.5rem;
}

.footer-location-label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--color-gold-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-showroom h4 {
  color: #fffaf2;
  font-size: 0.78rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}


/* Address */

.footer-showroom .footer-address {
  color: rgba(251, 246, 236, 0.68);
  font-size: 0.8rem;
  line-height: 1.7;
  margin-bottom: 0.85rem;
}


/* Phone */

.footer-showroom .footer-phone {
  display: block;
  color: var(--color-gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.footer-showroom .footer-phone:hover {
  color: #fff;
  padding-left: 0;
}


/* Google Maps */

.footer-showroom .footer-map-link {
  display: inline-block;
  color: rgba(251, 246, 236, 0.8);
  font-size: 0.74rem;
  font-weight: 700;
}

.footer-showroom .footer-map-link:hover {
  color: var(--color-gold-light);
}


/* =========================================================
   FOOTER BOTTOM — COPYRIGHT STRIP
   FIX: now also carries the Policies links (moved out of the
   grid) via .footer-policy-links.
   ========================================================= */

.footer-bottom-strip {
  margin-top: 1.75rem;
  background: #300810;
  border-top: 1px solid rgba(251, 246, 236, 0.08);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  padding: 1.1rem 0;
  font-size: 0.78rem;
  color: rgba(251, 246, 236, 0.55);
}

.footer-bottom p {
  margin: 0;
}

.footer-policy-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-policy-links a {
  color: rgba(251, 246, 236, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-policy-links a:hover {
  color: var(--color-gold-light);
}

.footer-policy-links span {
  color: rgba(251, 246, 236, 0.3);
}

.footer-credit em {
  font-style: normal;
}

.footer-credit a {
  color: var(--color-gold-light, #e3c27d);
  text-decoration: none;
}

.footer-credit a:hover {
  color: #fff;
}


/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */

.float-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 150;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1f8a4c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(31, 138, 76, 0.4);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.float-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(31, 138, 76, 0.5);
}


/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 1200px) {

  .footer-grid {
    grid-template-columns:
      1.4fr
      0.8fr
      0.8fr
      1.1fr
      1.1fr;

    gap: 2rem;
  }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .site-footer {
    padding-top: 3.5rem;
  }

  .footer-grid {
    grid-template-columns:
      1.3fr
      1fr
      1fr;

    gap: 2.2rem 1.75rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-showroom {
    padding-right: 1rem;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

  .site-footer {
    padding-top: 3rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.4rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-showroom {
    padding-right: 0;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .footer-policy-links {
    justify-content: center;
  }

  .float-whatsapp {
    width: 52px;
    height: 52px;
    bottom: 1rem;
    left: 1rem;
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-col h4 {
    margin-bottom: 1rem;
  }

  .footer-bottom {
    padding: 1rem 0;
  }

  .footer-bottom p {
    font-size: 0.72rem;
  }
}
/* ==========================================================================
   Inner Pages: Collections / Category / Product / Contact / 404
   ========================================================================== */
.page-banner {
  padding: 4rem 0 2.5rem;
  background: var(--color-ivory-soft);
  text-align: center;
}

.page-banner h1 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
}

.breadcrumb-link {
  color: #e4bd70;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

.product-gallery-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/5;
}

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

.product-gallery-thumbs {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.thumb-btn {
  width: 72px;
  height: 90px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 0;
  background: none;
}

.thumb-btn.active,
.thumb-btn:hover {
  border-color: var(--color-gold);
}

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

.product-detail-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-red-deep);
  font-weight: 600;
}

.product-discount {
  font-size: 0.8rem;
  color: #1f8a4c;
  margin-left: 0.5rem;
  font-family: var(--font-body);
}

.product-detail-desc {
  color: var(--color-charcoal-soft);
}

.product-specs {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.product-specs th,
.product-specs td {
  text-align: left;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(42, 38, 34, 0.08);
  font-size: 0.92rem;
}

.product-specs th {
  width: 130px;
  color: var(--color-charcoal-soft);
  font-weight: 500;
}

.product-detail-actions {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.product-note {
  font-size: 0.82rem;
  color: #9a9187;
}

.empty-state {
  text-align: center;
  color: var(--color-charcoal-soft);
  padding: 3rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-form label {
  font-size: 0.85rem;
  margin-top: 0.9rem;
  color: var(--color-charcoal-soft);
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(42, 38, 34, 0.18);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--color-white);
}

.contact-form button {
  margin-top: 1.5rem;
  align-self: flex-start;
  border: none;
}

.alert {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.alert-success {
  background: #e4f3e8;
  color: #1f6b3a;
}

.alert-error {
  background: #fbe7e7;
  color: #a12626;
}

.alert-error ul {
  list-style: disc;
  padding-left: 1.2rem;
}

.contact-details {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 1.5rem;
}

.contact-details p {
  font-size: 0.92rem;
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.not-found-section {
  text-align: center;
  padding: 7rem 0;
}

::selection {
  background: var(--color-red-deep);
  color: #fff;
}

.topbar-inner p {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

.topbar-offer {
  color: #e6c77f;
}

.topbar-offer b {
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0.5rem;
}

.topbar-offer strong {
  color: #fff;
}

.topbar-msg span,
.topbar-offer span {
  color: var(--color-gold);
  margin-right: 0.35rem;
}

.nav-caret {
  color: #9b7737;
  font-size: 0.8rem;
  margin-left: 0.2rem;
}

.bag-btn {
  position: relative;
}

.bag-count {
  position: absolute;
  top: -4px;
  right: -2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-red-deep);
  color: #fff;
  font-size: 0.58rem;
  display: grid;
  place-items: center;
}

.search-label {
  display: block;
  color: var(--color-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  margin-bottom: 0.8rem;
}

.search-field {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.search-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.search-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2rem;
}

/* Premium hero */
.premium-hero {
  position: relative;
  min-height: min(640px, calc(100vh - 126px));
  height: 68vh;
  max-height: 720px;
  overflow: hidden;
  background: #251a15;
}

.hero-slides,
.hero-slide,
.hero-slide-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-media {
  overflow: hidden;
}

.hero-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  transition: transform 7s ease;
}

.hero-slide.is-active .hero-slide-media img {
  transform: scale(1);
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(27, 17, 12, 0.82) 0%,
    rgba(35, 23, 17, 0.62) 34%,
    rgba(35, 23, 17, 0.15) 70%,
    rgba(35, 23, 17, 0.04) 100%
  );
}

.hero-inner {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-copy {
  width: min(620px, 52vw);
  color: #fff;
  padding-top: 1rem;
}

.hero-kicker {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: #e3c27d;
  font-size: 0.72rem;
  margin-bottom: 0.85rem;
}

.hero-rule {
  display: block;
  width: 72px;
  height: 1px;
  background: #d6ad62;
  margin-bottom: 1.1rem;
}

.hero-copy h1 {
  color: #fff;
  font-size: clamp(3rem, 5.4vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.hero-copy h1 em {
  color: #e5bf76;
  font-style: italic;
  font-weight: 500;
}

.hero-copy p {
  max-width: 500px;
  color: rgba(255, 248, 237, 0.84);
  font-size: 1.03rem;
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

.hero-actions .btn {
  min-width: 215px;
}

.btn span {
  margin-left: 0.6rem;
  font-size: 1rem;
}

.hero-text-link {
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 0.35rem;
}

.hero-text-link span {
  color: #e4c27e;
  margin-left: 0.35rem;
}

.hero-arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  transition: all 0.25s ease;
}

.hero-arrow:hover {
  background: #fff;
  color: var(--color-red-deep);
}

.hero-prev {
  left: 2rem;
}

.hero-next {
  right: 2rem;
}

.hero-dots {
  position: absolute;
  z-index: 12;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.65rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: all 0.25s ease;
}

.hero-dot.is-active {
  width: 30px;
  border-radius: 10px;
  background: #fff;
}

.section-head.left-align {
  text-align: left;
  margin: 0;
}

.section-head.left-align .eyebrow {
  margin-bottom: 0.65rem;
}

.section-intro {
  max-width: 650px;
  margin: 0.85rem auto 0;
  color: #746b62;
  font-size: 0.95rem;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.1rem;
}

.section-heading-row .section-head {
  margin-bottom: 0;
}

.section-link {
  color: var(--color-red-deep);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.69rem;
  border-bottom: 1px solid rgba(100, 19, 31, 0.3);
  padding-bottom: 0.35rem;
  white-space: nowrap;
}

.section-link span {
  margin-left: 0.4rem;
}

/* Wrapper for a section-link + optional carousel arrows sitting together
   at the end of a section-heading-row */
.section-heading-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

/* Editorial collection cards */
.premium-collections {
  background: #fbf7ef;
}

.editorial-collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.editorial-card {
  position: relative;
  display: block;
  min-height: 420px;
  height: 100%;
  overflow: hidden;
  background: #33251d;
}

.editorial-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.editorial-card:hover img {
  transform: scale(1.045);
}

.editorial-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 10, 6, 0.02) 35%,
    rgba(20, 10, 6, 0.8) 100%
  );
}

.editorial-card-copy {
  position: absolute;
  z-index: 2;
  left: 1.6rem;
  right: 1.4rem;
  bottom: 1.6rem;
  color: #fff;
}

.editorial-card-copy small {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.editorial-card-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
}

.editorial-card-copy em {
  display: block;
  margin-top: 1.2rem;
  text-transform: uppercase;
  font-style: normal;
  letter-spacing: 0.12em;
  font-size: 0.66rem;
  color: #e8c67e;
}

/* =========================================================
   "CURATED FOR EVERY CELEBRATION" — COLLECTION CAROUSEL
   Replaces the static 4-up grid with a swipeable/arrow-driven
   track so the section reads as a carousel on every breakpoint.
   ========================================================= */

.collection-carousel {
  overflow: hidden;
}

.collection-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.collection-slide {
  flex: 0 0 calc(25% - 0.75rem);
  min-width: 0;
}

.collection-slide .editorial-card,
.collection-slide .editorial-card img {
  min-height: 420px;
}

.collection-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
}

.collection-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d6cabe;
  cursor: pointer;
  transition: 0.25s ease;
}

.collection-dot.active {
  width: 24px;
  border-radius: 10px;
  background: var(--color-gold);
}

.carousel-arrows {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.carousel-arrow-btn {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  border: 1px solid rgba(42, 38, 34, 0.18);
  background: transparent;
  color: var(--color-charcoal);
  font-size: 1.35rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.carousel-arrow-btn:hover {
  border-color: var(--color-gold);
  background: var(--color-gold);
  color: #241b16;
}

/* Category */
.premium-category-section .category-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.premium-category-section .category-card {
  border-radius: 0;
  aspect-ratio: 3/4;
  box-shadow: none;
}

.premium-category-section .category-card:nth-child(n + 5) {
  display: none;
}

.category-arrow {
  position: absolute;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}

/* "View All Categories" button under the Shop by Category grid */
.category-view-all {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}

/* Products */
.premium-products .product-card {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.premium-products .product-card:hover {
  transform: none;
  box-shadow: none;
}

.premium-products .product-media {
  border-radius: 0;
  background: #eee4d6;
}

.premium-products .product-badge {
  top: 0.8rem;
  left: 0.8rem;
  border-radius: 0;
  background: var(--color-red-deep);
}

.premium-products .product-info {
  padding: 1rem 0.1rem 0;
}

.premium-products .product-info h3 {
  font-size: 1.03rem;
  font-weight: 500;
}

.premium-products .product-info h3 a:hover {
  color: var(--color-red-deep);
}

.premium-products .product-fabric {
  color: #8b8177;
  font-size: 0.78rem;
}

.premium-products .product-price {
  color: var(--color-red-deep);
}

/* Occasion */
.occasion-section {
  background: #f3ecdf;
}

.occasion-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    transparent 25%,
    rgba(25, 15, 10, 0.72) 100%
  );
}

.occasion-copy {
  position: absolute;
  z-index: 2;
  left: 1.3rem;
  bottom: 1.3rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.occasion-copy small,
.occasion-copy em {
  display: block;
  font-family: var(--font-body);
  text-transform: uppercase;
  font-style: normal;
  letter-spacing: 0.13em;
  font-size: 0.62rem;
  color: #e4c27c;
}

.occasion-copy small {
  margin-bottom: 0.3rem;
}

.occasion-copy em {
  margin-top: 0.7rem;
  color: #fff;
}

/* Wedding feature */
.wedding-feature {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  min-height: 520px;
  background: #241b17;
  color: #fff;
}

.wedding-feature-media {
  overflow: hidden;
}

.wedding-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.wedding-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.75rem clamp(2rem, 7vw, 6rem);
}

.wedding-feature-copy .eyebrow {
  color: #d6af67;
}

.wedding-feature-copy h2 {
  color: #fff;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 500;
}

.wedding-feature-copy h2 em {
  color: #e1bd76;
  font-style: italic;
}

.wedding-feature-copy p {
  max-width: 490px;
  color: rgba(255, 248, 237, 0.7);
  line-height: 1.75;
}

.wedding-feature-copy .btn {
  align-self: flex-start;
  margin-top: 0.8rem;
}

/* Story */
.story-section {
  background: #fbf7ef;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 5rem;
  align-items: center;
}

.story-media {
  position: relative;
  overflow: visible;
}

.story-media-main img {
  width: auto;
  height: 420px;
  object-fit: cover;
}

.story-stamp {
  position: absolute;
  right: -51px;
  bottom: -25px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fffaf1;
  border: 1px solid #cda75c;
  color: var(--color-red-deep);
  display: grid;
  place-items: center;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.6rem;
  line-height: 1.5;
  box-shadow: 0 12px 30px rgba(35, 25, 15, 0.12);
}

.story-copy h2 {
  font-size: clamp(2.1rem, 3.6vw, 3.6rem);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.story-copy h2 em {
  color: var(--color-red-deep);
  font-style: italic;
}

.story-copy p {
  max-width: 520px;
  color: #6e655c;
  font-size: 0.95rem;
  line-height: 1.8;
}

.text-arrow-link {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--color-red-deep);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  border-bottom: 1px solid rgba(100, 19, 31, 0.3);
  padding-bottom: 0.35rem;
}

/* Why */
.premium-why-grid {
  gap: 0;
  border-top: 1px solid rgba(42, 38, 34, 0.12);
  border-bottom: 1px solid rgba(42, 38, 34, 0.12);
}

.premium-why-grid .why-card {
  background: #fff;
  box-shadow: none;
  border-radius: 0;
  border-top: 0;
  border-right: 1px solid rgba(42, 38, 34, 0.12);
  padding: 2.3rem 2.1rem;
  text-align: left;
  position: relative;
}

.premium-why-grid .why-card:last-child {
  border-right: 0;
}

.why-number {
  display: block;
  color: #b78b40;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  margin-bottom: 1.8rem;
}

.premium-why-grid .why-card h3 {
  font-size: 1.4rem;
  font-weight: 500;
}

.premium-why-grid .why-card p {
  font-size: 0.9rem;
  line-height: 1.75;
}

/* =========================
   PREMIUM GALLERY
   ========================= */

.premium-gallery {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    grid-auto-rows: 200px;
    gap: .7rem;
}

.premium-gallery .gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    isolation: isolate;
    box-shadow: 0 10px 26px rgba(42, 28, 18, .08);
    transition: transform .35s ease, box-shadow .35s ease;
    /* The base .gallery-item rule sets aspect-ratio:1/1, which fights the
       fixed grid-auto-rows track height above (especially on the spanned
       first item) and was what made gallery tiles overflow their track
       and visually overlap their neighbours. Reset it here so every tile
       simply fills its grid cell. */
    aspect-ratio: auto;
    width: 100%;
    height: 100%;
}

.premium-gallery .gallery-item:first-child {
    grid-row: span 2;
}

.premium-gallery .gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(23, 14, 10, .78),
        rgba(23, 14, 10, .08) 55%,
        transparent
    );
    opacity: .7;
    transition: opacity .3s ease;
}

.premium-gallery .gallery-item::after {
    content: "";
    position: absolute;
    inset: 10px;
    z-index: 2;
    border: 1px solid transparent;
    border-radius: 6px;
    pointer-events: none;
    transition: border-color .3s ease;
}

.premium-gallery .gallery-item img {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.premium-gallery .gallery-item span {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 3;
    color: #fff;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    opacity: 0;
    transform: translateY(8px);
    transition: .3s ease;
}

.premium-gallery .gallery-item span::after {
    content: "  View →";
    color: var(--color-gold-light, #e3c27d);
    font-weight: 600;
}

.premium-gallery .gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(42, 28, 18, .16);
}

.premium-gallery .gallery-item:hover::before {
    opacity: 1;
}

.premium-gallery .gallery-item:hover::after {
    border-color: rgba(227, 194, 125, .5);
}

.premium-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

.premium-gallery .gallery-item:hover span {
    opacity: 1;
    transform: translateY(0);
}
/* =========================
   TESTIMONIAL CAROUSEL
   ========================= */

.testimonial-section {
  background: #fbf7ef;
  overflow: hidden;
}

.testimonial-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}


/* Carousel */

.testimonial-carousel {
  overflow: hidden;
  margin-top: 2rem;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.testimonial-slide {
  flex: 0 0 33.333%;
  padding-right: 1rem;
  box-sizing: border-box;
}

/* Card */

.testimonial-card {
  height: 100%;
  min-height: 230px;
  margin: 0;
  padding: 1.6rem;
  background: #fff;
  border: 1px solid rgba(42, 38, 34, 0.1);
  box-shadow: 0 12px 35px rgba(42, 38, 34, 0.05);
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(42, 38, 34, 0.08);
}

.testimonial-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.quote-mark {
  color: #c49a4a;
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 0.6;
}

.testimonial-stars {
  color: #c49a4a;
  font-size: 0.7rem;
  letter-spacing: 2px;
}

.testimonial-card > p {
  margin: 1.1rem 0 1.4rem;
  color: #594d48;
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.65;
}

.testimonial-card > footer {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(42, 38, 34, 0.08);
}

.testimonial-card > footer strong,
.testimonial-card > footer span {
  display: block;
}

.testimonial-card > footer strong {
  color: var(--color-red-deep);
  font-size: 0.82rem;
}

.testimonial-card > footer span {
  margin-top: 0.15rem;
  color: #8b8178;
  font-size: 0.72rem;
}

/* Dots */

.testimonial-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
}

.testimonial-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d6cabe;
  cursor: pointer;
  transition: 0.25s ease;
}

.testimonial-dot.active {
  width: 24px;
  border-radius: 10px;
  background: #c49a4a;
}

/* Instagram */
.premium-instagram {
  gap: 0.65rem;
}

.premium-instagram .instagram-item {
  border-radius: 0;
  position: relative;
}

.premium-instagram .instagram-item span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(49, 22, 15, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.premium-instagram .instagram-item:hover span {
  opacity: 1;
}

/* =========================================================
   INSTAGRAM — FULL-WIDTH MARQUEE
   Breaks out of .container to bleed edge-to-edge and scrolls
   continuously via a CSS animation (pauses on hover). The
   markup duplicates the item set 2x so -50% translateX is
   exactly one seamless loop.
   ========================================================= */

.instagram-marquee {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  margin-top: 2.25rem;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 4%,
    #000 96%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 4%,
    #000 96%,
    transparent 100%
  );
}

.instagram-marquee-track {
  display: flex;
  width: max-content;
  gap: 0.75rem;
  padding: 0 0.75rem;
  animation: instagram-marquee-scroll 34s linear infinite;
}

.instagram-marquee:hover .instagram-marquee-track {
  animation-play-state: paused;
}

.instagram-marquee .instagram-item {
  flex: 0 0 220px;
  width: 220px;
  aspect-ratio: 1/1;
  border-radius: 0;
}

@keyframes instagram-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 0.6rem;
  color: #e2bd75;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
}

.mobile-menu-head button {
  border: 0;
  background: none;
  color: #fff;
  font-size: 1.7rem;
}

/* Inner pages premium treatment */
.premium-page-banner {
  position: relative;
  padding: 1.65rem 0 1.5rem;
  background:
    linear-gradient(
      90deg,
      rgba(61, 11, 19, 0.9),
      rgba(61, 11, 19, 0.62)
    ),
    var(--page-banner-image)
    center / cover no-repeat;
  border-bottom: 1px solid rgba(227, 194, 125, 0.22);
}

.premium-page-banner > .container {
  position: relative;
  z-index: 2;
}

.premium-page-banner h1 {
  margin: 0;
  color: #fffaf2;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
}

.premium-page-banner > .container > p:last-child {
  margin: 0.4rem 0 0;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.8rem;
  line-height: 1.4;
}

.premium-page-banner .eyebrow {
  margin: 0 0 0.35rem;
  color: #e3c27d;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Policy pages: Privacy / Terms / Shipping & Returns */
.policy-content {
  max-width: 780px;
}

.policy-updated {
  font-size: 0.8rem;
  color: var(--color-charcoal-soft);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(42, 38, 34, 0.1);
}

.policy-block {
  margin-bottom: 2.25rem;
}

.policy-block h2 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  color: var(--color-red-deep);
}

.policy-block p {
  color: #4a423b;
  font-size: 0.96rem;
  line-height: 1.8;
}

.policy-cta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(42, 38, 34, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.policy-cta p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-charcoal);
}

.premium-product-detail {
  background: #fbf7ef;
}

.premium-product-detail .product-gallery-main {
  border-radius: 0;
  box-shadow: none;
  background: #eee4d6;
}

.premium-product-detail .thumb-btn {
  border-radius: 0;
}

.premium-product-detail .product-detail-info h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  font-weight: 500;
}

.premium-product-detail .product-detail-price {
  font-size: 1.7rem;
}

.premium-product-detail .product-specs th,
.premium-product-detail .product-specs td {
  border-bottom-color: rgba(42, 38, 34, 0.12);
}

.product-category-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.61rem;
  color: #b48943;
  margin: 0 0 0.35rem;
}

.product-view {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 3;
  background: rgba(255, 250, 242, 0.94);
  color: #5f1823;
  padding: 0.55rem 0.7rem;
  font-size: 0.61rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.25s ease;
}

.product-card:hover .product-view {
  opacity: 1;
  transform: translateY(0);
}
/* =========================================
   GALLERY → TESTIMONIAL SPACING FIX (compact)
   ========================================= */

.gallery-section {
    position: relative;
    display: block;
    clear: both;
}

.gallery-section .container {
    position: relative;
    display: block;
}

/* =========================================
   TESTIMONIAL — ALWAYS START BELOW GALLERY
   ========================================= */

.testimonial-section {
    position: relative;
    display: block;
    clear: both;
    width: 100%;
    margin-top: 0;
    padding-top: 44px;
    z-index: 2;
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .gallery-section {
        padding-bottom: 28px;
    }

    .premium-gallery {
        margin-bottom: 0;
    }

    .testimonial-section {
        margin-top: 0;
        padding-top: 32px;
        clear: both;
    }

}

/* =========================================================
   RESPONSIVE — collection carousel, category CTA, marquee
   ========================================================= */

@media (max-width: 1024px) {
  .collection-slide {
    flex: 0 0 calc(50% - 0.5rem);
  }
}

@media (max-width: 640px) {
  .collection-slide {
    flex: 0 0 82%;
  }

  .collection-slide .editorial-card,
  .collection-slide .editorial-card img {
    min-height: 340px;
  }

  .section-heading-actions {
    gap: 0.85rem;
  }

  .carousel-arrow-btn {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 1.15rem;
  }

  .instagram-marquee .instagram-item {
    flex-basis: 150px;
    width: 150px;
  }
}