/* ============================================================
   THE DELUXE HARDWARES — Main Stylesheet v2
   ============================================================ */

/* ---------- CSS Variables / Design Tokens ---------- */
:root {
  --green: #1B5E20;
  --green-mid: #2E7D32;
  --green-light: #4CAF50;
  --gold: #B8860B;
  --gold-light: #DAA520;
  --gold-pale: #FFF8E1;
  --gold-banner: #C89B2A;
  --dark: #0D1A0F;
  --dark-2: #111a13;
  --text: #1a2e1c;
  --text-muted: #4a6350;
  --surface: #FFFFFF;
  --surface-2: #F8FBF8;
  --surface-3: #EDF5EE;
  --border: rgba(27, 94, 32, .14);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, .10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .15);
  --shadow-green: 0 8px 40px rgba(27, 94, 32, .25);
  --transition: 0.35s cubic-bezier(.4, 0, .2, 1);
  --nav-h: 72px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

address {
  font-style: normal;
}

/* ---------- Utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(27, 94, 32, .08);
  border: 1px solid rgba(27, 94, 32, .2);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-label.light {
  color: #a5d6a7;
  background: rgba(165, 214, 167, .1);
  border-color: rgba(165, 214, 167, .2);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.section-title.light {
  color: #fff;
}

.accent-text {
  color: var(--gold-light);
}

.section-subtitle {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, .08);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

/* Logo lockup: icon + wordmark */
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.logo-icon-img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.navbar.scrolled .logo-name {
  color: var(--dark);
}

.logo-estd {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 215, 0, .75);
}

.navbar.scrolled .logo-estd {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  padding: 8px 13px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.navbar.scrolled .nav-link {
  color: var(--text-muted);
}

.nav-link:hover,
.nav-link.active {
  color: var(--green) !important;
  background: rgba(27, 94, 32, .08);
}

.nav-cta {
  font-size: 0.86rem;
  font-weight: 700;
  color: #fff !important;
  background: var(--green);
  padding: 9px 18px;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 14px rgba(27, 94, 32, .35);
}

.nav-cta:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--text);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0D1A0F 0%, #1B3320 30%, #1B5E20 65%, #2E7D32 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 80px 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 155, 42, .35), transparent 70%);
  top: -100px;
  right: -100px;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 155, 42, .15), transparent 70%);
  bottom: -80px;
  left: -80px;
}

.hero-shape-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, .05), transparent 70%);
  top: 40%;
  left: 45%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #a5d6a7;
  background: rgba(165, 214, 167, .08);
  border: 1px solid rgba(165, 214, 167, .2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 8px;
}

.title-line {
  display: block;
}

