/* MISTIQUE — Luxury Perfume Brand CSS */
:root {
  --bg-solid: #07070a;
  --bg: rgba(7, 7, 10, 0.7);
  --surface: rgba(14, 14, 18, 0.65);
  --surface-2: rgba(20, 20, 26, 0.65);
  --surface-3: rgba(28, 28, 36, 0.65);
  --border: rgba(201, 168, 76, 0.12);
  --border-h: rgba(201, 168, 76, 0.35);
  --gold: #c9a84c;
  --gold-l: #e8c96a;
  --gold-glow: rgba(201, 168, 76, 0.25);
  --cream: #f0ebe0;
  --text: #c8c0b0;
  --text-s: #f0ebe0;
  --muted: #555560;
  --radius: 6px;
  --radius-lg: 16px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6
}

.site-bg-video {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -10;
  filter: brightness(0.35)
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  color: var(--text-s);
  line-height: 1.15
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 600
}

h3 {
  font-size: 1.3rem
}

em {
  font-style: italic;
  color: var(--gold)
}

p {
  color: var(--text);
  font-weight: 300;
  line-height: 1.8
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: 110px 0
}

.bg-alt {
  background: var(--surface)
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), #a07828);
  color: #07070a;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .12);
  opacity: 0;
  transition: .3s
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--gold-glow)
}

.btn-primary:hover::after {
  opacity: 1
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all .3s var(--ease);
}

.btn-outline:hover {
  background: var(--gold);
  color: #07070a;
  transform: translateY(-2px)
}

.full-width {
  width: 100%;
  justify-content: center
}

/* SECTION HEAD */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px
}

.section-head p {
  margin-top: 12px;
  font-size: 1.05rem
}

.tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-h);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  background: rgba(201, 168, 76, .06);
}

/* NAVBAR */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all .4s var(--ease);
}

#navbar.scrolled {
  background: rgba(7, 7, 10, .9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-s);
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: 8px
}

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

.logo-star {
  font-size: .7rem;
  color: var(--gold);
  margin-left: 2px
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px
}

.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  transition: .3s;
  position: relative
}

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px
}

.cart-btn {
  position: relative;
  background: rgba(201, 168, 76, .1);
  border: 1px solid var(--border);
  color: var(--gold);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: .3s;
  display: flex;
  align-items: center;
  justify-content: center
}

.cart-btn:hover {
  background: var(--gold);
  color: #07070a
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gold);
  color: #07070a;
  font-size: .65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.burger {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-s);
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
  display: none;
  align-items: center;
  justify-content: center
}

/* CART SIDEBAR */
.cart-mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: .3s
}

.cart-mask.show {
  opacity: 1;
  pointer-events: all
}

.cart-sidebar {
  position: fixed;
  right: -420px;
  top: 0;
  bottom: 0;
  width: 380px;
  background: var(--surface-2);
  border-left: 1px solid var(--border);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transition: .4s var(--ease)
}

.cart-sidebar.show {
  right: 0
}

.cart-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border)
}

.cart-top h3 {
  font-size: 1.1rem;
  color: var(--text-s)
}

.cart-top button {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: .3s
}

.cart-top button:hover {
  color: var(--gold)
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px
}

.empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  color: var(--muted);
  font-size: .9rem
}

.empty-cart i {
  font-size: 2rem;
  color: var(--border-h)
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 10px;
  background: var(--surface-3)
}

.cart-item-info h4 {
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-s);
  margin-bottom: 2px
}

.cart-item-info small {
  color: var(--muted);
  font-size: .8rem
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px
}

.qty-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 28px;
  height: 28px;
  border-radius: 4px;
  cursor: pointer;
  font-size: .7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s
}

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

.qty-num {
  font-size: .9rem;
  color: var(--text-s);
  min-width: 20px;
  text-align: center
}

.cart-bottom {
  padding: 20px;
  border-top: 1px solid var(--border)
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 1rem
}

.cart-total strong {
  color: var(--gold);
  font-size: 1.2rem
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  overflow: hidden;
  text-align: center
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  z-index: 0;
  filter: brightness(0.6);
  background: var(--bg-solid)
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 10, 0.4) 0%, var(--bg) 100%);
  z-index: 1
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  width: 100%
}

.eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: .5
}

.hero-content h1 {
  margin-bottom: 20px
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 36px;
  color: var(--text);
  max-width: 600px
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px
}

.stat {
  text-align: center
}

.stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold)
}

.stat span {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted)
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border)
}

/* TICKER */
.ticker {
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0
}

.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content
}

.ticker-track span {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  opacity: .7
}

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

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

/* FILTER */
.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 9px 22px;
  border-radius: 50px;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: all .3s var(--ease)
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: #07070a;
  border-color: var(--gold);
  transform: translateY(-1px)
}

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px
}

.product-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .4s var(--ease);
  cursor: pointer
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-h);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5), 0 0 0 1px var(--border-h)
}

.card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--surface-3)
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease)
}

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

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(7, 7, 10, .8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px
}

.card-body {
  padding: 22px
}

.card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif
}

.card-body p {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.6
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 600
}

.add-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(201, 168, 76, .1);
  border: 1px solid var(--border);
  color: var(--gold);
  cursor: pointer;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s
}

.add-btn:hover {
  background: var(--gold);
  color: #07070a;
  border-color: var(--gold);
  transform: rotate(90deg)
}

/* SHOWCASE */
.showcase-section {
  position: relative;
  background: var(--surface);
  overflow: hidden
}

.showcase-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(80px, 18vw, 200px);
  font-weight: 700;
  color: rgba(201, 168, 76, .04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: .1em;
  z-index: 0
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1
}

