/* ============================================
   MARBLEART – Luxury Marble Handicraft Store
   CSS Stylesheet
   ============================================ */

:root {
  --cream: #f8f4ee;
  --off-white: #f2ede6;
  --marble-white: #faf9f7;
  --stone: #c8b89a;
  --stone-dark: #a89070;
  --charcoal: #2a2520;
  --dark: #1a1510;
  --text: #3d3530;
  --text-muted: #7a6f65;
  --gold: #b8943a;
  --gold-light: #d4a843;
  --green-acc: #5a7a5a;
  --red-acc: #a84040;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --logo-desktop-height: 44px;
  --logo-desktop-width: auto;
  --logo-mobile-height: 36px;
  --logo-mobile-width: auto;
  --radius: 12px;
  --radius-sm: 8px;
  --trans: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 24px rgba(40,30,20,0.10);
  --shadow-md: 0 8px 40px rgba(40,30,20,0.15);
  --shadow-lg: 0 20px 60px rgba(40,30,20,0.18);
}

/* ---- BASE ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body, 'Jost', sans-serif);
  background: var(--marble-white);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  color: var(--charcoal);
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--charcoal);
  color: var(--stone);
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* ---- NAVBAR ---- */
#mainNav {
  background: rgba(250,249,247,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,184,154,0.3);
  padding: 16px 0;
  transition: var(--trans);
  z-index: 1000;
}
#mainNav.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(40,30,20,0.10);
}

.brand-icon {
  font-size: 22px;
  color: var(--gold);
  line-height: 1;
}
.brand-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.5px;
}
.brand-text span { color: var(--gold); }

.site-logo {
  display: block;
  object-fit: contain;
}

.site-logo-nav,
.site-logo-footer {
  height: var(--logo-desktop-height, 44px);
  width: var(--logo-desktop-width, auto);
  max-height: var(--logo-desktop-height, 44px);
}

.site-logo-mobile {
  height: var(--logo-mobile-height, 36px);
  width: var(--logo-mobile-width, auto);
  max-height: var(--logo-mobile-height, 36px);
  max-width: 100%;
}

@media (max-width: 991.98px) {
  .site-logo-nav {
    height: var(--logo-mobile-height, 36px);
    width: var(--logo-mobile-width, auto);
    max-height: var(--logo-mobile-height, 36px);
  }
}

.nav-link {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-weight: 500;
  font-size: 14px;
  color: var(--text) !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 14px !important;
  transition: var(--trans);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--trans);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--gold) !important; }

/* ---- SIMPLE CATEGORY DROPDOWN ---- */
.simple-nav-dropdown {
  position: relative;
}

.simple-nav-dropdown > .nav-link.dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: 2px;
}

.simple-dropdown-menu {
  min-width: 240px;
  max-width: 280px;
  padding: 8px 0 !important;
  margin-top: 10px !important;
  border-radius: 10px !important;
  border: 1px solid rgba(200,184,154,0.28) !important;
  background: #fff;
  box-shadow: 0 16px 40px rgba(40,30,20,0.14) !important;
  overflow: visible !important;
}

.simple-dropdown-item {
  position: relative;
  list-style: none;
}

.simple-dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 18px;
  color: var(--charcoal);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  transition: background .2s ease, color .2s ease;
}

