/* =============================================
   DESIGNAR SOUVENIRS — Main Stylesheet
   ============================================= */

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

/* --- Design Tokens --- */
:root {
  /* Brand palette */
  --toh: #3D4C41;
  --toh-dark: #2A3530;
  --profundo: #839279;
  --nublado: #A7AA9D;
  --piel: #BB9D6F;
  --barro: #9F966F;
  --palma: #8A7B39;

  /* Semantic aliases (keep existing names so nothing breaks) */
  --brown: #3D4C41;        /* toh  */
  --brown-dark: #2A3530;   /* toh dark */
  --brown-light: #839279;  /* profundo */
  --brown-xlight: #BB9D6F; /* piel */
  --accent: #8A7B39;       /* palma — interactive (buttons, badges) */
  --accent-hover: #6E6230;
  --warm: #BB9D6F;         /* piel — decorative highlights (labels, stats) */
  --cream: #F4F5F2;
  --beige: #EAECE5;
  --beige-dark: #D5D9CE;
  --border: #C0C5B8;
  --text: #1A2119;
  --text-mid: #3D4C41;     /* toh */
  --text-light: #839279;   /* profundo */
  --white: #FFFFFF;
  --green: #3D4C41;        /* toh — used for "Nuevo" badge */

  --ff-heading: 'Host Grotesk', system-ui, sans-serif;
  --ff-body: 'Host Grotesk', system-ui, sans-serif;

  --shadow-xs: 0 1px 3px rgba(61, 76, 65, 0.08);
  --shadow-sm: 0 2px 8px rgba(61, 76, 65, 0.12);
  --shadow-md: 0 6px 20px rgba(61, 76, 65, 0.16);
  --shadow-lg: 0 12px 40px rgba(61, 76, 65, 0.22);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;

  --ease: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --max: 1200px;
  --section: 90px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- Utility --- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section) 0; }
.section--cream { background: var(--cream); }
.section--beige { background: var(--beige); }
.section--white { background: var(--white); }
.section--brown { background: var(--brown-dark); color: var(--cream); }

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title--white { color: var(--white); }
.section-sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
}
.section-sub--white { color: rgba(255,255,255,0.78); }
.section-header { margin-bottom: 52px; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }

