/* ============================================================
   MATARIYA PRODUCTS — Main Stylesheet
   Theme: Natural Green + Warm Gold
     Primary   : #1E7A4A (emerald green)
     Accent    : #F5A623 (golden amber)
     Background: #F5FAF6 (light natural)
     Dark      : #0D2318
   ============================================================ */

:root {
  --primary: #1E7A4A;
  --primary-dark: #145E38;
  --primary-light: #27A362;
  --accent: #F5A623;
  --accent-dark: #D48A10;
  --accent-light: #FDE8B0;
  --bg: #F5FAF6;
  --bg-2: #EBF5EE;
  --dark: #0D2318;
  --dark-2: #1A3828;
  --text: #1E3828;
  --text-light: #5A7A66;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 10px rgba(13,35,24,0.07);
  --shadow-md: 0 8px 28px rgba(13,35,24,0.11);
  --shadow-lg: 0 20px 56px rgba(13,35,24,0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
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; }

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

/* ===== LABELS & TITLES ===== */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(30,122,74,0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-label--gold { color: var(--accent); background: rgba(245,166,35,0.15); }
.section-label--light { color: #A8D5B5; background: rgba(168,213,181,0.12); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title--white { color: var(--white); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-desc { font-size: 1.05rem; color: var(--text-light); max-width: 560px; margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
}
.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 6px 22px rgba(30,122,74,0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(30,122,74,0.45); }

.btn--gold {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--dark);
  box-shadow: 0 6px 22px rgba(245,166,35,0.4);
  font-weight: 700;
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(245,166,35,0.5); }

.btn--outline-white {
  border: 2px solid rgba(255,255,255,0.55);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.18); border-color: var(--white); }

.btn--outline-green {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn--outline-green:hover { background: var(--primary); color: var(--white); }

.btn--full { width: 100%; }
.btn--lg { padding: 16px 40px; font-size: 1rem; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,0.99);
  box-shadow: var(--shadow-md);
}

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

.nav__logo { display: flex; align-items: center; text-decoration: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.logo-primary {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.22rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--dark);
  line-height: 1;
}
.logo-apos { color: #e63946; }
.logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.5rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dark);
  text-align: center;
}
.logo-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 0.55rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 0.88rem; font-weight: 500;
  color: var(--dark);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav__links a:hover { color: var(--primary); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
  color: var(--dark) !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 0.86rem !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(245,166,35,0.4);
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,166,35,0.5) !important; }

.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px; transition: all var(--transition);
}
.nav__hamburger span { background: var(--dark); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, #0D3D22 0%, #0F4A2A 45%, #0D2318 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 0 80px;
}
.hero__decorations {
  position: absolute; inset: 0; pointer-events: none;
}
.hero__decorations::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero__decorations::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,122,74,0.25) 0%, transparent 70%);
  bottom: 0; left: 10%;
}
.hero__leaf {
  position: absolute;
  font-size: 12rem;
  opacity: 0.04;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  user-select: none;
}

.hero__content { position: relative; z-index: 1; max-width: 700px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero__badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.5s infinite;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.highlight {
  color: var(--accent);
  position: relative; display: inline-block;
}
.hero__title-sub { color: #A8D5B5; }

.hero__subtitle {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-bottom: 40px; line-height: 1.8;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero__actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero__stats {
  display: flex; align-items: center; gap: 36px;
  animation: fadeUp 0.8s 0.4s ease both;
}
.stat__number { display: block; font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.stat__label { font-size: 0.72rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; }
.stat__divider { width: 1px; height: 42px; background: rgba(255,255,255,0.15); }

.hero__scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollLine 1.8s ease-in-out infinite;
}

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--primary);
  padding: 13px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 24px; white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.88); }
.marquee-track .dot { color: var(--accent); font-size: 0.45rem; align-self: center; }

/* ===== CAROUSEL ===== */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0d2318;
  margin-top: 72px; /* header height */
}

.carousel__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel__slide {
  min-width: 100%;
  position: relative;
}