.simple-dropdown-link:hover,
.simple-dropdown-link.active,
.simple-dropdown-item:hover > .simple-dropdown-link {
  background: var(--off-white, #f7f3ec);
  color: var(--gold);
}

.simple-dropdown-chevron {
  font-size: 12px;
  color: var(--text-muted);
  transition: transform .2s ease, color .2s ease;
}

.simple-dropdown-item:hover > .simple-dropdown-link .simple-dropdown-chevron {
  color: var(--gold);
  transform: translateX(2px);
}

.simple-dropdown-divider {
  margin: 6px 0 !important;
  border-color: rgba(200,184,154,0.28) !important;
  opacity: 1;
}

.simple-dropdown-all {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.simple-submenu {
  position: absolute;
  top: -8px;
  left: calc(100% - 4px);
  min-width: 220px;
  max-width: 260px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(200,184,154,0.28);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(40,30,20,0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 1080;
}

.simple-dropdown-item.has-submenu:hover > .simple-submenu,
.simple-dropdown-item.has-submenu:focus-within > .simple-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.simple-submenu-link {
  display: block;
  padding: 9px 16px;
  color: var(--charcoal);
  text-decoration: none;
  font-size: 14px;
  transition: background .2s ease, color .2s ease;
}

.simple-submenu-link:hover,
.simple-submenu-link.active {
  background: var(--off-white, #f7f3ec);
  color: var(--gold);
}

@media (min-width: 992px) {
  .simple-nav-dropdown:hover > .simple-dropdown-menu {
    display: block !important;
  }
}

@media (max-width: 991.98px) {
  .simple-nav-dropdown {
    display: none;
  }
}

/* ---- MOBILE DRAWER (UK luxury style) ---- */
.mobile-menu-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 1102;
}

.burger-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, width 0.25s ease;
}

body.mobile-menu-open .mobile-menu-btn .burger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
body.mobile-menu-open .mobile-menu-btn .burger-line:nth-child(2) {
  opacity: 0;
  width: 0;
}
body.mobile-menu-open .mobile-menu-btn .burger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 21, 16, 0.45);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(88vw, 380px);
  height: 100%;
  height: 100dvh;
  background: var(--marble-white, #faf9f7);
  z-index: 1101;
  display: flex;
  flex-direction: column;
  transform: translateX(-105%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 12px 0 48px rgba(40, 30, 20, 0.18);
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(200, 184, 154, 0.28);
  background: #fff;
}

.mobile-drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.mobile-drawer-logo,
.site-logo-mobile {
  height: var(--logo-mobile-height, 36px);
  width: var(--logo-mobile-width, auto);
  max-height: var(--logo-mobile-height, 36px);
  max-width: 100%;
  object-fit: contain;
}

.mobile-drawer-close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--trans);
}

.mobile-drawer-close:hover {
  background: var(--gold);
  color: #fff;
}

.mobile-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 20px 28px;
}

.mobile-drawer-kicker {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 14px;
  font-weight: 600;
}

.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-drawer-link {
  display: block;
  padding: 14px 4px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 184, 154, 0.18);
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.mobile-drawer-link:hover,
.mobile-drawer-link.active {
  color: var(--gold);
  padding-left: 6px;
}

.mobile-acc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 4px;
  border: none;
  border-bottom: 1px solid rgba(200, 184, 154, 0.18);
  background: transparent;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
}

.mobile-acc-toggle i {
  font-size: 14px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.mobile-acc-toggle.is-open i {
  transform: rotate(180deg);
  color: var(--gold);
}

.mobile-acc-toggle.is-current,
.mobile-acc-toggle.is-open {
  color: var(--gold);
}

.mobile-acc-panel {
  display: none;
  padding: 8px 0 16px;
  animation: mobileAccIn 0.3s ease;
}

.mobile-acc-panel.is-open {
  display: block;
}

@keyframes mobileAccIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-acc-group {
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(200, 184, 154, 0.22);
}

.mobile-acc-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mobile-acc-parent {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 0;
}

.mobile-acc-parent.active,
.mobile-acc-parent:hover {
  color: var(--gold);
}

.mobile-acc-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--off-white);
  flex-shrink: 0;
}

.mobile-sub-toggle {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200,184,154,0.35);
  border-radius: 8px;
  background: var(--off-white, #f7f3ec);
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
}

.mobile-sub-toggle i {
  font-size: 14px;
  transition: transform .25s ease;
}

.mobile-sub-toggle.is-open i {
  transform: rotate(180deg);
  color: var(--gold);
}

.mobile-acc-subs {
  display: none;
  flex-direction: column;
  padding: 8px 0 0 56px;
  gap: 2px;
}

.mobile-acc-group.is-open .mobile-acc-subs {
  display: flex;
}

.mobile-acc-sub {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 184, 154, 0.12);
}

.mobile-acc-sub:last-child {
  border-bottom: none;
}

.mobile-acc-sub:hover,
.mobile-acc-sub.active {
  color: var(--gold);
}

.mobile-acc-all {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
}

.mobile-acc-all:hover {
  color: var(--gold);
}

.mobile-drawer-divider {
  height: 1px;
  background: rgba(200, 184, 154, 0.28);
  margin: 22px 0;
}

.mobile-drawer-cta {
  display: block;
  text-align: center;
  background: var(--charcoal);
  color: #fff !important;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
  transition: background 0.25s ease;
}

.mobile-drawer-cta:hover {
  background: var(--gold);
}

.mobile-drawer-footer {
  padding: 16px 20px 28px;
  border-top: 1px solid rgba(200, 184, 154, 0.28);
  background: #fff;
}

.mobile-drawer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 8px;
}

.mobile-drawer-contact:hover {
  color: var(--gold);
}

