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

:root {
  --bg: #0D0B09;
  --surface: #161310;
  --surface-alt: #1E1A16;
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --gold-dark: #8B6F47;
  --accent: #D4A04A;
  --text: #E8E3DD;
  --text-muted: #9E9489;
  --text-light: #6B6359;
  --border: rgba(201, 169, 110, 0.15);
  --border-light: rgba(201, 169, 110, 0.07);
  --error: #C0392B;
  --whatsapp: #25D366;
  --glass: rgba(13, 11, 9, 0.88);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', serif;
  --xs: 4px; --sm: 8px; --md: 16px; --lg: 24px; --xl: 32px; --xxl: 48px; --xxxl: 64px; --xxxxl: 96px;
  --r-sm: 6px; --r-md: 8px; --r-lg: 12px; --r-xl: 16px; --r-xxl: 24px; --r-full: 9999px;
  --sh-sm: 0 1px 3px rgba(0,0,0,0.3);
  --sh-md: 0 4px 12px rgba(0,0,0,0.4);
  --sh-lg: 0 8px 32px rgba(0,0,0,0.45);
  --sh-xl: 0 16px 48px rgba(0,0,0,0.5);
  --tr: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --w: 1280px;
}
[data-theme="light"] {
  --bg: #F5F0EB;
  --surface: #FFFFFF;
  --surface-alt: #F0EBE5;
  --gold: #4A2C1A;
  --gold-light: #6B4226;
  --gold-dark: #8B6F47;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --text-light: #999999;
  --border: rgba(74, 44, 26, 0.1);
  --border-light: rgba(74, 44, 26, 0.06);
  --glass: rgba(255, 255, 255, 0.85);
  --sh-sm: 0 1px 3px rgba(0,0,0,0.04);
  --sh-md: 0 4px 12px rgba(0,0,0,0.06);
  --sh-lg: 0 8px 32px rgba(0,0,0,0.08);
  --sh-xl: 0 16px 48px rgba(0,0,0,0.12);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background var(--tr), color var(--tr);
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; border: none; outline: none; }
ul { list-style: none; }
.container { max-width: var(--w); margin: 0 auto; padding: 0 var(--lg); }

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: var(--r-full); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

.icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 32px; height: 32px; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: var(--sm) 0;
  background: var(--glass);
  backdrop-filter: blur(20px);
  box-shadow: var(--sh-md);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: var(--lg); }
.nav-logo { display: flex; align-items: center; gap: var(--sm); }
.nav-logo img { width: 38px; height: 38px; border-radius: var(--r-sm); object-fit: cover; }
.nav-logo span { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.02em; }
.nav-logo span em { font-style: normal; color: var(--gold); }
.nav-search { flex: 1; max-width: 400px; position: relative; display: none; }
.nav-search.visible { display: block; }
.nav-search input {
  width: 100%; padding: 8px 14px 8px 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  color: var(--text);
  font-size: 0.85rem;
  transition: border var(--tr);
}
.nav-search input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,0.1); }
.nav-search .icon { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; }
.nav-links { display: flex; align-items: center; gap: var(--xs); }
.nav-link {
  padding: 7px 14px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: var(--r-full);
  transition: all var(--tr);
}
.nav-link:hover { color: var(--text); background: var(--border-light); }
.nav-link.active { color: var(--gold); background: rgba(201,169,110,0.08); }
.nav-icons { display: flex; align-items: center; gap: var(--xs); }
.nav-icon-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-full);
  color: var(--text-muted);
  transition: all var(--tr);
}
.nav-icon-btn:hover { background: var(--border-light); color: var(--text); }

@media (max-width: 768px) {
  .nav-search { display: none !important; }
  .nav-links { gap: 2px; }
  .nav-link { padding: 6px 10px; font-size: 0.75rem; }
  .nav-logo span { font-size: 1rem; }
  .nav-logo img { width: 32px; height: 32px; }
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding-top: 90px;
  padding-bottom: var(--xxl);
  background: var(--surface);
  border-bottom: 1px solid var(--border-light);
}
.page-header .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--md); }
.page-header h1 { font-size: 1.5rem; font-weight: 700; }
.page-header-breadcrumb { font-size: 0.8rem; color: var(--text-muted); }
.page-header-breadcrumb a { color: var(--text-light); }
.page-header-breadcrumb a:hover { color: var(--gold); }
.page-header-breadcrumb span { color: var(--text-muted); }

