@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500&family=Pinyon+Script&display=swap');

:root {
  --gold: #B8935A;
  --gold-dark: #8C6A38;
  --cream: #FAF8F4;
  --cream-dark: #F0EBE1;
  --warm: #E8E0D2;
  --text: #1C1814;
  --text-mid: #4A4440;
  --text-light: #8A7F76;
  --border: rgba(28, 24, 20, 0.1);
  --white: #FFFFFF;
}


/* GLOBAL FONTS */
.premium-font-serif {
  font-family: 'Cormorant Garamond', serif;
}

.premium-font-sans {
  font-family: 'DM Sans', sans-serif;
}

body.premium-theme {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* PREMIUM NAV */
nav.stona-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 5rem;
  transition: padding 0.4s, background 0.4s, box-shadow 0.4s;
  background: rgba(250, 248, 244, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 15px rgba(28, 24, 20, 0.05);
}

nav.stona-navbar.scrolled {
  padding: 0.8rem 5rem;
  background: rgba(250, 248, 244, 0.96) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(28, 24, 20, 0.08);
}

nav.stona-navbar .nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
}

nav.stona-navbar .nav-logo span {
  color: var(--gold);
}

nav.stona-navbar .nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

nav.stona-navbar .nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

nav.stona-navbar .nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

nav.stona-navbar .nav-links a:hover::after {
  width: 100%;
}

nav.stona-navbar .nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

/* NAV SEARCH */
nav.stona-navbar .nav-search {
  position: relative;
}

nav.stona-navbar .search-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(28, 24, 20, 0.15);
  padding-bottom: 2px;
}

nav.stona-navbar .search-input {
  border: none;
  background: transparent;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--text);
  outline: none;
  width: 140px;
  transition: width 0.3s;
}

nav.stona-navbar .search-input:focus {
  width: 200px;
}

nav.stona-navbar .search-input::placeholder {
  color: var(--text-light);
  opacity: 0.6;
}

nav.stona-navbar .search-btn {
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  padding: 0 4px;
  font-size: 0.8rem;
}

/* NAV SELECT CITY */
nav.stona-navbar .nav-location .nav-city-btn {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  background: none;
  border: 1px solid var(--border);
  padding: 0.45rem 1rem;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.25s;
}

nav.stona-navbar .nav-location .nav-city-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

nav.stona-navbar .dropdown-menu {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-top: 5px;
  max-height: 250px;
  overflow-y: auto;
}

nav.stona-navbar .dropdown-item {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--text-mid);
  padding: 0.6rem 1.2rem;
  transition: all 0.2s;
}

nav.stona-navbar .dropdown-item:hover {
  background: var(--cream-dark);
  color: var(--gold);
}

/* VENDOR LOGIN BUTTON */
nav.stona-navbar .nav-vendor {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 0.45rem 1rem;
  transition: all 0.25s;
}

nav.stona-navbar .nav-vendor:hover {
  background: var(--text);
  color: var(--cream);
  border-color: var(--text);
}

/* NAV CART */
nav.stona-navbar .nav-cart {
  position: relative;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: all 0.25s;
}

nav.stona-navbar .nav-cart:hover {
  border-color: var(--gold);
  color: var(--gold);
}

nav.stona-navbar .nav-cart .cartcount {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold);
  color: var(--cream);
  font-size: 0.58rem;
  font-weight: 600;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(184, 147, 90, 0.4);
}

/* HERO SECTION */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-left {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 5rem 5rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.45s forwards;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 380px;
  margin-bottom: 2.8rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.75s forwards;
}

.btn-dark {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--text);
  padding: 1rem 2rem;
  text-decoration: none;
  border: 1px solid var(--text);
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
  display: inline-block;
}

.btn-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  text-decoration: none;
  color: var(--cream);
}

.btn-outline {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  padding: 1rem 2rem;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.25s;
  cursor: pointer;
  display: inline-block;
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  text-decoration: none;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollDown 1.8s 1.5s infinite;
}

@keyframes scrollDown {
  0% {
    top: -100%
  }

  100% {
    top: 100%
  }
}