.mobile-drawer-socials {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.mobile-drawer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  color: var(--charcoal);
  text-decoration: none;
  transition: var(--trans);
}

.mobile-drawer-socials a:hover {
  background: var(--gold);
  color: #fff;
}

body.mobile-menu-open {
  overflow: hidden;
}

@media (min-width: 992px) {
  .mobile-menu-btn,
  .mobile-drawer,
  .mobile-drawer-overlay {
    display: none !important;
  }
}

.dropdown-menu {
  border-radius: var(--radius-sm);
  padding: 8px 0;
  min-width: 200px;
}
.dropdown-item {
  font-size: 14px;
  padding: 8px 20px;
  transition: var(--trans);
}
.dropdown-item:hover {
  background: var(--off-white);
  color: var(--gold);
  padding-left: 26px;
}

/* ---- GALLERY ---- */
.gallery-hero {
  background:
    radial-gradient(circle at 12% 20%, rgba(184,148,58,.14), transparent 26%),
    linear-gradient(135deg, var(--cream) 0%, var(--marble-white) 58%, var(--off-white) 100%);
}

.gallery-album-card {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 18px;
  color: white;
  text-decoration: none;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.gallery-album-img {
  position: absolute;
  inset: 0;
}

.gallery-album-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .7s ease;
  opacity: .84;
}

.gallery-album-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,21,16,.06) 0%, rgba(26,21,16,.82) 100%);
}

.gallery-album-card:hover .gallery-album-img img {
  transform: scale(1.09);
}

.gallery-album-content {
  position: relative;
  z-index: 1;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
}

.gallery-album-content small {
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
  font-weight: 600;
}

.gallery-album-content strong {
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.05;
  color: #fff;
}

.gallery-album-content em {
  margin-top: 10px;
  font-style: normal;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.5;
}

.gallery-album-link {
  margin-top: 18px;
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

.gallery-media-card {
  height: 100%;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(200,184,154,.18);
}

.gallery-media-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--off-white);
  overflow: hidden;
}

.gallery-media-frame img,
.gallery-media-frame video,
.gallery-media-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 0;
}

.gallery-media-frame img {
  transition: transform .6s ease;
}

.gallery-media-card:hover .gallery-media-frame img {
  transform: scale(1.06);
}

.gallery-media-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(26,21,16,.76);
  color: white;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.gallery-media-empty {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 42px;
}

.gallery-media-body {
  padding: 18px 20px 22px;
}

.gallery-media-body p {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.gallery-media-body h5 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 21px;
  color: var(--charcoal);
}

.gallery-media-body span {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* ---- OUR STORY ---- */
.story-hero {
  position: relative;
  padding: 48px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(184,148,58,.18), transparent 26%),
    radial-gradient(circle at 80% 20%, rgba(200,184,154,.25), transparent 24%),
    linear-gradient(135deg, var(--cream) 0%, var(--marble-white) 62%, var(--off-white) 100%);
}

.story-title {
  font-size: clamp(2.6rem, 6vw, 5.2rem) !important;
  line-height: .95;
  max-width: 620px;
}

.story-lead,
.story-copy {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 16px;
}

.story-lead {
  max-width: 620px;
}

.story-hero-card {
  min-height: 430px;
  border-radius: 24px;
  padding: 18px;
  background:
    linear-gradient(rgba(42,37,32,.18), rgba(42,37,32,.72)),
    var(--stone);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: flex-end;
}

.story-hero-card-inner {
  width: 100%;
  padding: 28px;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
}

.story-hero-card-inner span {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 700;
}

.story-hero-card-inner strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 64px;
  color: var(--charcoal);
  line-height: 1;
}

.story-hero-card-inner p {
  margin: 8px 0 0;
  color: var(--text-muted);
}

.story-image-stack {
  position: relative;
  padding: 0 26px 30px 0;
}

.story-image-main {
  height: 440px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--off-white);
}

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

.story-floating-note {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 250px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow-md);
  color: var(--charcoal);
  font-weight: 600;
}

.story-floating-note i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: white;
  flex-shrink: 0;
}

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

.story-stats div {
  padding: 18px 14px;
  border-radius: 12px;
  background: var(--off-white);
  text-align: center;
}

.story-stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1;
  color: var(--gold);
}

.story-stats span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .story-hero {
    padding: 42px 0 56px;
  }
  .story-hero-card {
    min-height: 320px;
  }
  .story-image-main {
    height: 320px;
  }
  .story-stats {
    grid-template-columns: 1fr;
  }
}

