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

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #1e1611;
  --bg2: #281d15;
  --gold: #C9A96E;
  --gold2: #E2C99A;
  --wine: #7A1E30;
  --cream: #F5EDE0;
  --cream-dim: rgba(245,237,224,0.65);
  --cream-faint: rgba(245,237,224,0.14);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: clip;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  background: #1a120d;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-faint);
  min-height: 130px;
  overflow: hidden;
  max-width: 100vw;
}

.nav-left {
  display: flex;
  gap: 36px;
  list-style: none;
  justify-content: center;
}

.nav-left a {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
  font-weight: 300;
}

.nav-left a:hover { color: var(--gold); }

.nav-center {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 190px;
  width: auto;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1001;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: var(--cream);
  text-transform: uppercase;
  line-height: 1;
}

.logo-sub {
  font-size: 7.5px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 32px;
}

.nav-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  margin-right: 8px;
}

.nav-info-delivery {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,232,220,0.5);
}

.nav-info-phone {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 400;
}

.nav-info-phone:hover { color: var(--gold2); }

.nav-icon {
  color: var(--cream-dim);
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.nav-icon svg { width: 24px; height: 24px; }

.nav-icon:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

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

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(12,8,8,0.72) 0%, rgba(12,8,8,0.35) 55%, rgba(12,8,8,0.1) 100%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  max-width: 520px;
  z-index: 2;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 20px;
}

.hero-content h1 span {
  display: block;
  color: var(--gold2);
  font-style: italic;
}

.hero-content p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--cream-dim);
  margin-bottom: 40px;
}

.btn-outline-light {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--cream);
  color: var(--cream);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: all 0.35s;
}

.btn-outline-light:hover {
  background: var(--cream);
  color: var(--bg);
}

/* ── CAT BAR ── */
.cat-bar {
  background: linear-gradient(180deg, #1a1108 0%, #120e0a 100%);
  border-top: 1px solid rgba(201,169,110,0.15);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  position: relative;
  z-index: 200;
  margin-top: 220px;
}
@media (max-width: 1700px) { .cat-bar { margin-top: 170px; } }
@media (max-width: 1400px) { .cat-bar { margin-top: 140px; } }
@media (max-width: 1200px) { .cat-bar { margin-top: 110px; } }
@media (max-width: 900px)  { .cat-bar { margin-top: 60px; } }
@media (max-width: 600px)  { .cat-bar { margin-top: 54px; } }
.cat-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-bar-inner::-webkit-scrollbar { display: none; }
.cat-bar-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 18px 36px;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  border-right: 1px solid rgba(201,169,110,0.1);
  user-select: none;
}
.cat-bar-item:first-child { border-left: 1px solid rgba(201,169,110,0.1); }
.cat-bar-item span { display: flex; align-items: center; gap: 6px; }
.cat-bar-item:hover { color: var(--gold); background: linear-gradient(180deg, rgba(201,169,110,0.12) 0%, rgba(201,169,110,0.04) 100%); box-shadow: inset 0 2px 0 var(--gold); }
.cat-bar-item:hover > span { color: var(--gold); }

/* Dropdown */
.cat-drop {
  display: none;
  position: fixed;
  min-width: 200px;
  background: #0f0b08;
  border: 1px solid rgba(201,169,110,0.15);
  border-top: 2px solid var(--gold);
  z-index: 9999;
  padding: 8px 0;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}
.cat-drop a {
  display: block;
  padding: 13px 24px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  border-bottom: 1px solid rgba(201,169,110,0.05);
}
.cat-drop a:last-child { border-bottom: none; }
.cat-drop a:hover { color: var(--gold); background: rgba(201,169,110,0.05); }
.cat-drop-all { color: var(--gold) !important; font-weight: 500; margin-top: 4px; }
.cat-drop-brands { min-width: 180px; columns: 2; gap: 0; }
.cat-drop-brands a { break-inside: avoid; }

@media (max-width: 900px) {
  .cat-bar-inner { padding: 0 12px; justify-content: flex-start; }
  .cat-bar-item { padding: 14px 18px; font-size: 10px; letter-spacing: 0.18em; }
}
@media (max-width: 600px) {
  .cat-bar-item { padding: 12px 14px; font-size: 9px; letter-spacing: 0.12em; }
}