.hero-right {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.hero-right-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroImgReveal 1.4s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroImgReveal {
  0% {
    transform: scale(1.15);
    clip-path: inset(0 100% 0 0);
  }

  100% {
    transform: scale(1.04);
    clip-path: inset(0 0% 0 0);
  }
}

.hero-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(250, 248, 244, 0.15) 0%, transparent 30%);
  z-index: 5;
  pointer-events: none;
}

.hero-float-badge {
  position: absolute;
  bottom: 3rem;
  left: 2.5rem;
  background: var(--cream);
  padding: 1.2rem 1.5rem;
  box-shadow: 0 8px 40px rgba(28, 24, 20, 0.12);
  min-width: 180px;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
  z-index: 10;
}

.hero-float-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.hero-float-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.3rem;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MARQUEE */
.marquee-bar {
  background: var(--text);
  padding: 1.1rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  flex-shrink: 0;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.marquee-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

/* ABOUT STRIP */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.about-img-side {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
}

.about-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  transition: transform 8s ease;
}

.about-img-side:hover img {
  transform: scale(1.0);
}

.about-img-clip {
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 8% 100%, 0 92%);
  overflow: hidden;
}

.about-img-clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-year-badge {
  position: absolute;
  bottom: 3rem;
  right: -1px;
  background: var(--cream);
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--gold);
}

.about-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}

.about-year-sub {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.3rem;
}

.about-content {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream-dark);
}

.about-body {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-mid);
  font-weight: 400;
  margin: 1.5rem 0 2.5rem;
  max-width: 440px;
}

.about-body p {
  margin-bottom: 1rem;
}

.about-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.astat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.astat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}

.astat-lbl {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* COLLECTIONS */
.collections {
  padding: 7rem 5rem;
  background: var(--cream);
}

.coll-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--text);
}

.sec-title em,
h1 em,
h2 em,
h3 em,
.section-title span,
.products-hero-title em,
.search-result-label em,
em.cursive-font {
  font-family: 'Pinyon Script', cursive;
  font-style: normal;
  font-weight: 400;
  color: var(--gold);
  text-transform: none;
  font-size: 1.25em;
  display: inline-block;
  letter-spacing: normal;
}

.sec-title strong {
  font-weight: 600;
}

/* Our Collections heading — 44px */
.coll-header .sec-title {
  font-size: 44px !important;
}

.coll-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
}

.coll-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--text);
}

.coll-card:first-child {
  grid-row: span 2;
}

.coll-card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.85;
}

.coll-card:first-child .coll-card-img {
  min-height: 600px;
}

.coll-card:hover .coll-card-img {
  transform: scale(1.06);
  opacity: 0.75;
}

.coll-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 24, 20, 0.85) 0%, rgba(28, 24, 20, 0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  transition: background 0.4s;
}

.coll-card:hover .coll-overlay {
  background: linear-gradient(to top, rgba(28, 24, 20, 0.92) 0%, rgba(28, 24, 20, 0.3) 65%, rgba(28, 24, 20, 0.05) 100%);
}

.coll-tag {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.coll-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
}

.coll-arrow {
  margin-top: 0.8rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s, transform 0.35s;
  text-decoration: none;
}

.coll-card:hover .coll-arrow {
  opacity: 1;
  transform: translateY(0);
}

.coll-arrow::after {
  content: '→';
}

/* SPECIAL 3-COLUMN LAYOUT FOR COLLECTIONS (when count <= 3) */
.coll-grid.three-cols {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: none;
  gap: 15px;
}

.coll-grid.three-cols .coll-card:first-child {
  grid-row: auto;
}

.coll-grid.three-cols .coll-card-img {
  aspect-ratio: 3/4;
  height: 100%;
  min-height: 420px;
}

/* REVEAL ANIMATIONS */
.rv {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.rv-l {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.rv-r {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.rv-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.rv.on,
.rv-l.on,
.rv-r.on,
.rv-scale.on {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: 0.08s
}

.d2 {
  transition-delay: 0.18s
}

.d3 {
  transition-delay: 0.28s
}

.d4 {
  transition-delay: 0.4s
}

.d5 {
  transition-delay: 0.52s
}

.d6 {
  transition-delay: 0.64s
}

/* FEATURE ROWS */
.feature-rows {
  background: var(--cream-dark);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  border-top: 1px solid var(--border);
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse>* {
  direction: ltr;
}

.feature-img {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.feature-img img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-row:hover .feature-img img {
  transform: scale(1.04);
}

.feature-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 24, 20, 0.08);
}

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem;
}

.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(184, 147, 90, 0.12);
  line-height: 1;
  margin-bottom: -1rem;
}

.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: var(--text);
}