.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 6px;
}
.tag--new    { background: var(--green); color: #fff; }
.tag--hot    { background: var(--accent); color: #fff; }
.tag--eco    { background: #5C8A3C; color: #fff; }
.tag--hand   { background: var(--brown); color: #fff; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--r-md);
  transition: all var(--ease);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(138, 123, 57, 0.35);
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(138, 123, 57, 0.45);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn--outline-brown {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
}
.btn--outline-brown:hover {
  background: var(--brown);
  color: var(--white);
}
.btn--ghost {
  background: rgba(61,76,65,0.08);
  color: var(--brown);
}
.btn--ghost:hover {
  background: rgba(61,76,65,0.15);
}
.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.btn--whatsapp:hover {
  background: #1EBE58;
  transform: translateY(-2px);
}
.btn--sm { padding: 9px 18px; font-size: 13px; }
.btn--lg { padding: 16px 36px; font-size: 15px; }
.btn--full { width: 100%; justify-content: center; }

/* =============================================
   HEADER / NAV
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 70px;
}
.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header__logo img {
  height: 42px;
  width: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all var(--ease);
}
.nav__link:hover, .nav__link.active {
  color: var(--brown);
  background: var(--beige);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background: var(--beige);
  color: var(--brown);
  transition: all var(--ease);
}
.cart-btn:hover { background: var(--beige-dark); }
.cart-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: var(--accent);
  color: var(--white);
  border-radius: 9px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.cart-count.visible { display: flex; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  border-radius: var(--r-sm);
  background: var(--beige);
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all var(--ease);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brown-dark);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A2119 0%, #2A3530 40%, #3D4C41 100%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,28,22,0.88) 0%, rgba(20,28,22,0.42) 60%, transparent 100%);
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  max-width: 620px;
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nublado);
  margin-bottom: 20px;
}
.hero__label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 22px;
}
.hero__title em {
  font-style: italic;
  color: var(--brown-xlight);
}
.hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}
.hero__scroll svg { width: 18px; height: 18px; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =============================================
   BENEFITS STRIP
   ============================================= */
.benefits {
  background: var(--brown);
  padding: 0;
}
.benefits__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide-x: 1px solid rgba(255,255,255,0.15);
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.benefit-item:last-child { border-right: none; }
.benefit-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.benefit-item__icon svg { width: 22px; height: 22px; }
.benefit-item__text h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.benefit-item__text p {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

/* =============================================
   ABOUT / STATS
   ============================================= */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about__images {
  position: relative;
  height: 500px;
}
.about__img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 70%;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.about__img-sec {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 60%;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about__img-accent {
  position: absolute;
  top: 50%;
  left: 42%;
  transform: translate(-50%, -50%);
  width: 20%;
  height: 20%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
}
.about__placeholder {
  width: 100%;
  height: 100%;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 13px;
}
.about__content {}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.stat-item {}
.stat-item__number {
  font-family: var(--ff-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}
.stat-item__number span { color: var(--warm); }
.stat-item__label {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.4;
}

/* =============================================
   CATEGORIES
   ============================================= */
.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: true;
  text-decoration: none;
  display: block;
}
.category-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover .category-card__img { transform: scale(1.07); }
.category-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,28,22,0.88) 0%, rgba(20,28,22,0.3) 50%, transparent 100%);
  transition: opacity var(--ease);
}
.category-card:hover .category-card__overlay { opacity: 0.9; }
.category-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
}
.category-card__title {
  font-family: var(--ff-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.category-card__desc {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin-bottom: 12px;
}
.category-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--nublado);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.category-card__link svg { width: 14px; height: 14px; }

/* Category background colors — portrait cards and landscape cat-cards */
.category-card--artesanias .category-card__placeholder,
.cat-card__img.category-card--artesanias { background: linear-gradient(135deg, #7A6040 0%, #BB9D6F 100%); }
.category-card--souvenirs .category-card__placeholder,
.cat-card__img.category-card--souvenirs  { background: linear-gradient(135deg, #2A3530 0%, #3D4C41 100%); }
.category-card--textiles .category-card__placeholder,
.cat-card__img.category-card--textiles   { background: linear-gradient(135deg, #3A5030 0%, #587A50 100%); }
.category-card--linea .category-card__placeholder,
.cat-card__img.category-card--linea      { background: linear-gradient(135deg, #5C5220 0%, #8A7B39 100%); }

/* =============================================
   PRODUCTS GRID
   ============================================= */
.products__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.products__filters::-webkit-scrollbar { display: none; }
.filter-btn {
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--white);
  border: 1.5px solid var(--border);
  transition: all var(--ease);
  flex-shrink: 0;
  white-space: nowrap;
}
.filter-btn:hover { border-color: var(--brown-light); color: var(--brown); }
.filter-btn.active {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

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

.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.product-card__img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--beige);
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__img { transform: scale(1.05); }
.product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 13px;
}
.product-card__placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.3;
}
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.product-card__wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
  opacity: 0;
}
.product-card:hover .product-card__wishlist { opacity: 1; }
.product-card__wishlist svg { width: 16px; height: 16px; color: var(--text-light); }
.product-card__body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card__cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 6px;
}
.product-card__name {
  font-family: var(--ff-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 8px;
  flex: 1;
}
.product-card__desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--beige);
  margin-top: auto;
}
.product-card__price {
  font-size: 13px;
  font-weight: 700;
  color: var(--brown);
}
.product-card__price span {
  font-weight: 400;
  color: var(--text-light);
  font-size: 11px;
}
.product-card__add {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--brown);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all var(--ease);
}
.product-card__add:hover { background: var(--brown-dark); }
.product-card__add svg { width: 14px; height: 14px; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 24px;
  transition: all var(--ease);
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--brown-light);
}
.why-card__icon {
  width: 52px;
  height: 52px;
  background: var(--beige);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
}
.why-card__title {
  font-family: var(--ff-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.why-card__desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.65;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--ff-heading);
  font-size: 64px;
  color: var(--beige-dark);
  line-height: 1;
}
.testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: #F5A623;
  margin-bottom: 16px;
}
.testimonial-card__stars svg { width: 16px; height: 16px; }
.testimonial-card__text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--beige-dark);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 18px;
  color: var(--brown);
  font-weight: 700;
}
.testimonial-card__name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}
.testimonial-card__role {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
  margin-top: 2px;
}