/* ── PROMO BANNER ── */
.promo-banner {
  display: block;
  position: relative;
  margin-top: 0;
  width: 100%;
  overflow: hidden;
  text-decoration: none;
}
.promo-banner-content { display: none; }
.promo-banner-img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.promo-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,12,6,0.25);
}
.promo-banner-content {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.promo-banner-btn {
  display: inline-block;
  padding: 14px 44px;
  border: 1px solid var(--gold);
  color: var(--cream);
  background: rgba(201,169,110,0.15);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
.promo-banner-btn:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ── SLIDER ── */
.slider {
  position: relative;
  margin-top: 260px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-track-wrap {
  overflow: hidden;
  flex: 1;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.slide-card {
  flex: 0 0 calc(25% - 15px);
  cursor: pointer;
}

.slide-card-img {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.slide-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
  filter: brightness(0.85);
}

.slide-card:hover .slide-card-img img {
  transform: scale(1.05);
  filter: brightness(1);
}

.slide-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,8,8,0.6) 0%, transparent 55%);
}

.slide-card-content {
  padding: 14px 2px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.slide-eyebrow {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

.slide-card-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.slide-card-link {
  font-size: 11px;
  color: var(--cream-dim);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.slide-card-link:hover { color: var(--gold); }

.slider-btn {
  flex-shrink: 0;
  background: rgba(12,8,8,0.5);
  border: 1px solid rgba(240,232,220,0.2);
  color: var(--cream);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s;
  z-index: 2;
}

.slider-btn:hover {
  background: rgba(201,169,110,0.2);
  border-color: var(--gold);
  color: var(--gold);
}

/* ── FEATURES BAR ── */
.features-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg2);
  border-top: 1px solid var(--cream-faint);
  border-bottom: 1px solid var(--cream-faint);
}

.feature {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--cream-faint);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.feature:last-child { border-right: none; }

.feature svg { color: var(--gold); }

.feature h4 {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
}

.feature p {
  font-size: 11px;
  line-height: 1.65;
  color: var(--cream-dim);
}

/* ── COLLECTIONS ── */
.collections {
  padding: 80px 60px;
  background: var(--bg);
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}

.label-gold {
  display: block;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  opacity: 0.9;
}

.section-header-row h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--cream);
}

.btn-outline-gold {
  display: inline-block;
  padding: 11px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.3s;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--bg);
}

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

.col-card { cursor: pointer; text-decoration: none; display: block; color: inherit; }
.col-count { font-size: 9px; letter-spacing: 0.12em; color: var(--gold); opacity: 0.7; text-transform: uppercase; margin-top: 2px; }

.col-img {
  position: relative;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: var(--bg);
}

.col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s ease;
  filter: brightness(0.85);
}

.col-card:hover .col-img img {
  transform: scale(1.05);
  filter: brightness(1);
}

.col-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,8,8,0.7) 0%, transparent 50%);
}

.col-info {
  padding: 14px 2px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.col-info svg { color: var(--gold); }

.col-info h3 {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 400;
}

.col-info a {
  font-size: 11px;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.3s;
}

.col-info a:hover { color: var(--gold); }

/* ── WHY NOXE ── */
.why-noxe {
  background: #0d0a07;
  padding: 80px 0;
}
.why-noxe-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-noxe-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.why-noxe-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
}
.why-noxe-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin-bottom: 24px;
}
.why-noxe-desc {
  font-size: 13px;
  line-height: 1.85;
  color: var(--cream-dim);
  margin-bottom: 18px;
}
.why-noxe-list {
  list-style: none;
  margin-bottom: 20px;
}
.why-noxe-list li {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,169,110,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.why-noxe-list li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.why-noxe-mission {
  font-size: 12px;
  line-height: 1.85;
  color: rgba(245,237,224,0.4);
  font-style: italic;
  margin-bottom: 24px;
}
.why-noxe-tagline {
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
}
.why-noxe-img-wrap {
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.why-slider {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.why-slide {
  display: none;
  animation: whyFade 0.8s ease;
}
.why-slide.active { display: block; }
@keyframes whyFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.why-noxe-img {
  width: 100%;
  display: block;
  border-radius: 2px;
}
.why-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.why-dot {
  width: 24px;
  height: 2px;
  background: rgba(201,169,110,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}
.why-dot.active { background: var(--gold); }
@media (max-width: 900px) {
  .why-noxe-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px;
  }
  .why-noxe-title { font-size: 52px; }
  .why-noxe-img-wrap { order: -1; }
  .why-noxe-img { max-height: 480px; object-fit: cover; }
}
@media (max-width: 600px) {
  .why-noxe { padding: 40px 0; }
  .why-noxe-title { font-size: 38px; }
  .why-noxe-inner { gap: 24px; padding: 0 16px; }
  .why-noxe-img { max-height: 360px; }
  .why-dot { width: 18px; }
  .why-slider-dots { margin-top: 10px; gap: 6px; }
}

/* ── BRAND ABOUT ── */
.brand-about {
  background: var(--bg2);
  padding: 36px 48px;
  border-top: 1px solid var(--cream-faint);
  border-bottom: 1px solid var(--cream-faint);
}
.brand-about-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.brand-about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  margin: 4px 0 12px;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin: 8px 0 24px;
  line-height: 1;
}
.brand-about-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 16px;
  opacity: 0.5;
}
.brand-about-text {
  color: var(--cream-dim);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.brand-about-mission {
  color: var(--gold2);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  margin-bottom: 0;
}

/* ── BRAND STORY ── */
.brand-story {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 560px;
  background: var(--bg);
}

.story-text {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg2);
}

.story-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
}

