/* ========================================
   LUXARC – LIGHT ARCHITECTURE
   Premium Lighting Brand CSS
   ======================================== */

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

/* ─── CSS VARIABLES ─── */
:root {
  --teal-deep: #0F3D3E;
  --teal-mid: #174f50;
  --teal-light: #1e6465;
  --gold: #D4AF37;
  --gold-light: #e8c84a;
  --gold-dim: rgba(212, 175, 55, 0.3);
  --white-glow: #F8F5F0;
  --white-soft: rgba(248, 245, 240, 0.85);
  --matte-black: #0A0A0A;
  --dark-bg: #080c0c;
  --card-bg: rgba(15, 35, 36, 0.85);
  --glass-bg: rgba(15, 61, 62, 0.4);
  --border-gold: rgba(212, 175, 55, 0.25);
  --border-light: rgba(248, 245, 240, 0.1);
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.15);
  --shadow-deep: 0 20px 60px rgba(0,0,0,0.5);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--dark-bg);
  color: var(--white-glow);
  overflow-x: hidden;
  line-height: 1.6;
}
body.menu-open {
  overflow: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── CUSTOM CURSOR ─── */
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, opacity 0.3s;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
}
.cursor.hover { width: 6px; height: 6px; }
.cursor-ring.hover { width: 50px; height: 50px; border-color: var(--gold); }

/* ─── NOISE TEXTURE OVERLAY ─── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ─── NAVBAR ─── */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 0 60px;
  height: 100px; /* Fixed height to not be affected by logo size */
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}
#navbar.scrolled {
  background: rgba(8, 12, 12, 0.95);
  backdrop-filter: blur(20px);
  height: 80px; /* Slightly smaller on scroll */
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-logo {
  display: flex; align-items: center; gap: 18px;
  position: relative;
  text-decoration: none;
}
.nav-logo-img {
  height: 120px; /* Big enough */
  width: auto;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.4));
  margin-bottom: -15px; /* Allow it to hang below navbar slightly */
  z-index: 10;
}
#navbar.scrolled .nav-logo-img {
  height: 90px; /* Smaller on scroll but still prominent */
  margin-bottom: -5px;
}
.nav-logo .logo-text-wrap {
  display: flex;
  flex-direction: column;
}
.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--white-glow);
  line-height: 1;
}
.nav-logo .logo-tagline {
  font-size: 0.55rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 300; display: block; margin-top: 2px;
}
.nav-links {
  display: flex; gap: 36px; align-items: center;
}
.nav-links a {
  font-size: 0.8rem; font-weight: 400; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(248, 245, 240, 0.7);
  position: relative; transition: var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white-glow); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 9px 22px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  border-radius: 4px;
  font-size: 0.75rem !important;
  letter-spacing: 0.15em !important;
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--matte-black) !important;
}
.nav-cta::after { display: none !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white-glow); transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ─── */
#hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: 
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(212, 175, 55, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 30% 60%, rgba(15, 61, 62, 0.5) 0%, transparent 70%),
    linear-gradient(135deg, #040a0a 0%, #0F3D3E 40%, #0a1a1a 70%, #050808 100%);
}
.hero-lights {
  position: absolute; inset: 0; z-index: 1; overflow: hidden;
}
.light-beam {
  position: absolute;
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.25), transparent);
  width: 2px; transform-origin: top center;
  animation: sway 8s ease-in-out infinite;
}
.light-beam::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 20px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.9), rgba(212, 175, 55, 0.2));
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 0 60px rgba(212, 175, 55, 0.2);
}
.light-beam:nth-child(1) { left: 20%; top: 0; height: 60%; animation-delay: 0s; }
.light-beam:nth-child(2) { left: 40%; top: 0; height: 75%; animation-delay: -2s; width: 3px; }
.light-beam:nth-child(3) { left: 55%; top: 0; height: 55%; animation-delay: -4s; }
.light-beam:nth-child(4) { left: 70%; top: 0; height: 80%; animation-delay: -1s; }
.light-beam:nth-child(5) { left: 85%; top: 0; height: 50%; animation-delay: -3s; }
.light-beam:nth-child(6) { left: 10%; top: 0; height: 45%; animation-delay: -5s; }
@keyframes sway {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse-glow 6s ease-in-out infinite;
}
.glow-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent);
  top: -100px; right: 10%;
}
.glow-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(15, 100, 101, 0.15), transparent);
  bottom: -50px; left: 5%;
  animation-delay: -3s;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 2;
  background-image: 
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(to top, rgba(8,12,12,0.8) 0%, transparent 50%, rgba(8,12,12,0.2) 100%);
}
.hero-content {
  position: relative; z-index: 4;
  text-align: center; max-width: 860px; padding: 0 20px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  opacity: 0; animation: fadeInUp 1s 0.3s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  opacity: 0; animation: fadeInUp 1s 0.5s forwards;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1rem; font-weight: 300; letter-spacing: 0.08em;
  color: rgba(248, 245, 240, 0.65);
  margin-bottom: 50px;
  opacity: 0; animation: fadeInUp 1s 0.7s forwards;
}
.hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeInUp 1s 0.9s forwards;
}
.btn-primary {
  padding: 14px 36px;
  background: var(--gold);
  color: var(--matte-black);
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: none; border-radius: 4px; cursor: pointer;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%); transition: transform 0.5s;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}
.btn-secondary {
  padding: 14px 36px;
  background: transparent;
  color: var(--white-glow);
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid rgba(248, 245, 240, 0.3);
  border-radius: 4px; cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(248, 245, 240, 0.4);
  opacity: 0; animation: fadeIn 1s 1.5s forwards;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ─── SECTION COMMON ─── */
section { position: relative; z-index: 2; }
.section-pad { padding: 120px 60px; }
.section-pad-sm { padding: 80px 60px; }
.container {
  width: min(100%, 1300px);
  max-width: 1300px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 30px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold); }