.title-line.accent {
  color: transparent;
  background: linear-gradient(90deg, #FFD700, var(--gold-banner) 60%, #e6a817);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-tagline {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(165, 214, 167, .8);
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}

.hero-desc {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 13px 30px;
  background: linear-gradient(135deg, #FFD700, var(--gold-banner));
  color: #1a2e1c;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 100px;
  box-shadow: 0 6px 24px rgba(200, 155, 42, .45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(200, 155, 42, .6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 26px;
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid rgba(255, 255, 255, .2);
  border-radius: 100px;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.btn-secondary svg {
  width: 16px;
  height: 16px;
}

.btn-secondary:hover {
  border-color: #a5d6a7;
  color: #a5d6a7;
  background: rgba(165, 214, 167, .06);
}

.hero-stats {
  display: flex;
  align-items: center;
}

.stat-item {
  text-align: center;
  padding: 0 24px;
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, .45);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .12);
  flex-shrink: 0;
}

/* Hero Visual — logo showcase card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.hero-logo-display {
  position: relative;
}

.hero-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .3);
  min-width: 280px;
}

.hero-logo-icon {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .3);
}

.hero-logo-card-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.hero-logo-card-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.hero-logo-card-estd {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-logo-card-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, .45);
  margin-top: 4px;
}

.hero-logo-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(200, 155, 42, .15), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.visual-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
}

.float-card {
  position: absolute;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, .9);
  font-weight: 500;
  white-space: nowrap;
}

.float-icon {
  font-size: 1.2rem;
}

.float-card-1 {
  top: 10px;
  right: -10px;
  animation: float1 4s ease-in-out infinite;
}

.float-card-2 {
  bottom: 80px;
  right: -20px;
  animation: float2 4.5s ease-in-out infinite;
}

.float-card-3 {
  bottom: 20px;
  left: 0px;
  animation: float3 3.8s ease-in-out infinite;
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(8px)
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-7px)
  }
}

.scroll-down {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .4);
  animation: bounce 2s infinite;
}

.scroll-down svg {
  width: 28px;
  height: 28px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(8px)
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 96px 0;
  background: var(--surface-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.about-timeline {
  display: flex;
  flex-direction: column;
  padding: 8px;
  position: relative;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 62px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), rgba(27, 94, 32, .1));
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 14px;
  border-radius: var(--radius-md);
  transition: background var(--transition);
}

.timeline-item:hover {
  background: rgba(27, 94, 32, .05);
}

.tl-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  width: 44px;
  text-align: right;
  flex-shrink: 0;
  padding-top: 2px;
}

.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: var(--surface-2);
  flex-shrink: 0;
  margin-top: 3px;
  position: relative;
  z-index: 1;
}

.tl-dot.active {
  background: var(--green);
}

.tl-content {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.tl-content strong {
  color: var(--text);
  font-weight: 600;
}

.about-content {
  padding-top: 8px;
}

.about-text {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.highlight-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: rgba(27, 94, 32, .1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

.highlight-icon svg {
  width: 20px;
  height: 20px;
}

.highlight-item strong {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text);
}

.highlight-item p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
   PRODUCTS & CATEGORY TABS
   ============================================================ */
.products {
  padding: 96px 0;
  background: var(--surface);
}

.cat-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.cat-tab {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
  transition: all var(--transition);
  cursor: pointer;
}

.cat-tab:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(27, 94, 32, .05);
}

.cat-tab.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 4px 14px rgba(27, 94, 32, .3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  min-height: 200px;
}

/* Category group header */
.cat-group-header {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  margin-bottom: 4px;
}

.cat-group-header:first-child {
  margin-top: 0;
}

.cat-group-icon {
  font-size: 1.4rem;
}

.cat-group-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
}

.cat-group-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Product card */
.product-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(27, 94, 32, .3);
}

.product-card-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  display: block;
  background: #f0f4f1;
  padding: 12px;
}

.product-card-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--surface-3), var(--surface-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.product-card-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-brand {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.product-card .product-tags {
  margin-top: 14px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(27, 94, 32, .07);
  border: 1px solid rgba(27, 94, 32, .15);
  padding: 3px 9px;
  border-radius: 100px;
}

/* Admin hint */
.products-admin-hint {
  text-align: center;
  margin-top: 40px;
}

.admin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  padding: 9px 20px;
  border-radius: 100px;
  transition: all var(--transition);
}

.admin-link svg {
  width: 15px;
  height: 15px;
}

.admin-link:hover {
  color: var(--green);
  border-color: var(--green);
  background: rgba(27, 94, 32, .04);
}

/* Plus code */
.plus-code {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.plus-code-badge {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--gold-light);
  margin-top: 4px;
}

/* ============================================================
   BRANDS
   ============================================================ */
.brands {
  padding: 96px 0;
  background: var(--surface-2);
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.brand-chip {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1.5px solid var(--border);
  padding: 9px 20px;
  border-radius: 100px;
  transition: all var(--transition);
}

.brand-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(27, 94, 32, .15);
  border-color: var(--green);
  color: var(--green);
  background: rgba(27, 94, 32, .04);
}

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D1A0F 0%, #1B3320 50%, #1B5E20 100%);
  z-index: 0;
}

.why-us .container {
  position: relative;
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 32px;
}