/* Image slide */
.carousel__img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: cover;
  object-position: center;
  display: block;
}

.carousel__overlay {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Mini Mall CTA slide */
.carousel__slide--mall {
  min-height: 480px;
  background: linear-gradient(135deg, #0D3D22 0%, #0F4A2A 60%, #1B7A4A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.carousel__slide--mall::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(245,166,35,0.12) 0%, transparent 55%),
              radial-gradient(circle at 20% 70%, rgba(30,122,74,0.2) 0%, transparent 50%);
}

.carousel__mall-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 24px;
  max-width: 700px;
}
.carousel__mall-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.carousel__mall-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
}
.carousel__mall-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.carousel__mall-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}
.carousel__mall-tags span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Arrows — minimal, no background */
.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  font-size: 1.4rem;
  font-weight: 100;
  line-height: 1;
  padding: 8px 12px;
  cursor: pointer;
  transition: color var(--transition);
  z-index: 10;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  user-select: none;
  letter-spacing: -2px;
}
.carousel__arrow:hover { color: var(--white); }
.carousel__arrow--prev { left: 10px; }
.carousel__arrow--next { right: 10px; }

/* Dots */
.carousel__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.carousel__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid rgba(255,255,255,0.8);
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.carousel__dot.active {
  background: var(--white);
  border-color: var(--white);
  width: 28px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .carousel { margin-top: 72px; }
  .carousel__img {
    height: 52vw;
    min-height: 200px;
    max-height: 340px;
    object-fit: cover;
  }
  .carousel__arrow { display: none; }
  .carousel__overlay { bottom: 14px; gap: 8px; padding: 0 10px; }
  .carousel__overlay .btn { padding: 9px 16px; font-size: 0.78rem; }
  .carousel__dots { bottom: 10px; }
  .carousel__dot { width: 8px; height: 8px; }
  .carousel__dot.active { width: 22px; }
}

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.about__img-wrap { position: relative; }
.about__img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-2);
  position: relative;
}
.about__img-box img { width: 100%; height: 100%; object-fit: cover; }
.about__float-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--dark);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
}
.badge-num { font-size: 2rem; font-weight: 800; line-height: 1; }
.badge-txt { font-size: 0.78rem; font-weight: 600; line-height: 1.4; }

.about__text p { color: var(--text-light); margin-bottom: 16px; line-height: 1.8; font-size: 1rem; }
.about__features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.feature-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 500; }
.feature-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; flex-shrink: 0;
}

/* ===== PRODUCTS (homepage) ===== */
.products { background: var(--bg); }

.products__grid--featured {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(30,122,74,0.06);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.product-card__img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-2);
}
.product-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.5s ease; }
.product-card:hover .product-card__img img { transform: scale(1.05); }

/* Promo-style product images — contain so full pack is visible */
.product-card__img img[src$=".png"] {
  object-fit: contain;
  padding: 8px;
  background: linear-gradient(135deg, var(--bg-2), #dff0e3);
}

.product-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg-2), #D4EDD9);
}
.product-card__img img[style*="display:none"] + .product-placeholder,
.product-card__img img[style*="display: none"] + .product-placeholder { display: flex; }
.product-emoji { font-size: 3.5rem; }

.product-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.65rem; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.product-card__badge--green {
  background: var(--primary); color: var(--white);
}

.product-card__body { padding: 18px; }
.product-card__category {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 5px;
}
.product-card__name { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 7px; }
.product-card__desc { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.product-card__btn {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 100px;
  background: rgba(30,122,74,0.08);
  color: var(--primary);
  font-size: 0.8rem; font-weight: 600;
  transition: all var(--transition);
}
.product-card__btn:hover { background: var(--primary); color: var(--white); }

.products__cta {
  text-align: center;
  padding: 48px;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.products__cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(245,166,35,0.12) 0%, transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(30,122,74,0.15) 0%, transparent 60%);
}
.products__cta-content { position: relative; z-index: 1; }
.products__cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 800;
  color: var(--white); margin-bottom: 10px;
}
.products__cta p { color: rgba(255,255,255,0.65); margin-bottom: 28px; font-size: 1rem; }
.products__cta-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 32px;
}
.cta-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 500;
}

