/* 
  FUNKE FURNISHERS - PREMIUM DESIGN SYSTEM
  Refined Aesthetics for Lilongwe's Finest Furniture
*/

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

:root {
  /* Color Palette - HSL Tailored */
  --gold-h: 41;
  --gold-s: 63%;
  --gold: hsl(var(--gold-h), var(--gold-s), 45%);
  --gold-lt: hsl(var(--gold-h), var(--gold-s), 55%);
  --gold-dk: hsl(var(--gold-h), var(--gold-s), 30%);
  
  --brown: hsl(28, 68%, 15%);
  --brown-mid: hsl(28, 61%, 22%);
  
  --cream: hsl(40, 40%, 97%);
  --cream-2: hsl(40, 35%, 93%);
  --cream-3: hsl(40, 30%, 88%);
  
  --ink: hsl(30, 80%, 5%);
  --ink-2: hsl(30, 40%, 15%);
  
  --muted: hsl(30, 20%, 45%);
  --muted-2: hsl(30, 15%, 65%);
  
  --white: #ffffff;
  --wa-green: #25D366;
  
  /* System Tokens */
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(184, 137, 42, 0.15);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 10px 36px hsla(var(--gold-h), var(--gold-s), 45%, 0.35);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  width: 100%;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.1;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition);
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

/* Page System */
.pg { display: none; }
.pg.on { display: block; animation: fadeIn 0.6s ease; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: var(--transition);
  padding: 12px 0;
}

nav.solid {
  background: hsla(40, 40%, 97%, 0.85);
  backdrop-filter: blur(20px);
  padding: 8px 0;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.n-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
}

.n-logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(145deg, var(--gold-lt), var(--gold-dk));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 12px hsla(var(--gold-h), var(--gold-s), 30%, 0.3);
}

.n-links {
  display: flex;
  gap: 8px;
}

.n-lnk {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.n-lnk:hover, .n-lnk.on {
  color: var(--gold-dk);
  background: hsla(var(--gold-h), var(--gold-s), 45%, 0.15);
}

.n-lnk.on {
  background: var(--gold-dk);
  color: #fff;
}

.n-cta {
  background: var(--gold);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-gold);
}

.n-cta:hover {
  background: var(--gold-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px hsla(var(--gold-h), var(--gold-s), 45%, 0.45);
}

.n-logo:hover .n-logo-mark {
  transform: rotate(-10deg) scale(1.1);
  box-shadow: 0 8px 24px hsla(var(--gold-h), var(--gold-s), 30%, 0.4);
}

.n-hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.n-hbg span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-left {
  padding: 160px 64px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: hsla(var(--gold-h), var(--gold-s), 45%, 0.1);
  color: var(--gold-dk);
  border: 1px solid hsla(var(--gold-h), var(--gold-s), 45%, 0.2);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
  width: fit-content;
}

.hero-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
}

.hero-h1 {
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -2px;
}

.hero-h1 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-dk);
  transform: translateY(-3px);
  box-shadow: 0 14px 44px hsla(var(--gold-h), var(--gold-s), 45%, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid hsla(30, 80%, 5%, 0.1);
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: hsla(var(--gold-h), var(--gold-s), 45%, 0.05);
  color: var(--gold-dk);
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.h-stat span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.h-stat small {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
  display: block;
}

.h-div {
  width: 1px;
  background: hsla(30, 80%, 5%, 0.1);
  align-self: stretch;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: 8s ease;
}

.hero:hover .hero-img-main {
  transform: scale(1);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 25%);
}

.hero-badge-float {
  position: absolute;
  bottom: 80px;
  left: -20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: floatAnim 4s ease-in-out infinite;
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hbf-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold-dk));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px hsla(var(--gold-h), var(--gold-s), 30%, 0.3);
}

.hbf-icon svg { width: 24px; height: 24px; fill: #fff; }
.hbf-txt strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--ink); }
.hbf-txt span { font-size: 0.8rem; color: var(--muted); font-weight: 500; }

/* Marquee Strip */
.marquee-strip {
  background: var(--brown);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  flex-shrink: 0;
  animation: marqueeScroll 30s linear infinite;
  -webkit-animation: marqueeScroll 30s linear infinite;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@-webkit-keyframes marqueeScroll {
  from { -webkit-transform: translateX(0); }
  to { -webkit-transform: translateX(-50%); }
}

.mq-item {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 16px;
  padding: 0 48px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.mq-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--gold);
}

