/* ============================================================
   MOHOTSAV — Luxury Store Website
   style.css
   ============================================================ */

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

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --gold:       #c9a96e;
  --gold-light: #e8d5a3;
  --gold-dark:  #a07840;
  --black:      #0a0a0a;
  --dark:       #111111;
  --dark2:      #1a1a1a;
  --dark3:      #222222;
  --white:      #f8f4ee;
  --muted:      rgba(248,244,238,0.55);
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar            { width: 5px; }
::-webkit-scrollbar-track      { background: var(--black); }
::-webkit-scrollbar-thumb      { background: var(--gold); border-radius: 3px; }

/* ---- Cursor Glow ---- */
#cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: left .1s ease, top .1s ease;
}

/* ================================================================
   NAVBAR
   ================================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .4s ease;
}
#navbar.scrolled {
  background: rgba(10,10,10,.96);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  border-bottom: 1px solid rgba(201,169,110,.2);
}

/* NEW LOGO CSS
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
} */

/* NEW (replace with this): */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: height .4s ease;
  border-radius: 4px;
}
#navbar.scrolled .nav-logo-img {
  height: 44px;
}

.nav-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-right: 15px;
  /* Uncomment the line below if your logo text blends into the black background and needs to be white */
  /* filter: brightness(0) invert(1); */
}
/* END NEW LOGO CSS */

.nav-links { display: flex; gap: 38px; list-style: none; }
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover                { color: var(--gold); }
.nav-links a:hover::after         { width: 100%; }
.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 26px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  touch-action: manipulation;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  touch-action: manipulation;
}
.hamburger span {
  display: block;
  width: 25px; height: 2px;
  background: var(--gold);
  transition: all .35s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* Mobile Menu */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform .4s ease;
}
#mobile-menu.open { transform: translateX(0); }
#mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 3px;
  transition: color .3s;
}
#mobile-menu a:hover,
#mobile-menu .gold { color: var(--gold) !important; }

/* ================================================================
   HERO
   ================================================================ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.3);
  transform: scale(1.1);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.1); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,10,10,.3) 0%,
    rgba(10,10,10,.2) 50%,
    rgba(10,10,10,.9) 100%
  );
}
/* Particles */
#particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  animation: particleFloat linear infinite;
  opacity: 0;
}
@keyframes particleFloat {
  0%   { transform: translateY(100vh) translateX(0);   opacity: 0; }
  10%  { opacity: .8; }
  90%  { opacity: .4; }
  100% { transform: translateY(-100px) translateX(30px); opacity: 0; }
}
/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 20px;
  animation: fadeUp 1.2s ease forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 10vw, 130px);
  margin-right: -12px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 12px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
  text-shadow: 0 0 80px rgba(201,169,110,.35);
}
.hero-title .gold { color: var(--gold); }
.hero-tagline {
  font-size: 13px;
  letter-spacing: 4px;
  color: rgba(248,244,238,.65);
  text-transform: uppercase;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-divider {
  width: 80px; height: 1px;
  background: var(--gold);
  margin: 0 auto 36px;
}
.hero-sub {
  font-size: 14px;
  letter-spacing: 1.5px;
  color: rgba(248,244,238,.55);
  line-height: 1.9;
  max-width: 500px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 38px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: lineAnim 2s ease infinite;
}
@keyframes lineAnim {
  0%   { height: 0;   opacity: 1; }
  100% { height: 50px; opacity: 0; }
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 16px 42px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: all .3s ease;
  text-decoration: none;
  display: inline-block;
  touch-action: manipulation;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,169,110,.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(248,244,238,.45);
  padding: 16px 42px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: all .3s ease;
  text-decoration: none;
  display: inline-block;
  touch-action: manipulation;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ================================================================
   MARQUEE
   ================================================================ */
.marquee-section {
  background: var(--gold);
  padding: 13px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--black);
  display: flex; align-items: center; gap: 20px;
}
.marquee-item::after { content: '✦'; font-size: 8px; }

/* ================================================================
   SECTION COMMON
   ================================================================ */
.section { padding: 120px 60px; }
.section-label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-divider { width: 60px; height: 1px; background: var(--gold); margin-bottom: 28px; }
.section-text {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(248,244,238,.6);
  max-width: 580px;
  font-weight: 300;
}
.center { text-align: center; }
.divider-center { margin-left: auto; margin-right: auto; }

/* ================================================================
   ABOUT
   ================================================================ */
#about.section {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img { width: 100%; height: 620px; object-fit: cover; display: block; }
.about-img-frame {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(201,169,110,.3);
  pointer-events: none;
  transform: translate(14px, 14px);
}
.about-badge {
  position: absolute;
  bottom: 40px; right: -28px;
  background: var(--gold);
  padding: 24px 30px;
  text-align: center;
}
.about-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}
.about-badge .lbl {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 700;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 48px;
}
.stat {
  border-left: 2px solid var(--gold);
  padding: 12px 0 12px 18px;
}
.stat .n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat .l {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(248,244,238,.55);
  margin-top: 4px;
  font-weight: 500;
}