/* ===== SECTION ===== */
.section { padding: var(--xxxxl) 0; }
.section-header { text-align: center; max-width: 560px; margin: 0 auto var(--xxxl); }
.section-tag {
  display: inline-flex; align-items: center; gap: var(--sm);
  padding: 4px 14px;
  background: var(--border-light);
  border-radius: var(--r-full);
  font-size: 0.72rem; font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: var(--md);
}
.section-tag-line { width: 18px; height: 1px; background: var(--gold); opacity: 0.3; }
.section-title {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--md);
}
.section-title .g { background: linear-gradient(135deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sm);
  font-weight: 600; border-radius: var(--r-md);
  transition: all var(--tr);
  padding: 10px 22px; font-size: 0.88rem;
}
.btn-gold { background: var(--gold); color: #0D0B09; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--sh-md); }
.btn-ghost { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 5px 12px; font-size: 0.78rem; }
.btn-icon { padding: 6px; border-radius: var(--r-full); }
.btn-whatsapp { background: var(--whatsapp); color: white; }
.btn-whatsapp:hover { background: #1DA851; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,0.2); }
.btn-danger { background: var(--error); color: white; }
.btn-danger:hover { opacity: 0.9; }

/* ===== FORMS ===== */
.form-group { display: flex; flex-direction: column; gap: var(--xs); }
.form-group label {
  font-size: 0.78rem; font-weight: 500; color: var(--text-muted);
}
.form-group input, .form-group textarea, .form-group select {
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
  font-size: 0.88rem;
  transition: border var(--tr);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}
.form-group textarea { resize: vertical; min-height: 70px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--md); }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ===== CARDS ===== */
.card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--tr);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); border-color: var(--border); }
.card-img-wrap {
  position: relative; height: 220px; overflow: hidden;
  background: var(--surface-alt);
}
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.card:hover .card-img-wrap img { transform: scale(1.06); }
.card-body { padding: var(--lg); }
.card-badge {
  position: absolute; top: var(--md); left: var(--md);
  padding: 3px 10px;
  background: var(--accent); color: #0D0B09;
  font-size: 0.68rem; font-weight: 600;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.card-brand {
  font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-light);
  margin-bottom: var(--xs);
}
.card-name { font-size: 0.95rem; font-weight: 600; margin-bottom: var(--sm); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-price { font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: var(--md); }
.card-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: var(--sm);
  width: 100%; padding: 9px;
  background: var(--whatsapp); color: white;
  font-weight: 600; font-size: 0.82rem;
  border-radius: var(--r-md);
  transition: all var(--tr);
}
.card-whatsapp:hover { background: #1DA851; }

/* ===== PRODUCT GRID ===== */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--lg);
}
.prod-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--md);
  margin-bottom: var(--xl);
}
.prod-count { font-size: 0.82rem; color: var(--text-muted); }
.prod-filters { display: flex; gap: var(--sm); flex-wrap: wrap; }
.prod-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--xxxxl) var(--lg);
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--r-xxl);
}
.prod-empty .icon { width: 48px; height: 48px; color: var(--text-light); margin-bottom: var(--md); opacity: 0.4; }
.prod-empty p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: var(--md); }

.btn-filter {
  padding: 5px 14px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r-full);
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 500;
  transition: all var(--tr);
}
.btn-filter:hover { border-color: var(--gold); color: var(--gold); }
.btn-filter.on { background: var(--gold); color: #0D0B09; border-color: var(--gold); }

/* ===== CATEGORY GRID ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--md);
}
.cat-card {
  padding: var(--xl) var(--md);
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  text-align: center;
  transition: all var(--tr);
  cursor: pointer;
  position: relative; overflow: hidden;
}
.cat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
  opacity: 0; transition: opacity var(--tr);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--border); }
.cat-card:hover::before { opacity: 1; }
.cat-card .icon { width: 30px; height: 30px; color: var(--gold); margin-bottom: var(--sm); }
.cat-card-title { font-weight: 600; font-size: 0.85rem; }
.cat-card-count { font-size: 0.72rem; color: var(--text-light); margin-top: var(--xs); }

/* ===== SIDEBAR LAYOUT ===== */
.layout-sidebar {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--xl);
  align-items: start;
}
.sidebar {
  position: sticky; top: 80px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: var(--lg);
}
.sidebar-title {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: var(--md);
  padding-bottom: var(--sm);
  border-bottom: 1px solid var(--border-light);
}
.sidebar-list { display: flex; flex-direction: column; gap: 2px; margin-bottom: var(--lg); }
.sidebar-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 10px;
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--tr);
}
.sidebar-item:hover { background: var(--border-light); color: var(--text); }
.sidebar-item.on { background: rgba(201,169,110,0.08); color: var(--gold); }
.sidebar-item-count {
  font-size: 0.72rem;
  color: var(--text-light);
  background: var(--border-light);
  padding: 1px 7px;
  border-radius: var(--r-full);
}
.sidebar-item.on .sidebar-item-count { background: rgba(201,169,110,0.15); color: var(--gold); }
@media (max-width: 768px) {
  .layout-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex; align-items: center;
  position: relative;
  background: #0A0807;
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 20% 80%, rgba(201,169,110,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 600px 600px at 80% 20%, rgba(212,160,74,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: var(--xxxl); align-items: center; padding-block: var(--xxl); }
.hero-content { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s ease 0.2s forwards; }
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--sm);
  padding: 4px 12px;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--r-full);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--lg);
}
.hero-badge-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: var(--lg);
}
.hero h1 .g { background: linear-gradient(135deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: var(--xl); max-width: 480px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--md); }
.hero-stats {
  display: flex; gap: var(--xl);
  margin-top: var(--xl);
  padding: var(--lg);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--r-lg);
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.6s ease 0.6s forwards;
}
.hero-stat { text-align: center; flex: 1; }
.hero-stat-num { font-size: 1.4rem; font-weight: 700; color: var(--gold); }
.hero-stat-label { font-size: 0.72rem; color: var(--text-light); margin-top: 2px; }
.hero-visual {
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.4s forwards;
  position: relative;
}
.hero-img {
  position: relative;
  border-radius: var(--r-xxl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
}
.hero-img img { width: 100%; height: 440px; object-fit: cover; transition: transform 0.8s; }
.hero-img:hover img { transform: scale(1.04); }
.hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,8,7,0.6), transparent 60%); }
.hero-img-tag {
  position: absolute; bottom: var(--lg); left: var(--lg);
  display: flex; align-items: center; gap: var(--sm);
  padding: 7px 16px;
  background: rgba(10,8,7,0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--gold);
}
.hero-decor {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: var(--r-lg);
  background: rgba(22,19,16,0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201,169,110,0.1);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-lg);
  animation: float 5s infinite;
}
.hero-decor--1 { top: -14px; right: -14px; }
.hero-decor--2 { bottom: 40px; left: -20px; animation-delay: 2.5s; }
.hero-decor .icon { width: 24px; height: 24px; color: var(--gold); }