.story-line {
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
}

.story-text p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--cream-dim);
  margin-bottom: 36px;
}

.story-image { overflow: hidden; }

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease;
}

.brand-story:hover .story-image img { transform: scale(1.03); }

/* ── PRODUCTS ── */
.products {
  padding: 80px 60px;
  background: var(--bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.product-card { cursor: pointer; }

.product-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg2);
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.88);
}

.product-card:hover .product-img img {
  transform: scale(1.06);
  filter: brightness(1);
}

.wish-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: var(--cream-dim);
  cursor: pointer;
  padding: 4px;
  transition: color 0.3s;
  z-index: 2;
}

.wish-btn:hover { color: var(--gold); }

.product-info {
  padding: 12px 0 0;
}

.product-info h4 {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 5px;
}

.price {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ── NEWSLETTER ── */
.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg2);
  border-top: 1px solid var(--cream-faint);
}

.newsletter-left {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.newsletter-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 40px;
  line-height: 1.4;
  max-width: 380px;
}

.newsletter-form {
  display: flex;
  max-width: 420px;
}

.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  background: transparent;
  border: 1px solid rgba(240,232,220,0.25);
  border-right: none;
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  outline: none;
}

.newsletter-form input::placeholder { color: var(--cream-dim); }

.newsletter-form button {
  padding: 13px 28px;
  background: var(--gold);
  color: var(--bg);
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s;
}

.newsletter-form button:hover { background: var(--gold2); }

.newsletter-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.newsletter-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  transition: filter 0.3s;
}

.newsletter-photos img:hover { filter: brightness(0.95); }

.newsletter-24 {
  font-size: 28px !important;
  letter-spacing: 0.25em;
  font-weight: 500;
}

.newsletter-single-img a {
  display: block;
  width: 100%;
  height: 100%;
}

.newsletter-single-img {
  overflow: hidden;
}

.newsletter-single-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.newsletter-single-img img:hover { transform: scale(1.03); }

/* ── ABOUT TOP ── */
.about-top {
  margin-top: 130px;
  border-top: none;
}

@media (max-width: 900px) {
  .about-top { margin-top: 80px; }
}

@media (max-width: 600px) {
  .about-top { margin-top: 70px; }
}

/* ── SEARCH ── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12,8,8,0.96);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.search-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.search-close {
  position: absolute;
  top: 32px;
  right: 48px;
  background: none;
  border: none;
  color: var(--cream-dim);
  font-size: 22px;
  cursor: pointer;
  transition: color 0.3s;
}

.search-close:hover { color: var(--gold); }

.search-box {
  width: 100%;
  max-width: 600px;
  padding: 0 24px;
}

.search-box input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gold);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  padding: 12px 0;
  outline: none;
  letter-spacing: 0.05em;
}

.search-box input::placeholder { color: rgba(240,232,220,0.3); }

.search-results {
  width: 100%;
  max-width: 600px;
  padding: 24px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.search-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-faint);
  text-decoration: none;
  transition: all 0.2s;
}

.search-item:hover { padding-left: 8px; }

.search-item-name {
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
}

.search-item-price {
  font-size: 14px;
  color: var(--gold);
}

.search-empty {
  font-size: 14px;
  color: var(--cream-dim);
  padding-top: 16px;
}

/* ── INFO SECTIONS ── */
.info-section {
  padding: 80px 60px;
  background: var(--bg);
  border-top: 1px solid var(--cream-faint);
}

.info-section-alt {
  background: var(--bg2);
}

.info-section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.about-wide {
  max-width: 100%;
}

