/* ═══════════════════════════════════════
   PASIÓN MATERA 7 — Premium Ecommerce
   ═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  --verde: #33502f;
  --verde-light: #4a7344;
  --verde-dark: #243a20;
  --crema: #f0e9ce;
  --crema-dark: #e8ddb8;
  --dorado: #cfa756;
  --dorado-light: #dfc078;
  --dorado-dark: #a8833e;
  --blanco: #faf8f2;
  --negro: #1a1a1a;
  --gris: #6b6b6b;
  --gris-light: #f5f3ee;
  --sombra: 0 4px 24px rgba(51,80,47,0.12);
  --sombra-hover: 0 12px 40px rgba(51,80,47,0.22);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--blanco);
  color: var(--negro);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

/* ── Utilities ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 { color: var(--verde-dark); margin-bottom: 0.75rem; }
.section-title p { color: var(--gris); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }
.section-title .overline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dorado);
  margin-bottom: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--verde);
  color: var(--crema);
  box-shadow: 0 4px 16px rgba(51,80,47,0.3);
}
.btn-primary:hover { background: var(--verde-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(51,80,47,0.35); }
.btn-secondary {
  background: transparent;
  color: var(--verde);
  border: 2px solid var(--verde);
}
.btn-secondary:hover { background: var(--verde); color: var(--crema); }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { background: #1dbb5a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.btn-gold {
  background: var(--dorado);
  color: var(--verde-dark);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(207,167,86,0.35);
}
.btn-gold:hover { background: var(--dorado-dark); transform: translateY(-2px); }
.btn-outline-gold {
  background: transparent;
  color: var(--dorado);
  border: 2px solid var(--dorado);
}
.btn-outline-gold:hover { background: var(--dorado); color: var(--verde-dark); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 1rem 0;
}
.header.scrolled {
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(16px);
  padding: 0.65rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.header.light.scrolled {
  background: rgba(250, 248, 242, 0.97);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-logo img:hover { transform: scale(1.04); }
.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--crema);
  letter-spacing: 0.02em;
}
.header.light .nav-logo span { color: var(--verde-dark); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(240,233,206,0.85);
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.header.light .nav-links a { color: var(--negro); }
.nav-links a:hover { color: var(--dorado); background: rgba(207,167,86,0.08); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}
.nav-whatsapp:hover { background: #1dbb5a; transform: translateY(-1px); }
.nav-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(207,167,86,0.15);
  color: var(--dorado);
  font-size: 1.2rem;
  transition: var(--transition);
  border: 1.5px solid rgba(207,167,86,0.3);
}
.nav-cart-btn:hover { background: var(--dorado); color: var(--verde-dark); }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--verde);
  color: var(--crema);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--blanco);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--crema);
  border-radius: 2px;
  transition: var(--transition);
}
.header.light .hamburger span { background: var(--negro); }
.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 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--verde-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  color: var(--crema);
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  padding: 0.6rem 2rem;
  opacity: 0.85;
  transition: var(--transition);
}
.mobile-menu a:hover { opacity: 1; color: var(--dorado); }
.mobile-menu .close-mobile {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--crema);
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--verde-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a2e17 0%, #33502f 50%, #243a20 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(207,167,86,0.08) 0%, transparent 70%),
    radial-gradient(ellipse at 20% 80%, rgba(240,233,206,0.04) 0%, transparent 60%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(
    45deg,
    var(--dorado) 0,
    var(--dorado) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 24px 24px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: fadeUp 1s ease both;
}
.hero-logo {
  height: 96px;
  width: auto;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  border: 2px solid rgba(207,167,86,0.4);
  animation: scaleIn 0.8s ease both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(207,167,86,0.15);
  border: 1px solid rgba(207,167,86,0.35);
  border-radius: 50px;
  color: var(--dorado-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--crema);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.hero h1 em { color: var(--dorado); font-style: normal; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(240,233,206,0.75);
  margin-bottom: 2.5rem;
  max-width: 500px;
  font-weight: 300;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-hero { padding: 1.1rem 2.4rem; font-size: 1.02rem; box-shadow: 0 8px 28px rgba(207,167,86,0.45); }
.btn-ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  box-shadow: 0 6px 22px rgba(220,39,67,0.4);
}
.btn-ig:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(220,39,67,0.5); }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(240,233,206,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeIn 2s ease 1s both;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(207,167,86,0.6), transparent);
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ── Hero stats ── */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(26,26,26,0.7);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(207,167,86,0.15);
}
.hero-stats-inner {
  display: flex;
  divide-x: 1px solid rgba(207,167,86,0.1);
}
.hero-stat {
  flex: 1;
  padding: 1.2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(207,167,86,0.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dorado);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(240,233,206,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ══════════════════════════════════════
   BENEFITS BAR
══════════════════════════════════════ */
.benefits {
  background: var(--verde);
  padding: 3rem 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
}
.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  color: var(--crema);
}
.benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(207,167,86,0.15);
  border: 1px solid rgba(207,167,86,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.benefit-item h4 {
  font-size: 0.88rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--dorado-light);
}
.benefit-item p { font-size: 0.78rem; opacity: 0.65; line-height: 1.4; }

/* ══════════════════════════════════════
   FEATURED PRODUCTS
══════════════════════════════════════ */
.featured { padding: 6rem 0; background: var(--blanco); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* ══════════════════════════════════════
   PRODUCT CARD
══════════════════════════════════════ */
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sombra);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(51,80,47,0.06);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-hover);
}
.product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gris-light);
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.08); }
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  opacity: 0;
  transition: var(--transition);
  padding: 1rem;
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-overlay .btn {
  width: 100%;
  justify-content: center;
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
}
.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--dorado);
  color: var(--verde-dark);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.product-card-body {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.product-category-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dorado);
}
.product-card-body h3 {
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--negro);
  line-height: 1.35;
  flex: 1;
}
.product-card-body .desc {
  font-size: 0.78rem;
  color: var(--gris);
  line-height: 1.45;
}
.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--verde);
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--gris-light);
}
.product-card-footer {
  display: flex;
  gap: 0.5rem;
  padding: 0 1.1rem 1.1rem;
}
.product-card-footer .btn {
  flex: 1;
  justify-content: center;
  padding: 0.65rem 0.5rem;
  font-size: 0.78rem;
  border-radius: 8px;
}