@media (max-width: 1024px) {
  .hero { min-height: auto; }
  .hero .container { grid-template-columns: 1fr; gap: var(--xxl); }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .hero-img img { height: 320px; }
}
@media (max-width: 768px) {
  .hero-stats { flex-direction: column; gap: var(--md); }
  .hero-img img { height: 260px; }
}

/* ===== FEATURES ===== */
.features { background: var(--surface); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--lg); }
.feature-card {
  padding: var(--xl);
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  text-align: center;
  transition: all var(--tr);
}
.feature-card:hover { transform: translateY(-3px); border-color: var(--border); }
.feature-card .icon { width: 34px; height: 34px; color: var(--gold); margin-bottom: var(--md); }
.feature-card h3 { font-weight: 600; font-size: 0.95rem; margin-bottom: var(--sm); }
.feature-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ===== BANNER ===== */
.banner {
  background: linear-gradient(135deg, var(--gold-dark), #5A3E26);
  text-align: center;
  padding: var(--xxxxl) 0;
}
.banner h2 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 700; color: white; margin-bottom: var(--sm); }
.banner p { color: rgba(255,255,255,0.55); font-size: 0.95rem; max-width: 500px; margin: 0 auto var(--xl); }
.banner .btn { background: white; color: var(--gold-dark); padding: 12px 32px; border-radius: var(--r-full); font-weight: 600; transition: all var(--tr); }
.banner .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ===== FOOTER ===== */
.footer {
  background: #080706;
  color: rgba(255,255,255,0.7);
  padding: var(--xxxl) 0 var(--lg);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--xxxl); margin-bottom: var(--xxxl); }
.footer-brand { display: flex; align-items: center; gap: var(--sm); margin-bottom: var(--md); }
.footer-brand img { width: 30px; height: 30px; border-radius: var(--r-sm); object-fit: cover; }
.footer-brand span { font-size: 1.05rem; font-weight: 700; color: white; }
.footer-brand span em { font-style: normal; color: var(--gold); }
.footer-desc { font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.3); margin-bottom: var(--lg); max-width: 300px; }
.footer-wa {
  display: inline-flex; align-items: center; gap: var(--sm);
  padding: 7px 16px;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.12);
  border-radius: var(--r-full);
  color: var(--whatsapp);
  font-weight: 500; font-size: 0.82rem;
  transition: all var(--tr);
}
.footer-wa:hover { background: rgba(37,211,102,0.12); }
.footer h4 { font-weight: 600; font-size: 0.8rem; color: white; margin-bottom: var(--lg); text-transform: uppercase; letter-spacing: 0.06em; }
.footer-links { display: flex; flex-direction: column; gap: var(--sm); }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.3); transition: color var(--tr); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: var(--lg);
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--md);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.18);
}
.footer-admin-btn {
  display: inline-flex; align-items: center; gap: var(--sm);
  padding: 6px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-full);
  color: rgba(255,255,255,0.22);
  font-size: 0.78rem;
  transition: all var(--tr);
}
.footer-admin-btn:hover { color: var(--gold); border-color: rgba(201,169,110,0.15); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--xl); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.r { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.r.v { opacity: 1; transform: translateY(0); }
.r1 { transition-delay: 0.1s; }
.r2 { transition-delay: 0.2s; }
.r3 { transition-delay: 0.3s; }
.r4 { transition-delay: 0.4s; }
.r5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .section { padding: var(--xxl) 0; }
  .prod-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .prod-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .card-img-wrap { height: 200px; }
}