.nav-icon {
  font-size: 18px;
  color: var(--charcoal);
  transition: var(--trans);
  position: relative;
}
.nav-icon:hover { color: var(--gold); }

.cart-badge {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--gold);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ---- HERO ---- */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f0e8d8 0%, #e8ddd0 40%, #d8cfc0 100%);
  overflow: hidden;
}

.hero-texture {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8943a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(240,232,216,0.5) 0%, transparent 60%);
}

.hero-section .container { position: relative; z-index: 2; }

.hero-sub {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--stone-dark); }

.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-stats {
  padding-top: 28px;
  border-top: 1px solid rgba(200,184,154,0.4);
}
.hero-stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--charcoal);
}
.hero-stats span {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.divider-v { width: 1px; background: rgba(200,184,154,0.5); align-self: stretch; }

.hero-img-wrap {
  position: relative;
  display: inline-block;
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.hero-img {
  width: 420px;
  max-width: 100%;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 520px;
  background: var(--stone);
}

.hero-badge {
  position: absolute;
  bottom: 40px; left: -30px;
  background: var(--charcoal);
  color: var(--stone);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.5;
  box-shadow: var(--shadow-md);
}
.hero-badge i { font-size: 20px; color: var(--gold); display: block; margin-bottom: 6px; }

.hero-scroll-hint {
  position: absolute;
  right: 40px; bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-lr;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ---- HOME SLIDER ---- */
.home-slider-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #1a1510;
}

.home-slider {
  position: relative;
}

.home-slider-item {
  position: relative;
  height: var(--slide-desktop-h, 620px);
  overflow: hidden;
  background: #1a1510;
}

.home-slider-media {
  position: absolute;
  inset: 0;
  background: #1a1510;
  line-height: 0;
}

.home-slider-media picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  line-height: 0;
}

.home-slider-image {
  width: 100%;
  height: 100%;
  display: block;
}

.home-slider-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.home-slider-overlay-soft {
  opacity: 0.25;
}

.home-slider-content-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  padding: 48px 24px 64px;
  pointer-events: none;
  transform: translate(var(--slide-box-ox, 0), var(--slide-box-oy, 0));
}

.home-slider-content-wrap .home-slider-dyn-btn {
  pointer-events: auto;
}

.home-slider-dynamic-box {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: var(--slide-box-max-d, 560px);
}

.home-slider-layer {
  font-size: var(--fs-d, 42px);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.home-slider-layer.has-max-lines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--max-lines, 3);
  overflow: hidden;
}

.home-slider-dynamic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--slide-box-gap, 14px);
}

.home-slider-dyn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: var(--fs-d, 13px);
  transition: opacity .25s ease, transform .25s ease;
}

.home-slider-dyn-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: inherit;
}

@media (max-width: 1199px) {
  .home-slider-item {
    height: var(--slide-tablet-h, 540px);
  }

  .home-slider-dynamic-box {
    max-width: var(--slide-box-max-t, 480px);
  }

  .home-slider-layer {
    font-size: var(--fs-t, 34px);
  }

  .home-slider-dyn-btn {
    font-size: var(--fs-t, 12px);
  }
}

@media (max-width: 991px) {
  .home-slider-item {
    height: var(--slide-mobile-h, 480px);
  }

  .home-slider-content-wrap {
    padding: 28px 14px 58px;
  }

  .home-slider-dynamic-box {
    max-width: var(--slide-box-max-m, 92%);
  }

  .home-slider-layer {
    font-size: var(--fs-m, 26px);
  }

  .home-slider-dyn-btn {
    font-size: var(--fs-m, 12px);
  }

  .d-none-mobile { display: none !important; }
}

@media (min-width: 1200px) {
  .d-none-desktop { display: none !important; }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .d-none-tablet { display: none !important; }
}

.btn-outline-light-slider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  background: transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.btn-outline-light-slider:hover {
  background: #fff;
  color: #1a1510;
  border-color: #fff;
}

.home-slider-control {
  width: auto;
  opacity: 1;
  z-index: 3;
}

.home-slider-control-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 20px;
  backdrop-filter: blur(6px);
  transition: background .25s ease;
}

.home-slider-control:hover .home-slider-control-icon {
  background: rgba(212, 168, 67, 0.9);
  border-color: transparent;
}

.home-slider-control.carousel-control-prev { left: 18px; }
.home-slider-control.carousel-control-next { right: 18px; }

.home-slider-indicators {
  margin-bottom: 18px;
  gap: 8px;
  z-index: 3;
}