.feature-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.feature-desc {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 2rem;
  max-width: 380px;
}

.feature-specs {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.2rem;
}

.feature-spec {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-mid);
}

.feature-spec::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.feature-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.8rem;
}

.feature-price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--text-light);
}

/* GALLERY STRIP */
.gallery-strip {
  padding: 5rem 0 5rem 5rem;
  background: var(--cream);
  overflow: hidden;
}

.gallery-strip-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-right: 5rem;
  margin-bottom: 2.5rem;
}

.gallery-track {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
  scroll-behavior: smooth;
  cursor: grab;
}

.gallery-track:active {
  cursor: grabbing;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex-shrink: 0;
  width: 360px;
  height: 480px;
  position: relative;
  overflow: hidden;
  background: var(--text);
}

.gallery-item>a {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gallery-item:last-child {
  width: 360px;
  height: 480px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.9;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(28, 24, 20, 0.85) 0%, transparent 100%);
  padding: 1.8rem 1.4rem 1.2rem;
  opacity: 0;
  transition: opacity 0.35s;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.gallery-caption-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: #fff;
}

.gallery-caption-price {
  font-size: 0.78rem;
  color: var(--gold);
  margin-top: 0.3rem;
}

.gallery-arrows {
  display: flex;
  gap: 0.5rem;
}

.garr {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text);
  transition: all 0.2s;
}

.garr:hover {
  background: var(--text);
  color: var(--cream);
  border-color: var(--text);
}

/* PRODUCT SECTION & GRID */
.prod-section {
  padding: 2rem 5rem;
  background: var(--cream);
}

.prod-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}

.prod-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.prod-tabs::-webkit-scrollbar {
  display: none;
}

.ptab {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.9rem 1.6rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.ptab.active,
.ptab:hover {
  color: var(--text);
  border-bottom-color: var(--gold);
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.prod-card {
  background: var(--cream-dark);
  border: 1px solid rgba(28, 24, 20, 0.06);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: rgba(184, 147, 90, 0.3);
}

.prod-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--text);
}

.prod-img>a {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.prod-card:hover .prod-img img {
  transform: scale(1.07);
}

.prod-img-mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(28, 24, 20, 0.1);
  transition: background 0.3s;
  pointer-events: none;
}

.prod-card:hover .prod-img-mask {
  background: rgba(28, 24, 20, 0.04);
}

.prod-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: var(--cream);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.35rem 0.7rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.prod-info {
  padding: 1.4rem 1.4rem 1.6rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.prod-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}

.prod-name a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.prod-name a:hover {
  color: var(--gold);
}

.prod-price {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.prod-actions {
  display: flex;
  gap: 0.6rem;
}

.pbtn {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.65rem 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-align: center;
}

.pbtn-o {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.pbtn-o:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.pbtn-s {
  background: var(--text);
  color: var(--cream);
  border: 1px solid var(--text);
}

.pbtn-s:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--cream);
}

/* LOAD MORE BUTTON */
.prod-card.hidden-card {
  display: none !important;
}

.load-more-wrap {
  text-align: center;
  margin-top: 3rem;
}

.btn-load-more {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 3rem;
  cursor: pointer;
  border: 1px solid var(--text);
  background: transparent;
  color: var(--text);
  transition: all 0.3s;
  display: inline-block;
}

.btn-load-more:hover {
  background: var(--text);
  color: var(--cream);
}

/* QUOTE BANNER */
.quote-banner {
  background: var(--text);
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  filter: saturate(0.3);
  pointer-events: none;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 0.5;
  opacity: 0.3;
  position: relative;
  z-index: 1;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  max-width: 800px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  margin: 0.5rem 0 1.5rem;
}

.quote-author {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

/* WHY US */
.why-section {
  padding: 7rem 5rem;
  background: var(--cream-dark);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.why-img-stack {
  position: relative;
}

.why-img-main {
  width: 85%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
}

.why-img-accent {
  position: absolute;
  bottom: -3rem;
  right: 0;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  outline: 6px solid var(--cream-dark);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 10%);
}

.why-content {
  padding-top: 2rem;
}

.why-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  align-items: start;
  cursor: default;
  transition: background 0.2s;
}

