/* ===== RESET & ROOT ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --white:        #FFFFFF;
  --off-white:    #F5F3EE;
  --light:        #EDEAE0;
  --border:       #DEDAD0;
  --text:         #111111;
  --text-2:       #555550;
  --text-3:       #999990;
  --dark:         #111111;
  --dark-2:       #1C1C1C;
  --dark-3:       #2A2A2A;
  --gold:         #C9A84C;
  --gold-light:   #DEC06A;
  --gold-dark:    #A8872A;
  --gold-pale:    rgba(201,168,76,.12);
  --silver:       #9A9A9A;
  --silver-light: #C8C8C8;
  --green:        #25D366;
  --green-dark:   #128C7E;
  --font-display: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;
  --radius:       12px;
  --radius-sm:    8px;
  --radius-lg:    20px;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.08);
  --shadow:       0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.16);
  --shadow-gold:  0 8px 32px rgba(201,168,76,.30);
  --tr:           0.3s cubic-bezier(.4,0,.2,1);
  --hh:           72px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== UTILS ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.section-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}

.section-header { text-align: center; max-width: 560px; margin: 0 auto 64px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem); font-weight: 700;
  color: var(--dark); line-height: 1.2; margin-bottom: 16px;
}
.section-header p { color: var(--text-2); font-size: 1.05rem; }

/* ===== REVEAL ===== */
.reveal { opacity: 1; transform: none; transition: opacity .65s ease, transform .65s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; background: var(--dark); color: var(--white);
  font-size: .9375rem; font-weight: 500; border-radius: var(--radius);
  border: 2px solid var(--dark); transition: var(--tr);
}
.btn-primary:hover { background: var(--dark-2); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-primary.btn-lg { padding: 16px 36px; font-size: 1rem; font-weight: 600; }

.btn-amber {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: var(--gold); color: var(--dark);
  font-size: .9375rem; font-weight: 700; border-radius: var(--radius);
  border: 2px solid var(--gold); transition: var(--tr); letter-spacing: .02em;
}
.btn-amber:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-gold); }

.btn-outline-wa {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 24px; border: 2px solid var(--border); border-radius: var(--radius);
  font-size: .9375rem; font-weight: 500; color: var(--text); transition: var(--tr);
}
.btn-outline-wa svg { color: var(--green); }
.btn-outline-wa:hover { border-color: var(--green); color: var(--green-dark); background: rgba(37,211,102,.06); transform: translateY(-1px); }

.btn-icon {
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); color: var(--text); transition: var(--tr); position: relative;
}
.btn-icon:hover { background: var(--off-white); }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--hh); transition: background .3s ease, box-shadow .3s ease;
}
.header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 40px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-mark {
  width: 40px; height: 40px; background: var(--dark); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); font-family: var(--font-display);
  font-weight: 700; font-size: 1rem; letter-spacing: -.02em;
  border: 1px solid rgba(201,168,76,.3);
}
.logo-mark-amber { background: var(--gold); color: var(--dark); border: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-size: .6875rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--text-2); }
.logo-brand { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--dark); letter-spacing: -.01em; }

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav-link { padding: 8px 14px; font-size: .9375rem; font-weight: 500; color: var(--text-2); border-radius: var(--radius-sm); transition: var(--tr); }
.nav-link:hover { color: var(--dark); background: var(--off-white); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.cart-count {
  position: absolute; top: 4px; right: 4px;
  width: 18px; height: 18px; background: var(--gold); color: var(--dark);
  font-size: .65rem; font-weight: 700; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: var(--tr);
}
.cart-count.hidden { opacity: 0; transform: scale(0); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 42px; height: 42px; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); transition: var(--tr);
}
.hamburger:hover { background: var(--off-white); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--tr); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed; top: var(--hh); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 16px 24px; display: flex; flex-direction: column; gap: 4px;
  z-index: 99; transform: translateY(-110%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-link { padding: 13px 16px; font-size: 1rem; font-weight: 500; color: var(--text); border-radius: var(--radius-sm); transition: var(--tr); }
.mobile-link:hover { background: var(--off-white); color: var(--dark); }

/* ===== CART SIDEBAR ===== */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 200; opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(400px, 100vw);
  background: var(--white); z-index: 201;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-lg);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px; border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-family: var(--font-display); font-size: 1.375rem; font-weight: 700; color: var(--dark); }
