
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f0f5f0;
  color: #1a1a2e;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

:root {

  --green: #16a34a;
  --green-l: #22c55e;
  --green-pale: #f0fdf4;
  --green-dark: #14532d;
  --green-950: #052e16;

  --accent: #f59e0b;
  --accent-l: #fbbf24;
  --accent-dark: #d97706;

  --red: #ef4444;
  --red-pale: #fef2f2;
  --blue: #3b82f6;
  --blue-pale: #eff6ff;

  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --white: #ffffff;

  --shadow-xs: 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.04);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.08), 0 8px 10px -6px rgba(0,0,0,.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.15);
  --shadow-green: 0 8px 24px rgba(22,163,74,.18);
  --shadow-accent: 0 8px 24px rgba(245,158,11,.2);

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .6; }
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(22,163,74,.15); }
  50% { box-shadow: 0 0 40px rgba(22,163,74,.3); }
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--gray-800);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
  border-bottom: 1px solid var(--gray-100);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  transition: transform .2s var(--ease);
}
.logo:hover { transform: scale(1.02); }

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.search-bar {
  flex: 1;
  max-width: 520px;
  display: flex;
  align-items: center;
  background: var(--gray-50);
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  transition: all .3s var(--ease);
  min-width: 0;
}
.search-bar:focus-within {
  border-color: var(--green);
  background: white;
  box-shadow: 0 0 0 4px rgba(22,163,74,.08);
}

.search-icon {
  color: var(--gray-400);
  margin-left: 18px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.search-bar input {
  flex: 1;
  padding: 11px 14px;
  border: none;
  outline: none;
  font-size: .9rem;
  color: var(--gray-800);
  background: transparent;
  font-family: inherit;
  min-width: 0;
  font-weight: 500;
}
.search-bar input::placeholder { color: var(--gray-400); }

.search-btn {
  padding: 11px 24px;
  background: var(--green);
  color: white;
  font-weight: 600;
  font-size: .88rem;
  transition: all .2s var(--ease);
  flex-shrink: 0;
  font-family: inherit;
  letter-spacing: .02em;
}
.search-btn:hover { background: var(--green-l); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-link {
  color: var(--gray-600);
  font-size: .88rem;
  font-weight: 600;
  transition: color .2s;
  white-space: nowrap;
}
.header-link:hover { color: var(--green); }

.header-icon-btn {
  color: var(--gray-600);
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: var(--radius);
  transition: all .2s var(--ease);
}
.header-icon-btn:hover {
  color: var(--green);
  background: var(--green-pale);
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .85rem;
  transition: all .25s var(--ease);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(22,163,74,.3);
}
.cart-btn:hover {
  background: var(--green-l);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(22,163,74,.35);
}
.cart-btn svg { width: 17px; height: 17px; }

.cart-count {
  background: var(--accent);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  animation: badgePulse .3s var(--ease-bounce);
}

.hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; width: 40px; height: 40px; border: none; background: none; cursor: pointer; padding: 8px; gap: 5px; z-index: 210; }
.hamburger span { display: block; width: 22px; height: 2.5px; background: var(--gray-800); border-radius: 2px; transition: all .25s var(--ease); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 180; opacity: 0; transition: opacity .3s; }
.mobile-menu-overlay.open { display: block; opacity: 1; }

.mobile-menu { display: none; position: fixed; top: 0; right: -300px; width: 280px; height: 100vh; background: white; z-index: 200; box-shadow: -4px 0 20px rgba(0,0,0,.1); transition: right .3s cubic-bezier(.4,0,.2,1); flex-direction: column; }
.mobile-menu.open { right: 0; display: flex; }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--gray-100); }
.mobile-menu-body { flex: 1; padding: 8px 0; overflow-y: auto; }
.mobile-menu-link { display: block; padding: 14px 24px; font-size: .95rem; font-weight: 500; color: var(--gray-700); transition: all .2s; border-left: 3px solid transparent; }
.mobile-menu-link:hover { background: var(--gray-50); color: var(--green); border-left-color: var(--green); }

@media (max-width: 768px) {
  .hamburger { display: flex !important; }
  .mobile-menu-overlay.open { display: block; }
  .mobile-menu.open { display: flex; }
  .header-nav-links { display: none; }
  .search-bar { display: none; }
  .header-actions { gap: 6px; }
  .header-inner { gap: 8px; }
}

.header-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 4px;
}
.header-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-600);
  text-decoration: none;
  white-space: nowrap;
  transition: all .2s var(--ease);
}
.header-nav-link:hover {
  background: var(--gray-100);
  color: var(--gray-900);
}
.header-nav-wa {
  color: #16a34a;
}
.header-nav-wa:hover {
  background: #dcfce7;
  color: #15803d;
}
@media (max-width: 768px) { .header-nav-links { display: none; } }