.showcase-desc {
  font-size: 1.05rem;
  margin: 20px 0 36px;
  color: var(--text)
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px
}

.note-card {
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  transition: .3s
}

.note-card:hover {
  border-color: var(--border-h)
}

.note-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 8px
}

.note-card strong {
  display: block;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-s);
  margin-bottom: 4px
}

.note-card small {
  font-size: .78rem;
  color: var(--muted)
}

.showcase-price {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap
}

.price-tag {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700
}

.showcase-bottle-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px
}

.bottle-showcase-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, .18) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite
}

.bottle-3d {
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 1
}

.bottle-img-main {
  width: 300px;
  filter: drop-shadow(0 40px 80px rgba(201, 168, 76, .3));
  border-radius: 12px
}

.sp {
  position: absolute;
  color: var(--gold);
  font-size: 1.2rem;
  animation: sparkle 3s ease-in-out infinite;
  opacity: .6
}

.sp1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s
}

.sp2 {
  top: 20%;
  right: 8%;
  animation-delay: .8s
}

.sp3 {
  bottom: 25%;
  left: 8%;
  animation-delay: 1.6s
}

.sp4 {
  bottom: 15%;
  right: 12%;
  animation-delay: 2.4s
}

@keyframes sparkle {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: .4
  }

  50% {
    transform: scale(1.5) rotate(180deg);
    opacity: 1
  }
}

/* MOOD */
.mood-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 48px
}

.mood-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  cursor: pointer;
  text-align: center;
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px
}

.mood-card:hover,
.mood-card.active {
  border-color: var(--gold);
  background: rgba(201, 168, 76, .06);
  transform: translateY(-4px)
}

.mood-emoji {
  font-size: 2.2rem;
  display: block
}

.mood-card strong {
  font-size: 1rem;
  color: var(--text-s);
  font-family: 'Playfair Display', serif
}

.mood-card small {
  font-size: .8rem;
  color: var(--muted)
}

.mood-result {
  max-width: 780px;
  margin: 0 auto;
  background: var(--surface-2);
  border: 1px solid var(--border-h);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeUp .5s ease
}

.mood-result img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border)
}

.mood-result-text h3 {
  font-size: 1.5rem;
  margin-bottom: 8px
}

.mood-result-text p {
  font-size: .9rem;
  margin-bottom: 20px
}

.mood-result-text .price {
  display: block;
  margin-bottom: 16px
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

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

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.about-imgs {
  position: relative;
  height: 500px
}

.about-img-big {
  width: 72%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border)
}

.about-img-small {
  width: 50%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-h);
  position: absolute;
  bottom: 0;
  right: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5)
}

.about-text h2 {
  margin: 12px 0 20px
}

.about-text p {
  margin-bottom: 36px
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 16px
}

.feature i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0
}

.feature strong {
  display: block;
  color: var(--text-s);
  font-size: .9rem;
  margin-bottom: 3px
}

.feature small {
  font-size: .8rem;
  color: var(--muted)
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.testimonial-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: .3s
}

.testimonial-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px)
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px
}

.testimonial-card p {
  font-size: .9rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px
}

.reviewer img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-h)
}

.reviewer span {
  font-size: .82rem;
  color: var(--muted)
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start
}

.contact-info h2 {
  margin: 12px 0 28px
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .9rem;
  color: var(--text)
}

.contact-row i {
  color: var(--gold);
  width: 18px
}

.socials {
  display: flex;
  gap: 12px
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s
}

.socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, .1)
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.field label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted)
}

.field input,
.field textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-s);
  padding: 13px 16px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  transition: .3s;
  outline: none
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .08)
}

.field textarea {
  resize: vertical
}

/* FOOTER */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-s);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-links strong {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-s);
  margin-bottom: 6px
}

.footer-links a {
  font-size: .88rem;
  color: var(--muted);
  transition: .3s
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center
}

.footer-bottom p {
  font-size: .85rem;
  color: var(--muted)
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .hero {
    padding: 0 40px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-top: 120px
  }

  .hero-content {
    max-width: 100%;
    padding-top: 0
  }

  .hero-eyebrow {
    justify-content: center
  }

  .hero-btns {
    justify-content: center
  }

  .hero-stats {
    justify-content: center
  }

  .hero-bottle-wrap {
    padding-top: 0;
    flex: none
  }

  .floating-bottle {
    width: 240px
  }

  .showcase-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .showcase-bottle-wrap {
    min-height: 300px
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr
  }

  .mood-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:768px) {
  .section {
    padding: 80px 0
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7, 7, 10, .97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid var(--border)
  }

  .nav-links.open {
    display: flex
  }

  .nav-links li a {
    padding: 14px 0;
    display: block;
    border-bottom: 1px solid var(--border);
    font-size: .9rem
  }

  #navbar {
    position: fixed
  }

  .burger {
    display: flex
  }

  .testimonials-grid,
  .mood-grid {
    grid-template-columns: 1fr
  }

  .features-grid {
    grid-template-columns: 1fr
  }

  .hero {
    min-height: auto;
    padding: 120px 20px 80px
  }

  .hero-bottle-wrap {
    display: none
  }

  .form-row-2 {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .notes-grid {
    grid-template-columns: 1fr
  }

  .showcase-price {
    flex-direction: column;
    align-items: flex-start
  }

  .mood-result {
    flex-direction: column;
    text-align: center
  }

  .about-imgs {
    height: 300px
  }

  .about-img-big {
    width: 80%;
    height: 260px
  }

  .about-img-small {
    width: 60%;
    height: 180px
  }
}