/* =============================================
   LUXE FURNITURE - Shared Stylesheet
   ============================================= */

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

/* ---- CSS Variables ---- */
:root {
  --primary: #0F2A44;
  --primary-light: #1a3d63;
  --primary-dark: #091e30;
  --white: #FFFFFF;
  --bg-light: #F2F4F7;
  --bg-section: #F8F9FB;
  --grey-mid: #6B7280;
  --grey-light: #D1D5DB;
  --grey-dark: #374151;
  --accent: #C9A96E;
  --accent-light: #E8D5B0;
  --text-body: #374151;
  --text-muted: #6B7280;
  --shadow-sm: 0 2px 8px rgba(15,42,68,0.08);
  --shadow-md: 0 8px 24px rgba(15,42,68,0.12);
  --shadow-lg: 0 20px 48px rgba(15,42,68,0.18);
  --radius: 4px;
  --radius-md: 8px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  font-weight: 600;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Utilities ---- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.8;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background: #b8945a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.28);
  border-color: var(--white);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15,42,68,0.08);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
}

.nav-logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-mid);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 16px; right: 16px;
  height: 1.5px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link svg {
  width: 12px; height: 12px;
  transition: transform var(--transition);
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-light);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  overflow: hidden;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--grey-dark);
  transition: all var(--transition);
  border-bottom: 1px solid var(--bg-light);
}

.dropdown-item:last-child { border-bottom: none; }

.dropdown-item:hover {
  background: var(--bg-light);
  color: var(--primary);
  padding-left: 26px;
}

.dropdown-icon {
  width: 28px; height: 28px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Overlay */
.nav-mobile {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 300px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1050;
  padding: 100px 32px 40px;
  overflow-y: auto;
}

.nav-mobile.open {
  transform: translateX(0);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,42,68,0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--bg-light);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.mobile-dropdown {
  padding: 0 0 8px 16px;
  display: none;
}

.mobile-dropdown.open { display: block; }

.mobile-dropdown-item {
  display: block;
  padding: 10px 0;
  font-size: 0.82rem;
  color: var(--grey-mid);
  font-weight: 500;
  transition: color var(--transition);
}

.mobile-dropdown-item:hover { color: var(--primary); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo-main { color: var(--white); }
.footer-brand .nav-logo-sub { color: var(--accent); }

.footer-desc {
  margin-top: 16px;
  font-size: 0.82rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.55);
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact-icon {
  width: 32px; height: 32px;
  background: rgba(201,169,110,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  color: var(--accent);
}

.footer-contact-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.footer-contact-text strong {
  display: block;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--accent); }

/* ============================================
   HOME PAGE - HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 76px;
  overflow: hidden;
}

.hero-content {
  padding: 80px 48px 80px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-eyebrow-line {
  width: 40px; height: 1px;
  background: var(--accent);
}

.hero-eyebrow-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--grey-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 420px;
  margin-bottom: 40px;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--grey-light);
}

.stat-item { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-image {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 30%);
}

.hero-badge {
  position: absolute;
  bottom: 48px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

.badge-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.badge-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}

.badge-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ============================================
   FEATURED CATEGORIES
   ============================================ */
.categories-section {
  padding: 100px 0;
  background: var(--bg-section);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
}

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

.cat-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
}

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

.cat-card-img {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.cat-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cat-card:hover .cat-card-img img {
  transform: scale(1.06);
}

.cat-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,42,68,0.55) 0%, transparent 60%);
}

.cat-card-body {
  padding: 24px;
}

.cat-card-title {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.cat-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.cat-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  position: relative;
  padding-bottom: 2px;
}

.cat-card-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--primary);
  transition: width var(--transition);
}

.cat-card-link:hover::after { width: 100%; }

.cat-card-link svg { width: 14px; height: 14px; }

/* ============================================
   BEST SELLERS
   ============================================ */
.bestsellers-section {
  padding: 100px 0;
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--bg-light);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--bg-light);
}

.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.product-card-body {
  padding: 20px;
}

.product-category {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.product-name {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.product-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.product-price .original {
  font-size: 0.82rem;
  color: var(--grey-light);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 8px;
}

.add-to-cart {
  width: 100%;
  padding: 12px;
  background: var(--bg-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 1.5px solid transparent;
}

.add-to-cart:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(201,169,110,0.06);
}

.why-section .section-label { color: var(--accent); }
.why-section .section-title { color: var(--white); }
.why-section .section-sub { color: rgba(255,255,255,0.6); }

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

.why-card {
  padding: 40px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  border-color: rgba(201,169,110,0.3);
}

.why-icon {
  width: 56px; height: 56px;
  background: rgba(201,169,110,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
  transition: all var(--transition);
}

.why-card:hover .why-icon {
  background: var(--accent);
  transform: scale(1.1);
}

.why-card-title {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}

.why-card-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
  padding: 100px 0;
  background: var(--bg-section);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 56px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform 0.5s ease;
}

.gallery-item:first-child img { min-height: 400px; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,42,68,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.gallery-overlay span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(15,42,68,0.55);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

.testimonials-slider {
  margin-top: 56px;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  padding: 36px;
  background: var(--bg-section);
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-light);
  flex-shrink: 0;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--grey-light);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-light);
}

.author-info strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}

.author-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  justify-content: center;
}

.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--primary);
}

.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.slider-dots {
  display: flex;
  gap: 6px;
}