.category-nav {
  background: linear-gradient(180deg, #0a3d1c 0%, #0d4a22 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.category-nav::-webkit-scrollbar { display: none; }
.category-nav .container {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  max-width: 100%;
}
.category-nav .container::-webkit-scrollbar { display: none; }

.cat-list {
  display: flex;
  gap: 4px;
  padding: 10px 0;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}
.cat-list::-webkit-scrollbar { display: none; }

.cat-btn {
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  background: transparent;
  transition: all .25s var(--ease);
  border: 1.5px solid transparent;
  font-family: inherit;
  white-space: nowrap;
  letter-spacing: .01em;
}
.cat-btn:hover {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.1);
}
.cat-btn.active {
  background: var(--green);
  color: white;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(22,163,74,.3);
  border-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .88rem;
  transition: all .25s var(--ease);
  cursor: pointer;
  border: none;
  font-family: inherit;
  letter-spacing: .01em;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 16px; height: 16px; }
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: var(--green-l);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(22,163,74,.25);
}

.btn-green { background: var(--green); color: white; box-shadow: var(--shadow-green); }
.btn-green:hover { background: var(--green-l); transform: translateY(-1px); }

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

.btn-white { background: white; color: var(--green-dark); box-shadow: var(--shadow-sm); }
.btn-white:hover { background: var(--gray-50); transform: translateY(-1px); }

.btn-sm { padding: 7px 16px; font-size: .82rem; border-radius: var(--radius-sm); }
.btn-lg { padding: 14px 32px; font-size: .95rem; border-radius: var(--radius-lg); }
.btn-danger { background: var(--red); color: white; }
.btn-full { width: 100%; justify-content: center; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

.hero-banner {
  background: linear-gradient(90deg, var(--green) 0%, var(--green-l) 50%, var(--green) 100%);
  background-size: 200% auto;
  animation: gradientShift 4s ease infinite;
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.hero-banner a { color: var(--accent-l); text-decoration: none; font-weight: 700; margin-left: 8px; }
.hero-banner a:hover { text-decoration: underline; }

.hero {
  background: linear-gradient(160deg, #052e16 0%, #14532d 40%, #166534 70%, #15803d 100%);
  color: white;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  z-index: 0;
  line-height: 1;
  white-space: nowrap;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34,197,94,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}
  margin: 0 auto;
}

.hero-content {
  flex: 0 1 auto;
  max-width: 600px;
  animation: fadeInLeft .8s var(--ease-out) both;
}
.hero-map {
  flex: 0 0 520px;
  width: 520px;
}

@media (max-width: 992px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }
  .hero-map {
    width: 100%;
    max-width: 500px;
    flex: 1;
  }
  .hero-map iframe {
    height: 250px !important;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: .02em;
}
.hero-badge svg { width: 14px; height: 14px; }

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.03em;
}
.hero h1 span { color: var(--accent-l); }

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 640px;
  font-weight: 400;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  animation: fadeInUp .8s var(--ease-out) .3s both;
}

@media (max-width: 992px) {
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center !important;
  }
  .hero-stats {
    justify-content: center !important;
  }
}

.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-l);
  line-height: 1;
}
.hero-stat span {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  display: block;
  font-weight: 500;
}

.hero-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeInRight .8s var(--ease-out) .2s both;
}

@media (max-width: 1024px) {
  .hero-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .hero-products-grid {
    grid-template-columns: 1fr;
  }
}

.hero-product-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-xl);
  padding: 24px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all .3s var(--ease);
  animation: float 6s ease-in-out infinite;
}
.hero-product-card:nth-child(2) { animation-delay: -2s; }
.hero-product-card:nth-child(3) { animation-delay: -4s; }

.hero-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
  border-color: rgba(255,255,255,.3);
}
.hero-product-badge {
  display: inline-block;
  background: var(--accent-l);
  color: #1a1a1a;
  font-size: .7rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 16px;
}
.hero-product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  background: white;
  margin-bottom: 18px;
  mix-blend-mode: normal;
}
.hero-product-cat {
  font-size: .75rem;
  font-weight: 600;
  color: #86efac;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.hero-product-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-product-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-l);
  margin-bottom: 18px;
}
.hero-product-btn {
  width: 100%;
  padding: 12px;
  background: white;
  color: var(--green-dark);
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all .2s var(--ease);
  font-family: inherit;
}
.hero-product-btn:hover { background: var(--green-pale); }

.features-strip {
  background: transparent;
  padding: 0;
  position: relative;
  z-index: 10;
  margin-top: -60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 15px 40px rgba(0,0,0,.06);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}

.feat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border-right: 1px solid var(--gray-100);
  transition: all .25s var(--ease);
  cursor: default;
  background: white;
}
.feat-card:last-child { border-right: none; }
.feat-card:hover { background: var(--gray-50); }

