/* =============================================
   SAQAHOMEDECOR — Main Stylesheet
   Color Theme: Luxurious Silver & Black
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --black:        #0a0a0a;
  --black-mid:    #111111;
  --black-light:  #1a1a1a;
  --black-card:   #161616;
  --silver:       #C0C0C0;
  --silver-light: #D8D8D8;
  --silver-dark:  #909090;
  --silver-dim:   #606060;
  --metallic:     linear-gradient(135deg, #C0C0C0 0%, #e8e8e8 40%, #a8a8a8 60%, #C0C0C0 100%);
  --white:        #FFFFFF;
  --off-white:    #F0F0F0;
  --text-dark:    #FFFFFF;
  --text-mid:     #C8C8C8;
  --text-light:   #909090;
  --border:       rgba(192,192,192,0.18);
  --border-glow:  rgba(192,192,192,0.35);
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.45);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.55);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.65);
  --shadow-silver:0 4px 24px rgba(192,192,192,0.15);
  --radius:       16px;
  --radius-sm:    8px;
  --radius-lg:    24px;
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ---- Typography Helpers ---- */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.8;
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-sub { margin: 0 auto; }

.section-header.light .section-title,
.section-header.light .section-sub { color: var(--white); }
.section-header.light .section-eyebrow { color: var(--silver-light); }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--silver);
  color: var(--black);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--silver);
}
.btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-silver);
}
.btn-primary.large { padding: 18px 44px; font-size: 1rem; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--silver);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 2px solid var(--silver);
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--silver);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-silver);
}

.btn-query {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--silver);
  color: var(--black);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-query:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-silver);
}
.btn-query i { transition: transform 0.3s; }
.btn-query:hover i { transform: translateX(4px); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.7), 0 1px 0 rgba(192,192,192,0.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;

}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.logo span { background: var(--metallic); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--silver-dark);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--silver);
  transform: scaleX(0);
  transition: transform 0.3s;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--silver-light); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--silver);
  color: var(--black);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-silver); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--silver);
  border-radius: 2px;
  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); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--black-mid);
  border-top: 1px solid var(--border);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.mobile-menu.open {
  display: flex;
  max-height: 300px;
  padding: 16px 24px;
}
.mobile-menu a {
  padding: 12px 0;
  font-size: 0.95rem;
  color: var(--silver-dark);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.mobile-menu a:last-child {
  border-bottom: none;
  color: var(--silver-light);
  font-weight: 600;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(192,192,192,0.07) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(192,192,192,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  flex: 1;
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--silver);
  border-radius: 2px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  background: var(--metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  background: var(--metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(192,192,192,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-img-wrap img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  border-radius: 25px;
}
.hero-img-wrap:hover img { transform: scale(1.03) translateY(-6px); }

.hero-badge {
  position: absolute;
  bottom: 40px;
  right: -10px;
  background: var(--black-light);
  color: var(--silver-light);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-glow);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--silver), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* =============================================
   ABOUT STRIP
   ============================================= */
.about-strip {
  background: var(--black-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}
.strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--silver-light);
}
.strip-item i {
  font-size: 1.2rem;
  color: var(--silver);
}
.strip-item p {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* =============================================
   PRODUCTS SECTION
   ============================================= */
.products {
  padding: 100px 0;
  background: var(--black);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}
.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.product-card:hover {
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border-glow);
  transform: translateY(-8px);
  border-color: var(--border-glow);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--black-light);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover .product-overlay { opacity: 1; }

.overlay-btn {
  background: var(--silver);
  color: var(--black);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  transform: translateY(10px);
}
.product-card:hover .overlay-btn { transform: translateY(0); }
.overlay-btn:hover { background: var(--white); }

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--silver);
  color: var(--black);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-badge.new { background: #4a9eff; color: var(--white); }
.product-badge.premium { background: linear-gradient(135deg, #C0C0C0, #e8e8e8); color: var(--black); }

.product-info { padding: 28px; }

.product-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.product-category, .product-material {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.product-category {
  background: rgba(192,192,192,0.12);
  color: var(--silver-light);
  border: 1px solid var(--border);
}
.product-material {
  background: rgba(192,192,192,0.07);
  color: var(--silver-dark);
  border: 1px solid var(--border);
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}
.product-variant {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 14px;
  font-style: italic;
}
.product-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 18px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 24px;
}
.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.825rem;
  color: var(--text-mid);
}
.product-features li i {
  color: var(--silver);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  gap: 12px;
  flex-wrap: wrap;
}
.product-moq {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
}
.product-moq i { color: var(--silver-dark); }
.product-moq strong { color: var(--silver-light); }

/* =============================================
   PRODUCT CATEGORIES SECTION
   ============================================= */
.categories {
  padding: 100px 0;
  background: var(--black-mid);
  border-top: 1px solid var(--border);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--black-card);
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border-glow);
  border-color: var(--border-glow);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  filter: brightness(0.75);
}
.category-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.55);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.8) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.category-icon {
  width: 48px;
  height: 48px;
  background: rgba(192,192,192,0.15);
  border: 1px solid var(--border-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: var(--silver-light);
  backdrop-filter: blur(6px);
  transition: var(--transition);
}
.category-card:hover .category-icon {
  background: var(--silver);
  color: var(--black);
  border-color: var(--silver);
}

.category-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}