.divider-gold {
  width: 60px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 24px 0;
}

/* ─── ABOUT ─── */
#about {
  background: linear-gradient(135deg, #0d2626 0%, var(--dark-bg) 60%);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-frame {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--teal-deep), #0a1f20);
  border: 1px solid var(--border-gold);
}
.about-img-frame::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: 
    radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(15, 61, 62, 0.5) 0%, transparent 50%);
}
.about-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}
.about-img-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.58);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--white-glow);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.light-fixture-svg {
  opacity: 0.7;
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px; z-index: 2;
  width: 120px; height: 120px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
}
.about-badge .num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 500;
  color: var(--matte-black); line-height: 1;
}
.about-badge .label {
  font-size: 0.55rem; letter-spacing: 0.15em;
  color: rgba(10,10,10,0.7); text-transform: uppercase;
  text-align: center;
}
.about-content { padding-left: 20px; }
.about-content .section-title { margin-bottom: 24px; }
.about-text {
  font-size: 0.95rem; font-weight: 300; line-height: 1.9;
  color: rgba(248, 245, 240, 0.7);
  margin-bottom: 40px;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.feature-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.feature-item:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.feature-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.feature-text { font-size: 0.8rem; font-weight: 400; line-height: 1.5; }
.feature-text strong { display: block; color: var(--gold); font-weight: 500; margin-bottom: 2px; font-size: 0.85rem; }

/* ─── CATEGORIES ─── */
#categories {
  background: var(--dark-bg);
}
.categories-header {
  text-align: center; margin-bottom: 60px;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.cat-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 3/4;
  cursor: pointer;
  border: 1px solid var(--border-gold);
  transition: var(--transition);
  background: linear-gradient(160deg, var(--teal-deep), var(--dark-bg));
}
.cat-card::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 30%, transparent 70%);
  transition: var(--transition);
}
.cat-bg {
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.cat-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.cat-card:hover .cat-bg { transform: scale(1.08); }
.cat-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2), 0 20px 40px rgba(0,0,0,0.4);
  transform: translateY(-6px);
}
.cat-card:hover::before {
  background: linear-gradient(to top, rgba(212, 175, 55, 0.15) 0%, rgba(0,0,0,0.7) 40%, transparent 70%);
}
.cat-info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 20px 16px;
}
.cat-icon { font-size: 1.8rem; margin-bottom: 8px; display: block; }
.cat-name {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 400;
  color: var(--white-glow);
  display: block; margin-bottom: 4px;
}
.cat-count {
  font-size: 0.65rem; letter-spacing: 0.15em;
  color: var(--gold); text-transform: uppercase;
}
.cat-arrow {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 32px; height: 32px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition);
  opacity: 0; transform: scale(0.8);
}
.cat-card:hover .cat-arrow {
  opacity: 1; transform: scale(1);
  background: var(--gold);
  color: var(--matte-black);
}