/* =============================================
   BLOG CARDS
   ============================================= */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--ease);
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.blog-card__img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card__img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__placeholder {
  font-size: 48px;
  opacity: 0.4;
}
.blog-card__body { padding: 24px; }
.blog-card__cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 10px;
}
.blog-card__title {
  font-family: var(--ff-heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 10px;
}
.blog-card__excerpt {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 18px;
}
.blog-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--brown);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--ease);
}
.blog-card__link:hover { gap: 9px; }
.blog-card__link svg { width: 14px; height: 14px; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--brown-dark) 0%, #1A2119 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(138,123,57,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-section__title {
  font-family: var(--ff-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-section__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  line-height: 1.6;
}
.cta-section__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #1A2119;
  color: rgba(255,255,255,0.72);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand {}
.footer__logo { height: 40px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer__tagline {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.6);
}
.footer__social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--ease);
  font-size: 14px;
}
.social-btn:hover {
  background: var(--palma);
  color: var(--white);
}
.social-btn svg { width: 16px; height: 16px; }
.footer__col {}
.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color var(--ease);
}
.footer__links a:hover { color: var(--nublado); }
.footer__contact-item {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--nublado);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom a { color: rgba(255,255,255,0.4); }
.footer__bottom a:hover { color: var(--nublado); }

/* =============================================
   CART SIDEBAR
   ============================================= */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 95vw;
  height: 100vh;
  background: var(--white);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--ease);
  box-shadow: var(--shadow-lg);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-sidebar__title {
  font-family: var(--ff-heading);
  font-size: 20px;
  font-weight: 700;
}
.cart-sidebar__close {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: all var(--ease);
}
.cart-sidebar__close:hover { background: var(--beige-dark); }
.cart-sidebar__close svg { width: 18px; height: 18px; }
.cart-sidebar__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  color: var(--text-light);
  text-align: center;
}
.cart-empty svg { width: 64px; height: 64px; opacity: 0.2; }
.cart-empty p { font-size: 14px; }
.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--beige);
}
.cart-item__img {
  width: 64px;
  height: 64px;
  border-radius: var(--r-sm);
  object-fit: cover;
  background: var(--beige);
  flex-shrink: 0;
}
.cart-item__img-placeholder {
  width: 64px;
  height: 64px;
  border-radius: var(--r-sm);
  background: var(--beige);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.cart-item__info { flex: 1; }
.cart-item__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}
.cart-item__cat { font-size: 11px; color: var(--text-light); margin-bottom: 10px; }
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
  transition: all var(--ease);
}
.qty-btn:hover { background: var(--beige-dark); }
.qty-value { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item__remove {
  color: var(--text-light);
  font-size: 12px;
  transition: color var(--ease);
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}
.cart-item__remove:hover { color: #D32F2F; }
.cart-item__remove svg { width: 14px; height: 14px; }
.cart-sidebar__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.cart-sidebar__note {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 14px;
  line-height: 1.5;
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  color: white;
  transition: all var(--ease);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6); }
.wa-float svg { width: 28px; height: 28px; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--brown-dark) 0%, #3D4C41 100%);
  padding: 64px 0;
  text-align: center;
}
.page-hero__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown-xlight);
  margin-bottom: 12px;
}
.page-hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================
   CONTACT FORM
   ============================================= */
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--text);
  font-size: 14px;
  transition: border-color var(--ease);
  outline: none;
}
.form-input:focus { border-color: var(--brown); }
.form-input::placeholder { color: var(--text-light); }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* =============================================
   SHOP PAGE SPECIFIC
   ============================================= */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: start;
}
.shop-sidebar {}
.shop-sidebar__section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  margin-bottom: 16px;
}
.shop-sidebar__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 14px;
}
.shop-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shop-sidebar__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-mid);
  cursor: pointer;
  padding: 4px 0;
  transition: color var(--ease);
}
.shop-sidebar__item:hover, .shop-sidebar__item.active { color: var(--brown); font-weight: 500; }
.shop-sidebar__count {
  font-size: 11px;
  background: var(--beige);
  padding: 2px 7px;
  border-radius: 10px;
  color: var(--text-light);
}