/* Image fallback placeholder */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gris-light), var(--crema-dark));
  color: var(--verde);
  font-size: 3rem;
}

/* ══════════════════════════════════════
   CATEGORY SECTION
══════════════════════════════════════ */
.categories-showcase { padding: 5rem 0; background: var(--crema); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.category-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: 0 2px 12px rgba(51,80,47,0.07);
  text-decoration: none;
  display: block;
}
.category-card:hover {
  border-color: var(--verde);
  transform: translateY(-4px);
  box-shadow: var(--sombra-hover);
}
.category-card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.category-card h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--verde-dark);
  margin-bottom: 0.25rem;
}
.category-card span {
  font-size: 0.75rem;
  color: var(--gris);
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials { padding: 5rem 0; background: var(--verde-dark); }
.testimonials .section-title h2 { color: var(--crema); }
.testimonials .section-title p { color: rgba(240,233,206,0.6); }
.testimonials .overline { color: var(--dorado); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(207,167,86,0.15);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
}
.testimonial-card:hover { background: rgba(207,167,86,0.08); border-color: rgba(207,167,86,0.35); }
.stars { color: var(--dorado); font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.testimonial-text {
  color: rgba(240,233,206,0.85);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dorado);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--verde-dark);
  font-size: 0.9rem;
}
.testimonial-author-info strong {
  display: block;
  font-size: 0.88rem;
  color: var(--crema);
  font-family: 'Inter', sans-serif;
}
.testimonial-author-info small { color: rgba(207,167,86,0.7); font-size: 0.75rem; }

/* ══════════════════════════════════════
   GRABADOS PERSONALIZADOS
══════════════════════════════════════ */
.grabados {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--crema) 0%, var(--blanco) 100%);
  position: relative;
}
.grabados-intro { max-width: 620px; margin: 0 auto 3rem; text-align: center; }
.grabados-intro p { color: var(--gris); font-size: 1.02rem; line-height: 1.7; }
.grabados-examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
.grabados-example {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--sombra);
}
.grabados-example img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.grabados-example:hover img { transform: scale(1.07); }
.grabados-example-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(36,58,32,0.9));
  color: var(--crema);
  font-weight: 600;
  font-size: 0.92rem;
}
.grabados-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grabado-card {
  background: #fff;
  border: 1px solid rgba(51,80,47,0.08);
  border-radius: var(--radius);
  padding: 2.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--sombra);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.grabado-card:hover { transform: translateY(-6px); box-shadow: var(--sombra-hover); border-color: var(--dorado); }