.category-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}

.category-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--silver);
  color: var(--black);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}
.category-card:hover .category-btn {
  opacity: 1;
  transform: translateY(0);
}
.category-btn:hover { background: var(--white); }

/* Placeholder background for category cards without real images */
.cat-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.4);
}

/* =============================================
   WHY US
   ============================================= */
.why-us {
  padding: 100px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 40px;
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.why-feat {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s, transform 0.5s;
}
.why-feat.visible { opacity: 1; transform: translateX(0); }
.why-feat:nth-child(2) { transition-delay: 0.1s; }
.why-feat:nth-child(3) { transition-delay: 0.2s; }

.why-icon {
  width: 48px;
  height: 48px;
  background: var(--black-light);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  color: var(--silver);
  font-size: 1.1rem;
  transition: var(--transition);
}
.why-feat:hover .why-icon {
  background: var(--silver);
  color: var(--black);
}
.why-feat h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.why-feat p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

.why-image { position: relative; }
.why-img-stack { position: relative; }
.why-img-back {
  width: 80%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-left: auto;
  border: 1px solid var(--border);
}
.why-img-front {
  width: 55%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: absolute;
  bottom: -30px;
  left: -10px;
  border: 3px solid var(--black-light);
}
.why-tag {
  position: absolute;
  top: 24px;
  left: 10px;
  background: var(--black-light);
  border: 1px solid var(--border-glow);
  padding: 10px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--silver-light);
  box-shadow: var(--shadow-md);
}
.why-tag i { color: var(--silver); }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  padding: 100px 0;
  background: var(--black-light);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(192,192,192,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.contact-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.contact-card.visible { opacity: 1; transform: translateY(0); }
.contact-card:hover {
  background: var(--black-light);
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-silver);
}
.contact-card i {
  font-size: 1.8rem;
  color: var(--silver);
  margin-bottom: 16px;
}
.contact-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver-dark);
  margin-bottom: 8px;
}
.contact-card p {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
}
.contact-cta { text-align: center; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #050505;
  padding: 70px 0 0;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .logo {
  color: var(--silver-light);
  margin-bottom: 16px;
  display: inline-flex;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 38px; height: 38px;
  background: var(--black-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver-dark);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--silver);
  color: var(--black);
  border-color: var(--silver);
  transform: translateY(-2px);
}
.footer-links h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver-light);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--silver); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom i { color: #e05252; }

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  width: 46px;
  height: 46px;
  background: var(--silver);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-silver);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}
.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover { background: var(--white); transform: translateY(-3px); }

/* =============================================
   MODAL & QUERY FORM
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--black-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 680px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  font-size: 1.3rem;
  color: var(--silver-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
  z-index: 10;
}
.modal-close:hover {
  background: var(--silver);
  color: var(--black);
  transform: rotate(90deg);
}

.modal-header {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border-bottom: 1px solid var(--border-glow);
  padding: 40px 40px 32px;
  text-align: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal-icon {
  width: 56px; height: 56px;
  background: rgba(192,192,192,0.12);
  border: 1px solid var(--border-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  color: var(--silver);
}
.modal-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}
.modal-product-name {
  font-size: 0.85rem;
  color: var(--silver-dark);
  font-style: italic;
  margin-bottom: 4px;
}
.modal-sub {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ---- Form ---- */
.query-form {
  padding: 36px 40px 40px;
  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-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--silver-light);
  letter-spacing: 0.03em;
}
.req { color: var(--silver); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--black-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C0C0C0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group select option { background: var(--black-mid); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 88px; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--silver);
  background: var(--black-mid);
  box-shadow: 0 0 0 3px rgba(192,192,192,0.1);
}
.form-group input[readonly] {
  background: rgba(255,255,255,0.04);
  color: var(--text-light);
  cursor: default;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--silver-dim); }