.why-item:first-child {
  border-top: 1px solid var(--border);
}

.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gold);
  padding-top: 2px;
}

.why-body-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.why-body-desc {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* CTA SECTION */
.cta-section {
  padding: 0;
  min-height: 500px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cta-img-side {
  position: relative;
  overflow: hidden;
}

.cta-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
}

.cta-content-side {
  background: var(--text);
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-content-side .sec-title {
  color: var(--cream);
}

.cta-content-side .sec-title em {
  color: var(--gold);
}

.cta-body {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(250, 248, 244, 0.65);
  margin: 1.5rem 0 2.5rem;
  max-width: 380px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cta-input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.85rem 1.1rem;
  font-size: 0.82rem;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.cta-input::placeholder {
  color: rgba(250, 248, 244, 0.35);
}

.cta-input:focus {
  border-color: var(--gold);
}

.cta-btn {
  background: var(--gold);
  color: var(--text);
  border: none;
  padding: 0.95rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.cta-btn:hover {
  background: #d4a96a;
}

/* DEEP FOOTER */
footer.premium-footer {
  background: #141210;
  padding: 6rem 0 0;
  color: var(--cream);
}

footer.premium-footer .footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 4rem;
  padding: 0 5rem 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

footer.premium-footer .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--cream);
  text-decoration: none;
  display: block;
  margin-bottom: 1.2rem;
}

footer.premium-footer .footer-logo span {
  color: var(--gold);
}

footer.premium-footer .footer-tagline {
  font-size: 0.82rem;
  color: rgba(250, 248, 244, 0.45);
  line-height: 1.8;
  max-width: 240px;
}

footer.premium-footer .fh {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

footer.premium-footer .fl {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 0;
}

footer.premium-footer .fl a {
  font-size: 0.82rem;
  color: rgba(250, 248, 244, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

footer.premium-footer .fl a:hover {
  color: var(--cream);
}

footer.premium-footer .fsub {
  display: flex;
  margin-top: 0.8rem;
}

footer.premium-footer .fsub-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  padding: 0.7rem 0.9rem;
  font-size: 0.78rem;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  outline: none;
}

footer.premium-footer .fsub-input::placeholder {
  color: rgba(250, 248, 244, 0.3);
}

footer.premium-footer .fsub-btn {
  background: var(--gold);
  color: var(--text);
  border: none;
  padding: 0 1.1rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

footer.premium-footer .fsub-btn:hover {
  background: #d4a96a;
}

footer.premium-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5rem 1rem;
  background: transparent !important;
  width: 100%;
}

footer.premium-footer .footer-copy {
  font-size: 0.72rem;
  color: rgba(250, 248, 244, 0.3);
}

footer.premium-footer .footer-socials {
  display: flex;
  gap: 0.8rem;
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

footer.premium-footer .fsoc {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: rgba(250, 248, 244, 0.4);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

footer.premium-footer .fsoc:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

/* MODALS STYLING OVERRIDES */
.modal-content {
  background-color: var(--cream);
  border-radius: 0;
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
}

.modal-header .pophead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0;
}

.modal-header .close {
  font-size: 1.5rem;
  color: var(--text);
  opacity: 0.6;
}

.modal-header .close:hover {
  opacity: 1;
}

.modal-body {
  padding: 2rem;
}

.modal-body input.form-control,
.modal-body textarea.form-control {
  background-color: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text);
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif;
  box-shadow: none;
  transition: border-color 0.2s;
}

.modal-body input.form-control:focus,
.modal-body textarea.form-control:focus {
  border-color: var(--gold);
}

.modal-body .btn-primary {
  background-color: var(--text);
  border-color: var(--text);
  color: var(--cream);
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  transition: all 0.2s;
}

.modal-body .btn-primary:hover {
  background-color: var(--gold);
  border-color: var(--gold);
}

/* LOCATION POPUP UNIQUE STYLING */
#locationmodal.location-modal .modal-content {
  background-color: var(--cream) !important;
  border: 1px solid var(--gold) !important;
  border-radius: 0 !important;
  box-shadow: 0 15px 50px rgba(28, 24, 20, 0.15) !important;
  overflow: visible !important;
}

#locationmodal.location-modal .modal-body {
  border: none !important;
  padding: 3rem 2.5rem !important;
  background-color: var(--cream) !important;
  text-align: center;
}

#locationmodal.location-modal .pinimg {
  border-bottom: 1px solid var(--border) !important;
  padding-bottom: 1.5rem !important;
  margin-bottom: 1.5rem !important;
  display: inline-block;
  width: 100%;
}

#locationmodal.location-modal .pinimg img {
  max-height: 55px !important;
  width: auto !important;
  margin-bottom: 1.2rem !important;
}