/* ================================================================
   COLLECTIONS
   ================================================================ */
#collections.section { background: var(--black); }
.collections-header { text-align: center; margin-bottom: 64px; }
.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3px;
}
.col-card {
  position: relative;
  overflow: hidden;
  height: 600px;
  cursor: pointer;
}
.col-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94), filter .5s;
  filter: brightness(.5);
}
.col-card:hover img { transform: scale(1.08); filter: brightness(.38); }
.col-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.9) 0%, transparent 50%);
}
.col-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px;
  transform: translateY(20px);
  transition: transform .4s ease;
}
.col-card:hover .col-content { transform: translateY(0); }
.col-lbl {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.col-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.1;
}
.col-desc {
  font-size: 13px;
  color: rgba(248,244,238,.7);
  margin-bottom: 18px;
  font-weight: 300;
  opacity: 0;
  transition: opacity .4s ease;
}
.col-card:hover .col-desc { opacity: 1; }
.col-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  opacity: 0;
  transform: translateX(-10px);
  transition: all .4s ease;
  touch-action: manipulation;
}
.col-card:hover .col-link { opacity: 1; transform: translateX(0); }

/* ================================================================
   PRODUCTS
   ================================================================ */
#products.section { background: var(--dark); }
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
}
/* .products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 90px;
} */
 .products-grid{
  display: grid;
  grid-template-columns:repeat(3, 1fr);
 }
.prod-card {
  position: relative;
  overflow: hidden;
  background: var(--dark2);
  cursor: pointer;
  transition: transform .4s ease;
}
.prod-card:hover { transform: translateY(-8px); }
.prod-img-wrap { position: relative; overflow: hidden; height: 280px; }
.prod-img-wrap img {
  width: 100%; height: 100%;
  object-fit:cover;
  transition: transform .6s ease;
}
.prod-card:hover .prod-img-wrap img { transform: scale(1.1); }
.prod-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 10px;
  font-weight: 700;
}
.prod-info { padding: 22px; }
.prod-brand {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
  font-weight: 600;
}
.prod-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 7px;
  font-weight: 400;
}
.prod-price { font-size: 13px; color: rgba(248,244,238,.45); font-weight: 300; }

/* ================================================================
   FEATURES / WHY US
   ================================================================ */
#features.section { background: var(--black); }
.features-header { text-align: center; margin-bottom: 76px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.feat-card {
  text-align: center;
  padding: 48px 28px;
  border: 1px solid rgba(201,169,110,.1);
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .4s ease;
}
.feat-card:hover {
  background: rgba(201,169,110,.04);
  border-color: rgba(201,169,110,.28);
  transform: translateY(-6px);
}
.feat-card:hover::before { transform: scaleX(1); }
.feat-icon { font-size: 34px; margin-bottom: 22px; display: block; }
.feat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 500;
}
.feat-desc { font-size: 13px; color: rgba(248,244,238,.5); line-height: 1.85; font-weight: 300; }