.quantity-wrap { position: relative; }
.qty-badge {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--silver);
  background: rgba(192,192,192,0.1);
  padding: 3px 10px;
  border-radius: 50px;
  pointer-events: none;
}
.form-hint {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.form-hint i { color: var(--silver-dark); font-size: 0.8rem; }

/* ---- Radio Group ---- */
.radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-mid);
  padding: 10px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  background: var(--black-light);
  flex: 1;
  min-width: 90px;
  justify-content: center;
}
.radio-label input[type="radio"] { display: none; }
.radio-custom {
  width: 16px; height: 16px;
  border: 2px solid var(--silver-dim);
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--transition);
  position: relative;
}
.radio-custom::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--silver);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s;
}
.radio-label:has(input:checked) {
  border-color: var(--silver);
  background: rgba(192,192,192,0.08);
  color: var(--silver-light);
  font-weight: 600;
}
.radio-label:has(input:checked) .radio-custom { border-color: var(--silver); }
.radio-label:has(input:checked) .radio-custom::after { opacity: 1; }
.radio-label:hover { border-color: var(--silver-dark); }

/* ---- Submit ---- */
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--silver);
  color: var(--black);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: var(--transition);
  margin-top: 8px;
}
.btn-submit:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-silver);
}

/* ---- Success ---- */
.form-success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 40px;
  gap: 16px;
}
.success-icon { font-size: 4rem; color: #4CAF50; animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
}
.form-success p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 360px;
}

/* =============================================
   CART — Navbar Icon
   ============================================= */
.cart-btn {
  position: relative;
  width: 42px;
  height: 42px;
  background: var(--black-light);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  font-size: 1rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.cart-btn:hover {
  background: var(--silver);
  color: var(--black);
  border-color: var(--silver);
  transform: translateY(-1px);
}
.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #e05252;
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--black);
  line-height: 1;
}

/* =============================================
   CART — Product Card Buttons
   ============================================= */
.product-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-cart {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--silver);
  border: 1.5px solid var(--border-glow);
  padding: 11px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-cart:hover {
  background: var(--silver);
  color: var(--black);
  border-color: var(--silver);
  transform: translateY(-2px);
  box-shadow: var(--shadow-silver);
}

/* =============================================
   CART — Modal
   ============================================= */
.cart-modal { max-width: 560px; }
.cart-modal-header {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border-bottom: 1px solid var(--border-glow);
}

.cart-body {
  padding: 24px 28px;
  max-height: 52vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.cart-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  animation: fadeSlideIn 0.35s ease both;
}
.cart-item:last-child { border-bottom: none; }
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}