/* Shared Sections */
.s-wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.s-head { text-align: center; margin-bottom: 64px; }
.s-tag {
  display: inline-block;
  background: hsla(var(--gold-h), var(--gold-s), 45%, 0.12);
  color: var(--gold-dk);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.s-head h2 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--ink); margin-bottom: 16px; }
.s-head p { font-size: 1.05rem; color: var(--muted); max-width: 550px; margin: 0 auto; line-height: 1.7; }

/* Categories */
.cats-sec { padding: 100px 0; background: var(--cream); }
.cats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.cat-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  height: 320px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.cat-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.cat-card img { height: 100%; transition: transform 0.8s ease; }
.cat-card:hover img { transform: scale(1.1); }

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.cat-name { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: #fff; }
.cat-count { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 6px; font-weight: 500; }
.cat-arr {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
}

.cat-card:hover .cat-arr { background: var(--gold); border-color: var(--gold); transform: rotate(-45deg); }

/* Products Grid */
.feat-sec { padding: 120px 0; background: var(--white); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 32px; max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.p-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
}

.p-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.p-img { height: 280px; position: relative; overflow: hidden; background: #f5f5f5; }
.p-img img { height: 100%; transition: transform 0.6s ease; }
.p-card:hover .p-img img { transform: scale(1.08); }

.p-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.badge-hot { background: var(--gold); color: #fff; }
.badge-new { background: #2A6B3A; color: #fff; }
.badge-pop { background: #3A1F6A; color: #fff; }

.p-wa {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  opacity: 0;
  transform: scale(0.6);
  transition: var(--transition);
  z-index: 5;
}

.p-card:hover .p-wa { opacity: 1; transform: scale(1); }
.p-wa svg { width: 24px; height: 24px; fill: #fff; }

.p-body { padding: 28px; }
.p-cat { font-size: 0.75rem; font-weight: 800; color: var(--gold-dk); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.p-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.p-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin-bottom: 24px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.p-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid rgba(0,0,0,0.06); }
.p-price { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--gold-dk); }
.p-price small { font-family: 'Inter', sans-serif; font-size: 0.7rem; color: var(--muted-2); display: block; margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }

.p-btn {
  background: var(--cream-2);
  color: var(--ink-2);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.p-btn:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }

/* Why Us Section */
.why-sec { padding: 120px 0; background: var(--cream); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }

.why-left h2 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 24px; color: var(--ink); }
.why-left p { color: var(--muted); line-height: 1.8; margin-bottom: 48px; font-size: 1.1rem; }

.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.w-feat {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.w-feat:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
  border-color: hsla(var(--gold-h), var(--gold-s), 45%, 0.2);
}

.w-icon {
  width: 52px;
  height: 52px;
  background: hsla(var(--gold-h), var(--gold-s), 45%, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.w-icon svg { width: 26px; height: 26px; fill: var(--gold); }
.w-feat h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--ink); font-family: 'Inter', sans-serif; }
.w-feat p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; margin-bottom: 0; }

.why-img-wrap {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  height: 640px;
  box-shadow: var(--shadow-lg);
}

.why-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 28px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.5);
}

.wb-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 700; color: var(--gold-dk); line-height: 1; }
.wb-lbl { font-size: 0.9rem; color: var(--muted); margin-top: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* Testimonials */
.testi-sec { padding: 120px 0; background: var(--brown); color: #fff; position: relative; }
.testi-sec .s-tag { background: rgba(255,255,255,0.1); color: var(--gold-lt); }
.testi-sec .s-head h2 { color: #fff; }
.testi-sec .s-head p { color: rgba(255,255,255,0.5); }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.t-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
}

.t-card.featured {
  background: linear-gradient(135deg, var(--brown-mid), var(--brown));
  border: 1px solid hsla(var(--gold-h), var(--gold-s), 45%, 0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.t-stars { color: var(--gold-lt); font-size: 1rem; margin-bottom: 20px; letter-spacing: 4px; }
.t-text { font-size: 1.05rem; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 32px; font-style: italic; font-family: 'Cormorant Garamond', serif; }
.t-card.featured .t-text { color: #fff; font-size: 1.2rem; }

.t-auth { display: flex; align-items: center; gap: 16px; }
.t-av { 
  width: 48px; 
  height: 48px; 
  background: linear-gradient(135deg, var(--gold-lt), var(--gold-dk)); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 1rem; 
  font-weight: 800; 
  color: #fff; 
  flex-shrink: 0;
}
.t-nm { font-size: 1rem; font-weight: 700; color: #fff; display: block; margin-bottom: 2px; }
.t-loc { font-size: 0.8rem; color: rgba(255,255,255,0.4); font-weight: 500; }

/* Home CTA Section */
.home-cta-sec {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(to right, #916823 0%, #3e1f06 100%);
    color: #fff;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid hsla(0, 0%, 100%, 0.05);
}

.cta-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    aspect-ratio: 1 / 1;
    background: hsla(var(--gold-h), var(--gold-s), 55%, 0.15);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.home-cta-sec h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 16px;
    font-family: 'Cormorant Garamond', serif;
}

.home-cta-sec p {
    font-size: 1.15rem;
    color: hsla(0, 0%, 100%, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-white-pill {
    background: #fff;
    color: #785215;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.btn-white-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}

.btn-white-pill svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Custom Order Page */
.custom-hero {
  padding: 120px 24px 60px;
  background: var(--brown);
  text-align: center;
  color: #fff;
  border-bottom: 4px solid var(--gold);
}

.custom-hero h1 { 
  font-size: clamp(2.2rem, 10vw, 5rem); 
  margin-bottom: 24px; 
  letter-spacing: -1px;
}
.custom-hero p { 
  font-size: clamp(1rem, 4vw, 1.25rem); 
  color: rgba(255,255,255,0.8); 
  max-width: 700px; 
  margin: 0 auto; 
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.5;
}

.custom-body { padding: 100px 0; background: var(--cream); }
.custom-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.form-title { font-size: 2.2rem; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.form-sub { color: var(--muted); font-size: 1rem; margin-bottom: 40px; }

.rf-form { display: flex; flex-direction: column; gap: 24px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.f-grp { display: flex; flex-direction: column; gap: 10px; }
.f-grp label { font-size: 0.85rem; font-weight: 700; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.5px; }

.f-grp input, .f-grp select, .f-grp textarea {
  padding: 16px 20px;
  background: #fff;
  border: 2px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  width: 100%;
}

.f-grp input:focus, .f-grp select:focus, .f-grp textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px hsla(var(--gold-h), var(--gold-s), 45%, 0.1);
  outline: none;
}

.upload-area {
  border: 2px dashed hsla(var(--gold-h), var(--gold-s), 45%, 0.3);
  border-radius: var(--radius-sm);
  padding: 48px;
  text-align: center;
  cursor: pointer;
  background: hsla(var(--gold-h), var(--gold-s), 45%, 0.02);
  transition: var(--transition);
}

.upload-area:hover {
  border-color: var(--gold);
  background: hsla(var(--gold-h), var(--gold-s), 45%, 0.06);
}

.upload-area svg { width: 44px; height: 44px; fill: var(--gold); margin: 0 auto 16px; }
.upload-area strong { display: block; font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.upload-area span { font-size: 0.8rem; color: var(--muted); }

.submit-btn {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold-dk));
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: var(--shadow-gold);
  margin-top: 12px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px hsla(var(--gold-h), var(--gold-s), 45%, 0.4);
}

/* Custom Page Layout Refinement */
.custom-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  max-width: 1280px;
  margin: 0 auto;
}

.info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--ink);
}

.step-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px hsla(var(--gold-h), var(--gold-s), 45%, 0.3);
}

.step-txt strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--ink);
}

.step-txt p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.wa-card {
  background: #e8f5e9; /* Light green background */
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(37, 211, 102, 0.15);
}

.wa-icon-large {
  width: 64px;
  height: 64px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.wa-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.wa-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.wa-btn-large {
  background: var(--wa-green);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.wa-btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.success-msg {
  background: #f1f8e9;
  border: 1px solid #c5e1a5;
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.success-msg strong {
  color: #2e7d32;
  display: block;
  margin-bottom: 4px;
}

.success-msg p {
  color: #388e3c;
  font-size: 0.85rem;
}

/* Product Detail Refinement */
.det-top {
  margin-bottom: 32px;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
}

.btn-back:hover {
  background: var(--cream-2);
  color: var(--gold-dk);
  transform: translateX(-5px);
}

.det-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.det-img-side {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.det-img-side img {
  width: 100%;
  height: auto;
  display: block;
}

.det-cat {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.det-name {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 16px;
  color: var(--ink);
}

.det-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-dk);
  margin-bottom: 4px;
}

.det-price-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.det-desc {
  font-size: 1.05rem;
  color: var(--ink-2);
  line-height: 1.8;
  margin-bottom: 40px;
}

.det-feats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
  margin-bottom: 48px;
}

.det-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.det-acts {
  display: flex;
  gap: 16px;
}

.btn-wa-large {
  background: var(--wa-green);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-wa-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.5);
}

.btn-ghost-large {
  background: #f5f5f5;
  color: var(--ink-2);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  border: 1px solid rgba(0,0,0,0.05);
}

.btn-ghost-large:hover {
  background: #eeeeee;
  transform: translateY(-3px);
}

/* Footer */
footer { background: var(--ink); padding: 100px 0 0; color: #fff; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1.5fr; gap: 80px; max-width: 1280px; margin: 0 auto; padding: 0 32px 80px; border-bottom: 1px solid rgba(255,255,255,0.08); }

.ft-brand .f-logo { margin-bottom: 24px; font-size: 1.6rem; color: #fff; font-family: 'Cormorant Garamond', serif; font-weight: 700; display: flex; align-items: center; gap: 12px; }
.ft-brand p { font-size: 0.95rem; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 32px; }

.ft-socials { display: flex; gap: 12px; }
.ft-socials a {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.ft-socials a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-5px); }
.ft-socials a svg { width: 20px; height: 20px; fill: rgba(255,255,255,0.7); transition: var(--transition); }
.ft-socials a:hover svg { fill: #fff; }

.ft-col h4 { font-size: 1rem; font-weight: 700; margin-bottom: 28px; text-transform: uppercase; letter-spacing: 2px; color: var(--gold-lt); }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.ft-col a { color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 500; }
.ft-col a:hover { color: #fff; padding-left: 8px; }

.ft-col p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; display: flex; align-items: flex-start; gap: 12px; line-height: 1.6; }
.ft-col p svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }

.ft-bottom { padding: 32px 0; text-align: center; background: hsla(30, 80%, 5%, 0.5); }
.ft-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); font-weight: 500; }

/* Floating WhatsApp */
.float-wa {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 64px;
  height: 64px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  animation: waPulse 3s infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4); }
  50% { transform: scale(1.1); box-shadow: 0 10px 60px rgba(37, 211, 102, 0.7); }
  100% { transform: scale(1); box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4); }
}