.feat-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s var(--ease-bounce);
}
.feat-card:hover .feat-icon { transform: translateY(-3px); }

.feat-icon { color: var(--green); }

.feat-text strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 3px;
}
.feat-text span {
  font-size: .8rem;
  color: var(--gray-500);
  line-height: 1.4;
  font-weight: 400;
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-card { border-bottom: 1px solid rgba(255,255,255,.04); }
}
@media (max-width: 480px) { .features-grid { grid-template-columns: 1fr; } }

.section { padding: 72px 0; }

.section.why-us { padding-bottom: 44px; }
.section.why-us + .section { padding-top: 44px; }

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

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gray-800);
  letter-spacing: -.02em;
}
.section-title span { color: var(--green); }

.section-sub {
  color: var(--gray-500);
  font-size: .88rem;
  margin-top: 6px;
  font-weight: 400;
}

.cat-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cat-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 20px 24px;
  text-align: center;
  border: 1.5px solid var(--gray-100);
  cursor: pointer;
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-l));
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-green);
  transform: translateY(-6px);
}

.cat-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  transition: transform .3s var(--ease-bounce);
}
.cat-card:hover .cat-card-icon { transform: scale(1.15) rotate(4deg); }

.cat-card h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--gray-700);
  line-height: 1.3;
}

.cat-card .cat-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  transition: all .2s;
}
.cat-card:hover .cat-count { background: var(--green-pale); color: var(--green); }

@media (max-width: 1024px) { .cat-cards-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .cat-cards-grid { grid-template-columns: repeat(2, 1fr); } }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
}
.product-grid.featured-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-100);
  transition: all .35s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  position: relative;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid var(--green);
  opacity: 0;
  transition: opacity .3s;
  z-index: 1;
  pointer-events: none;
}
.product-card:hover::before { opacity: 1; }
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.product-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 80%;
  background: white;
  overflow: hidden;
}
.product-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  box-sizing: border-box;
  mix-blend-mode: multiply;
  transition: transform .5s var(--ease);
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }

.product-img-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
}
.product-img-placeholder svg { width: 48px; height: 48px; color: var(--gray-300); }

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: .7rem;
  font-weight: 700;
  z-index: 2;
  letter-spacing: .02em;
}
.badge-out { background: var(--red-pale); color: var(--red); }
.badge-low { background: #fff7ed; color: var(--accent-dark); }
.badge-new { background: var(--blue-pale); color: var(--blue); }

.product-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 140px;
}

.product-category {
  font-size: .7rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}

.product-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.4;
  margin-bottom: 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.product-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
}
.old-price {
  font-size: .82rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

.add-to-cart-btn {
  width: 100%;
  justify-content: center;
  border-radius: var(--radius) !important;
  font-size: .82rem !important;
  padding: 9px 16px !important;
  opacity: 1;
  transform: none;
  transition: all .25s var(--ease) !important;
}
.add-to-cart-btn:hover {
  transform: translateY(-1px) !important;
}

@media (hover: none) { .add-to-cart-btn { opacity: 1; transform: none; } }

.products-page { padding: 32px 0 72px; }

.products-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 32px;
  align-items: start;
}

.sidebar-filters {
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-100);
  padding: 24px;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow-xs);
}

.filter-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
}
.filter-section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.filter-title {
  font-size: .8rem;
  font-weight: 700;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 300px;
  overflow-y: auto;
}

.filter-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .2s var(--ease);
  font-size: .84rem;
  color: var(--gray-600);
  font-weight: 450;
}
.filter-item:hover { background: var(--green-pale); color: var(--green); }
.filter-item.active { background: var(--green-pale); color: var(--green); font-weight: 600; }
.filter-item svg { width: 14px; height: 14px; flex-shrink: 0; }

.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
  flex-wrap: wrap;
}

.products-count { font-size: .88rem; color: var(--gray-500); font-weight: 400; }
.products-count strong { color: var(--gray-800); font-weight: 700; }

.toolbar-right { display: flex; align-items: center; gap: 10px; }

.sort-select {
  padding: 9px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .84rem;
  background: white;
  outline: none;
  cursor: pointer;
  font-family: inherit;
  color: var(--gray-700);
  transition: border-color .2s;
}
.sort-select:focus { border-color: var(--green); }

.view-btns { display: flex; gap: 4px; }
.view-btn {
  padding: 8px;
  border-radius: var(--radius-sm);
  color: var(--gray-400);
  transition: all .2s var(--ease);
}
.view-btn.active, .view-btn:hover { background: var(--green-pale); color: var(--green); }
.view-btn svg { width: 18px; height: 18px; }

.product-grid.list-view { grid-template-columns: 1fr; }
.product-grid.list-view .product-card { flex-direction: row; }
.product-grid.list-view .product-img-wrap { width: 180px; flex-shrink: 0; aspect-ratio: auto; height: 150px; padding-top: 0; }