.cart-item-img {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  background: var(--black-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-moq {
  font-size: 0.75rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.cart-item-moq i { color: var(--silver-dark); font-size: 0.7rem; }

.cart-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cart-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
}
.cart-qty-ctrl button {
  width: 32px;
  height: 32px;
  background: var(--black-light);
  color: var(--silver);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cart-qty-ctrl button:hover { background: var(--silver); color: var(--black); }
.cart-qty-ctrl span {
  width: 36px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}
.cart-remove {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(224,82,82,0.1);
  color: #e05252;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.cart-remove:hover { background: #e05252; color: var(--white); transform: scale(1.1); }

.cart-footer {
  padding: 16px 28px 28px;
  display: flex;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--border);
}
.btn-clear {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 20px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-clear:hover { border-color: #e05252; color: #e05252; background: rgba(224,82,82,0.06); }
.cart-enquire-btn { flex: 1; justify-content: center; }

.cart-empty {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 40px;
  gap: 14px;
}
.cart-empty-icon { font-size: 3.5rem; color: var(--border); }
.cart-empty h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--white);
}
.cart-empty p { font-size: 0.875rem; color: var(--text-light); max-width: 300px; line-height: 1.7; }

/* =============================================
   CART — Toast
   ============================================= */
.cart-toast {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 3000;
  background: var(--black-light);
  border: 1px solid var(--border-glow);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s;
  max-width: 320px;
  pointer-events: none;
}
.cart-toast.show { transform: translateY(0); opacity: 1; }
.cart-toast i { color: #7ee8a2; font-size: 1rem; flex-shrink: 0; }

/* =============================================
   VIEW ALL — Button & Modal
   ============================================= */
.view-all-wrap {
  text-align: center;
  margin-top: 52px;
  height: 100px;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--black-card);
  color: var(--silver-light);
  border: 2px solid var(--border-glow);
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.btn-view-all:hover {
  background: var(--silver);
  color: var(--black);
  border-color: var(--silver);
  transform: translateY(-3px);
  box-shadow: var(--shadow-silver);
}
.btn-view-all i { font-size: 1rem; transition: transform 0.3s; }
.btn-view-all:hover i { transform: rotate(15deg); }
.view-all-count {
  background: var(--silver);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  transition: background 0.3s, color 0.3s;
}
.btn-view-all:hover .view-all-count {
  background: rgba(0,0,0,0.2);
  color: var(--black);
}

.viewall-overlay { align-items: flex-start; padding: 0; }
.viewall-modal {
  max-width: 100%;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: none;
}
.viewall-overlay.active .viewall-modal { transform: translateY(0) scale(1); }

.viewall-header {
  background: var(--black-light);
  border-bottom: 1px solid var(--border);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-shrink: 0;
  height: 120px;
}
.viewall-header-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.viewall-header-text p { font-size: 0.875rem; color: var(--text-light); }

.viewall-cart-btn {
  display: inline-flex;
  position: absolute;
  right: 70px;
  align-items: center;
  gap: 10px;
  background: var(--silver);
  color: var(--black);
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  flex-shrink: 0;
}
.viewall-cart-btn:hover { background: var(--white); transform: translateY(-2px); }
.viewall-cart-btn span {
  background: rgba(0,0,0,0.2);
  color: var(--black);
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  min-width: 22px;
  text-align: center;
}

.viewall-grid {
  flex: 1;
  overflow-y: auto;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-content: start;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  background: var(--black);
}

.va-card {
  height: 700px;
  background: var(--black-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.va-card:hover {
  box-shadow: var(--shadow-md), 0 0 0 1px var(--border-glow);
  border-color: var(--border-glow);
  transform: translateY(-5px);
}
.va-img {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--black-light);
  overflow: hidden;
  border-radius: 10px;
  
}
.va-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.4s ease;
  border-radius: 20px;
}
.va-card:hover .va-img img { transform: scale(1.05); }

.va-info {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.va-tags { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.va-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}
.va-variant { font-size: 0.82rem; color: var(--text-light); font-style: italic; margin-bottom: 10px; }
.va-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 14px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.va-features { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.va-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.825rem;
  color: var(--text-mid);
}
.va-features li i { color: var(--silver); font-size: 0.7rem; flex-shrink: 0; }
.va-moq {
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.va-moq i { color: var(--silver-dark); }
.va-moq strong { color: var(--silver-light); }
.va-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.va-actions .btn-cart,
.va-actions .btn-query { flex: 1; justify-content: center; font-size: 0.82rem; padding: 10px 14px; }

.viewall-footer {
  background: var(--black-light);
  border-top: 1px solid var(--border);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-shrink: 0;
}
.viewall-enquire-all { flex: unset; width: auto; padding: 14px 36px; margin-top: 0; }

/* =============================================
   FOOTER CONTACT STRIP
   ============================================= */
.footer-contact-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.6fr;
  gap: 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
  margin-bottom: 0;
}

.fcs-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fcs-col h5 i { font-size: 0.85rem; }
.fcs-col p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 2px;
}
.fcs-col p strong { color: rgba(255,255,255,0.85); }

.fcs-notice {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(192,192,192,0.15);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.fcs-notice h5 { color: #f5a623; }
.fcs-notice p { font-size: 0.8rem; line-height: 1.7; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding: 140px 24px 80px; }
  .hero-eyebrow { justify-content: center; }
  .hero-eyebrow::before { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-content { max-width: 100%; }
  .hero-image { width: 100%; max-width: 460px; }
  .hero-scroll { display: none; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }

  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-image { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }

  .viewall-grid { grid-template-columns: repeat(2, 1fr); padding: 28px 28px; }
  .viewall-header { padding: 22px 28px; }
  .viewall-footer { padding: 16px 28px; }
  .footer-contact-strip { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Mobile navbar: hamburger LEFT, logo CENTER, cart RIGHT */
  .nav-inner {
    position: relative;
    justify-content: space-between;
    gap: 0;
    padding: 0 16px;
  }

  /* Hamburger moves to far left */
  .hamburger {
    order: -1;
    margin-left: 0;
    flex-shrink: 0;
  }

  /* Logo centers absolutely so it sits in the middle regardless of siblings */
  .logo {
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
    font-size: 1.15rem;
    gap: 7px;
    text-align: center;
  }

  .logo-text {
    
    transform: translateX(-50%);
    font-size: 1.15rem;
    gap: 7px;
  }
  
  /* Cart button stays on right */
  .cart-btn {
    order: 1;
    margin-left: auto;
    flex-shrink: 0;
  }

  .hero { padding: 110px 20px 60px; gap: 40px; }
  .hero-title { font-size: 2.4rem; }
  .hero-stats { gap: 20px; }
  .stat span { font-size: 1.5rem; }

  .strip-inner { flex-direction: column; gap: 16px; text-align: center; }

  .product-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .category-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

  .contact-cards { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto 48px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .query-form { padding: 24px 20px 28px; }
  .modal-header { padding: 32px 24px 24px; }

  .why-us { padding: 70px 0; }
  .products { padding: 70px 0; }
  .categories { padding: 70px 0; }
  .contact-section { padding: 70px 0; }

  .product-actions { flex-direction: column; align-items: stretch; }
  .btn-cart, .btn-query { width: 100%; justify-content: center; }
  .cart-body { max-height: 44vh; padding: 16px 20px; }
  .cart-footer { padding: 14px 20px 24px; flex-direction: column; }
  .cart-enquire-btn { width: 100%; }
  .btn-clear { width: 100%; justify-content: center; }
  .cart-toast { left: 16px; right: 16px; max-width: unset; bottom: 80px; }

  .viewall-grid { grid-template-columns: 1fr; padding: 20px 16px; gap: 20px; }
  .viewall-header { flex-direction: column; align-items: flex-start; padding: 20px 16px; gap: 14px; height: auto; }
  .viewall-cart-btn { width: 100%; justify-content: center; position: static; }
  .viewall-footer { flex-direction: column; padding: 14px 16px; gap: 10px; }
  .viewall-footer .btn-outline,
  .viewall-enquire-all { width: 100%; justify-content: center; }
  .btn-view-all { font-size: 0.9rem; padding: 14px 28px; }
  .footer-contact-strip { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { width: 40px; height: 1px; }
  .modal { border-radius: var(--radius); }
  .modal-header { border-radius: var(--radius) var(--radius) 0 0; }
  .radio-group { flex-direction: column; }
  .radio-label { min-width: unset; }
  .section-title { font-size: 1.8rem; }
  .back-to-top { bottom: 20px; right: 20px; }
  .category-card { aspect-ratio: 3/2; }
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 32px;
  z-index: 500;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover {
  background: #1ebe59;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

@media (max-width: 768px) {
  .whatsapp-float { bottom: 90px; right: 20px; }
  .back-to-top { bottom: 20px; right: 20px; }
}

/* =============================================
   ABOUT US SECTION
   ============================================= */
.about-us {
  padding: 100px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 60px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-top: -16px;
}

.about-story h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--silver-light);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.about-story p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--black-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.value-item:hover {
  background: var(--black-mid);
  border-color: var(--border-glow);
  transform: translateX(4px);
}

.value-item i {
  font-size: 1.4rem;
  color: var(--silver);
  flex-shrink: 0;
  margin-top: 2px;
}

.value-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.value-item p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* About Image */
.about-image {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 100px;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.about-img-wrap img {
  width: 100%;
  height: 500px;
  display: block;
  filter: brightness(0.85);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.about-img-wrap:hover img {
  transform: scale(1.03);
  filter: brightness(1);
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.about-badge i {
  font-size: 1.4rem;
  color: var(--silver);
}

.about-badge span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--silver-light);
  letter-spacing: 0.02em;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about-stat {
  background: var(--black-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}

.about-stat:hover {
  background: var(--black-mid);
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-silver);
}

.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  background: var(--metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 6px;
}

.about-stat p {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Commitment Section */
.about-commitment {
  background: var(--black-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.commitment-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
}

.commitment-content p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.commitment-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-image {
    position: static;
  }
}

@media (max-width: 768px) {
  .about-us {
    padding: 70px 0;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
  .about-commitment {
    padding: 32px 24px;
  }
  .commitment-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .commitment-actions .btn-primary,
  .commitment-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .about-badge {
    flex-direction: column;
    text-align: center;
    padding: 14px 16px;
  }
}
