/* =========================================
   GLANZ INDIA — Dark Luxury CSS
   Colors: Black, Dark Gray, Cherry, Yellow, Orange
   Fonts: Cormorant Garamond (display) + Barlow (body)
   ========================================= */

:root {
  --black:       #0A0A0A;
  --dark:        #111111;
  --dark-2:      #1A1A1A;
  --dark-3:      #242424;
  --gray:        #2E2E2E;
  --gray-mid:    #555555;
  --gray-light:  #999999;
  --white:       #F5F2ED;
  --white-dim:   rgba(245,242,237,0.08);

  --cherry:      #8B1A2B;
  --cherry-light:#B52240;
  --cherry-dim:  rgba(139,26,43,0.15);

  --yellow:      #D4A017;
  --yellow-light:#E8B820;
  --orange:      #C95B1A;
  --orange-light:#E06620;

  --accent:      var(--cherry);
  --accent-2:    var(--yellow);
  --accent-3:    var(--orange);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Barlow', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 80px;
  --section-pad: 120px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--cherry); }

/* =========================================
   TYPOGRAPHY
   ========================================= */
.display-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.section-label {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cherry-light);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
}
.section-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-light);
  max-width: 520px;
  line-height: 1.8;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), backdrop-filter var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139,26,43,0.2);
}
.nav-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.logo-india {
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--cherry-light);
  align-self: flex-end;
  margin-bottom: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.7);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--cherry-light);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--cherry) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border: 1px solid var(--cherry) !important;
  transition: background var(--transition), border-color var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--cherry-light) !important;
  border-color: var(--cherry-light) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(139,26,43,0.12) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.7) 100%);
  z-index: 1;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139,26,43,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,26,43,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: var(--nav-height);
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-label::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--cherry-light);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  max-width: 800px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--cherry-light);
}
.hero-desc {
  margin-top: 28px;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245,242,237,0.65);
  max-width: 480px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}