.cart-close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); color: var(--text-2); transition: var(--tr); }
.cart-close:hover { background: var(--off-white); color: var(--text); }

.cart-items { flex: 1; overflow-y: auto; padding: 16px; }

.cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 300px; text-align: center; gap: 12px; color: var(--text-3);
}
.cart-empty svg { color: var(--border); }
.cart-empty p { font-size: 1.0625rem; font-weight: 500; color: var(--text-2); }
.cart-empty span { font-size: .875rem; }

.cart-item {
  display: flex; gap: 12px; padding: 12px; border-radius: var(--radius);
  background: var(--off-white); margin-bottom: 8px;
  animation: slideIn .3s ease;
}
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

.cart-item-img { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: .875rem; font-weight: 500; color: var(--text); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-size: .875rem; font-weight: 700; color: var(--gold-dark); }
.cart-item-controls { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn { width: 26px; height: 26px; border-radius: 50%; background: var(--border); color: var(--text); font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: var(--tr); }
.qty-btn:hover { background: var(--gold); color: var(--dark); }
.qty-num { font-size: .875rem; font-weight: 600; min-width: 20px; text-align: center; }
.remove-item { margin-left: auto; color: var(--text-3); transition: color var(--tr); }
.remove-item:hover { color: #ef4444; }

.cart-footer { padding: 20px 24px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
.cart-total { display: flex; justify-content: space-between; align-items: center; }
.cart-total span { color: var(--text-2); font-size: .9375rem; }
.cart-total strong { font-size: 1.375rem; color: var(--dark); font-weight: 700; }

.btn-whatsapp-cart {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 16px; background: var(--green); color: var(--white);
  font-size: 1rem; font-weight: 600; border-radius: var(--radius); transition: var(--tr);
}
.btn-whatsapp-cart:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,211,102,.35); }
.btn-clear-cart { text-align: center; font-size: .875rem; color: var(--text-3); padding: 8px; transition: color var(--tr); }
.btn-clear-cart:hover { color: #ef4444; }

/* ===== SEARCH MODAL ===== */
.search-modal {
  position: fixed; inset: 0; background: rgba(255,255,255,.98); backdrop-filter: blur(8px);
  z-index: 300; display: flex; align-items: flex-start; justify-content: center;
  padding-top: 120px; opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.search-modal.open { opacity: 1; pointer-events: all; }
.search-modal-inner { width: 100%; max-width: 640px; padding: 0 24px; }
.search-box {
  display: flex; align-items: center; gap: 12px; background: var(--white);
  border: 2px solid var(--gold); border-radius: var(--radius);
  padding: 16px 20px; margin-bottom: 20px;
}
.search-box svg:first-child { color: var(--gold); flex-shrink: 0; }
#searchInput { flex: 1; border: none; outline: none; font-family: var(--font-body); font-size: 1.125rem; color: var(--text); background: transparent; }
#searchInput::placeholder { color: var(--text-3); }
#searchClose { color: var(--text-3); transition: color var(--tr); }
#searchClose:hover { color: var(--text); }
.search-results { display: flex; flex-direction: column; gap: 8px; max-height: 50vh; overflow-y: auto; }
.search-result-item { display: flex; align-items: center; gap: 16px; padding: 12px; border-radius: var(--radius); background: var(--off-white); cursor: pointer; transition: var(--tr); }
.search-result-item:hover { background: var(--light); }
.search-result-img { width: 56px; height: 56px; border-radius: var(--radius-sm); object-fit: cover; }
.search-result-info h4 { font-size: .9375rem; font-weight: 500; }
.search-result-info p { font-size: .875rem; color: var(--gold-dark); font-weight: 600; }
.search-no-results { text-align: center; color: var(--text-3); padding: 40px 0; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding-top: var(--hh); position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 55%);
}
.hero-bg::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .5;
}
.hero::after {
  content: ''; position: absolute; top: 15%; right: 50%;
  width: 1px; height: 65%; background: var(--border); pointer-events: none;
}

.hero-content {
  position: relative; z-index: 1;
  padding: 80px 80px 80px max(24px, calc((100vw - 1280px)/2 + 24px));
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.hero-tag::before { content: ''; width: 28px; height: 2px; background: var(--gold); }

.hero-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; color: var(--dark); line-height: 1.1;
  letter-spacing: -.025em; margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-subtitle { font-size: 1.0625rem; color: var(--text-2); line-height: 1.7; margin-bottom: 40px; max-width: 460px; }

.hero-actions { display: flex; align-items: center; gap: 16px; margin-bottom: 56px; flex-wrap: wrap; }

.hero-stats { display: flex; align-items: center; gap: 32px; }
.stat strong { display: block; font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; color: var(--dark); line-height: 1; margin-bottom: 4px; }
.stat span { font-size: .8125rem; color: var(--text-3); }
.stat-div { width: 1px; height: 40px; background: var(--border); }

.hero-visual { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; padding: 80px 48px; height: 100%; }
.hero-img-wrap { position: relative; width: 100%; max-width: 520px; }
.hero-img-wrap img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

.hero-badge {
  position: absolute; bottom: 32px; left: -24px;
  background: var(--dark); border-radius: var(--radius); padding: 16px 22px;
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: var(--shadow-lg);
}
.hero-badge span { font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.hero-badge strong { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--white); }

/* ===== CATEGORIES ===== */
.categories-section { padding: 100px 0; background: var(--dark); }
.categories-section .section-header h2 { color: var(--white); }
.categories-section .section-header p { color: rgba(255,255,255,.5); }

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

.cat-card {
  background: var(--dark-2); border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-lg); padding: 36px 28px;
  cursor: pointer; transition: var(--tr); position: relative; overflow: hidden;
}
.cat-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transition: transform .3s ease; transform-origin: left;
}
.cat-card:hover { border-color: rgba(201,168,76,.5); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.cat-card:hover::after { transform: scaleX(1); }

.cat-icon {
  width: 56px; height: 56px; background: rgba(201,168,76,.12); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: var(--tr);
}
.cat-icon svg { width: 26px; height: 26px; color: var(--gold); }
.cat-card:hover .cat-icon { background: var(--gold); }
.cat-card:hover .cat-icon svg { color: var(--dark); }

.cat-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.cat-card p { font-size: .875rem; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.cat-count { font-size: .72rem; font-weight: 600; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; }

/* ===== PRODUCTS ===== */
.products-section { padding: 100px 0; background: var(--white); }

.filter-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }
.filter-btn {
  padding: 10px 22px; border-radius: 100px; font-size: .875rem; font-weight: 500;
  color: var(--text-2); background: var(--off-white); border: 2px solid transparent; transition: var(--tr);
}
.filter-btn:hover { color: var(--dark); background: var(--light); }
.filter-btn.active { background: var(--dark); color: var(--white); border-color: var(--dark); }

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

.product-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); transition: var(--tr);
  animation: fadeUp .5s ease both; display: flex; flex-direction: column;
}
.product-card:hover { border-color: transparent; transform: translateY(-6px); box-shadow: var(--shadow-lg); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.product-img-wrapper { position: relative; overflow: hidden; background: var(--off-white); aspect-ratio: 1; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-img { transform: scale(1.06); }

.product-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; background: var(--gold); color: var(--dark);
  font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; border-radius: 100px;
}

.product-actions-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 14px;
  background: linear-gradient(to top, rgba(17,17,17,.85), transparent);
  transform: translateY(100%); transition: transform .3s ease;
}
.product-card:hover .product-actions-overlay { transform: translateY(0); }