#locationmodal.location-modal .pinimg p {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin: 0 !important;
}

#locationmodal.location-modal .pincode {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100% !important;
  text-align: center;
}

#locationmodal.location-modal .location {
  width: 100% !important;
  padding-top: 0 !important;
  margin-left: 0 !important;
  display: inline-block;
}

#locationmodal.location-modal .locationpopup .citybutton {
  background: var(--cream-dark) !important;
  border: 1px solid var(--gold) !important;
  color: var(--text) !important;
  padding: 0.9rem 1.5rem !important;
  font-size: 0.9rem !important;
  font-family: 'DM Sans', sans-serif !important;
  border-radius: 0 !important;
  width: 100% !important;
  text-align: left !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  transition: all 0.3s ease !important;
  box-shadow: none !important;
  height: auto !important;
}

#locationmodal.location-modal .locationpopup .citybutton:hover,
#locationmodal.location-modal .locationpopup .citybutton:focus {
  border-color: var(--gold-dark) !important;
  background: var(--warm) !important;
  color: var(--text) !important;
}

#locationmodal.location-modal .locationpopup .dropdown-menu {
  width: 100% !important;
  border: 1px solid var(--gold) !important;
  background-color: var(--cream) !important;
  border-radius: 0 !important;
  box-shadow: 0 8px 30px rgba(28, 24, 20, 0.1) !important;
  padding: 0 !important;
  margin-top: 5px !important;
  max-height: 250px !important;
  overflow-y: auto !important;
}

#locationmodal.location-modal .locationpopup .dropdown-item {
  color: var(--text) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.9rem !important;
  padding: 0.8rem 1.5rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  transition: background 0.2s, color 0.2s !important;
}

#locationmodal.location-modal .locationpopup .dropdown-item:hover {
  background-color: var(--gold) !important;
  color: var(--cream) !important;
}

#locationmodal.location-modal .pincodesubmit {
  background-color: var(--text) !important;
  color: var(--cream) !important;
  border: none !important;
  padding: 1rem 2.5rem !important;
  font-size: 0.8rem !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  margin-top: 1.5rem !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
  border-radius: 0 !important;
}

#locationmodal.location-modal .pincodesubmit:hover {
  background-color: var(--gold) !important;
  color: var(--white) !important;
  transform: translateY(-1px) !important;
}

#locationmodal.location-modal .closepinpopup {
  position: absolute !important;
  top: 15px !important;
  right: 20px !important;
  background: none !important;
  border: none !important;
  font-size: 1.8rem !important;
  cursor: pointer !important;
  color: var(--text-light) !important;
  opacity: 0.7 !important;
  transition: all 0.3s ease !important;
  z-index: 10 !important;
}

#locationmodal.location-modal .closepinpopup:hover {
  color: var(--gold) !important;
  opacity: 1 !important;
}