.hero-stats {
  position: absolute;
  right: 40px;
  bottom: 80px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  animation: fadeLeft 0.9s 1.2s forwards;
}
.stat-item { text-align: right; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.stat-num span { color: var(--cherry-light); }
.stat-label {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.9s 1.4s forwards;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--cherry-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}
.scroll-text {
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-light);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--cherry);
  color: var(--white);
  border: 1px solid var(--cherry);
}
.btn-primary:hover { background: var(--cherry-light); border-color: var(--cherry-light); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(245,242,237,0.3);
}
.btn-outline:hover { border-color: var(--white); background: rgba(245,242,237,0.05); }
.btn-wa {
  background: #25D366;
  color: #fff;
  border: 1px solid #25D366;
}
.btn-wa:hover { background: #1db954; border-color: #1db954; }
.btn svg { flex-shrink: 0; }

/* =========================================
   SECTIONS
   ========================================= */
.section { padding: var(--section-pad) 0; }
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
}
.section-header.centered { align-items: center; text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* DIVIDER */
.divider {
  width: 60px; height: 2px;
  background: linear-gradient(to right, var(--cherry), var(--orange));
  margin: 16px 0;
}
.section-header.centered .divider { margin: 16px auto; }

/* =========================================
   PRODUCTS PREVIEW (Home)
   ========================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.product-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: true;
}
.product-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  filter: brightness(0.6);
}
.product-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.45);
}
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 32px;
}
.product-card-label {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cherry-light);
  margin-bottom: 8px;
}
.product-card-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
}
.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}
.product-card:hover .product-card-link {
  opacity: 1;
  transform: translateY(0);
}
.product-card-link svg { transition: transform var(--transition); }
.product-card:hover .product-card-link svg { transform: translateX(4px); }

/* =========================================
   WHY GLANZ SECTION
   ========================================= */
.why-section {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: 'GLANZ';
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 22vw;
  font-weight: 700;
  color: rgba(139,26,43,0.04);
  pointer-events: none;
  line-height: 1;
}
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.feature-item {
  padding: 32px 28px;
  background: var(--dark-3);
  border: 1px solid rgba(139,26,43,0.1);
  border-top: 2px solid var(--cherry);
  transition: border-color var(--transition), transform var(--transition);
}
.feature-item:hover {
  border-color: var(--cherry-light);
  transform: translateY(-4px);
}
.feature-icon {
  width: 44px; height: 44px;
  margin-bottom: 20px;
  color: var(--cherry-light);
}
.feature-title {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.feature-text {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.7;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section { background: var(--dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 40px 32px;
  background: var(--dark-2);
  border: 1px solid rgba(139,26,43,0.12);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--cherry);
  opacity: 0.3;
  position: absolute;
  top: 16px;
  left: 28px;
  line-height: 1;
}
.testimonial-text {
  font-size: 0.95rem;
  color: rgba(245,242,237,0.8);
  line-height: 1.8;
  margin-bottom: 24px;
  margin-top: 32px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cherry-dim);
  border: 1px solid var(--cherry);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cherry-light);
}
.author-name {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.author-city { font-size: 0.8rem; color: var(--gray-light); }

/* =========================================
   CTA BAND
   ========================================= */
.cta-band {
  background: var(--cherry);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to left, rgba(212,160,23,0.15), transparent);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  max-width: 520px;
}
.cta-band-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-dark {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}
.btn-dark:hover { background: var(--dark-2); }

/* =========================================
   PRODUCTS PAGE
   ========================================= */
.page-hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--cherry), transparent);
}
.product-section { padding: var(--section-pad) 0; }
.product-section:nth-child(even) { background: var(--dark-2); }
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.product-layout.reverse { direction: rtl; }
.product-layout.reverse > * { direction: ltr; }
.product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.product-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter var(--transition);
}
.product-gallery img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}
.product-gallery img:hover { filter: brightness(1); }
.product-features { margin-top: 32px; }
.product-feature {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(245,242,237,0.06);
}
.feature-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cherry-light);
  margin-top: 8px;
  flex-shrink: 0;
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-img-stack {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 140px; height: 140px;
  background: var(--cherry);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
}
.badge-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}
.badge-label {
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1.4;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 80px;
}
.stat-box {
  background: var(--dark-2);
  padding: 40px 24px;
  text-align: center;
  border-top: 2px solid var(--cherry);
}
.stat-box-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.stat-box-num sup { font-size: 1.5rem; color: var(--cherry-light); }
.stat-box-label {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-top: 8px;
}
.manufacturing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.mfg-card {
  background: var(--dark-3);
  padding: 36px 28px;
  border-left: 3px solid var(--cherry);
}
.mfg-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--cherry-light);
  opacity: 0.4;
  line-height: 1;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(245,242,237,0.06);
}
.contact-info-item:last-child { border-bottom: none; }
.info-icon {
  width: 48px; height: 48px;
  background: var(--cherry-dim);
  border: 1px solid var(--cherry);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cherry-light);
}
.info-label {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 4px;
}
.info-value { font-size: 1rem; font-weight: 400; }
.info-value a:hover { color: var(--cherry-light); }

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.form-control {
  background: var(--dark-2);
  border: 1px solid rgba(245,242,237,0.1);
  color: var(--white);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-control:focus { border-color: var(--cherry-light); }
.form-control::placeholder { color: var(--gray-mid); }
select.form-control { cursor: pointer; }
select.form-control option { background: var(--dark-2); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-actions { display: flex; gap: 16px; align-items: center; margin-top: 8px; flex-wrap: wrap; }
.form-note { font-size: 0.8rem; color: var(--gray-light); }

.alert {
  padding: 16px 20px;
  font-size: 0.9rem;
  border-left: 3px solid;
}
.alert-success { background: rgba(37,211,102,0.08); border-color: #25D366; color: #25D366; }
.alert-error { background: rgba(139,26,43,0.12); border-color: var(--cherry-light); color: var(--cherry-light); }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(139,26,43,0.2);
}
.footer-top {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}
.footer-logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.8;
  max-width: 380px;
  margin-bottom: 32px;
}
.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  border: 1px solid;
}
.wa-btn { color: #25D366; border-color: rgba(37,211,102,0.3); }
.wa-btn:hover { background: rgba(37,211,102,0.1); }
.call-btn { color: var(--cherry-light); border-color: rgba(139,26,43,0.3); }
.call-btn:hover { background: var(--cherry-dim); }
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cherry-light);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col li {
  font-size: 0.88rem;
  color: var(--gray-light);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(245,242,237,0.06);
  padding: 24px 40px;
  max-width: 1400px;
  margin: 0 auto;
  font-size: 0.78rem;
  color: var(--gray-mid);
}

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }
.wa-pulse {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card { aspect-ratio: 16/9; }
  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .product-layout, .product-layout.reverse { grid-template-columns: 1fr; direction: ltr; gap: 48px; }
  .about-intro { grid-template-columns: 1fr; }
  .about-img-badge { right: 16px; bottom: -20px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .footer-links-grid { grid-template-columns: repeat(3, 1fr); }
  .manufacturing-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 60px; --nav-height: 70px; }
  .nav-container { padding: 0 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    padding: 40px 24px;
    gap: 28px;
    transform: translateY(-120%);
    transition: transform var(--transition);
  }
  .nav-links.open { transform: translateY(0); }
  .hero-stats { display: none; }
  .hero-content { padding: 0 24px; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .container { padding: 0 24px; }
  .why-features { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; }
  .manufacturing-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .product-gallery { grid-template-columns: 1fr; }
  .product-gallery img:first-child { aspect-ratio: 16/9; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .footer-links-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   GLANZ INDIA — Premium Homepage v2
   Add real images with these names for best output:
   assets/img/home-hero.webp
   assets/img/home-kitchen.webp
   assets/img/home-wardrobe.webp
   assets/img/home-vanity.webp
   assets/img/home-factory.webp
   ========================================================= */
.lux-home {
  background:
    radial-gradient(circle at 20% 10%, rgba(139,26,43,.18), transparent 34rem),
    radial-gradient(circle at 90% 30%, rgba(212,160,23,.10), transparent 28rem),
    #0a0a0a;
  color: var(--white);
  overflow: hidden;
}
.lux-home .container { max-width: 1280px; }
.lux-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--yellow-light);
  font-family: var(--font-condensed);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.lux-kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--yellow), transparent);
}
.lux-title {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 5.1rem);
  line-height: .96;
  font-weight: 400;
  letter-spacing: -.045em;
  color: #fffaf2;
}
.lux-copy p,
.lux-manufacturing__content p,
.lux-final-cta p {
  color: rgba(245,242,237,.72);
  font-size: 1.05rem;
  line-height: 1.9;
}
.lux-section { padding: clamp(72px, 9vw, 132px) 0; }
.lux-section-head { max-width: 760px; margin-bottom: 46px; }
.lux-section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.lux-section-head--center .lux-kicker { justify-content: center; }
.lux-section-head--center .lux-kicker::after {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(270deg, var(--yellow), transparent);
}
.lux-section-head--center .lux-kicker::before { background: linear-gradient(90deg, transparent, var(--yellow)); }