.home-slider-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 0;
  opacity: 1;
  margin: 0;
}

.home-slider-indicators .active {
  background: var(--gold, #d4a843);
  transform: scale(1.15);
}

@media (max-width: 991px) {
  .home-slider-control.carousel-control-prev { left: 8px; }
  .home-slider-control.carousel-control-next { right: 8px; }

  .home-slider-control-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .home-slider-dynamic-actions {
    width: 100%;
  }

  .home-slider-dyn-btn {
    width: 100%;
  }

  .home-slider-indicators {
    margin-bottom: 12px;
  }
}

/* ---- BUTTONS ---- */
.btn-primary-custom {
  background: var(--charcoal);
  color: var(--cream) !important;
  border: none;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--trans);
  font-family: 'Jost', sans-serif;
}
.btn-primary-custom:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,148,58,0.4);
}

.btn-outline-custom {
  background: transparent;
  color: var(--charcoal) !important;
  border: 1.5px solid var(--charcoal);
  padding: 13px 32px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--trans);
  font-family: 'Jost', sans-serif;
}
.btn-outline-custom:hover {
  background: var(--charcoal);
  color: var(--cream) !important;
}

.btn-light-custom {
  background: var(--cream);
  color: var(--charcoal) !important;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  transition: var(--trans);
  font-family: 'Jost', sans-serif;
}
.btn-light-custom:hover {
  background: var(--gold);
  color: white !important;
  transform: translateY(-2px);
}

/* ---- MARQUEE STRIP ---- */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 30s linear infinite;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- SECTIONS ---- */
.section-pad { padding: 90px 0; }
.bg-off-white { background: var(--off-white); }

.section-sub {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--charcoal);
}

.view-all-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
  transition: var(--trans);
}
.view-all-link:hover { color: var(--gold); }

/* ---- COLLECTIONS SLIDER ---- */
.collections-slider {
  margin: 0 -12px;
}

.collections-slide {
  padding: 0 12px;
}

.collection-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 16px rgba(26,21,16,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(26,21,16,0.12);
  color: inherit;
}

.collection-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--stone, #f0e8d8);
}

.collection-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover .collection-img-wrap img {
  transform: scale(1.08);
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,21,16,0.35);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.collection-card:hover .collection-overlay {
  opacity: 1;
}

.collection-explore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--charcoal, #1a1510);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.collection-info {
  padding: 18px 20px 20px;
  text-align: center;
}

.collection-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--charcoal, #1a1510);
}

.collection-count {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.collections-slider .slick-prev,
.collections-slider .slick-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--charcoal, #1a1510);
  border: none;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 5;
  cursor: pointer;
  transition: background 0.25s ease;
  font-size: 0;
  line-height: 0;
  padding: 0;
}

.collections-slider .slick-prev:hover,
.collections-slider .slick-next:hover {
  background: var(--gold, #d4a843);
}

.collections-slider .slick-prev { left: -22px; }
.collections-slider .slick-next { right: -22px; }

.collections-slider .slick-prev::before,
.collections-slider .slick-next::before {
  font-family: 'bootstrap-icons';
  font-size: 18px;
  color: #fff;
  opacity: 1;
}

.collections-slider .slick-prev::before { content: '\F284'; }
.collections-slider .slick-next::before { content: '\F285'; }

.collections-slider .slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.collections-slider .slick-dots li button {
  font-size: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(26,21,16,0.2);
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.collections-slider .slick-dots li.slick-active button {
  background: var(--gold, #d4a843);
  transform: scale(1.2);
}

@media (max-width: 991px) {
  .collections-slider .slick-prev { left: -8px; }
  .collections-slider .slick-next { right: -8px; }
  .collections-slider .slick-prev,
  .collections-slider .slick-next { width: 36px; height: 36px; }
  .collections-slider .slick-prev::before,
  .collections-slider .slick-next::before { font-size: 15px; }
}

@media (max-width: 575px) {
  .collection-name { font-size: 15px; }
  .collection-info { padding: 14px 14px 16px; }
}

/* ---- CATEGORY CARDS (legacy) ---- */
.cat-card {
  display: block;
  color: inherit;
  text-align: center;
  transition: var(--trans);
}
.cat-card:hover { color: var(--gold); }

.cat-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 16px;
  aspect-ratio: 3/4;
  background: var(--stone);
}
.cat-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.cat-card:hover .cat-img-wrap img { transform: scale(1.08); }

.cat-overlay {
  position: absolute; inset: 0;
  background: rgba(26,21,16,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: white;
  opacity: 0;
  transition: var(--trans);
}
.cat-card:hover .cat-overlay { opacity: 1; }

.cat-card h5 {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 4px;
}
.cat-card span { font-size: 12px; color: var(--text-muted); letter-spacing: 1px; }

/* ---- PRODUCT CARDS ---- */
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(40,30,20,0.07);
  transition: var(--trans);
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
  background: var(--off-white);
}
.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-img { transform: scale(1.06); }

.product-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.badge-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  display: inline-block;
}
.badge-tag.new { background: var(--charcoal); color: var(--cream); }
.badge-tag.sale { background: var(--red-acc); color: white; }
.badge-tag.best { background: var(--gold); color: white; }

.product-actions {
  position: absolute;
  top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateX(10px);
  transition: var(--trans);
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }

.act-btn {
  width: 36px; height: 36px;
  background: white;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--charcoal);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: var(--trans);
  cursor: pointer;
}
.act-btn:hover { background: var(--gold); color: white; }
.act-btn-lg { width: 50px; height: 50px; font-size: 18px; }