.page-search { display: flex; gap: 10px; margin-bottom: 20px; }
.page-search input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .88rem;
  outline: none;
  font-family: inherit;
  transition: border-color .2s;
}
.page-search input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,.08); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--gray-400);
  margin-bottom: 24px;
  flex-wrap: wrap;
  padding: 12px 0 0;
  font-weight: 450;
}
.breadcrumb a { color: var(--green); transition: color .15s; }
.breadcrumb a:hover { color: var(--green-dark); text-decoration: underline; }
.breadcrumb svg { width: 14px; height: 14px; }
.breadcrumb-sep { color: var(--gray-300); font-size: .75rem; }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  margin-bottom: 48px;
}

.main-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 75%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: white;
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.main-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  box-sizing: border-box;
  mix-blend-mode: multiply;
  transition: opacity .3s;
}

.thumb-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.thumb-row img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  background: white;
  mix-blend-mode: multiply;
  border-radius: var(--radius);
  border: 2.5px solid var(--gray-200);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.thumb-row img.active, .thumb-row img:hover {
  border-color: var(--green);
  box-shadow: 0 2px 8px rgba(22,163,74,.15);
}

.product-category-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.product-detail-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}

.product-detail-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
}
.product-detail-price {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -.01em;
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.stock-badge svg { width: 14px; height: 14px; }
.stock-badge.in { background: var(--green-pale); color: var(--green); }
.stock-badge.low { background: #fff7ed; color: var(--accent-dark); }
.stock-badge.out { background: var(--red-pale); color: var(--red); }

.qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.qty-label { font-size: .85rem; font-weight: 600; color: var(--gray-600); }
.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.qty-ctrl button {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  color: var(--gray-600);
  transition: all .2s;
  font-size: 1.1rem;
}
.qty-ctrl button:hover { background: var(--gray-200); }
.qty-ctrl input {
  width: 52px;
  height: 38px;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--gray-200);
  border-right: 1.5px solid var(--gray-200);
  outline: none;
  font-size: .95rem;
  font-family: inherit;
  font-weight: 600;
}

.detail-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.whatsapp-btn-detail {
  background: #25d366;
  color: white;
  box-shadow: 0 4px 14px rgba(37,211,102,.25);
}
.whatsapp-btn-detail:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}

.product-meta {
  border-top: 1.5px solid var(--gray-100);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.meta-row { display: flex; gap: 10px; font-size: .85rem; }
.meta-label { color: var(--gray-400); min-width: 90px; font-weight: 500; }
.meta-val { color: var(--gray-700); font-weight: 600; }

.product-desc {
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-100);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-xs);
}
.product-desc h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 18px; color: var(--gray-800); }
.product-desc p { color: var(--gray-600); line-height: 1.85; font-size: .92rem; }

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  background: white;
  z-index: 201;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}
.cart-sidebar.open { transform: translateX(0); }
@media (max-width: 480px) { .cart-sidebar { width: 100%; } }

.cart-header {
  padding: 22px 24px;
  border-bottom: 1.5px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h2 {
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-header h2 svg { width: 20px; height: 20px; color: var(--green); }

.close-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--gray-400);
  transition: all .2s var(--ease);
}
.close-btn:hover { background: var(--gray-100); color: var(--gray-800); }
.close-btn svg { width: 18px; height: 18px; }

.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; padding: 56px 0; color: var(--gray-400); }
.cart-empty svg { width: 48px; height: 48px; margin: 0 auto 14px; opacity: .3; }

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
  animation: fadeInUp .3s var(--ease) both;
}
.cart-item:last-child { border-bottom: none; }

.cart-item-img {
  width: 68px;
  height: 68px;
  border-radius: var(--radius);
  object-fit: contain;
  background: white;
  mix-blend-mode: multiply;
  border: 1px solid var(--gray-200);
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-price { font-size: .82rem; color: var(--gray-500); margin-bottom: 10px; font-weight: 450; }

.cart-item-controls { display: flex; align-items: center; gap: 8px; }
.cart-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: all .2s;
  font-weight: 600;
}
.cart-qty-btn:hover { background: var(--green-pale); color: var(--green); }
.cart-qty { font-size: .88rem; font-weight: 700; min-width: 24px; text-align: center; }
.cart-item-total {
  font-size: .9rem;
  font-weight: 700;
  color: var(--green-dark);
  align-self: center;
  flex-shrink: 0;
}

.cart-remove {
  color: var(--gray-300);
  transition: all .2s;
  align-self: flex-start;
  margin-top: 2px;
  padding: 4px;
  border-radius: var(--radius-sm);
}
.cart-remove:hover { color: var(--red); background: var(--red-pale); }
.cart-remove svg { width: 16px; height: 16px; }