.slider-dot {
  width: 6px; height: 6px;
  border-radius: 3px;
  background: var(--grey-light);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.slider-dot.active {
  width: 24px;
  background: var(--primary);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
  padding: 88px 0;
  background: var(--bg-light);
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-inner .section-sub { margin: 0 auto 36px; }

.newsletter-form {
  display: flex;
  gap: 0;
  background: var(--white);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  padding: 6px 6px 6px 24px;
}

.newsletter-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--text-body);
  background: transparent;
}

.newsletter-input::placeholder { color: var(--grey-mid); }

.newsletter-form .btn {
  border-radius: 50px;
  padding: 12px 28px;
  flex-shrink: 0;
}

/* ============================================
   BROWSE PAGE
   ============================================ */
.page-banner {
  height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 76px;
  overflow: hidden;
}

.page-banner img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,42,68,0.85) 40%, rgba(15,42,68,0.4));
}

.page-banner-content {
  position: relative;
  z-index: 1;
}

.page-banner-content .section-label { color: var(--accent); }

.page-banner-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 12px;
}

.page-banner-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  max-width: 440px;
}

/* Category Filter */
.filter-section {
  padding: 48px 0 0;
  background: var(--white);
  border-bottom: 1px solid var(--bg-light);
  position: sticky;
  top: 76px;
  z-index: 100;
}

.filter-inner {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

.filter-btn {
  padding: 10px 24px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  background: var(--bg-light);
  color: var(--grey-mid);
  border: 1.5px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
}

.filter-btn:hover {
  background: rgba(15,42,68,0.08);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Browse Product Grid */
.browse-section {
  padding: 64px 0;
  background: var(--white);
}

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

.browse-product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--bg-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.browse-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.browse-product-card.hidden {
  display: none;
}

.browse-img {
  height: 240px;
  overflow: hidden;
  background: var(--bg-light);
  position: relative;
}

.browse-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.browse-product-card:hover .browse-img img {
  transform: scale(1.06);
}

.browse-card-body {
  padding: 20px;
}

.browse-card-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.browse-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

/* Load More */
.load-more-wrap {
  text-align: center;
  padding: 48px 0;
}

/* Promo Banner */
.promo-banner {
  position: relative;
  padding: 72px 0;
  overflow: hidden;
}

.promo-banner img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(242,244,247,0.92);
}

.promo-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.promo-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.promo-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--primary);
  margin-bottom: 8px;
}

.promo-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-section {
  padding: 80px 0;
  background: var(--white);
}

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

.contact-info-card {
  padding: 40px 32px;
  background: var(--bg-section);
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-light);
  text-align: center;
  transition: all var(--transition);
}

.contact-info-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.contact-info-icon {
  width: 64px; height: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 24px;
  transition: all var(--transition);
}

.contact-info-card:hover .contact-info-icon {
  background: var(--accent);
  transform: scale(1.08);
}

.contact-info-title {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-info-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.9;
}

/* Contact Form */
.contact-form-section {
  padding: 0 0 80px;
  background: var(--white);
}

.contact-form-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-form-aside .section-sub { margin-top: 16px; }

.form-availability {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 14px 20px;
  background: rgba(15,42,68,0.04);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
}

.form-availability-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
}

.form-availability span {
  font-size: 0.8rem;
  color: var(--text-body);
  font-weight: 500;
}

.contact-form {
  background: var(--bg-section);
  padding: 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group.full { grid-column: span 2; }

.form-label {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.form-input,
.form-textarea,
.form-select {
  padding: 14px 18px;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--text-body);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15,42,68,0.08);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--grey-light); }

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 0.8rem;
}

/* Map */
.map-section {
  padding: 0 0 80px;
  background: var(--white);
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--bg-light);
}

/* FAQ */
.faq-section {
  padding: 80px 0;
  background: var(--bg-section);
}

.faq-grid {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-light);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}

.faq-q-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  transition: all var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-text {
  padding: 0 24px 20px;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.9;
  border-top: 1px solid var(--bg-light);
  padding-top: 16px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .browse-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 992px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; }
  .testimonial-card { min-width: calc(50% - 12px); }
  .contact-form-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .hero-content {
    padding: 60px 24px 40px;
    order: 2;
  }
  
  .hero-image {
    height: 50vw;
    min-height: 280px;
    order: 1;
  }
  
  .hero-image-overlay {
    background: linear-gradient(to bottom, transparent 60%, var(--white));
  }
  
  .hero-stats { gap: 24px; }
  .hero-badge { display: none; }
  
  .section-header { flex-direction: column; align-items: flex-start; }
  .cat-grid { grid-template-columns: 1fr; }
  
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .browse-grid { grid-template-columns: repeat(2, 1fr); }
  
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  
  .testimonial-card { min-width: calc(100% - 0px); }
  
  .newsletter-form {
    flex-direction: column;
    border-radius: var(--radius-md);
    padding: 16px;
    gap: 12px;
  }
  
  .newsletter-form .btn { border-radius: var(--radius); }
  
  .contact-info-grid { grid-template-columns: 1fr; }
  
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  
  .btn { width: 100%; justify-content: center; }
  .hero-actions .btn { width: auto; }
  
  .promo-content { flex-direction: column; }
}

@media (max-width: 480px) {
  .products-grid,
  .browse-grid { grid-template-columns: 1fr; }
  
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  
  .footer-bottom { flex-direction: column; text-align: center; }
}