.float-wa svg { width: 32px; height: 32px; fill: #fff; }

/* Scroll Reveal */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* About Page Redesign */
.about-hero-sec {
    padding: 140px 0 80px;
    background: var(--cream);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: var(--ink);
    margin-bottom: 32px;
}
.about-text p {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 24px;
}
.about-stats {
    display: flex;
    gap: 40px;
    margin: 48px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 32px;
}
.a-stat-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-dk);
    line-height: 1;
    margin-bottom: 8px;
}
.a-stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ink-2);
}
.pill-btn {
    padding: 14px 36px;
    border-radius: 50px;
    background: var(--gold);
    color: #fff;
    font-weight: 600;
    box-shadow: var(--shadow-gold);
    display: inline-block;
}
.pill-btn:hover {
    background: var(--gold-dk);
    transform: translateY(-2px);
}

.about-visual {
    position: relative;
}
.about-main-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    margin-bottom: -40px;
}
.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
    padding: 0 24px;
}
.val-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.val-icon {
    width: 40px;
    height: 40px;
    background: hsla(var(--gold-h), var(--gold-s), 45%, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.val-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
}
.val-card span {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--ink);
}

/* Visit Our Showroom Section */
.visit-sec {
    background: var(--brown);
    padding: 100px 0;
    color: #fff;
}
.v-tag {
    display: inline-block;
    background: hsla(var(--gold-h), var(--gold-s), 45%, 0.15);
    color: var(--gold-lt);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
}
.v-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #fff;
    margin-bottom: 64px;
}
.v-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.v-card {
    background: hsla(0, 0%, 100%, 0.05);
    border: 1px solid hsla(0, 0%, 100%, 0.08);
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    transition: var(--transition);
}
.v-card:hover {
    background: hsla(0, 0%, 100%, 0.08);
    transform: translateY(-5px);
}
.v-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.v-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--gold-lt);
}
.v-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.v-card p {
    font-size: 0.9rem;
    color: hsla(0, 0%, 100%, 0.7);
    line-height: 1.6;
}