.cart-footer { padding: 22px 24px; border-top: 1.5px solid var(--gray-100); }
.cart-summary-row { display: flex; justify-content: space-between; font-size: .88rem; color: var(--gray-500); margin-bottom: 8px; }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 18px;
  padding-top: 10px;
  border-top: 1.5px solid var(--gray-100);
}

.free-shipping-bar {
  background: var(--green-pale);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: .78rem;
  color: var(--green);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.free-shipping-bar svg { width: 14px; height: 14px; }

.cart-page { padding: 40px 0 72px; }
.cart-page-grid { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }

.cart-table {
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-100);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.cart-table-header {
  padding: 16px 24px;
  border-bottom: 1.5px solid var(--gray-100);
  font-size: .78rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .08em;
  display: grid;
  grid-template-columns: 1fr 120px 120px 40px;
  gap: 16px;
  background: var(--gray-50);
}
.cart-table-row {
  padding: 18px 24px;
  border-bottom: 1px solid var(--gray-100);
  display: grid;
  grid-template-columns: 1fr 120px 120px 40px;
  gap: 16px;
  align-items: center;
  transition: background .2s;
}
.cart-table-row:hover { background: var(--gray-50); }
.cart-table-row:last-child { border-bottom: none; }

.cart-prod-cell { display: flex; align-items: center; gap: 16px; }
.cart-prod-img {
  width: 76px;
  height: 76px;
  border-radius: var(--radius);
  object-fit: contain;
  background: white;
  mix-blend-mode: multiply;
  border: 1px solid var(--gray-200);
  flex-shrink: 0;
}
.cart-prod-name { font-size: .88rem; font-weight: 600; color: var(--gray-800); margin-bottom: 4px; }
.cart-prod-price { font-size: .8rem; color: var(--gray-400); font-weight: 450; }

.cart-order-summary {
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-100);
  padding: 28px;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow-xs);
}
.cart-order-summary h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 22px; }

.summary-row { display: flex; justify-content: space-between; font-size: .88rem; color: var(--gray-500); margin-bottom: 10px; }
.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-800);
  padding-top: 14px;
  border-top: 1.5px solid var(--gray-100);
  margin-top: 4px;
  margin-bottom: 22px;
}

.checkout-page { padding: 40px 0 72px; }
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }

.checkout-section {
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-100);
  padding: 32px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-xs);
}
.checkout-section h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkout-section h3 svg { width: 18px; height: 18px; color: var(--green); }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 7px;
}

.form-control {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: inherit;
  outline: none;
  transition: all .2s var(--ease);
  color: var(--gray-800);
}
.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(22,163,74,.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.payment-options { display: flex; flex-direction: column; gap: 12px; }
.payment-option {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  cursor: pointer;
  transition: all .25s var(--ease);
  display: flex;
  align-items: center;
  gap: 14px;
}
.payment-option:hover { border-color: var(--green); }
.payment-option.selected {
  border-color: var(--green);
  background: var(--green-pale);
  box-shadow: 0 0 0 3px rgba(22,163,74,.08);
}
.payment-option input[type=radio] { accent-color: var(--green); width: 16px; height: 16px; }
.payment-option-label { font-size: .9rem; font-weight: 600; color: var(--gray-700); }
.payment-option-sub { font-size: .78rem; color: var(--gray-400); }
.payment-option svg { width: 20px; height: 20px; color: var(--green); }
.card-fields { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--gray-100); }

.order-summary-box {
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-100);
  padding: 28px;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow-xs);
}

.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--gray-800);
  color: white;
  padding: 14px 22px;
  border-radius: var(--radius-lg);
  font-size: .88rem;
  font-weight: 500;
  z-index: 999;
  transform: translateY(24px) scale(.95);
  opacity: 0;
  transition: all .35s var(--ease-bounce);
  max-width: 360px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(8px);
}
.toast svg { width: 18px; height: 18px; flex-shrink: 0; }
.toast.show { transform: translateY(0) scale(1); opacity: 1; }
.toast.success { background: var(--green); }
.toast.error { background: var(--red); }

.about-hero {
  background: linear-gradient(135deg, #0f3622 0%, #064e3b 100%);
  color: white;
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34,197,94,.1) 0%, transparent 70%);
  border-radius: 50%;
}
.about-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 14px; letter-spacing: -.02em; }
.about-hero p { font-size: 1.1rem; opacity: .8; max-width: 600px; margin: 0 auto; font-weight: 400; }

.about-section { padding: 72px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 380px; object-fit: cover; }
.about-text h2 { font-size: 1.9rem; font-weight: 800; color: var(--gray-800); margin-bottom: 18px; letter-spacing: -.02em; }
.about-text p { color: var(--gray-600); line-height: 1.85; margin-bottom: 18px; font-size: .95rem; }