/* ─── FEATURED PRODUCTS ─── */
#featured {
  background: linear-gradient(180deg, var(--dark-bg) 0%, #0d2626 50%, var(--dark-bg) 100%);
}
.featured-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 60px; flex-wrap: wrap; gap: 24px;
}
.view-all-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); transition: var(--transition);
}
.view-all-link:hover { gap: 14px; }
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  backdrop-filter: blur(10px);
}
.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15), 0 30px 60px rgba(0,0,0,0.4);
}
.product-img-wrap {
  position: relative; aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, #0f2526, #1a3a3b);
}
.product-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.38), transparent 55%);
  pointer-events: none;
}
.product-img-wrap img,
.product-img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-img-wrap img,
.product-card:hover .product-img { transform: scale(1.08); }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  font-size: 3rem;
}
.product-img-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.62);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--white-glow);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.product-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px;
  background: var(--gold);
  color: var(--matte-black);
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 4px;
}
.product-badge.new { background: var(--teal-light); color: white; }
.product-badge.sale { background: #c0392b; color: white; }
.product-wishlist {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.9rem;
  transition: var(--transition);
  opacity: 0; transform: translateY(-4px);
}
.product-card:hover .product-wishlist {
  opacity: 1; transform: translateY(0);
}
.product-wishlist:hover { background: var(--gold); border-color: var(--gold); }
.product-info { padding: 20px; }
.product-cat {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 400;
  line-height: 1.3; margin-bottom: 6px;
  color: var(--white-glow);
}
.product-desc {
  font-size: 0.78rem; color: rgba(248, 245, 240, 0.5);
  line-height: 1.6; margin-bottom: 16px;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border-light);
  gap: 12px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 500; color: var(--gold);
}
.product-price-old {
  font-size: 0.85rem; color: rgba(248,245,240,0.35);
  text-decoration: line-through; display: block; line-height: 1;
}
.btn-view {
  padding: 8px 18px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; border-radius: 4px;
  cursor: pointer; transition: var(--transition);
}
.btn-view:hover {
  background: var(--gold); color: var(--matte-black);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* ─── SERVICES ─── */
#services {
  background: var(--dark-bg);
}
.services-header { text-align: center; margin-bottom: 60px; }
.services-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.service-card {
  padding: 36px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08), transparent 60%);
  opacity: 0; transition: var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.service-icon-wrap {
  width: 68px; height: 68px; margin: 0 auto 20px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  transition: var(--transition);
  position: relative; z-index: 1;
}
.service-card:hover .service-icon-wrap {
  background: var(--gold);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 400;
  margin-bottom: 10px; position: relative; z-index: 1;
}
.service-desc {
  font-size: 0.78rem; color: rgba(248, 245, 240, 0.55);
  line-height: 1.7; position: relative; z-index: 1;
}

/* ─── SHOWROOM ─── */
#showroom {
  background: linear-gradient(180deg, #0d2626, var(--dark-bg));
}
.showroom-header { text-align: center; margin-bottom: 60px; }
.showroom-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border-gold);
  position: relative; cursor: pointer;
  transition: var(--transition);
}
.gallery-item:nth-child(1) { grid-row: span 2; aspect-ratio: 3/4; }
.gallery-item:nth-child(2) { aspect-ratio: 4/3; }
.gallery-item:nth-child(3) { aspect-ratio: 4/3; }
.gallery-item:nth-child(4) { aspect-ratio: 4/3; }
.gallery-item:nth-child(5) { aspect-ratio: 4/3; }
.gallery-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--teal-deep), #0a1a1b);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gallery-item:hover .gallery-inner { transform: scale(1.05); }
.gallery-item:hover {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  font-size: 0.75rem; letter-spacing: 0.1em;
  color: rgba(248, 245, 240, 0.7);
  opacity: 0; transition: var(--transition); transform: translateY(8px);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* ─── WHY CHOOSE US ─── */
#why {
  background: var(--dark-bg);
}
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.why-left { }
.why-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 50px;
}
.stat-item {
  padding: 28px;
  background: var(--glass-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: var(--transition);
}
.stat-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 300;
  color: var(--gold); line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(248, 245, 240, 0.55);
}
.why-reasons {
  display: grid; gap: 20px;
}
.reason-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  cursor: default;
}
.reason-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateX(6px);
}
.reason-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 300; color: var(--gold-dim);
  line-height: 1; flex-shrink: 0;
  transition: var(--transition);
}
.reason-item:hover .reason-num { color: var(--gold); }
.reason-content { }
.reason-title {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 400;
  margin-bottom: 6px; color: var(--white-glow);
}
.reason-desc {
  font-size: 0.8rem; color: rgba(248, 245, 240, 0.55); line-height: 1.7;
}