.btn-add-cart {
  width: 100%; padding: 11px; background: var(--gold); color: var(--dark);
  border-radius: var(--radius-sm); font-size: .875rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 8px; transition: var(--tr);
}
.btn-add-cart:hover { background: var(--gold-light); }

.product-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-category { font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.product-name { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 14px; flex: 1; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product-price { font-size: 1.125rem; font-weight: 700; color: var(--dark); }

.btn-wa-product {
  display: flex; align-items: center; gap: 6px; padding: 8px 13px;
  background: var(--green); color: var(--white); border-radius: var(--radius-sm);
  font-size: .8125rem; font-weight: 600; transition: var(--tr); white-space: nowrap;
}
.btn-wa-product:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ===== WHY US ===== */
.why-us { background: var(--off-white); padding: 100px 0; }
.why-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: center; }

.why-left h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: var(--dark); line-height: 1.2; margin-bottom: 20px; }
.why-left p { color: var(--text-2); font-size: 1.0625rem; line-height: 1.7; margin-bottom: 32px; }

.why-right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.benefit {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; display: flex; flex-direction: column; gap: 14px; transition: var(--tr);
}
.benefit:hover { border-color: rgba(201,168,76,.4); box-shadow: var(--shadow-gold); transform: translateY(-2px); }

.benefit-icon {
  width: 48px; height: 48px; background: var(--gold-pale); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.benefit-icon svg { width: 22px; height: 22px; color: var(--gold-dark); }
.benefit h4 { font-size: 1rem; font-weight: 600; color: var(--dark); }
.benefit p { font-size: .875rem; color: var(--text-2); line-height: 1.6; }

/* ===== CONTACT ===== */
.contact-section { padding: 100px 0; background: var(--dark); }
.contact-section .section-header h2 { color: var(--white); }
.contact-section .section-header p { color: rgba(255,255,255,.5); }

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

.contact-info { display: flex; flex-direction: column; gap: 10px; }

.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px; background: var(--dark-2); border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,.15); transition: var(--tr);
}
.contact-item:hover { border-color: rgba(201,168,76,.4); }
.contact-icon {
  width: 42px; height: 42px; background: var(--gold-pale); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 19px; height: 19px; color: var(--gold); }