.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 32px; }
.value-item { display: flex; align-items: flex-start; gap: 14px; }
.value-icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-icon svg { width: 20px; height: 20px; color: var(--green); }
.value-item h4 { font-size: .88rem; font-weight: 700; color: var(--gray-800); margin-bottom: 4px; }
.value-item p { font-size: .8rem; color: var(--gray-500); }

.team-section { background: var(--gray-50); padding: 72px 0; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 52px; }
.stat-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-xs);
  transition: all .3s var(--ease);
}
.stat-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-box strong { display: block; font-size: 2.4rem; font-weight: 800; color: var(--green); margin-bottom: 8px; }
.stat-box span { font-size: .85rem; color: var(--gray-500); font-weight: 500; }

.faq-hero {
  background: linear-gradient(135deg, #0f3622 0%, #064e3b 100%);
  color: white;
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.faq-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 14px; letter-spacing: -.02em; }
.faq-hero p { font-size: 1.1rem; opacity: .8; font-weight: 400; }

.faq-section { padding: 72px 0; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-100);
  overflow: hidden;
  transition: all .3s var(--ease);
  box-shadow: var(--shadow-xs);
}
.faq-item:hover { border-color: var(--gray-200); }
.faq-item.open { border-color: var(--green); box-shadow: var(--shadow-green); }

.faq-question {
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--gray-800);
  transition: all .2s;
  gap: 18px;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; transition: transform .35s var(--ease); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-item.open .faq-question { color: var(--green); }

.faq-answer { padding: 0 26px; max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .4s var(--ease); }
.faq-item.open .faq-answer { max-height: 500px; padding: 0 26px 24px; }
.faq-answer p { color: var(--gray-600); line-height: 1.85; font-size: .9rem; }

.footer {
  background: linear-gradient(180deg, #052e16 0%, #041f10 100%);
  color: white;
  padding: 40px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr 1.8fr;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-logo {
  height: 46px;
  width: auto;
  border-radius: var(--radius);
  background: white;
  padding: 5px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 300px;
  font-weight: 400;
}

.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badges-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-badges {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.footer-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-badge img {
  max-height: 64px;
  width: auto;
  display: block;
}
.footer-badge-link {
  min-width: auto;
}
.footer-badge-link img {
  max-height: 100px;
}
.payment-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: center;
  flex: 1;
}
.payment-logos img {
  max-height: 30px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}
.footer-note {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  max-width: 400px;
  line-height: 1.55;
  text-align: left;
}
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-badges-col { align-items: center; text-align: center; }
  .footer-badges { align-items: center; }
  .footer-note { text-align: center; max-width: 100%; }
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: .8rem;
  font-weight: 600;
  transition: all .25s var(--ease);
}
.social-btn svg { width: 15px; height: 15px; }
.whatsapp-btn { background: #25d366; color: white; box-shadow: 0 2px 8px rgba(37,211,102,.25); }
.whatsapp-btn:hover { background: #1ebe5d; transform: translateY(-1px); }
.instagram-btn {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.12);
}
.instagram-btn:hover { background: rgba(255,255,255,.15); color: white; }

.footer-col h4 {
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  transition: all .2s;
  font-weight: 400;
}
.footer-col ul li a:hover { color: var(--green-l); transform: translateX(3px); display: inline-block; }

.contact-list { display: flex; flex-direction: column; gap: 10px; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .84rem;
  color: rgba(255,255,255,.5);
  font-weight: 400;
}
.contact-list li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: var(--green-l); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.3); font-weight: 400; }

.admin-link { font-size: .78rem; color: rgba(255,255,255,.15); transition: color .2s; }
.admin-link:hover { color: rgba(255,255,255,.4); }

.loading { display: flex; align-items: center; justify-content: center; padding: 100px; }
.spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

.empty-state { text-align: center; padding: 100px 20px; color: var(--gray-400); }
.empty-state svg { width: 64px; height: 64px; margin: 0 auto 20px; opacity: .3; }
.empty-state h3 { font-size: 1.15rem; font-weight: 600; color: var(--gray-600); margin-bottom: 10px; }
.page-title { font-size: 1.7rem; font-weight: 800; color: var(--gray-800); margin-bottom: 4px; letter-spacing: -.02em; }
.total-count { font-size: 1rem; font-weight: 400; color: var(--gray-400); }

.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination button { min-width: 40px; height: 40px; border-radius: var(--radius); font-size: .85rem; font-weight: 600; }