/* ===== FEATURED CATEGORIES ===== */
.categories { background: var(--bg); }

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

.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  background: var(--bg-2);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* Image background */
.cat-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}
.cat-card:hover .cat-card__img { transform: scale(1.06); }

/* 2x2 collage for dry fruits */
.cat-card__collage {
  width: 100%; height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  background: var(--bg-2);
}
.cat-card__collage img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 12px;
  background: linear-gradient(135deg, var(--bg-2), #d4edd9);
  transition: transform 0.55s ease;
}
.cat-card:hover .cat-card__collage img { transform: scale(1.05); }

/* Gradient overlay */
.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.15) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background var(--transition);
}
.cat-card:hover .cat-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.6) 55%, rgba(0,0,0,0.2) 100%);
}

.cat-card__info { width: 100%; }
.cat-card__count {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.cat-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.cat-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.cat-card:hover .cat-card__btn {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

/* View All card — blurred collage bg + bold overlay */
.cat-card--viewall { background: var(--dark); }

.cat-card__collage--bg img {
  filter: brightness(0.55) saturate(0.8);
}
.cat-card--viewall:hover .cat-card__collage--bg img {
  filter: brightness(0.45) saturate(0.8);
  transform: scale(1.07);
}

.cat-card__viewall-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13,35,24,0.55) 0%, rgba(13,35,24,0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-card__viewall-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 20px;
  gap: 10px;
}

.cat-card--viewall h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.cat-card--viewall p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cat-card__btn--gold {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: var(--dark) !important;
  font-weight: 700 !important;
  margin-top: 4px;
}
.cat-card--viewall:hover .cat-card__btn--gold {
  background: var(--white) !important;
  border-color: var(--white) !important;
}

@media (max-width: 1024px) {
  .categories__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .categories__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cat-card__name { font-size: 1.2rem; }
}

/* ===== WHY US ===== */
.why-us {
  background: linear-gradient(150deg, #0D3D22 0%, #0F4A2A 100%);
  position: relative; overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(245,166,35,0.1) 0%, transparent 50%);
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px; position: relative;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
  transition: all var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.why-card__icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-card p { font-size: 0.84rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ===== MINI MALL ===== */
.mini-mall { background: var(--white); overflow: hidden; }
.mini-mall__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.mini-mall__text p { color: var(--text-light); margin-bottom: 14px; line-height: 1.8; }

/* Visit store highlight banner */
.visit-store-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 24px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
  box-shadow: 0 8px 28px rgba(30,122,74,0.35);
}
.visit-store-icon { font-size: 2.8rem; flex-shrink: 0; }
.visit-store-text strong { display: block; font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.visit-store-text span { font-size: 0.88rem; opacity: 0.85; }

.mini-mall__items {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px;
}
.mall-item-tag {
  background: var(--bg-2);
  color: var(--primary);
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600;
  border: 1px solid rgba(30,122,74,0.15);
}

.mini-mall__info { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.info-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
}
.info-icon { font-size: 1.3rem; flex-shrink: 0; }
.info-row strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); margin-bottom: 2px; }
.info-row span { font-size: 0.92rem; color: var(--text); }

.mall-img-wrapper {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; background: var(--bg-2);
  position: relative;
}
.mall-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.mall-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,35,24,0.85), transparent);
  padding: 28px 24px;
  display: flex; align-items: flex-end; gap: 16px;
}
.mall-overlay-text strong { display: block; font-size: 1.1rem; font-weight: 700; color: var(--white); }
.mall-overlay-text span { font-size: 0.82rem; color: rgba(255,255,255,0.75); }
.mall-open-badge {
  margin-left: auto; flex-shrink: 0;
  background: var(--accent);
  color: var(--dark);
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 700;
}