.add-to-cart-btn {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--charcoal);
  color: var(--cream) !important;
  text-align: center;
  padding: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: var(--trans);
}
.product-card:hover .add-to-cart-btn { transform: translateY(0); }
.add-to-cart-btn:hover { background: var(--gold); }

.product-info { padding: 18px 18px 20px; }

.product-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.product-name {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 10px;
  line-height: 1.3;
}
.product-name a:hover { color: var(--gold); }

.product-price { margin-bottom: 8px; }
.current-price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
}
.old-price {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 8px;
}

.product-rating {
  font-size: 12px;
  color: var(--gold);
}
.product-rating small { color: var(--text-muted); margin-left: 4px; }

/* ---- PROMO BANNER ---- */
.promo-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, #3a2e24 100%);
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8943a' fill-opacity='0.05'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.promo-inner { position: relative; z-index: 1; }
.promo-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
  font-family: var(--font-heading);
  line-height: 1.2;
}
.promo-desc { color: rgba(248,244,238,0.7); max-width: 480px; }
.promo-img {
  height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

/* ---- WHY US ---- */
.why-card {
  padding: 40px 24px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid rgba(200,184,154,0.2);
  transition: var(--trans);
}
.why-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.why-icon {
  width: 64px; height: 64px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--gold);
  margin: 0 auto 20px;
  transition: var(--trans);
}
.why-card:hover .why-icon { background: var(--gold); color: white; }
.why-card h5 {
  font-size: 17px;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}
.why-card p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ---- TESTIMONIALS ---- */
.testi-card {
  background: white;
  padding: 48px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(200,184,154,0.2);
}
.testi-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.testi-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 28px;
  line-height: 1.7;
}
.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.testi-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--stone);
  border: 2px solid var(--gold);
}
.testi-author strong { display: block; font-size: 15px; color: var(--charcoal); }
.testi-author span { font-size: 12px; color: var(--text-muted); letter-spacing: 0.5px; }

.testi-indicators { position: static; margin-top: 32px; }
.testi-indicators [data-bs-target] {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--stone);
  border: none;
  opacity: 1;
  transition: var(--trans);
}
.testi-indicators .active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ---- NEWSLETTER ---- */
.newsletter-section {
  background: var(--charcoal);
}
.newsletter-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--cream);
  margin-bottom: 8px;
}
.newsletter-section p { color: rgba(248,244,238,0.6); }
.newsletter-input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(200,184,154,0.3);
  color: var(--cream) !important;
  border-radius: 4px;
  padding: 14px 20px;
  font-size: 14px;
  flex: 1 1 260px;
}
.newsletter-input::placeholder { color: rgba(248,244,238,0.4); }
.newsletter-input:focus {
  background: rgba(255,255,255,0.15);
  border-color: var(--gold);
  box-shadow: none;
  outline: none;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--dark);
  color: rgba(248,244,238,0.7);
}
.footer-brand .brand-text { color: var(--cream); }
.footer-about { font-size: 14px; line-height: 1.7; }

.social-links a {
  width: 38px; height: 38px;
  border: 1px solid rgba(200,184,154,0.3);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--stone);
  transition: var(--trans);
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: white; }

.footer-heading {
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Jost', sans-serif;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(248,244,238,0.6);
  transition: var(--trans);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
  display: flex; gap: 12px;
  font-size: 14px;
  margin-bottom: 14px;
  line-height: 1.5;
}
.footer-contact i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(200,184,154,0.15);
  font-size: 13px;
  color: rgba(248,244,238,0.4);
}
.footer-bottom a {
  color: rgba(248,244,238,0.4);
  transition: var(--trans);
}
.footer-bottom a:hover { color: var(--gold); }