/* Contact Page Redesign */
.contact-sec {
    padding: 140px 0 100px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}
.c-h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--ink);
    margin-bottom: 24px;
}
.c-sub {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 480px;
}
.c-info-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}
.c-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.c-info-icon {
    width: 48px;
    height: 48px;
    background: hsla(var(--gold-h), var(--gold-s), 45%, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.c-info-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
}
.c-info-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}
.c-info-text p {
    font-size: 0.9rem;
    color: var(--muted);
}
.btn-wa-solid {
    background: var(--wa-green);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}
.btn-wa-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}
.contact-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
}
.c-form .f-grp {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.c-form .f-grp label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    display: block;
    text-transform: none;
    letter-spacing: normal;
}
.c-form .f-grp input, .c-form .f-grp textarea {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 16px;
    width: 100%;
    font-size: 1rem;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}
.c-form .f-grp input:focus, .c-form .f-grp textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px hsla(var(--gold-h), var(--gold-s), 45%, 0.1);
    outline: none;
}
.c-submit-btn {
    width: 100%;
    background: var(--gold);
    color: #fff;
    padding: 18px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.c-submit-btn:hover {
    background: var(--gold-dk);
    transform: translateY(-2px);
}

/* Testimonials Section */
.testi-sec {
    background: var(--brown);
    padding: 100px 0;
    color: #fff;
}
.testi-head {
    text-align: center;
    margin-bottom: 64px;
}
.t-tag {
    display: inline-block;
    background: hsla(var(--gold-h), var(--gold-s), 45%, 0.15);
    color: var(--gold-lt);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.t-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #fff;
    margin-bottom: 16px;
}
.t-sub {
    font-size: 1.1rem;
    color: hsla(0, 0%, 100%, 0.6);
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.t-card {
    background: hsla(0,0%,100%,0.03);
    border: 1px solid hsla(0,0%,100%,0.05);
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
}
.t-card.tc-gold {
    background: var(--gold);
    border-color: var(--gold);
}
.t-stars {
    color: var(--gold-lt);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 24px;
}
.t-card.tc-gold .t-stars {
    color: #fff;
    opacity: 0.9;
}
.t-text {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    color: hsla(0,0%,100%,0.8);
    margin-bottom: 32px;
    flex-grow: 1;
}
.t-card.tc-gold .t-text {
    color: #fff;
}
.t-user {
    display: flex;
    align-items: center;
    gap: 16px;
}
.tu-av {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}
.t-card.tc-gold .tu-av {
    background: hsla(0,0%,100%,0.2);
}
.tu-info strong {
    display: block;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 4px;
}
.tu-info span {
    font-size: 0.85rem;
    color: hsla(0,0%,100%,0.6);
}
.t-card.tc-gold .tu-info span {
    color: hsla(0,0%,100%,0.8);
}

@media (max-width: 1024px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .v-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .testi-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
    .v-grid { grid-template-columns: 1fr; }
    .about-stats { flex-direction: column; gap: 24px; text-align: center; }
    .about-values { grid-template-columns: 1fr; padding: 0; margin-top: 24px; }
    .about-main-img { margin-bottom: 0; }
    .contact-form-card { padding: 32px 24px; }
}

/* ADMIN PANEL STYLES (Refined) */
.adm-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--brown); padding: 32px; }
.adm-login-card { background: #fff; border-radius: 32px; padding: 64px 48px; width: 100%; max-width: 480px; box-shadow: var(--shadow-lg); }

.adm-wrap { min-height: 100vh; background: #f8f6f2; display: flex; flex-direction: column; }
.adm-topbar { background: #fff; height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 0 40px; border-bottom: 1px solid rgba(0,0,0,0.06); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1000; }

.adm-sidebar { width: 260px; background: #fff; border-right: 1px solid rgba(0,0,0,0.06); padding: 32px 0; position: sticky; top: 72px; height: calc(100vh - 72px); }
.adm-nav-item { padding: 14px 32px; font-size: 0.9rem; font-weight: 600; color: var(--muted); display: flex; align-items: center; gap: 14px; cursor: pointer; border-left: 4px solid transparent; }
.adm-nav-item:hover { background: hsla(var(--gold-h), var(--gold-s), 45%, 0.05); color: var(--gold-dk); }
.adm-nav-item.on { background: hsla(var(--gold-h), var(--gold-s), 45%, 0.1); color: var(--gold-dk); border-left-color: var(--gold); }
.adm-nav-item svg { width: 20px; height: 20px; fill: currentColor; }

.adm-main { flex: 1; padding: 48px; min-width: 0; }

/* Admin Dashboard Elements */
.adm-main table th {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: 800;
  padding-bottom: 20px;
}

.adm-main table td {
  padding: 20px 0;
  vertical-align: middle;
}

.adm-main table tr {
  transition: var(--transition);
}

.adm-main table tbody tr:hover {
  background: hsla(var(--gold-h), var(--gold-s), 45%, 0.02);
}

.adm-main .info-card {
  transition: var(--transition);
}

.adm-main .info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: hsla(var(--gold-h), var(--gold-s), 45%, 0.1);
}

/* Gallery Filters */
.gal-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.f-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

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

.f-btn.on {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero { display: block; width: 100%; min-height: auto; background: var(--cream); overflow: hidden; }
  .nav-inner { padding: 0 16px; }
  
  .hero-left { 
    display: block; 
    width: 100%; 
    padding: 100px 16px 40px; 
    text-align: center; 
    box-sizing: border-box;
  }
  .hero-tag { display: inline-flex; margin: 0 auto 24px; max-width: 90%; }
  .hero-h1 { 
    display: block;
    width: 100%; 
    font-size: 2rem; 
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--ink);
    padding: 0 10px;
    box-sizing: border-box;
  }
  .hero-h1 em { display: block; font-style: italic; color: var(--gold); }
  
  .hero-sub { 
    display: block;
    width: 100%;
    margin: 0 auto 24px; 
    font-size: 0.95rem; 
    color: var(--muted);
    line-height: 1.6;
    padding: 0 10px;
  }
  .hero-btns { 
    display: flex; 
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px; 
    padding: 0 20px;
  }
  .hero-btns button { width: 100%; justify-content: center; padding: 14px; }
  
  .hero-stats { 
    display: flex;
    justify-content: center; 
    gap: 15px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    flex-wrap: wrap;
  }
  .h-stat span { font-size: 2rem; }
  .h-stat small { font-size: 0.7rem; }
  
  .hero-right { 
    display: block; 
    width: 100%; 
    padding: 32px 16px; 
    box-sizing: border-box;
  }
  .hero-img-main { 
    width: 100%; 
    height: auto; 
    border-radius: 16px; 
    box-shadow: var(--shadow-lg); 
    display: block;
  }
  .hero-img-overlay { display: none; }
  .hero-badge-float { 
    display: flex;
    position: relative; 
    margin: -30px auto 0; 
    width: fit-content;
    background: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    z-index: 10;
  }
  
  .cats-grid { grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 12px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  #nav { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); height: 72px; }
  #nav.solid { background: #fff; }
  .n-logo span { font-size: 1.1rem; }
  .n-links, .n-cta { display: none; }
  .n-hbg { display: flex; color: var(--ink); }
  
  .n-links.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    gap: 16px;
    z-index: 1000;
  }
  
  .s-head h2 { font-size: 2rem; }
  .cats-grid { grid-template-columns: 1fr 1fr; gap: 16px; padding: 0 16px; }
  .why-features { grid-template-columns: 1fr; gap: 16px; }
  .testi-grid { grid-template-columns: 1fr; padding: 0 16px; }
  .custom-grid { grid-template-columns: 1fr; padding: 0 16px; gap: 40px; }
  .ft-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 32px; }
  .float-wa { width: 50px; height: 50px; bottom: 20px; right: 20px; }
  section { padding: 50px 0; }

  /* Product Detail Responsive */
  .det-grid { grid-template-columns: 1fr; gap: 40px; }
  .det-img-side { border-radius: 20px; }
  .det-name { font-size: 2.2rem; }
  .det-feats-grid { grid-template-columns: 1fr; gap: 12px; }
  .det-acts { flex-direction: column; gap: 12px; }
  .det-acts .btn-wa-large, .det-acts .btn-ghost-large { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 2.2rem; }
  .hero-left { padding: 90px 20px 30px; }
  .hero-sub { font-size: 1rem; padding: 0 10px; }
  .hero-btns { flex-direction: column; width: 100%; gap: 10px; padding: 0 10px; }
  .hero-btns .btn-primary, .hero-btns .btn-ghost { width: 100%; justify-content: center; padding: 14px 24px; font-size: 0.85rem; }
  
  .s-head h2 { font-size: 1.8rem; }
  .cats-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .why-img-wrap { height: 300px; }
  .why-badge { min-width: 160px; padding: 10px 16px; bottom: 12px; left: 12px; }
  .wb-num { font-size: 1.8rem; }
  
  section { padding: 40px 0; }
  .s-wrap { padding: 0 20px; }
}

@media (max-width: 360px) {
  .hero-h1 { font-size: 2rem; }
  .n-logo span { font-size: 1rem; }
  .n-logo-mark { width: 32px; height: 32px; font-size: 0.8rem; }
}