.contact-item h4 { font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-item a, .contact-item span { font-size: .9375rem; color: rgba(255,255,255,.75); transition: color var(--tr); line-height: 1.5; }
.contact-item a:hover { color: var(--gold-light); }

.btn-wa-contact {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 18px 24px; background: var(--green); color: var(--white);
  border-radius: var(--radius); font-size: 1rem; font-weight: 600; transition: var(--tr); margin-top: 6px;
}
.btn-wa-contact:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.35); }

.contact-map { border-radius: var(--radius-lg); overflow: hidden; height: 420px; border: 1px solid rgba(201,168,76,.2); }

/* ===== FOOTER ===== */
.footer { background: #0A0A0A; color: var(--white); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 64px; }
.footer-brand p { color: rgba(255,255,255,.45); font-size: .9375rem; line-height: 1.7; margin: 20px 0 24px; max-width: 300px; }

.social-links { display: flex; gap: 8px; }
.social-link {
  width: 38px; height: 38px; background: rgba(255,255,255,.08); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; transition: var(--tr);
  border: 1px solid rgba(201,168,76,.15);
}
.social-link:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

.footer-links h4 { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 20px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-links span { font-size: .9375rem; color: rgba(255,255,255,.55); transition: color var(--tr); }
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.footer-bottom p { font-size: .875rem; color: rgba(255,255,255,.3); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 150;
  width: 60px; height: 60px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5); transition: var(--tr);
}
.wa-float::before {
  content: ''; position: absolute; width: 60px; height: 60px;
  border-radius: 50%; background: var(--green); animation: pulse 2s ease-out infinite; z-index: -1;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.9); opacity: 0; } }