/* ================================================================
   BRANDS
   ================================================================ */
#brands {
  background: var(--dark);
  padding: 80px 60px;
}
.brands-header { text-align: center; margin-bottom: 48px; }
.brands-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px 56px;
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(248,244,238,.45);
  font-weight: 600;
  transition: all .35s ease;
  cursor: default;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 22px;
  border: 1px solid rgba(201,169,110,.08);
  border-radius: 4px;
  min-width: 110px;
  background: rgba(201,169,110,.02);
}
.brand-name img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.7);
  transition: filter .35s ease;
  border-radius: 6px;
}
.brand-name:hover {
  color: var(--gold);
  border-color: rgba(201,169,110,.3);
  background: rgba(201,169,110,.06);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(201,169,110,.1);
}
.brand-name:hover img {
  filter: grayscale(0) brightness(1);
}

/* ================================================================
   STORE INFO
   ================================================================ */
#info.section { background: var(--dark2); }
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.info-cards { display: flex; flex-direction: column; gap: 24px; }
.info-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid rgba(201,169,110,.1);
  transition: all .3s ease;
}
.info-card:hover {
  border-color: rgba(201,169,110,.3);
  background: rgba(201,169,110,.03);
}
.info-icon {
  width: 50px; height: 50px;
  background: rgba(201,169,110,.08);
  border: 1px solid rgba(201,169,110,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.info-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
  font-weight: 600;
}
.info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--white);
  line-height: 1.6;
  font-weight: 400;
}
.info-value a { color: var(--gold); text-decoration: none; }
.open-badge {
  display: inline-block;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.3);
  color: #4ade80;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 4px 12px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ================================================================
   MAP
   ================================================================ */
.map-wrap {
  position: relative;
  height: 460px;
  overflow: hidden;
}
.map-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,169,110,.2);
  z-index: 2;
  pointer-events: none;
}
.map-wrap iframe {
  width: 100%; height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(.9) contrast(.9);
}
.map-btn {
  position: absolute;
  bottom: 22px; right: 22px;
  z-index: 10;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 12px 24px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: all .3s;
  touch-action: manipulation;
}
.map-btn:hover { background: var(--gold-light); }
.map-note {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(201,169,110,.14);
  background: rgba(201,169,110,.03);
  display: flex;
  align-items: center;
  gap: 16px;
}
.map-note-icon { font-size: 28px; }
.map-note-head {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 4px;
  font-weight: 600;
  text-transform: uppercase;
}
.map-note-body { font-size: 13px; color: rgba(248,244,238,.5); font-weight: 300; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
#testimonials.section { background: var(--black); }
.test-header { text-align: center; margin-bottom: 66px; }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.test-card {
  padding: 40px;
  border: 1px solid rgba(201,169,110,.1);
  transition: all .3s ease;
}
.test-card:hover {
  border-color: rgba(201,169,110,.25);
  background: rgba(201,169,110,.02);
}
.test-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 28px;
  opacity: .55;
}
.test-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(248,244,238,.65);
  margin-bottom: 28px;
  font-style: italic;
}
.test-stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 14px; }
.test-author {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
}
.test-city { font-size: 11px; color: var(--gold); margin-top: 4px; letter-spacing: 1px; }

/* ================================================================
   CTA BANNER
   ================================================================ */