/* ---- QUICK VIEW MODAL ---- */
.quick-view-modal { border-radius: var(--radius); overflow: hidden; border: none; }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 10;
  background: white;
  border-radius: 50%;
  width: 36px; height: 36px;
  opacity: 1;
  box-shadow: var(--shadow);
}
.qv-img-wrap { height: 100%; min-height: 400px; background: var(--off-white); }
.qv-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.qv-meta { display: flex; gap: 20px; font-size: 13px; color: var(--text-muted); }

/* ---- SCROLL TO TOP ---- */
.scroll-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--charcoal);
  color: var(--cream);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transform: translateY(16px);
  transition: var(--trans);
  z-index: 999;
}
.scroll-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.scroll-top:hover { background: var(--gold); }

/* ---- AOS ANIMATIONS (manual fallback) ---- */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos][data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-right"].aos-animate,
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

/* ---- BREADCRUMB STRIP ---- */
.breadcrumb-strip {
  background: var(--off-white);
  border-bottom: 1px solid rgba(200, 184, 154, 0.28);
  padding: 10px 0;
}

.breadcrumb-strip .breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.breadcrumb-strip .breadcrumb::-webkit-scrollbar {
  display: none;
}

.breadcrumb-strip .breadcrumb-item {
  color: var(--text-muted);
}

.breadcrumb-strip .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: rgba(160, 140, 110, 0.7);
  font-weight: 400;
  padding: 0 0.45rem;
}

.breadcrumb-strip .breadcrumb-item a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-strip .breadcrumb-item a:hover {
  color: var(--charcoal);
}

.breadcrumb-strip .breadcrumb-item.active {
  color: var(--charcoal);
  font-weight: 600;
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---- PAGE HERO / SHOP HERO ---- */
.page-hero,
.shop-hero {
  position: relative;
  background: linear-gradient(135deg, var(--off-white), var(--cream));
  padding: 48px 0 52px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--page-hero-image);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(248, 244, 238, 0.94) 0%, rgba(248, 244, 238, 0.78) 42%, rgba(42, 37, 32, 0.58) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-subtitle {
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.85;
  margin-bottom: 0;
}

.page-hero h1,
.shop-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.page-hero[style*="--page-hero-image"] .section-sub,
.page-hero[style*="--page-hero-image"] .page-hero-subtitle {
  color: var(--charcoal);
}

.page-hero[style*="--page-hero-image"] .section-title {
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.35);
}

@media (max-width: 767.98px) {
  .page-hero,
  .shop-hero,
  .story-hero {
    display: none !important;
  }
}

.filter-sidebar .filter-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,184,154,0.3);
}

.filter-group {
  margin-bottom: 24px;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.filter-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.35;
  color: var(--text);
}

.filter-option input {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
}

.filter-option span {
  min-width: 0;
}

.filter-option-sub {
  padding-left: 22px;
  font-size: 13px;
  opacity: 0.92;
}

.filter-stars {
  color: var(--gold);
  letter-spacing: 1px;
}

.shop-clear-btn {
  font-size: 13px;
  border-radius: 6px;
}

.shop-results-bar {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.shop-results-bar-mobile {
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--text-muted);
}

.shop-mobile-toolbar {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.shop-mobile-toolbar-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(200,184,154,0.45);
  background: var(--charcoal);
  color: white;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.shop-mobile-sort {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  font-size: 13px;
  border-radius: 10px;
}

.sort-select {
  border: 1px solid rgba(200,184,154,0.4);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text);
  background: white;
}
.sort-select:focus { border-color: var(--gold); box-shadow: none; outline: none; }