.lux-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border: 1px solid rgba(245,242,237,.18);
  border-radius: 999px;
  font-family: var(--font-condensed);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}
.lux-btn:hover { transform: translateY(-2px); }
.lux-btn--primary { background: var(--cherry); border-color: var(--cherry); color: #fff; box-shadow: 0 18px 55px rgba(139,26,43,.38); }
.lux-btn--ghost { background: rgba(255,255,255,.04); color: #fff; backdrop-filter: blur(14px); }
.lux-btn--light { background: #fffaf2; border-color: #fffaf2; color: #111; }
.lux-btn--outline-light { border-color: rgba(255,255,255,.45); color: #fff; }
.lux-inline-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--yellow-light);
  font-family: var(--font-condensed);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lux-hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 48px) 0 64px;
  background:
    linear-gradient(90deg, rgba(10,10,10,.96) 0%, rgba(10,10,10,.78) 44%, rgba(10,10,10,.50) 100%),
    var(--hero-img, linear-gradient(135deg, #121212 0%, #241015 48%, #0b0b0b 100%));
  background-size: cover;
  background-position: center;
}
.lux-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 74%, transparent);
  opacity: .52;
}
.lux-hero__overlay {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, #0a0a0a);
}
.lux-hero__steel {
  position: absolute;
  right: -110px;
  top: 14%;
  width: 42vw;
  min-width: 420px;
  height: 72vh;
  border: 1px solid rgba(212,160,23,.22);
  background:
    linear-gradient(100deg, rgba(255,255,255,.03), rgba(255,255,255,.13), rgba(255,255,255,.02)),
    linear-gradient(135deg, rgba(139,26,43,.18), transparent 45%);
  transform: skewX(-8deg);
  opacity: .65;
}
.lux-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: clamp(32px, 6vw, 90px);
  align-items: end;
}
.lux-hero__title {
  max-width: 820px;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 8vw, 8.8rem);
  line-height: .86;
  letter-spacing: -.06em;
  font-weight: 400;
  color: #fffaf2;
  text-wrap: balance;
}
.lux-hero__text {
  max-width: 650px;
  margin-top: 28px;
  font-size: clamp(1rem, 1.55vw, 1.28rem);
  color: rgba(245,242,237,.77);
  line-height: 1.85;
}
.lux-hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.lux-hero__badges span {
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: rgba(245,242,237,.86);
  font-size: .86rem;
}
.lux-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.lux-hero__card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(145deg, rgba(26,26,26,.88), rgba(10,10,10,.68));
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 90px rgba(0,0,0,.42);
  border-radius: 28px;
}
.lux-hero__card-label {
  color: var(--yellow-light);
  font-family: var(--font-condensed);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.lux-hero__card h2 {
  font-family: var(--font-display);
  font-size: 2.05rem;
  line-height: 1.08;
  font-weight: 400;
  margin-bottom: 24px;
}
.lux-hero__mini-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.lux-hero__mini-grid div { padding: 16px; border-radius: 18px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.08); }
.lux-hero__mini-grid strong { display: block; font-size: 1.45rem; color: #fff; line-height: 1.1; }
.lux-hero__mini-grid span { display: block; margin-top: 7px; color: rgba(245,242,237,.58); font-size: .82rem; line-height: 1.35; }

.lux-trust-strip { position: relative; z-index: 3; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(17,17,17,.82); }
.lux-trust-strip__grid { display: grid; grid-template-columns: repeat(3,1fr); }
.lux-trust-strip__grid div { padding: 26px 28px; border-right: 1px solid rgba(255,255,255,.08); }
.lux-trust-strip__grid div:last-child { border-right: 0; }
.lux-trust-strip__grid strong { display: block; color: #fff; font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; margin-bottom: 4px; }
.lux-trust-strip__grid span { color: rgba(245,242,237,.62); font-size: .94rem; }

.lux-two-col { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(32px, 7vw, 100px); align-items: center; }
.lux-two-col--top { align-items: start; }
.lux-intro { border-bottom: 1px solid rgba(255,255,255,.07); }

.lux-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lux-product-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 34px;
  background: #161616;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 24px 80px rgba(0,0,0,.26);
}
.lux-product-card__link { position: absolute; inset: 0; z-index: 5; }
.lux-product-card__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.02), rgba(10,10,10,.88)),
    var(--card-img, linear-gradient(135deg, rgba(139,26,43,.55), rgba(32,32,32,1)));
  background-size: cover;
  background-position: center;
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .8s cubic-bezier(.2,.7,.2,1);
}
.lux-product-card__bg--kitchen { background-image: linear-gradient(180deg, rgba(10,10,10,.02), rgba(10,10,10,.88)), var(--card-img, radial-gradient(circle at 25% 20%, rgba(212,160,23,.34), transparent 22rem), linear-gradient(135deg,#321018,#111)); }
.lux-product-card__bg--wardrobe { background-image: linear-gradient(180deg, rgba(10,10,10,.02), rgba(10,10,10,.88)), var(--card-img, radial-gradient(circle at 70% 12%, rgba(255,255,255,.18), transparent 18rem), linear-gradient(135deg,#151b2f,#101010)); }
.lux-product-card__bg--vanity { background-image: linear-gradient(180deg, rgba(10,10,10,.02), rgba(10,10,10,.88)), var(--card-img, radial-gradient(circle at 50% 25%, rgba(139,26,43,.3), transparent 18rem), linear-gradient(135deg,#15271c,#101010)); }
.lux-product-card:hover .lux-product-card__bg { transform: scale(1.06); filter: saturate(1.12); }
.lux-product-card__content { position: absolute; inset: auto 0 0; padding: 32px; z-index: 2; }
.lux-product-card__content span { color: var(--yellow-light); font-family: var(--font-condensed); letter-spacing: .18em; font-weight: 700; }
.lux-product-card__content h3 { font-family: var(--font-display); font-size: clamp(2rem, 3vw, 3.1rem); line-height: .98; font-weight: 400; margin: 12px 0 14px; color: #fffaf2; }
.lux-product-card__content p { color: rgba(245,242,237,.7); line-height: 1.65; }

.lux-manufacturing { background: linear-gradient(180deg, rgba(255,255,255,.03), transparent); }
.lux-manufacturing__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(34px, 6vw, 92px); align-items: center; }
.lux-manufacturing__visual {
  position: relative;
  min-height: 590px;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(10,10,10,.05), rgba(10,10,10,.70)),
    var(--factory-img, linear-gradient(135deg, #2d2d2d, #0f0f0f 58%, #38131b));
  background-size: cover;
  background-position: center;
}
.lux-manufacturing__visual::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(212,160,23,.26);
  border-radius: 30px;
}
.lux-manufacturing__badge {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 2;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(10,10,10,.72);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(14px);
  font-family: var(--font-condensed);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
}
.lux-check-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 30px; }
.lux-check-grid div { position: relative; padding: 15px 16px 15px 42px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; color: rgba(245,242,237,.82); }
.lux-check-grid div::before { content: "✓"; position: absolute; left: 16px; color: var(--yellow-light); font-weight: 700; }

.lux-benefits { border-top: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); }
.lux-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lux-benefit { min-height: 230px; padding: 28px; border-radius: 28px; border: 1px solid rgba(255,255,255,.09); background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.02)); transition: transform var(--transition), border-color var(--transition), background var(--transition); }
.lux-benefit:hover { transform: translateY(-5px); border-color: rgba(212,160,23,.26); background: linear-gradient(145deg, rgba(139,26,43,.16), rgba(255,255,255,.025)); }
.lux-benefit span { color: var(--yellow-light); font-family: var(--font-condensed); letter-spacing: .18em; font-weight: 700; }
.lux-benefit h3 { font-family: var(--font-display); font-size: 1.8rem; line-height: 1.05; font-weight: 500; margin: 32px 0 12px; color: #fffaf2; }
.lux-benefit p { color: rgba(245,242,237,.62); line-height: 1.7; }

.lux-process-list { border-top: 1px solid rgba(255,255,255,.1); }
.lux-process-list div { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.lux-process-list strong { color: #fff; font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; }
.lux-process-list span { color: rgba(245,242,237,.64); }

.lux-locations { padding-top: 0; }
.lux-locations__inner { padding: clamp(32px,5vw,58px); border-radius: 34px; background: linear-gradient(135deg, rgba(139,26,43,.26), rgba(255,255,255,.04)); border: 1px solid rgba(255,255,255,.11); display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: center; }
.lux-location-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.lux-location-pills span { padding: 12px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.15); background: rgba(10,10,10,.28); color: rgba(245,242,237,.85); }

.lux-final-cta { padding: clamp(72px,9vw,120px) 0; background: linear-gradient(135deg, #8B1A2B 0%, #321018 48%, #0f0f0f 100%); }
.lux-final-cta__inner { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center; }
.lux-final-cta h2 { font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 6.2rem); line-height: .9; letter-spacing: -.05em; font-weight: 400; color: #fffaf2; max-width: 880px; }
.lux-final-cta p { max-width: 650px; margin-top: 20px; color: rgba(255,255,255,.78); }
.lux-final-cta__actions { display: flex; flex-direction: column; gap: 14px; min-width: 260px; }

@media (max-width: 1100px) {
  .lux-hero__inner,
  .lux-two-col,
  .lux-manufacturing__grid,
  .lux-locations__inner,
  .lux-final-cta__inner { grid-template-columns: 1fr; }
  .lux-hero__card { max-width: 620px; }
  .lux-product-grid { grid-template-columns: 1fr; }
  .lux-product-card { min-height: 390px; }
  .lux-benefit-grid { grid-template-columns: repeat(2,1fr); }
  .lux-location-pills { justify-content: flex-start; }
  .lux-final-cta__actions { flex-direction: row; flex-wrap: wrap; min-width: 0; }
}
@media (max-width: 760px) {
  .lux-hero { min-height: auto; padding-top: calc(var(--nav-height) + 34px); }
  .lux-hero__steel { display: none; }
  .lux-hero__title { font-size: clamp(3.2rem, 17vw, 5.1rem); }
  .lux-hero__actions, .lux-final-cta__actions { flex-direction: column; align-items: stretch; }
  .lux-btn { width: 100%; }
  .lux-hero__mini-grid,
  .lux-trust-strip__grid,
  .lux-check-grid,
  .lux-benefit-grid { grid-template-columns: 1fr; }
  .lux-trust-strip__grid div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); padding-left: 0; padding-right: 0; }
  .lux-trust-strip__grid div:last-child { border-bottom: 0; }
  .lux-product-card { min-height: 350px; border-radius: 26px; }
  .lux-product-card__content { padding: 24px; }
  .lux-manufacturing__visual { min-height: 380px; border-radius: 28px; }
  .lux-process-list div { grid-template-columns: 1fr; gap: 6px; }
  .lux-locations__inner { border-radius: 26px; }
  .lux-location-pills span { width: 100%; }
}

/* =========================================================
   ULTRA PREMIUM PRODUCTS HERO
========================================================= */

.products-premium-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #080606;
  padding: 150px 0 90px;
}

.products-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.products-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(15%) brightness(0.45) contrast(1.18);
  transform: scale(1.06);
  animation: productsHeroZoom 16s ease-in-out infinite alternate;
}

@keyframes productsHeroZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.12);
  }
}

.products-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 68% 42%, rgba(185, 130, 70, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(8, 6, 6, 0.96) 0%, rgba(8, 6, 6, 0.82) 38%, rgba(8, 6, 6, 0.45) 100%),
    linear-gradient(180deg, rgba(8, 6, 6, 0.8) 0%, rgba(8, 6, 6, 0.28) 45%, rgba(8, 6, 6, 0.96) 100%);
}

.products-hero-steel-glow {
  position: absolute;
  width: 560px;
  height: 560px;
  right: -160px;
  bottom: -220px;
  z-index: 2;
  background: radial-gradient(circle, rgba(180, 138, 78, 0.28), transparent 68%);
  filter: blur(20px);
  pointer-events: none;
}

.products-hero-container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 70px;
  align-items: center;
}