.grabado-card-icon {
  width: 66px; height: 66px;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: var(--crema);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  border: 1px solid rgba(207,167,86,0.3);
}
.grabado-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--verde-dark);
}
.grabado-card .price-from { font-size: 0.74rem; color: var(--gris); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.4rem; }
.grabado-card .price { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--verde); font-weight: 700; margin: 0.1rem 0 1rem; }
.grabado-card p { font-size: 0.83rem; color: var(--gris); line-height: 1.55; margin-bottom: 1.4rem; flex: 1; }
.grabado-card .btn { width: 100%; justify-content: center; }
.grabados-steps {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 3.5rem auto 0;
  max-width: 860px;
}
.grabado-step { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; flex: 1; min-width: 150px; max-width: 200px; text-align: center; }
.grabado-step-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--verde);
  color: var(--crema);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
}
.grabado-step p { font-size: 0.82rem; color: var(--gris); line-height: 1.45; }
.grabado-step strong { color: var(--verde-dark); display: block; font-size: 0.88rem; margin-bottom: 0.15rem; }
.grabados-cta { text-align: center; margin-top: 3rem; }

@media (max-width: 768px) {
  .grabados-examples { grid-template-columns: 1fr 1fr; }
  .grabados-prices { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .grabados-examples { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   INSTAGRAM SECTION
══════════════════════════════════════ */
.instagram-section { padding: 5rem 0; background: var(--blanco); }
.instagram-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--verde), var(--verde-dark));
  border-radius: var(--radius);
  padding: 3rem;
  color: var(--crema);
}
.instagram-cta h3 { font-size: 1.8rem; margin-bottom: 0.75rem; }
.instagram-cta p { opacity: 0.75; margin-bottom: 1.5rem; font-size: 1.05rem; }
.instagram-cta .handle {
  color: var(--dorado);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}
.ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(220,39,67,0.35);
}
.ig-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(220,39,67,0.45); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { background: var(--negro); color: rgba(240,233,206,0.75); }
.footer-main {
  padding: 4rem 0 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo img {
  height: 48px;
  width: auto;
  border-radius: 8px;
}
.footer-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--crema);
}
.footer-brand p { font-size: 0.85rem; line-height: 1.65; max-width: 260px; }
.footer-social { display: flex; gap: 0.75rem; }
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--crema);
}
.social-icon:hover { background: var(--dorado); border-color: var(--dorado); color: var(--negro); }
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dorado);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  transition: var(--transition);
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--crema); transform: translateX(4px); }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--dorado); }
.footer-contact .icon { font-size: 1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
}
.footer-bottom-text { opacity: 0.45; }
.footer-bottom-text strong { color: var(--dorado); font-weight: 600; }

/* ══════════════════════════════════════
   CART SIDEBAR
══════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 95vw);
  background: var(--blanco);
  z-index: 1101;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 40px rgba(0,0,0,0.15);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gris-light);
  background: var(--verde-dark);
  color: var(--crema);
}
.cart-header h3 { font-size: 1.1rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--crema);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.cart-close:hover { background: rgba(255,255,255,0.2); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gris);
  text-align: center;
  padding: 2rem;
}
.cart-empty-icon { font-size: 3.5rem; opacity: 0.3; }
.cart-empty p { font-size: 0.9rem; }
.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.75rem;
  align-items: start;
  background: #fff;
  border: 1px solid var(--gris-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  animation: scaleIn 0.25s ease;
}
.cart-item-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--gris-light);
}
.cart-item-info { min-width: 0; }
.cart-item-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--negro);
  line-height: 1.3;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-item-price { font-size: 0.85rem; color: var(--verde); font-weight: 700; }
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
}
.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: var(--gris-light);
  color: var(--negro);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--verde); color: #fff; }
.qty-num { font-size: 0.85rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-remove {
  color: var(--gris);
  font-size: 0.9rem;
  transition: var(--transition);
  padding: 4px;
}
.cart-item-remove:hover { color: #e53e3e; }
.cart-footer {
  border-top: 1px solid var(--gris-light);
  padding: 1.25rem 1.5rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-total span { font-size: 0.9rem; color: var(--gris); }
.cart-total strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--verde);
}
.cart-footer .btn { width: 100%; justify-content: center; padding: 1rem; font-size: 0.92rem; }

/* ── Toast ── */
.cart-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--verde-dark);
  color: var(--crema);
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  z-index: 2000;
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  border: 1px solid rgba(207,167,86,0.25);
}
.cart-toast span { color: var(--dorado); margin-right: 0.25rem; }
.cart-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ══════════════════════════════════════
   PRODUCT MODAL