.order-success { text-align: center; padding: 100px 20px; }
.order-success-icon {
  width: 88px;
  height: 88px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  animation: scaleIn .5s var(--ease-bounce) both;
}
.order-success-icon svg { width: 44px; height: 44px; color: var(--green); }
.order-success h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 14px;
  animation: fadeInUp .5s var(--ease-out) .1s both;
}
.order-success p {
  color: var(--gray-500);
  margin-bottom: 8px;
  animation: fadeInUp .5s var(--ease-out) .2s both;
}
.order-number-box {
  background: var(--green-pale);
  border: 1.5px solid rgba(22,163,74,.15);
  border-radius: var(--radius-lg);
  padding: 14px 28px;
  display: inline-block;
  font-weight: 700;
  color: var(--green);
  margin: 20px 0 36px;
  font-size: 1.15rem;
  animation: fadeInUp .5s var(--ease-out) .3s both;
}

.cta-banner {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  padding: 32px 40px;
  margin: 64px auto;
  max-width: 960px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px -5px rgba(22,163,74,.15);
  border: 1px solid rgba(34,197,94,.2);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,.6) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-text h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #064e3b;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.cta-text p { color: #166534; font-size: .9rem; line-height: 1.6; font-weight: 500; }

.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.cta-wa-btn {
  background: #25d366;
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .25s var(--ease);
  box-shadow: 0 4px 18px rgba(37,211,102,.3);
}
.cta-wa-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}
.cta-products-btn {
  background: white;
  color: #064e3b;
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: .88rem;
  border: 1.5px solid #bbf7d0;
  transition: all .25s var(--ease);
  box-shadow: var(--shadow-sm);
}
.cta-products-btn:hover {
  background: #f0fdf4;
  border-color: #86efac;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .cta-text h2 { font-size: 1.5rem; }
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  backdrop-filter: blur(8px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.lightbox-overlay.open { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); user-select: none; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: .6;
  transition: opacity .2s;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.lightbox-close:hover { opacity: 1; background: rgba(255,255,255,.1); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  opacity: .5;
  transition: all .2s;
  background: none;
  border: none;
  padding: 12px 18px;
  user-select: none;
  border-radius: var(--radius);
}
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; background: rgba(255,255,255,.08); }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: .82rem;
  font-weight: 500;
  background: rgba(0,0,0,.4);
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

img[data-src] { opacity: 0; transition: opacity .4s var(--ease); }
img.lazy-loaded { opacity: 1; }

.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--gray-200);
  z-index: 150;
  padding: 6px 0 max(6px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}
.mobile-bottom-nav .mbn-items { display: flex; align-items: stretch; }
.mbn-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 4px;
  color: var(--gray-400);
  font-size: .63rem;
  font-weight: 600;
  transition: all .2s var(--ease);
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  text-decoration: none;
  position: relative;
}
.mbn-item svg { width: 22px; height: 22px; transition: transform .2s var(--ease-bounce); }
.mbn-item:hover, .mbn-item.active { color: var(--green); }
.mbn-item.active svg { transform: scale(1.1); }
.mbn-item--wa { color: #16a34a; }
.mbn-item--wa:hover { color: #15803d; }

.mbn-cart-badge { position: relative; }
.mbn-cart-badge .mbn-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  font-size: .58rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: badgePulse .3s var(--ease-bounce);
}

@media (max-width: 768px) {
  .mobile-bottom-nav { display: block; }
  body { padding-bottom: 64px; }
  .header-actions .cart-btn { display: none; }
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.page-loader.active { opacity: 1; pointer-events: all; }
.page-loader-spinner {
  width: 44px;
  height: 44px;
  border: 3.5px solid var(--gray-200);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

.user-menu-wrap { position: relative; }
.user-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: white;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-700);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.user-btn:hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: var(--shadow-sm);
}
.user-btn svg { flex-shrink: 0; }

.user-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  background: white;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  min-width: 180px;
  z-index: 500;
  overflow: hidden;
  animation: fadeInDown .2s var(--ease) both;
}
.user-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 18px;
  background: none;
  border: none;
  font-size: .88rem;
  cursor: pointer;
  color: var(--gray-700);
  transition: all .15s;
  font-weight: 500;
}
.user-dropdown button:hover { background: var(--green-pale); color: var(--green); }
.user-dropdown-name {
  padding: 12px 18px 8px;
  font-size: .82rem;
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-100);
  font-weight: 600;
}

.auth-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease);
}
.auth-modal-overlay.open { opacity: 1; pointer-events: all; }

.auth-modal {
  background: white;
  border-radius: var(--radius-2xl);
  padding: 40px 36px 32px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px) scale(.97);
  transition: all .3s var(--ease-bounce);
}
.auth-modal-overlay.open .auth-modal { transform: translateY(0) scale(1); }

.auth-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-400);
  line-height: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all .2s;
}
.auth-modal-close:hover { color: var(--gray-700); background: var(--gray-100); }

.auth-title { font-size: 1.35rem; font-weight: 800; color: var(--gray-800); margin-bottom: 22px; }