.about-noxe {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--cream);
}

.info-header-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.info-header-row .label-gold {
  margin-bottom: 0;
}

.info-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 8px;
}

.info-divider {
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0 32px;
}

.info-text-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.info-text-row p {
  margin-bottom: 0;
}

.info-section p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--cream-dim);
  margin-bottom: 18px;
  max-width: 720px;
}

.info-section a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}

.info-section a:hover { color: var(--gold2); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 8px;
}

.info-block h4 {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.info-block ul {
  list-style: none;
}

.info-block ul li,
.info-block p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--cream-dim);
}

@media (max-width: 900px) {
  .info-section { padding: 60px 24px; }
  .info-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  padding: 64px 60px 36px;
  border-top: 1px solid var(--cream-faint);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 52px;
}

.footer-logo {
  margin-bottom: 12px;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.footer-logo .logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--cream);
}

.footer-logo .logo-sub {
  font-size: 7.5px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 12px;
  color: var(--cream-dim);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.footer-col h4 {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 400;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }

.footer-col a {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s;
}

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

.social-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.social-links a {
  color: var(--cream-dim);
  transition: color 0.3s;
}

.social-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--cream-faint);
}

.footer-bottom p {
  font-size: 10px;
  color: rgba(240,232,220,0.28);
  letter-spacing: 0.08em;
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--cream-faint); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 300;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
  text-align: left;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--gold); }
.faq-q svg { flex-shrink: 0; transition: transform 0.3s; color: var(--gold); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 0 22px; font-size: 13px; line-height: 1.85; color: var(--cream-dim); }

/* ── TELEGRAM SUPPORT BUTTON ── */
.tg-support-btn {
  position: fixed;
  bottom: 90px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #229ED9;
  color: #fff;
  text-decoration: none;
  padding: 10px 16px 10px 12px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 500;
  z-index: 998;
  box-shadow: 0 4px 20px rgba(34,158,217,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.tg-support-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(34,158,217,0.5);
}
@media (max-width: 900px) {
  .tg-support-btn { bottom: 76px; right: 16px; padding: 9px 14px 9px 10px; font-size: 10px; }
}

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--bg2);
  border: 1px solid var(--cream-faint);
  color: var(--cream-dim);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { border-color: var(--gold); color: var(--gold); }

/* ── MOBILE BOTTOM NAV ── */
.mob-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: #000;
  border-top: 1px solid var(--cream-faint);
  z-index: 1000;
  grid-template-columns: repeat(6, minmax(62px, 1fr));
  padding-bottom: env(safe-area-inset-bottom);
}
.mob-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 4px;
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s;
  background: none; border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}
.mob-nav-item:hover,
.mob-nav-item.active { color: var(--gold); }
.mob-nav-item svg { width: 20px; height: 20px; }
.mob-nav-item .mob-badge {
  position: absolute; top: 4px; right: calc(50% - 14px);
  background: var(--gold); color: var(--bg);
  font-size: 8px; font-weight: 700;
  width: 14px; height: 14px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
}
.mob-nav-wrap { position: relative; }

/* ── RESPONSIVE ── */

/* Laptop & small desktop: compress nav */
@media (max-width: 1700px) {
  nav { padding: 14px 40px; min-height: 120px; }
  .logo-img { height: 150px; }
  .nav-left { gap: 28px; }
  .nav-left a { font-size: 13px; letter-spacing: 0.14em; }
  .nav-info { display: none; }
}

@media (max-width: 1400px) {
  nav { padding: 12px 32px; min-height: 100px; }
  .logo-img { height: 120px; }
  .nav-left { gap: 20px; }
  .nav-left a { font-size: 12px; letter-spacing: 0.1em; }
}