@media (max-width: 991.98px) {
  .shop-page {
    padding-top: 28px;
  }

  .filter-sidebar {
    display: block;
    margin-bottom: 8px;
    padding: 16px;
    background: white;
    border: 1px solid rgba(200,184,154,0.28);
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(40,30,20,0.05);
  }

  .filter-group {
    margin-bottom: 18px;
  }

  .filter-sidebar .filter-title {
    font-size: 11px;
    letter-spacing: 1.4px;
    margin-bottom: 10px;
    padding-bottom: 8px;
  }

  .filter-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 10px;
  }

  .filter-option {
    font-size: 12px;
    gap: 8px;
    padding: 8px 10px;
    background: var(--off-white);
    border-radius: 10px;
    min-height: 44px;
    align-items: center;
  }

  .filter-option span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  #productGrid > [class*="col-"] {
    display: flex;
  }

  #productGrid .product-card {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(40,30,20,0.06);
  }

  #productGrid .product-card:hover {
    transform: none;
  }

  #productGrid .product-img-wrap {
    height: 150px;
  }

  #productGrid .product-actions {
    opacity: 1;
    transform: none;
  }

  #productGrid .act-btn {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  #productGrid .add-to-cart-btn {
    transform: none;
    padding: 8px;
    font-size: 10px;
    letter-spacing: 1px;
  }

  #productGrid .product-info {
    padding: 10px 10px 12px;
  }

  #productGrid .product-cat {
    font-size: 10px;
    margin-bottom: 2px;
  }

  #productGrid .product-name {
    font-size: 14px;
    line-height: 1.25;
    margin-bottom: 4px;
  }

  #productGrid .product-name a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  #productGrid .current-price {
    font-size: 14px;
  }

  #productGrid .old-price {
    font-size: 11px;
  }

  #shopPagination {
    margin-top: 24px !important;
  }

  .shop-pagination {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px !important;
  }

  .shop-pagination .page-link {
    min-width: 36px;
    padding: 7px 10px;
    font-size: 13px;
  }
}

@media (max-width: 575.98px) {
  #productGrid .product-img-wrap {
    height: 132px;
  }

  #productGrid .product-name {
    font-size: 13px;
  }
}

/* ---- PRODUCT DETAIL PAGE ---- */
.product-gallery-thumb {
  width: 70px; height: 70px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans);
  background: var(--off-white);
}
.product-gallery-thumb.active { border-color: var(--gold); }

.product-detail-price .current-price { font-size: 2rem; }

.qty-input {
  display: flex;
  align-items: center;
  border: 1px solid rgba(200,184,154,0.4);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
}
.qty-btn {
  background: var(--off-white);
  border: none;
  padding: 10px 18px;
  font-size: 18px;
  cursor: pointer;
  transition: var(--trans);
}
.qty-btn:hover { background: var(--gold); color: white; }
.qty-input input {
  width: 60px;
  text-align: center;
  border: none;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 0;
}
.qty-input input:focus { outline: none; }

/* ---- CART PAGE ---- */
.cart-item-img {
  width: 80px; height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--off-white);
}

.cart-summary {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px;
}
.cart-summary h5 {
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(200,184,154,0.4);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .hero-section { min-height: 80vh; padding: 80px 0; }
  .hero-scroll-hint { display: none; }
  .hero-badge { display: none; }
}
@media (max-width: 767px) {
  .section-pad { padding: 60px 0; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .divider-v { display: none; }
  .testi-card { padding: 28px 20px; }
}

/* Shop Pagination */
#shopPagination {
  display: flex !important;
  justify-content: center;
  width: 100%;
  visibility: visible !important;
  opacity: 1 !important;
}

.shop-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-pagination .page-link {
  border-radius: 4px;
  color: var(--charcoal);
  border: 1px solid rgba(200, 184, 154, 0.4);
  min-width: 40px;
  text-align: center;
  font-size: 14px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #fff;
}
.shop-pagination .page-item.active .page-link {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}
.shop-pagination .page-item.disabled .page-link {
  color: var(--stone);
  background: transparent;
  opacity: 0.65;
  pointer-events: none;
}
.shop-pagination .page-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(200, 184, 154, 0.1);
}
.shop-pagination .page-item.active .page-link:hover {
  color: #fff;
  background: var(--charcoal);
}

/* Product Carousel – You May Also Like */
.product-carousel {
  position: relative;
  padding: 0 48px;
}
.product-carousel-viewport {
  overflow: hidden;
}
.product-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.product-carousel-slide {
  flex: 0 0 calc(25% - 18px);
  min-width: 0;
}
.product-carousel-btn {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(200, 184, 154, 0.45);
  background: #fff;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(40, 30, 20, 0.08);
}
.product-carousel-btn:hover {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}
.product-carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.product-carousel-prev { left: 0; }
.product-carousel-next { right: 0; }

@media (max-width: 1199px) {
  .product-carousel-slide { flex: 0 0 calc(33.333% - 16px); }
}
@media (max-width: 767px) {
  .product-carousel { padding: 0 36px; }
  .product-carousel-slide { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 575px) {
  .product-carousel-slide { flex: 0 0 100%; }
}