.why-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(200, 155, 42, .3);
  flex-shrink: 0;
  line-height: 1;
  width: 44px;
}

.why-feature h4 {
  font-size: 0.98rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.why-feature p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6;
}

.why-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.review-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  backdrop-filter: blur(10px);
  transition: transform var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
}

.review-stars {
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, .68);
  line-height: 1.65;
  margin-bottom: 14px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.review-author strong {
  font-size: 0.88rem;
  color: #fff;
  display: block;
}

.review-author span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, .4);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 96px 0;
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  display: flex;
  gap: 14px;
  padding: 20px 22px;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: box-shadow var(--transition), transform var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(27, 94, 32, .1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

.contact-icon svg {
  width: 19px;
  height: 19px;
}

.whatsapp-icon {
  background: rgba(37, 211, 102, .1);
  color: #25d366;
}

.email-icon {
  background: rgba(234, 67, 53, .08);
  color: #ea4335;
}

.contact-info h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2px;
}

.contact-link {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  margin-top: 4px;
  transition: color var(--transition);
}

.contact-link:hover {
  color: var(--green-mid);
}

.whatsapp-link {
  color: #25d366;
}

.whatsapp-link:hover {
  color: #128c4a;
}

.map-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.map-embed {
  height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
}

.map-overlay-card {
  background: var(--green);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.map-store-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-logo {
  border-radius: 4px;
  flex-shrink: 0;
}

.map-overlay-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, .7);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-2, #111a13);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

/* Footer logo lockup */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 14px;
  text-decoration: none;
}

.footer-lockup .logo-name {
  color: rgba(255, 255, 255, .85);
}

.footer-lockup .logo-estd {
  color: rgba(200, 155, 42, .7);
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
}

.footer-tagline {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1.7;
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .55);
  transition: all var(--transition);
}

.social-btn svg {
  width: 17px;
  height: 17px;
}

.social-btn:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.footer-links-col h5 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 14px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links-col li a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, .38);
  transition: color var(--transition);
}

.footer-links-col li a:hover {
  color: #a5d6a7;
}

.contact-list {
  gap: 12px !important;
}

.contact-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, .38);
  line-height: 1.6;
}

.contact-list li svg {
  width: 15px;
  height: 15px;
  color: var(--green-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 0.79rem;
  color: rgba(255, 255, 255, .22);
  flex-wrap: wrap;
  gap: 6px;
}

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .5);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: fab-pulse 3s ease-in-out infinite;
}

.whatsapp-fab svg {
  width: 26px;
  height: 26px;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .65);
  animation: none;
}

@keyframes fab-pulse {

  0%,
  100% {
    box-shadow: 0 4px 18px rgba(37, 211, 102, .5);
  }

  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, .7), 0 0 0 7px rgba(37, 211, 102, .1);
  }
}

.fab-tooltip {
  position: absolute;
  right: 66px;
  background: rgba(0, 0, 0, .75);
  color: #fff;
  white-space: nowrap;
  font-size: 0.76rem;
  padding: 6px 11px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-fab:hover .fab-tooltip {
  opacity: 1;
}

/* ============================================================
   FADE-IN ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero {
    padding: calc(var(--nav-h) + 40px) 48px 60px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: calc(var(--nav-h) + 20px) 32px 80px;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cat-group-header {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(13, 26, 15, .97);
    backdrop-filter: blur(20px);
    padding: 20px;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .nav-link {
    color: rgba(255, 255, 255, .75) !important;
  }

  .nav-links .nav-cta {
    align-self: flex-start;
    margin-top: 4px;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: calc(var(--nav-h) + 12px) 20px 72px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 12px;
  }

  .stat-item {
    padding: 0 10px;
  }

  .about,
  .products,
  .brands,
  .why-us,
  .contact {
    padding: 64px 0;
  }

  .logo-img {
    height: 42px;
  }

  .cat-tabs {
    gap: 6px;
  }

  .cat-tab {
    font-size: 0.8rem;
    padding: 7px 14px;
  }
}