@media (max-width: 1200px) {
  nav { padding: 10px 24px; min-height: 86px; }
  .logo-img { height: 96px; }
  .nav-left { gap: 14px; }
  .nav-left a { font-size: 11px; letter-spacing: 0.08em; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .slide-card { flex: 0 0 calc(33.333% - 14px); }
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--cream-dim); padding: 8px 4px;
  flex-direction: column; justify-content: center; gap: 5px;
  transition: color 0.2s; flex-shrink: 0;
}
.nav-hamburger:hover { color: var(--gold); }
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: currentColor;
  transition: all 0.3s; transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav-menu {
  display: none;
  position: fixed; top: 60px; left: 0; right: 0;
  background: rgba(0,0,0,0.97);
  border-bottom: 1px solid var(--cream-faint);
  z-index: 997; padding: 6px 0 10px;
  transform: translateY(-110%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
}
.mobile-nav-menu.open { transform: translateY(0); }
.mobile-nav-menu a {
  display: flex; align-items: center;
  padding: 14px 24px;
  color: var(--cream-dim); text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  border-bottom: 1px solid rgba(240,232,220,0.05);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-menu a:hover { color: var(--gold); padding-left: 30px; }
.mobile-nav-menu a.active-link { color: var(--gold); }
.mobile-nav-phone-row {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 24px; margin-top: 4px;
  border-top: 1px solid rgba(240,232,220,0.08);
}
.mobile-nav-phone-row a {
  color: var(--gold); font-size: 14px; letter-spacing: 0.05em;
  border-bottom: none; padding: 0 !important;
}

@media (max-width: 900px) {
  /* Nav */
  nav {
    padding: 8px 16px;
    min-height: 60px;
    grid-template-columns: auto 1fr auto;
    gap: 0;
  }
  .nav-left { display: none; }
  .nav-info { display: none; }
  .logo-img { height: 50px; }
  .nav-hamburger { display: none; }
  .mobile-nav-menu { display: none !important; }

  /* Slider */
  .slider {
    margin-top: 90px;
    padding: 0 44px;
  }
  .promo-banner-btn { display: none; }
  .promo-banner-content { display: none; }
  .slide-card { flex: 0 0 calc(50% - 10px); }
  .slide-card-img { height: 240px; }

  /* Features */
  .features-bar { grid-template-columns: repeat(2, 1fr); }

  /* Collections */
  .collections { padding: 10px 12px 12px; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .col-img { aspect-ratio: 2/1; height: auto; }
  .section-header-row { margin-bottom: 8px; }

  /* Brand story */
  .brand-story { grid-template-columns: 1fr; }
  .story-text { padding: 16px 16px; }
  .story-image { height: 200px; }

  /* Brand about */
  .brand-about { padding: 16px 16px; }
  .brand-about-title { font-size: 40px; margin: 4px 0 12px; }
  .brand-about-line { margin-bottom: 16px; }
  .brand-about-text { font-size: 13px; margin-bottom: 10px; }

  /* Products */
  .products { padding: 16px 12px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  /* Newsletter */
  .newsletter { grid-template-columns: 1fr; }
  .newsletter-left { padding: 16px 16px; }
  .newsletter-single-img { height: 160px; }

  /* Info sections */
  .info-section { padding: 16px 16px; }
  .info-text-row { grid-template-columns: 1fr; gap: 8px; }
  .info-grid { grid-template-columns: 1fr; gap: 10px; }

  /* Footer */
  footer { padding: 20px 16px 16px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  /* Mobile nav */
  .mob-nav { display: grid; }
  .scroll-top { bottom: 72px; right: 16px; }
  body { padding-bottom: 64px; }
}

@media (max-width: 600px) {
  /* Nav */
  nav {
    min-height: 54px;
    padding: 6px 12px;
  }
  .logo-img { height: 44px; }
  .mobile-nav-menu { top: 54px; }

  /* Slider */
  .slider {
    margin-top: 80px;
    padding: 0 40px;
  }
  .slide-card { flex: 0 0 calc(100% - 0px); }
  .slide-card-img { height: 220px; }
  .slider-btn { width: 36px; height: 36px; font-size: 15px; }

  /* Features */
  .features-bar { grid-template-columns: 1fr 1fr; }
  .feature { padding: 24px 16px; }

  /* Section headers */
  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }
  .section-header-row h2 { display: none; }
  .section-header-row .label-gold { font-size: 5px; letter-spacing: 0.2em; text-transform: uppercase; }

  /* Collections */
  .collections { padding: 8px 10px 10px; }
  .collections-grid { grid-template-columns: 1fr 1fr; gap: 5px; }
  .col-img { aspect-ratio: 2/1; height: auto; }
  .section-header-row { margin-bottom: 6px; }

  /* Brand story */
  .story-text { padding: 40px 20px; }
  .story-text h2 { font-size: 34px; }

  /* Products */
  .products { padding: 40px 16px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* Newsletter */
  .newsletter-left { padding: 40px 20px; }
  .newsletter-24 { font-size: 20px !important; }

  /* Info */
  .info-section { padding: 40px 20px; }
  .info-header-row { flex-wrap: wrap; gap: 8px; }

  /* Footer */
  footer { padding: 40px 20px 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-logo-img { height: 48px; }
}