/* ===== FRANCHISE ===== */
.franchise { background: var(--bg); }
.franchise__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.franchise__text p { color: var(--text-light); margin-bottom: 14px; line-height: 1.8; }
.franchise__perks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; }
.perk { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; font-weight: 500; }
.perk-icon { font-size: 0.9rem; flex-shrink: 0; }
.franchise-img-box {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; background: var(--bg-2); position: relative;
}
.franchise-img-box img { width: 100%; height: 100%; object-fit: cover; }

/* ===== INQUIRY ===== */
.inquiry { background: var(--white); position: relative; overflow: hidden; }
.inquiry::before {
  content: '';
  position: absolute; top: -300px; right: -300px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,122,74,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.inquiry__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: start; }

.inquiry-form {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(30,122,74,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 0.78rem; font-weight: 700; color: var(--dark-2); text-transform: uppercase; letter-spacing: 0.07em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  background: var(--white);
  font-family: inherit;
  font-size: 0.94rem; color: var(--text);
  transition: all var(--transition); outline: none;
  box-shadow: var(--shadow-sm);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30,122,74,0.1);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #E53E3E; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-error { font-size: 0.76rem; color: #E53E3E; font-weight: 500; min-height: 16px; }

.inquiry__contact h3 { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 22px; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
}
.contact-card:hover { border-color: rgba(30,122,74,0.2); transform: translateX(4px); }

/* Phone click row */
.info-row-link {
  display: flex; align-items: flex-start; gap: 14px;
  text-decoration: none; color: inherit; width: 100%;
}
.info-row-link:hover span:last-child { color: var(--primary); text-decoration: underline; }
.contact-card__icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-card strong { display: block; font-size: 0.72rem; color: var(--primary); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-card p { font-size: 0.88rem; color: var(--text); line-height: 1.5; }

.social-links { display: flex; align-items: center; gap: 12px; font-size: 0.82rem; color: var(--text-light); font-weight: 600; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.social-link:hover { background: var(--primary); transform: translateY(-3px); box-shadow: 0 6px 16px rgba(30,122,74,0.35); }

.success-toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary);
  color: var(--white);
  padding: 14px 28px; border-radius: 100px;
  font-weight: 600; font-size: 0.92rem;
  box-shadow: 0 8px 24px rgba(30,122,74,0.4);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 9999; white-space: nowrap;
}
.success-toast.show { transform: translateX(-50%) translateY(0); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px; padding-top: 64px; padding-bottom: 40px;
}
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__logo .logo-primary { color: var(--white); }
.footer__logo .logo-sub { color: rgba(255,255,255,0.7); }
.footer__brand p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 280px; }
.footer__links h4, .footer__products h4, .footer__address h4 {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); margin-bottom: 16px; font-weight: 700;
}
.footer__links li { margin-bottom: 10px; }
.footer__links a { font-size: 0.86rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer__links a:hover { color: var(--accent); }
.footer__products li { font-size: 0.86rem; margin-bottom: 8px; color: rgba(255,255,255,0.6); }
.footer__address p { font-size: 0.86rem; margin-bottom: 8px; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; text-align: center; }
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 900;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

@media (max-width: 480px) {
  .whatsapp-float { bottom: 16px; right: 16px; width: 48px; height: 48px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white); font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(30,122,74,0.4);
  opacity: 0; transform: translateY(20px);
  transition: all var(--transition); z-index: 900;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }

/* ===== IMAGE PLACEHOLDERS ===== */
.img-placeholder { position: relative; }
.img-placeholder-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--bg-2), #C8E6CE);
  color: var(--text-light); font-size: 0.82rem; font-weight: 500;
}
.placeholder-icon { font-size: 2.8rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* Overlay for nav mobile backdrop */
.nav__overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
}
.nav__overlay.active { display: block; }