/* ─── CONTACT ─── */
#contact {
  background: linear-gradient(135deg, #0d2626 0%, var(--dark-bg) 100%);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.contact-info { }
.contact-info .section-title { margin-bottom: 40px; }
.contact-details { display: grid; gap: 24px; margin-bottom: 40px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.contact-item:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-label {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.contact-value {
  font-size: 0.9rem; color: var(--white-glow); line-height: 1.5;
}
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-call {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--matte-black);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 4px; border: none; cursor: pointer;
  transition: var(--transition);
}
.btn-call:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 0 20px rgba(212,175,55,0.4); }
.btn-whatsapp {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  background: #25D366;
  color: white;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 4px; border: none; cursor: pointer;
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #1eb558; transform: translateY(-2px); box-shadow: 0 0 20px rgba(37,211,102,0.3); }
.contact-map {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-gold);
  height: 100%; min-height: 400px;
}
.contact-map iframe {
  width: 100%; height: 100%; min-height: 400px;
  border: none; filter: grayscale(50%) invert(90%) hue-rotate(130deg);
  opacity: 0.9;
}

/* ─── FOOTER ─── */
footer {
  background: #050909;
  border-top: 1px solid var(--border-gold);
  padding: 60px 60px 30px;
  position: relative; z-index: 2;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px; margin-bottom: 50px;
  align-items: start;
}
.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 400;
  color: var(--white-glow); display: block; margin-bottom: 4px;
}
.footer-brand .tagline {
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 20px;
}
.footer-desc {
  font-size: 0.82rem; color: rgba(248, 245, 240, 0.45);
  line-height: 1.8; margin-bottom: 24px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: var(--glass-bg);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: var(--transition);
  cursor: pointer;
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--matte-black); transform: translateY(-3px); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 500;
  color: var(--white-glow); margin-bottom: 20px;
  position: relative; padding-bottom: 12px;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 30px; height: 1px; background: var(--gold);
}
.footer-links { display: grid; gap: 10px; }
.footer-links a {
  font-size: 0.8rem; color: rgba(248, 245, 240, 0.45);
  transition: var(--transition); display: flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-links a::before { content: '›'; color: var(--gold); opacity: 0; transition: var(--transition); }
.footer-links a:hover::before { opacity: 1; }
.footer-bottom {
  padding-top: 30px; border-top: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p {
  font-size: 0.72rem; color: rgba(248, 245, 240, 0.3);
  letter-spacing: 0.05em;
}
.footer-bottom a { color: var(--gold); }

/* ─── PRODUCT MODAL ─── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
  background: #0d2425;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  width: 90%; max-width: 780px;
  max-height: 90vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  transform: translateY(20px) scale(0.97);
  transition: var(--transition);
}
.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}
.modal-img-side {
  background: linear-gradient(135deg, var(--teal-deep), #0a1a1b);
  display: flex; align-items: center; justify-content: center;
  min-height: 360px;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
}
.modal-img-side img {
  width: 100%; height: 100%; object-fit: cover;
}
.modal-info { padding: 40px; }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: var(--glass-bg);
  border: 1px solid var(--border-gold);
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
}
.modal-close:hover { background: var(--gold); color: var(--matte-black); }
/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ─── MOBILE NAV ─── */
.mobile-nav {
  position: fixed; top: 0; right: 0; width: min(88vw, 320px); height: 100vh;
  background: rgba(8, 14, 14, 0.97);
  backdrop-filter: blur(30px);
  border-left: 1px solid var(--border-gold);
  z-index: 999;
  padding: 92px 24px 32px;
  transform: translateX(100%); transition: var(--transition);
  display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.mobile-nav.active { transform: translateX(0); }
.mobile-nav a {
  font-size: 1rem; font-weight: 300;
  letter-spacing: 0.1em; color: rgba(248,245,240,0.7);
  padding: 12px 0; border-bottom: 1px solid var(--border-light);
  display: block; transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold); padding-left: 6px; }

/* ─── PRODUCTS PAGE ─── */
.products-hero {
  padding: 160px 60px 80px;
  background: linear-gradient(135deg, #0d2626 0%, var(--dark-bg) 100%);
  text-align: center;
}
.products-controls {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-bottom: 50px;
}
.search-bar {
  flex: 1; min-width: 250px;
  position: relative;
}
.search-bar input {
  width: 100%; padding: 12px 46px 12px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  color: var(--white-glow); font-family: var(--font-body);
  font-size: 0.85rem; outline: none; transition: var(--transition);
  backdrop-filter: blur(10px);
}
.search-bar input:focus { border-color: var(--gold); box-shadow: 0 0 20px rgba(212,175,55,0.1); }
.search-bar input::placeholder { color: rgba(248,245,240,0.3); }
.search-icon {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 0.9rem; pointer-events: none;
}
.filter-select {
  padding: 12px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  color: var(--white-glow); font-family: var(--font-body);
  font-size: 0.82rem; outline: none; cursor: pointer;
  backdrop-filter: blur(10px); transition: var(--transition);
}
.filter-select:focus { border-color: var(--gold); }
.filter-select option { background: var(--teal-deep); }
.products-count {
  font-size: 0.75rem; color: rgba(248,245,240,0.4);
  letter-spacing: 0.08em;
}
.all-products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.product-hidden { display: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .all-products-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
@media (max-width: 1024px) {
  .section-pad { padding: 80px 40px; }
  #navbar, #navbar.scrolled { padding: 0 40px; height: 80px; }
  .nav-logo-img { height: 90px; }
  #navbar.scrolled .nav-logo-img { height: 75px; }
  #hero { min-height: 620px; }
  .hero-content { max-width: 720px; }
  .about-grid { gap: 50px; }
  .featured-header { align-items: flex-start; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .showroom-gallery { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; }
}
@media (max-width: 768px) {
  .section-pad { padding: 60px 24px; }
  .section-pad-sm { padding: 50px 24px; }
  #navbar, #navbar.scrolled { padding: 0 24px; height: 70px; }
  .nav-logo-img { height: 80px; margin-bottom: -10px; }
  #navbar.scrolled .nav-logo-img { height: 70px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #hero {
    min-height: 100svh;
    height: auto;
    padding: 120px 0 70px;
  }
  .hero-eyebrow {
    letter-spacing: 0.2em;
    gap: 8px;
  }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 24px; }
  .hero-h1 { font-size: 2.6rem; }
  .hero-sub {
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    margin-bottom: 36px;
  }
  .hero-scroll { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-content { padding-left: 0; }
  .about-features { grid-template-columns: 1fr; }
  .featured-header { margin-bottom: 36px; }
  .view-all-link { font-size: 0.68rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .all-products-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .showroom-gallery { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
  .reason-item { gap: 16px; padding: 20px; }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .modal-box { grid-template-columns: 1fr; }
  .modal-img-side { min-height: 200px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .modal-info { padding: 28px 24px; }
  .products-hero { padding: 120px 24px 60px; }
  .products-controls { align-items: stretch; }
  .filter-select,
  .search-bar,
  .sort-bar {
    width: 100%;
  }
  .sort-bar {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  footer { padding: 50px 24px 24px; }
}
@media (max-width: 480px) {
  #navbar,
  #navbar.scrolled { padding-left: 16px; padding-right: 16px; height: 60px; }
  .nav-logo-img { height: 70px; }
  #navbar.scrolled .nav-logo-img { height: 60px; }
  .section-pad,
  .section-pad-sm,
  .products-hero,
  footer { padding-left: 16px; padding-right: 16px; }
  .nav-logo .logo-text { font-size: 1.25rem; }
  .nav-logo .logo-tagline { letter-spacing: 0.18em; }
  .hero-content { padding: 0 8px; }
  .hero-h1 { font-size: 2.1rem; }
  .hero-sub { font-size: 0.85rem; }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-btns a { width: 100%; justify-content: center; text-align: center; }
  .section-title { font-size: clamp(2rem, 10vw, 2.6rem); }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .all-products-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .showroom-gallery { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .why-stats { grid-template-columns: 1fr; }
  .featured-header,
  .products-controls,
  .contact-actions,
  .footer-bottom { gap: 16px; }
  .product-info { padding: 18px; }
  .product-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-view,
  .btn-call,
  .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
  .contact-item,
  .reason-item {
    flex-direction: column;
  }
  .contact-map,
  .contact-map iframe { min-height: 280px; }
  .mobile-nav {
    width: 100%;
    border-left: none;
  }
  .modal-overlay { padding: 12px; }
  .modal-box { width: 100%; }
  .modal-info { padding: 24px 18px; }
}

@media (hover: none), (pointer: coarse) {
  .cursor,
  .cursor-ring {
    display: none;
  }
  .gallery-caption {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── LOADING SCREEN ─── */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark-bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
}
.loader-logo {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 300;
  color: var(--white-glow); letter-spacing: 0.1em;
  animation: fadeIn 0.5s ease;
}
.loader-logo span { color: var(--gold); }
.loader-bar {
  width: 200px; height: 1px;
  background: var(--border-gold);
  position: relative; overflow: hidden;
}
.loader-bar::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  animation: loader-sweep 1.2s ease-in-out forwards;
}
@keyframes loader-sweep {
  to { left: 100%; }
}
.loader-text {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(248,245,240,0.3);
}
.page-loader.hidden {
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s ease;
}

/* ─── PRODUCTS PAGE SPECIFIC ─── */
.products-page-body { }
.products-page-body #featured { display: none; }