#cta {
  position: relative;
  padding: 120px 60px;
  text-align: center;
  overflow: hidden;
  background: var(--dark);
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,.08) 0%, transparent 50%, rgba(201,169,110,.05) 100%);
}
.cta-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg,  rgba(201,169,110,.035) 0px, rgba(201,169,110,.035) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(0deg,   rgba(201,169,110,.035) 0px, rgba(201,169,110,.035) 1px, transparent 1px, transparent 60px);
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5.5vw, 76px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.1;
}
.cta-title em { color: var(--gold); font-style: italic; }
.cta-sub {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(248,244,238,.45);
  margin-bottom: 44px;
  font-weight: 300;
}
.cta-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--gold);
  letter-spacing: 4px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 38px;
  transition: color .3s;
}
.cta-phone:hover { color: var(--gold-light); }
.cta-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.cta-info-row {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.cta-info-item { display: flex; align-items: center; gap: 10px; }
.cta-info-item span:first-child { font-size: 18px; }
.cta-info-item span:last-child {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(248,244,238,.45);
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: #050505;
  padding: 80px 60px 40px;
  border-top: 1px solid rgba(201,169,110,.1);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-about {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(248,244,238,.38);
  font-weight: 300;
  max-width: 320px;
}
.footer-rating { margin-top: 28px; display: flex; align-items: center; gap: 10px; }
.footer-rating .stars { font-size: 13px; color: var(--gold); }
.footer-rating .rtxt { font-size: 11px; color: rgba(248,244,238,.35); letter-spacing: 1px; }
.footer-col-title {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 600;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 13px;
  color: rgba(248,244,238,.4);
  text-decoration: none;
  font-weight: 300;
  transition: color .3s;
  letter-spacing: .4px;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(201,169,110,.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copy { font-size: 11px; color: rgba(248,244,238,.22); letter-spacing: 1px; }
.footer-socials { display: flex; gap: 14px; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
  color: rgba(248,244,238,.4);
  font-weight: 700;
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,.08);
}

/* ================================================================
   FLOATING PHONE BUTTON
   ================================================================ */
#float-phone {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 999;
  background: var(--gold);
  color: var(--black);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(201,169,110,.4);
  animation: phonePulse 3s ease infinite;
  transition: all .3s;
}
#float-phone:hover { transform: scale(1.1); background: var(--gold-light); }
@keyframes phonePulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(201,169,110,.4); }
  50%       { box-shadow: 0 4px 44px rgba(201,169,110,.8); }
}

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .85s ease, transform .85s ease;
}
.reveal.from-left  { transform: translateX(-44px); }
.reveal.from-right { transform: translateX(44px); }
.reveal.visible    { opacity: 1; transform: translate(0, 0); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1200px) {
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .products-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-top     { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  #about.section  { grid-template-columns: 1fr; gap: 50px; }
  .about-badge    { right: 20px; }
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .info-grid      { grid-template-columns: 1fr; }
  .test-grid      { grid-template-columns: 1fr 1fr; }
  .section        { padding: 80px 40px; }
  #brands         { padding: 70px 40px; }
  #cta            { padding: 90px 40px; }
}
@media (max-width: 768px) {
  #navbar { padding: 16px 22px; }
  #navbar.scrolled { padding: 12px 22px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger      { display: flex; }
  #mobile-menu    { display: flex; }
  .collections-grid { grid-template-columns: 1fr; }
  .col-card       { height: 380px !important; }
  .products-grid  { grid-template-columns: 1fr 1fr; gap: 14px; }
  .features-grid  { grid-template-columns: 1fr; }
  .test-grid      { grid-template-columns: 1fr; }
  .footer-top     { grid-template-columns: 1fr; gap: 38px; }
  footer          { padding: 60px 22px 28px; }
  .section        { padding: 60px 22px; }
  #brands         { padding: 60px 22px; }
  #cta            { padding: 80px 22px; }
  .products-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .products-grid  { grid-template-columns: 1fr; }
  .about-badge    { display: none; }
  .hero-title { font-size: clamp(32px, 11vw, 48px); letter-spacing: 4px; margin-right: -4px; }
  .stats-grid     { grid-template-columns: 1fr; }
}