/* ===== PRODUCTS PAGE (products.html specific) ===== */
.page-hero {
  background: linear-gradient(135deg, #0D3D22, #0F4A2A);
  padding: 140px 0 60px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800; color: var(--white);
  margin-bottom: 14px;
}
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 500px; margin: 0 auto; }

.filter-bar {
  background: var(--white);
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
  position: sticky; top: 72px; z-index: 100;
}
.filter-bar .container { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.filter-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-right: 6px; }

.tab-btn {
  padding: 9px 20px; border-radius: 100px;
  font-size: 0.84rem; font-weight: 600;
  color: var(--text-light); background: var(--bg);
  border: 2px solid transparent;
  transition: all var(--transition);
}
.tab-btn:hover { color: var(--primary); background: rgba(30,122,74,0.07); }
.tab-btn.active {
  background: var(--primary); color: var(--white);
  box-shadow: 0 4px 14px rgba(30,122,74,0.3);
}

.products-page-section { background: var(--bg); padding: 56px 0 80px; }
.products-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}
.product-card.hidden { display: none; }
.product-card.fade-in { animation: fadeUp 0.4s ease both; }

/* ===== RESPONSIVE ===== */
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about__grid,
  .mini-mall__grid,
  .franchise__inner { grid-template-columns: 1fr; gap: 48px; }
  .mini-mall__image { order: -1; }
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .inquiry__grid { grid-template-columns: 1fr; }
  .categories__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 52px 0; }

  /* Nav */
  .nav__links {
    position: fixed; top: 0; right: -100%;
    width: 75vw; max-width: 300px; height: 100vh;
    background: var(--white);
    flex-direction: column; justify-content: center; gap: 24px;
    padding: 80px 36px;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    z-index: 999;
  }
  .nav__links.open { right: 0; }
  .nav__links a { color: var(--dark) !important; font-size: 1rem; }
  .nav__hamburger { display: flex; z-index: 1000; }

  /* Categories */
  .categories__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-card { aspect-ratio: 3/4; }
  .cat-card__name { font-size: 1.25rem; }
  .cat-card__viewall-inner { padding: 20px 16px; gap: 8px; }
  .cat-card--viewall h3 { font-size: 1.3rem; }
  .cat-card__viewall-icon { font-size: 2.2rem; }

  /* Mini mall */
  .visit-store-banner { flex-direction: column; text-align: center; }
  .mini-mall__items { justify-content: center; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .inquiry-form { padding: 24px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }

  /* Products page */
  .filter-bar .container { gap: 8px; }
  .tab-btn { padding: 7px 14px; font-size: 0.78rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section { padding: 40px 0; }

  /* Nav height */
  .nav { height: 62px; }
  .carousel { margin-top: 62px; }
  .logo-name { font-size: 1rem; }

  /* Categories 2 col, shorter */
  .categories__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-card { aspect-ratio: 2/3; border-radius: var(--radius); }
  .cat-card__name { font-size: 1.05rem; margin-bottom: 8px; }
  .cat-card__btn { padding: 6px 12px; font-size: 0.74rem; }
  .cat-card__overlay { padding: 16px; }

  /* Section titles */
  .section-title { font-size: 1.7rem; }
  .section-label { font-size: 0.68rem; }

  /* Mini mall info */
  .info-row { padding: 10px 12px; gap: 10px; }

  /* Buttons */
  .btn { padding: 11px 20px; font-size: 0.85rem; }
  .btn--lg { padding: 13px 26px; font-size: 0.9rem; }

  /* Products page grid */
  .products-page-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Visit store section buttons on mobile */
  .visit-store-btns { flex-direction: column; align-items: center; }
  .product-card__body { padding: 14px; }
  .product-card__name { font-size: 0.9rem; }
  .product-card__desc { font-size: 0.78rem; }

  /* Footer */
  .footer__grid { gap: 20px; padding-top: 40px; padding-bottom: 28px; }
  .footer__bottom p { font-size: 0.75rem; }

  /* Back to top */
  .back-to-top { bottom: 16px; right: 16px; width: 40px; height: 40px; font-size: 1.2rem; }
}