══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: #fff;
  border-radius: var(--radius);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.92);
  transition: transform 0.3s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow-y: auto;
  flex: 1;
}
.modal-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gris-light);
}
.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}
.modal-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dorado);
}
.modal-title {
  font-size: 1.4rem;
  color: var(--negro);
  line-height: 1.3;
}
.modal-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--verde);
  font-weight: 700;
}
.modal-desc { font-size: 0.88rem; color: var(--gris); line-height: 1.65; }
.modal-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: auto; }
.modal-actions .btn { justify-content: center; padding: 0.9rem; }
.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  color: var(--negro);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.modal-close-btn:hover { background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.modal-overlay { position: relative; }

/* ══════════════════════════════════════
   CATALOG PAGE
══════════════════════════════════════ */
.catalog-hero {
  background: linear-gradient(135deg, var(--verde-dark), var(--verde));
  padding: 7rem 0 3rem;
  text-align: center;
  color: var(--crema);
  position: relative;
  overflow: hidden;
}
.catalog-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23cfa756' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.catalog-hero h1 { position: relative; z-index: 1; margin-bottom: 0.75rem; }
.catalog-hero p { position: relative; z-index: 1; opacity: 0.7; font-size: 1.05rem; }

.catalog-main { padding: 2rem 0 5rem; }
.catalog-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; align-items: start; }
.catalog-sidebar { position: sticky; top: 90px; }
.filter-section { background: #fff; border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--sombra); }
.filter-section h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gris);
  margin-bottom: 1rem;
}
.filter-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--negro);
  text-align: left;
  transition: var(--transition);
  font-weight: 500;
}
.filter-btn:hover { background: var(--gris-light); }
.filter-btn.active { background: var(--verde); color: var(--crema); }
.filter-btn .filter-count {
  margin-left: auto;
  font-size: 0.72rem;
  background: rgba(0,0,0,0.1);
  border-radius: 50px;
  padding: 0.1rem 0.45rem;
}
.filter-btn.active .filter-count { background: rgba(255,255,255,0.2); }

.catalog-content { display: flex; flex-direction: column; gap: 1.5rem; }
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1.5px solid var(--gris-light);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  transition: var(--transition);
  flex: 1;
  max-width: 360px;
}
.search-box:focus-within { border-color: var(--verde); }
.search-box input {
  border: none;
  outline: none;
  font-size: 0.88rem;
  flex: 1;
  background: transparent;
  font-family: inherit;
}
.search-icon { color: var(--gris); font-size: 0.9rem; }
.results-count { font-size: 0.85rem; color: var(--gris); white-space: nowrap; }
.results-count strong { color: var(--verde); }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gris);
}
.no-results .icon { font-size: 3rem; margin-bottom: 1rem; }

.mobile-filter-bar {
  display: none;
  overflow-x: auto;
  gap: 0.5rem;
  padding: 0.75rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.mobile-filter-bar::-webkit-scrollbar { display: none; }
.mobile-filter-pill {
  flex-shrink: 0;
  padding: 0.45rem 1rem;
  background: #fff;
  border: 1.5px solid var(--gris-light);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--negro);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.mobile-filter-pill.active { background: var(--verde); color: var(--crema); border-color: var(--verde); }

/* ══════════════════════════════════════
   WHATSAPP FLOAT BTN
══════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 900;
  transition: var(--transition);
  animation: fadeIn 1.5s ease both;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
.whatsapp-float-tooltip {
  position: absolute;
  right: calc(100% + 0.75rem);
  background: var(--negro);
  color: #fff;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-float-tooltip { opacity: 1; }

/* ══════════════════════════════════════
   SKELETON LOADER
══════════════════════════════════════ */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 6px;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-sidebar { display: none; }
  .mobile-filter-bar { display: flex; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-whatsapp span { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .hero-stats-inner { flex-wrap: wrap; }
  .hero-stat { flex: 1 1 50%; border-bottom: 1px solid rgba(207,167,86,0.1); }

  .modal-body { grid-template-columns: 1fr; }
  .modal-image { aspect-ratio: 4/3; }

  .footer-main { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .products-grid, .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .product-card-body h3 { font-size: 0.82rem; }
  .product-price { font-size: 1.05rem; }
  .product-card-footer { flex-direction: column; gap: 0.4rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .category-card { padding: 1rem 0.5rem; }
}