/* RESPONSIVE DESIGN MEDIA QUERIES */
@media (max-width: 1199px) {
  nav.stona-navbar {
    padding: 1.2rem 3rem;
  }

  nav.stona-navbar.scrolled {
    padding: 0.8rem 3rem;
  }

  .hero-left,
  .about-content,
  .collections,
  .prod-section,
  .why-section,
  .quote-banner,
  .cta-content-side {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  footer.premium-footer .footer-top,
  footer.premium-footer .footer-bottom {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .feature-content {
    padding: 3rem;
  }
}

@media (max-width: 991px) {

  nav.stona-navbar {
    display: none;
  }

  /* Handled by mobile header */

  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
  }

  .hero-left {
    padding: 8rem 2rem 4rem;
  }

  .hero-right {
    /* height: 400px; */
  }

  .about-strip {
    grid-template-columns: 1fr;
  }

  .about-img-side {
    height: 400px;
  }

  .about-content {
    padding: 4rem 2rem;
  }

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

  .coll-grid .coll-card:first-child {
    grid-row: auto;
  }

  .coll-grid .coll-card:first-child .coll-card-img {
    min-height: 260px;
  }

  .coll-grid.three-cols {
    grid-template-columns: 1fr 1fr;
  }

  .feature-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .feature-row.reverse {
    direction: ltr;
  }

  .feature-img {
    height: 350px;
  }

  .feature-content {
    padding: 4rem 2rem;
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .why-img-accent {
    bottom: -2rem;
  }

  .cta-section {
    grid-template-columns: 1fr;
  }

  .cta-img-side {
    height: 350px;
  }

  .cta-content-side {
    padding: 4rem 2rem;
  }

  .prod-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  footer.premium-footer {
    padding: 4rem 0 0;
  }

  footer.premium-footer .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  footer.premium-footer .footer-bottom {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-float-badge,.hero-scroll {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-h1 {
    font-size: 2.8rem;
  }

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

  .coll-grid.three-cols {
    grid-template-columns: 1fr;
  }

  .coll-grid.three-cols .coll-card-img {
    min-height: 300px;
  }

  .prod-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .prod-card {
    max-width: 340px;
    width: 100%;
  }

  .gallery-strip {
    padding-left: 2rem;
  }

  .gallery-strip-head {
    padding-right: 2rem;
  }

  .gallery-item {
    width: 280px;
    height: 380px;
  }

  .gallery-item:last-child {
    width: 280px;
    height: 380px;
  }

  footer.premium-footer .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  footer.premium-footer .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .about-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

/* MOBILE NAVBAR SPECIAL CLASSES */
.mobile-stona-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

.mobile-stona-nav .nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
}

.mobile-stona-nav .nav-logo span {
  color: var(--gold);
}

.mobile-stona-nav .nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.mobile-stona-nav .nav-cart-btn {
  position: relative;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
}

.mobile-stona-nav .nav-cart-btn .cartcount {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--gold);
  color: var(--cream);
  font-size: 0.55rem;
  font-weight: 600;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-stona-nav .menu-toggle {
  font-size: 1.3rem;
  color: var(--text);
  cursor: pointer;
}

/* MOBILE SIDENAV */
.stona-sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1001;
  top: 0;
  right: 0;
  background-color: var(--cream);
  overflow-x: hidden;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding-top: 60px;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}

.stona-sidenav .closebtn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 2.2rem;
  color: var(--text-light);
  text-decoration: none;
  cursor: pointer;
}

.stona-sidenav .sidenav-logo {
  padding: 10px 30px 30px 30px;
  border-bottom: 1px solid var(--border);
}

.stona-sidenav .sidenav-logo img {
  max-height: 45px;
}

.stona-sidenav .search-box {
  padding: 20px 30px;
}

.stona-sidenav .search-form {
  display: flex;
  border-bottom: 1px solid var(--border);
  padding-bottom: 5px;
}

.stona-sidenav .search-input {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 0.85rem;
  outline: none;
  color: var(--text);
}

.stona-sidenav .search-btn {
  border: none;
  background: transparent;
  color: var(--text-light);
}

.stona-sidenav .sidenav-menu {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}

.stona-sidenav .sidenav-menu a {
  padding: 0.8rem 30px;
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--text-mid);
  display: block;
  transition: 0.2s;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stona-sidenav .sidenav-menu a:hover {
  color: var(--gold);
  padding-left: 35px;
}

.stona-sidenav .sidenav-menu .dropdown-indicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stona-sidenav .sidenav-submenu {
  background: var(--cream-dark);
  padding: 5px 0;
}

.stona-sidenav .sidenav-submenu a {
  padding: 0.6rem 45px;
  font-size: 0.8rem;
  text-transform: none;
}

.stona-sidenav .sidenav-footer {
  padding: 30px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stona-sidenav .sidenav-vendor {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-decoration: none;
}

.stona-sidenav .sidenav-city {
  width: 100%;
}

.stona-sidenav .sidenav-city .citybutton {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
}