.wa-float svg { width: 30px; height: 30px; color: var(--white); }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.6); }
.wa-tooltip {
  position: absolute; right: 70px; background: var(--dark); color: var(--white);
  font-size: .8125rem; font-weight: 500; padding: 8px 14px; border-radius: var(--radius-sm);
  white-space: nowrap; box-shadow: var(--shadow); opacity: 0; transform: translateX(8px);
  transition: var(--tr); pointer-events: none;
}
.wa-tooltip::after {
  content: ''; position: absolute; top: 50%; right: -5px; transform: translateY(-50%) rotate(45deg);
  width: 10px; height: 10px; background: var(--dark);
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 992px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero::after { display: none; }
  .hero-content { padding: 60px 24px 40px; text-align: center; }
  .hero-subtitle { margin: 0 auto 40px; }
  .hero-actions, .hero-stats, .hero-tag { justify-content: center; }
  .hero-visual { padding: 0 24px 60px; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-left { text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { height: 320px; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .header-actions .btn-primary { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-right { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .categories-section, .products-section, .why-us, .contact-section { padding: 72px 0; }
  .section-header { margin-bottom: 40px; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-div { width: 40px; height: 1px; }
  .search-modal { padding-top: 80px; }
  .hero-img-wrap img { height: 320px; }
}

/* Accesibilidad y controles táctiles */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.product-card:focus-within .product-actions-overlay { transform: translateY(0); }
.search-result-item { width: 100%; text-align: left; font: inherit; color: inherit; }
button:disabled { opacity: .45; cursor: not-allowed; }
.cart-sidebar { height: 100dvh; }
@media (hover: none), (pointer: coarse) {
  .product-actions-overlay { transform: translateY(0); }
  .qty-btn, .remove-item { min-width: 44px; min-height: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Catálogo completo */
.catalog-tools { display: grid; grid-template-columns: minmax(0, 1fr) 240px; gap: 24px; margin: 24px 0; }
.catalog-tools label { display: block; margin-bottom: 8px; font-weight: 600; }
.catalog-tools input, .catalog-tools select { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px; background: white; color: var(--dark); font: inherit; }
.catalog-count { margin: 20px 0; color: var(--text-2); }
.catalog-pagination { display: flex; justify-content: center; align-items: center; gap: 20px; margin: 36px 0 20px; }
.catalog-note { font-size: .85rem; line-height: 1.6; color: var(--text-2); margin: 20px 0; }
.product-img { object-fit: contain; padding: 16px; background: white; }
.product-img-wrapper { background: white; }
.product-name { overflow-wrap: anywhere; }
.product-sku { font-size: .78rem; color: var(--text-2); margin: 8px 0; }
.product-details-link { text-align: left; text-decoration: underline; text-underline-offset: 4px; color: var(--dark); margin: 8px 0 18px; align-self: flex-start; }
.product-footer { margin-top: auto; }
.cat-card { font: inherit; color: inherit; text-align: left; }
.cat-card h3 { margin-bottom: 14px; }
.product-dialog { position: fixed; inset: 0; width: min(1000px, 94vw); max-height: 90dvh; margin: auto; padding: 32px; border: 1px solid var(--border); border-radius: 16px; color: var(--dark); background: white; overflow: auto; }
.product-dialog::backdrop { background: rgb(20 23 20 / 65%); }
.detail-close { display: block; margin: 0 0 24px auto; padding: 10px 16px; font: inherit; border: 1px solid var(--border); border-radius: 6px; }
.detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.detail-gallery img { display: block; width: 100%; max-height: 420px; object-fit: contain; margin-bottom: 16px; }
.detail-layout h2 { font-size: 1.6rem; line-height: 1.35; overflow-wrap: anywhere; }
.detail-price { font-size: 1.8rem; font-weight: 700; margin: 24px 0; }
.detail-description { white-space: pre-line; line-height: 1.7; margin-top: 16px; overflow-wrap: anywhere; }
@media (max-width: 768px) {
  .catalog-tools, .detail-layout { grid-template-columns: 1fr; }
  .product-dialog { padding: 20px; }
  .catalog-pagination { gap: 12px; font-size: .8rem; }
  .catalog-pagination .btn-primary { padding: 12px; }
}
.original-price { display: block; font-size: .75rem; font-weight: 400; color: var(--text-2); margin-bottom: 4px; }