.products-hero-content {
  max-width: 740px;
}

.products-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #d4af73;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.products-hero-label::before {
  content: "";
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, #d4af73, transparent);
}

.products-hero-title {
  margin: 0;
  color: #f7f2ea;
  font-size: clamp(3rem, 7vw, 7.3rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
  font-weight: 700;
  text-shadow: 0 20px 70px rgba(0, 0, 0, 0.55);
}

.products-hero-title span {
  color: var(--cherry-light);
  background: linear-gradient(90deg, #f5f2ed 0%, #d4af73 42%, var(--cherry-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.products-hero-subtitle {
  margin: 30px 0 0;
  max-width: 620px;
  color: rgba(245, 242, 237, 0.76);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.8;
}

.products-hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 660px;
  gap: 14px;
  margin-top: 34px;
}

.products-hero-points div {
  padding: 18px 16px;
  border: 1px solid rgba(212, 175, 115, 0.22);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(16px);
  border-radius: 18px;
}

.products-hero-points strong {
  display: block;
  color: #ffffff;
  font-size: 1.04rem;
  margin-bottom: 5px;
}

.products-hero-points span {
  display: block;
  color: rgba(245, 242, 237, 0.62);
  font-size: 0.78rem;
  line-height: 1.4;
}

.products-hero-actions {
  margin-top: 38px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Right image showcase */
.products-hero-showcase {
  position: relative;
}

.products-hero-showcase::before {
  content: "";
  position: absolute;
  inset: 28px -24px -24px 28px;
  border: 1px solid rgba(212, 175, 115, 0.2);
  border-radius: 36px;
  z-index: -1;
}

.hero-showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #111;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-showcase-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.84) contrast(1.08);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.hero-showcase-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.98) contrast(1.12);
}

.hero-showcase-card span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  background: rgba(0, 0, 0, 0.48);
  border: 1px solid rgba(212, 175, 115, 0.22);
  padding: 8px 12px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.hero-showcase-main {
  aspect-ratio: 4 / 5;
}

.hero-showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.hero-showcase-row .hero-showcase-card {
  aspect-ratio: 1 / 1;
  border-radius: 22px;
}

/* Product gallery image CSS */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.product-gallery-main {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 24px;
  background: #111;
}

.product-gallery-small {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 20px;
  background: #111;
}

.product-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

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

/* Responsive */
@media (max-width: 991px) {
  .products-premium-hero {
    min-height: auto;
    padding: 130px 0 70px;
  }

  .products-hero-container {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .products-hero-showcase {
    max-width: 620px;
  }

  .products-hero-overlay {
    background:
      radial-gradient(circle at 70% 35%, rgba(185, 130, 70, 0.18), transparent 38%),
      linear-gradient(180deg, rgba(8, 6, 6, 0.9) 0%, rgba(8, 6, 6, 0.7) 50%, rgba(8, 6, 6, 0.96) 100%);
  }
}

@media (max-width: 575px) {
  .products-premium-hero {
    padding: 115px 0 56px;
  }

  .products-hero-title {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .products-hero-subtitle {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .products-hero-points {
    grid-template-columns: 1fr;
  }

  .products-hero-actions {
    flex-direction: column;
  }

  .products-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .products-hero-showcase::before {
    display: none;
  }

  .hero-showcase-main {
    aspect-ratio: 1 / 1;
  }

  .hero-showcase-row {
    gap: 12px;
    margin-top: 12px;
  }

  .hero-showcase-card {
    border-radius: 22px;
  }

  .hero-showcase-row .hero-showcase-card {
    border-radius: 18px;
  }

  .product-gallery {
    gap: 10px;
  }

  .product-gallery-main {
    border-radius: 18px;
  }

  .product-gallery-small {
    border-radius: 16px;
  }
}