/* =============================================
   PERSONALIZACION PAGE
   ============================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: steps;
}
.step-card {
  counter-increment: steps;
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.step-card::before {
  content: counter(steps, decimal-leading-zero);
  display: block;
  font-family: var(--ff-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--beige-dark);
  line-height: 1;
  margin-bottom: 16px;
}
.step-card__icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.step-card__title {
  font-family: var(--ff-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.step-card__desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  color: var(--beige-dark);
}

/* =============================================
   REWARDS PAGE
   ============================================= */
.rewards-hero {
  background: linear-gradient(135deg, #1A2119 0%, var(--brown) 100%);
  border-radius: var(--r-xl);
  padding: 60px;
  color: var(--white);
  text-align: center;
  margin-bottom: 48px;
}
.rewards-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier-card {
  border-radius: var(--r-md);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid var(--border);
}
.tier-card--gold { border-color: #D4AF37; background: linear-gradient(to bottom, #FFF9E0, var(--white)); }
.tier-card--silver { border-color: #A8A9AD; background: linear-gradient(to bottom, #F5F5F5, var(--white)); }
.tier-card--bronze { border-color: #CD7F32; background: linear-gradient(to bottom, #FFF3E8, var(--white)); }
.tier-card__badge { font-size: 48px; margin-bottom: 12px; }
.tier-card__name {
  font-family: var(--ff-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.tier-card__req { font-size: 12px; color: var(--text-light); margin-bottom: 20px; }
.tier-card__perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.tier-perk {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
}
.tier-perk::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .products__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 1100px) {
  .hero-split__inner { gap: 48px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hero-split__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-split__media { display: none; }
  .hero-split__text { grid-column: 1 / -1; width: 100%; max-width: 100%; }
}

@media (max-width: 900px) {
  :root { --section: 64px; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .hero-split__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-split__media { display: none; }
  .stats-bar__inner { grid-template-columns: 1fr; }
  .stats-bar__item { border-right: none; border-bottom: 1px solid var(--border); padding: 18px 20px; }
  .stats-bar__item:last-child { border-bottom: none; }
  .stats-bar__text { min-width: 0; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__images { height: 300px; }
  .categories__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr 1fr; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .benefits__inner { grid-template-columns: 1fr; }
  .benefit-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .benefit-item:last-child { border-bottom: none; }
  .shop-layout { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .rewards-tiers { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --section: 48px; }
  .container { padding: 0 16px; }

  /* Header */
  .header__inner { height: 60px; }
  .header__actions .btn { display: none; }

  /* Notice bar */
  .notice-bar { font-size: 11px; padding: 6px 12px; }
  .notice-bar a { display: none; }

  /* Hero */
  .hero { min-height: 75vh; }
  .hero__title { font-size: 32px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .hero-split { padding: 40px 0 48px; }
  .hero-split__title { font-size: clamp(26px, 7vw, 36px); }
  .hero-split__sub { max-width: 100%; font-size: 15px; margin-bottom: 28px; }
  .hero-split__actions { flex-direction: column; }
  .hero-split__actions .btn { justify-content: center; }
  .hero-split__trust { gap: 10px; }

  /* Section headers */
  .section-header { margin-bottom: 32px; }
  .page-hero { padding: 40px 0; }

  /* Category chips & grid */
  .cat-chips { gap: 8px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-card__img { aspect-ratio: 3/2; }
  .cat-card__body { padding: 12px 12px 16px; }
  .cat-card__title { font-size: 14px; }
  .cat-card__desc { display: none; }

  /* Categories section (portrait cards) */
  .categories__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Products */
  .products__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card__body { padding: 10px 12px 12px; }
  .product-card__name { font-size: 13px; }
  .product-card__desc { display: none; }
  .product-card__add { padding: 7px 10px; font-size: 11px; }
  .filter-btn { padding: 7px 14px; font-size: 12px; }

  /* Benefits strip */
  .benefit-item { padding: 20px 20px; }

  /* About */
  .about__stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item__number { font-size: 28px; }

  /* Why grid */
  .why__grid { grid-template-columns: 1fr; }

  /* Blog */
  .blog__grid { grid-template-columns: 1fr; }

  /* Steps (personalización) */
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }

  /* Rewards */
  .rewards-hero { padding: 36px 20px; }

  /* CTA */
  .cta-section__actions { flex-direction: column; align-items: center; }
  .cta-section__actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 380px) {
  .cat-grid { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: 1fr; }
  .hero-split__title { font-size: 26px; }
}

/* --- Mobile Nav --- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--white);
  flex-direction: column;
  padding: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.mobile-nav__link {
  display: block;
  font-size: 20px;
  font-family: var(--ff-heading);
  font-weight: 600;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--beige);
  transition: color var(--ease);
}
.mobile-nav__link:hover { color: var(--brown); }
.mobile-nav__footer { padding-top: 24px; }

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up--delay-1 { animation-delay: 0.1s; }
.fade-up--delay-2 { animation-delay: 0.2s; }
.fade-up--delay-3 { animation-delay: 0.3s; }

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--text-light); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--brown); }
.breadcrumb span { color: var(--text); }
.breadcrumb svg { width: 12px; height: 12px; }

/* --- Divider --- */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* =============================================
   HERO — SPLIT LAYOUT (Airbnb-inspired)
   ============================================= */
.hero-split {
  background: var(--white);
  padding: 64px 0 80px;
  overflow: hidden;
}
.hero-split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-split__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--beige);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.hero-split__dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-split__title {
  font-family: var(--ff-heading);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.17;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-split__title em {
  font-style: italic;
  color: var(--piel);
}
.hero-split__sub {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-split__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-split__trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
}
.trust-pill svg {
  width: 15px;
  height: 15px;
  color: var(--profundo);
  flex-shrink: 0;
}
.hero-split__media {
  position: relative;
  padding-bottom: 32px;
}
.hero-split__mosaic {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 12px;
  height: 460px;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.hero-split__mosaic-main {
  position: relative;
  background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
  overflow: hidden;
}
.hero-split__mosaic-main img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.hero-split__mosaic-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-split__mosaic-cell {
  flex: 1;
  position: relative;
  background: var(--beige-dark);
  overflow: hidden;
}
.hero-split__mosaic-cell--dark {
  background: linear-gradient(135deg, #3D4C41 0%, #2A3530 100%);
}
.hero-split__mosaic-cell img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.hero-split__mosaic-emoji {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  pointer-events: none;
}
.hero-split__float {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero-split__float-icon {
  width: 40px;
  height: 40px;
  background: var(--beige);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.hero-split__float-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.hero-split__float-text span {
  font-size: 11px;
  color: var(--text-light);
}

/* =============================================
   STATS BAR (light, replaces dark benefits)
   ============================================= */
.stats-bar {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stats-bar__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 32px;
  border-right: 1px solid var(--border);
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--toh);
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
}
.stats-bar__icon svg { width: 20px; height: 20px; }
.stats-bar__text h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.stats-bar__text p { font-size: 12px; color: var(--text-light); }

/* =============================================
   CATEGORY CHIPS + CARDS (Airbnb-style)
   ============================================= */
.cat-chips {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 40px;
  padding-bottom: 2px;
}
.cat-chips::-webkit-scrollbar { display: none; }
.cat-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 22px;
  border-radius: var(--r-md);
  background: var(--white);
  border: 1.5px solid var(--border);
  text-decoration: none;
  color: var(--text-mid);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--ease);
  flex-shrink: 0;
}
.cat-chip:hover {
  border-color: var(--brown);
  color: var(--brown);
  background: var(--beige);
}
.cat-chip__icon { font-size: 24px; line-height: 1; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all var(--ease);
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.cat-card__img {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  overflow: hidden;
}
.cat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-card__body {
  padding: 16px 16px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cat-card__title {
  font-family: var(--ff-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.cat-card__desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 12px;
}
.cat-card__link {
  font-size: 12px;
  font-weight: 600;
  color: var(--brown);
  transition: color var(--ease);
}
.cat-card:hover .cat-card__link { color: var(--accent); }

/* --- Notice banner --- */
.notice-bar {
  background: var(--brown);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  padding: 8px 16px;
  font-weight: 500;
}
.notice-bar a { color: var(--brown-xlight); font-weight: 600; }

/* --- Tooltip--- */
.tooltip {
  position: relative;
}
.tooltip:hover::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: var(--white);
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
}

/* =============================================
   CONFIGURADOR DE SOUVENIRS (personalizacion.html)
   ============================================= */
.cfg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* --- Columna de vista previa (sticky en escritorio) --- */
.cfg__preview {
  position: sticky;
  top: 100px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.cfg__preview-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
  text-align: center;
  margin-bottom: 16px;
}
.cfg__canvas-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--beige);
}
#cfg-canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.cfg__preview-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.cfg__preview-hint {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
  margin-top: 4px;
}

/* --- Columna de controles --- */
.cfg__controls { display: flex; flex-direction: column; gap: 28px; }
.cfg__field-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.cfg__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Chips (producto / opción) */
.cfg__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.cfg__chips--grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.cfg-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  transition: all var(--ease);
}
.cfg-chip:hover { border-color: var(--accent); color: var(--accent); }
.cfg-chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.cfg-chip--product {
  flex-direction: column;
  gap: 6px;
  padding: 16px 8px;
}
.cfg-chip__emoji { font-size: 26px; line-height: 1; }
.cfg-chip__label { font-size: 12px; }

/* Muestras de color */
.cfg__swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.cfg-swatch {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--border);
  transition: all var(--ease);
  position: relative;
}
.cfg-swatch:hover { transform: scale(1.1); }
.cfg-swatch.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(138,123,57,0.25);
}
.cfg-swatch.active::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,0.45);
}

/* Subir logo */
.cfg__upload {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cfg__upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: rgba(61,76,65,0.08);
  color: var(--brown);
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--ease);
}
.cfg__upload-btn:hover { background: rgba(61,76,65,0.15); }
.cfg__upload-name {
  font-size: 12px;
  color: var(--text-light);
  word-break: break-all;
}
.cfg__upload-remove {
  display: none;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #c0392b;
}

/* Inputs de texto */
.cfg__input,
.cfg__textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
  transition: border-color var(--ease);
}
.cfg__input:focus,
.cfg__textarea:focus { outline: none; border-color: var(--accent); }
.cfg__input::placeholder { color: var(--nublado); }
.cfg__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cfg__hint { font-size: 11px; color: var(--text-light); margin-top: 6px; }

/* Responsive */
@media (max-width: 900px) {
  .cfg { grid-template-columns: 1fr; gap: 32px; }
  .cfg__preview { position: static; }
  .cfg__chips--grid { grid-template-columns: repeat(3, 1fr); }
  .cfg__row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .cfg__chips--grid { grid-template-columns: repeat(2, 1fr); }
}