.auth-field { margin-bottom: 16px; }
.auth-field label { display: block; font-size: .82rem; font-weight: 600; color: var(--gray-600); margin-bottom: 6px; }
.auth-field input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .92rem;
  outline: none;
  transition: all .2s;
  box-sizing: border-box;
  font-family: inherit;
}
.auth-field input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(22,163,74,.08);
}

.auth-captcha { margin-bottom: 16px; }

.auth-btn {
  width: 100%;
  padding: 12px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s var(--ease);
  margin-bottom: 14px;
  box-shadow: var(--shadow-green);
  font-family: inherit;
}
.auth-btn:hover { background: var(--green-l); transform: translateY(-1px); }
.auth-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.auth-switch { text-align: center; font-size: .85rem; color: var(--gray-500); }
.auth-switch a { color: var(--green); font-weight: 600; text-decoration: none; }
.auth-switch a:hover { text-decoration: underline; }

.auth-error {
  background: var(--red-pale);
  border: 1px solid #fecaca;
  color: var(--red);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: .84rem;
  margin-bottom: 16px;
  font-weight: 500;
  animation: fadeInDown .3s var(--ease) both;
}

@media (max-width: 480px) {
  .auth-modal { padding: 28px 20px 22px; margin: 12px; border-radius: var(--radius-xl); }
  .user-btn span { display: none; }
}

.auth-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
  background: var(--gray-50);
}
.auth-card {
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  padding: 44px 40px;
  width: 100%;
  max-width: 440px;
  animation: scaleIn .4s var(--ease-out) both;
}
.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.auth-tabs {
  display: flex;
  border-bottom: 2px solid var(--gray-100);
  margin-bottom: 32px;
}
.auth-tab {
  flex: 1;
  padding: 12px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--gray-400);
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all .2s var(--ease);
  font-family: inherit;
}
.auth-tab.active { color: var(--green); border-bottom-color: var(--green); }
.auth-tab:hover:not(.active) { color: var(--gray-600); }
.auth-form .form-group { margin-bottom: 18px; }
.auth-form label { display: block; font-size: .82rem; font-weight: 600; color: var(--gray-600); margin-bottom: 7px; }
@media (max-width: 480px) { .auth-card { padding: 32px 22px; } }

.why-us {
  background: #f0f5f0;
  padding: 48px 0 64px;
  position: relative;
  z-index: 2;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -48px;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(to bottom, transparent, #f0f5f0);
  pointer-events: none;
  z-index: 2;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.why-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1.5px solid var(--gray-100);
  transition: all .3s var(--ease);
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-l));
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-green);
  transform: translateY(-6px);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green);
  transition: all .3s var(--ease-bounce);
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(4deg); background: var(--green); color: white; }

.why-card h3 { font-size: .95rem; font-weight: 700; color: var(--gray-800); margin-bottom: 8px; }
.why-card p { font-size: .83rem; color: var(--gray-500); line-height: 1.7; font-weight: 400; }

@media (max-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

.mobile-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease);
}
.mobile-search-overlay.open { opacity: 1; pointer-events: all; }

.mobile-search-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: 24px;
  width: calc(100% - 32px);
  max-width: 480px;
  box-shadow: var(--shadow-xl);
  transform: translateY(-20px);
  transition: transform .3s var(--ease-bounce);
}
.mobile-search-overlay.open .mobile-search-box { transform: translateY(0); }

.mobile-search-box h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--gray-800);
}
.mobile-search-box input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  outline: none;
  font-family: inherit;
  transition: border-color .2s;
}
.mobile-search-box input:focus { border-color: var(--green); }
.mobile-search-box .search-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

@media (max-width: 1024px) {
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .hero-content p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .products-layout { grid-template-columns: 1fr; }
  .sidebar-filters { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .product-grid.featured-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; gap: 12px; }
  .search-bar { order: 3; width: 100%; max-width: 100%; border-radius: var(--radius); }
  .header-actions .header-link { display: none; }
  .hero { padding: 56px 0 48px; }
  .hero h1 { font-size: 2.2rem; }
  .section { padding: 48px 0; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .cart-page-grid { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cart-sidebar { width: 100%; }
  .cat-cards-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .product-grid.featured-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero { padding: 40px 0; }
  .hero h1 { font-size: 1.75rem; }
  .hero-content p { font-size: .95rem; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  .section-title { font-size: 1.4rem; }
  .container { padding: 0 16px; }
}

.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 400% 100%;
  animation: shimmer 1.5s ease infinite;
  border-radius: var(--radius);
}

.skeleton-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-100);
}
.skeleton-img { width: 100%; padding-top: 80%; }
.skeleton-text { height: 14px; margin: 12px 16px 8px; width: 70%; }
.skeleton-text-sm { height: 10px; margin: 0 16px 16px; width: 45%; }
.skeleton-price { height: 20px; margin: 8px 16px 16px; width: 35%; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

::selection {
  background: rgba(22,163,74,.15);
  color: var(--green-dark);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
