/*
Theme Name: Aria BySunTouch
Theme URI: https://ariabysuntouch.com
Author: Aria BySunTouch
Author URI: https://ariabysuntouch.com
Description: Tema oficial Aria BySunTouch — moda curada, multimarca, con soporte WooCommerce.
Version: 1.2.2
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
WC requires at least: 8.0
WC tested up to: 9.5
License: Privado
Text Domain: aria-bysuntouch
*/

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

/* ══════════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════════ */
:root {
  --caramel:    #b47850;
  --caramel-lt: #c8956c;
  --brown:      #3d1e0a;
  --brown-mid:  #643c28;
  --cream:      #f5f0e8;
  --beige:      #f0e8da;
  --white:      #ffffff;
  --text:       #3c2010;
  --text-light: #7a5230;
  --nav-height: 72px;
  --max-width:  1400px;
  --transition: 0.25s ease;
}

/* ══════════════════════════════════════════════
   1. RESET + BASE
══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { font-family: inherit; }

/* ══════════════════════════════════════════════
   2. ANNOUNCEMENT BAR
══════════════════════════════════════════════ */
.announcement {
  background: var(--brown);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 9px 20px;
  width: 100%;
}

/* ══════════════════════════════════════════════
   3. NAV
══════════════════════════════════════════════ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #f6f4f0;
  border-bottom: 1px solid rgba(61,26,14,.12);
  box-shadow: 0 1px 8px rgba(61,26,14,.06);
}
nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  height: var(--nav-height);
  padding: 8px 20px;
  background: #f6f4f0;
  border-right: 1px solid rgba(61,26,14,.1);
}
.logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: center;
}
.nav-links li { list-style: none; }
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--caramel);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--caramel); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--caramel); }

.nav-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cart-btn { position: relative; }
.cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  width: 16px; height: 16px;
  background: var(--brown);
  color: var(--white);
  font-size: 9px; font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.cart-badge[data-count="0"],
.cart-badge:empty { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--caramel);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 800;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.is-open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 32px; font-weight: 400;
  color: var(--brown);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--caramel); }
.mobile-menu__close {
  position: absolute;
  top: 24px; right: 28px;
  background: none; border: none;
  cursor: pointer;
  font-size: 28px;
  color: var(--brown);
  line-height: 1;
}

/* ══════════════════════════════════════════════
   4. FOOTER
══════════════════════════════════════════════ */
.site-footer {
  background: var(--brown);
  color: var(--white);
}

/* — Top: tagline + newsletter — */
.footer-top {
  padding: 72px 40px 56px;
}
.footer-top-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}
.footer-eyebrow {
  display: block;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--caramel);
  margin-bottom: 16px;
}
.footer-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400; line-height: 1.2;
  color: var(--white);
  margin: 0;
}
.footer-newsletter-block {
  flex-shrink: 0;
  max-width: 340px;
  width: 100%;
}
.footer-newsletter-label {
  font-size: 12px; line-height: 1.7;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
}
.newsletter-form {
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.35);
  gap: 8px;
}
.newsletter-form input {
  flex: 1; background: transparent; border: none; outline: none;
  padding: 10px 0; font-size: 13px; color: var(--white); font-family: inherit;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form button {
  background: transparent; border: none;
  color: rgba(255,255,255,.6); padding: 10px 0;
  cursor: pointer; transition: color var(--transition);
  display: flex; align-items: center; flex-shrink: 0;
}
.newsletter-form button:hover { color: var(--caramel); }

/* — Separator — */
.footer-rule {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.1);
}

/* — Links grid — */
.footer-links {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 56px;
}
.footer-col h4 {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a {
  font-size: 13px;
  color: rgba(255,255,255,.72);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-col address {
  font-size: 13px; line-height: 1.8;
  color: rgba(255,255,255,.55); font-style: normal;
  margin-bottom: 10px;
}
.footer-email {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
  display: inline-block;
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding-bottom: 2px;
}
.footer-email:hover { color: var(--caramel); border-color: var(--caramel); }

/* — Social icon — */
.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.social-icon:hover { color: var(--white); }

/* — Bottom bar — */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  max-width: var(--max-width); margin: 0 auto;
  padding: 22px 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.footer-copy {
  font-size: 11px; letter-spacing: 0.06em;
  color: rgba(255,255,255,.3);
}
.footer-credit {
  font-size: 11px;
  color: rgba(255,255,255,.3);
}
.footer-credit a {
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer-credit a:hover { color: var(--white); }

/* ══════════════════════════════════════════════
   5. BUTTONS
══════════════════════════════════════════════ */
.btn-primary {
  display: block; width: 100%;
  background: var(--brown); color: var(--white);
  font-size: 14px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 14px 24px; border: none; border-radius: 0;
  cursor: pointer; text-align: center;
  transition: background var(--transition), color var(--transition);
  font-family: inherit;
}
.btn-primary:hover { background: var(--caramel); color: var(--white); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-outline {
  display: block; width: 100%;
  background: transparent; color: var(--brown);
  font-size: 14px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 14px 24px; border: 1px solid var(--brown); border-radius: 0;
  cursor: pointer; text-align: center;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  font-family: inherit;
}
.btn-outline:hover { background: var(--brown); color: var(--white); }

.btn-icon {
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  padding: 6px; color: var(--text);
  transition: color var(--transition);
  font-family: inherit;
}
.btn-icon:hover { color: var(--caramel); }

/* ══════════════════════════════════════════════
   6. PAGE LAYOUT UTILITIES
══════════════════════════════════════════════ */

/* ── LEGAL PAGES (Términos, Envíos, Privacidad, Libro de Reclamaciones) ── */
.legal-hero {
  background: var(--cream);
  padding: 64px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.legal-hero__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--caramel);
  font-weight: 500;
}
.legal-hero__title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.2;
}
.legal-hero__meta,
.legal-hero__sub {
  font-size: 13px;
  color: var(--text-light);
  max-width: 600px;
}
.legal-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 40px 80px;
}
.legal-section {
  margin-bottom: 48px;
}
.legal-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--brown);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(180,120,80,.2);
  margin-bottom: 20px;
}
.legal-section p,
.legal-section li {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-light);
}
.legal-section ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}
.legal-section a {
  color: var(--caramel);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-section a:hover { color: var(--brown); }

/* Libro de Reclamaciones — tarjetas queja/reclamo */
.reclamaciones-info { }
.reclamaciones-defs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0;
}
.def-card {
  border: 1px solid rgba(61,30,10,.12);
  padding: 24px;
}
.def-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 10px;
}
.reclamaciones-note {
  background: rgba(180,120,80,.08);
  border-left: 3px solid var(--caramel);
  padding: 16px 20px;
  border-radius: 0 4px 4px 0;
  margin-top: 20px;
}
.reclamaciones-legal-note {
  font-size: 12px !important;
  color: var(--text-light);
  margin-bottom: 24px;
}
.reclamaciones-form { margin-top: 32px; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.req { color: var(--caramel); }
.form-msg {
  margin-top: 16px;
  padding: 14px 20px;
  font-size: 14px;
  border-radius: 2px;
}
.form-msg--ok  { background: rgba(80,160,100,.1); color: #2a6e3c; border: 1px solid rgba(80,160,100,.3); }
.form-msg--err { background: rgba(200,60,60,.08); color: #8b2020; border: 1px solid rgba(200,60,60,.2); }
.form-submit-wrap { margin-top: 8px; }
.form-submit-wrap .btn-primary { width: auto; display: inline-block; padding: 14px 40px; }

@media (max-width: 768px) {
  .legal-hero { padding: 56px 24px; }
  .legal-body { padding: 48px 24px 64px; }
  .reclamaciones-defs { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .legal-hero { padding: 48px 20px; }
  .legal-body { padding: 40px 20px 56px; }
  .form-submit-wrap .btn-primary { width: 100%; display: block; }
}
.page-container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 32px; font-weight: 400;
  color: var(--brown); line-height: 1.25;
}
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-light); flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-light); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--brown); }
.breadcrumb .separator { color: var(--text-light); opacity: 0.5; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ══════════════════════════════════════════════
   7. HOME: HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 90vh; min-height: 560px;
  background: var(--cream); overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(61,30,10,.22) 0%, transparent 55%);
}
.hero-text {
  position: absolute;
  bottom: 52px; left: 0; right: 0;
  display: flex;
  justify-content: space-between; align-items: flex-end;
  padding: 0 56px;
}
.hero-text span {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(40px,6vw,88px);
  color: var(--white); line-height: 1.05;
  text-shadow: 0 2px 32px rgba(61,30,10,.28);
}
.hero-text span:last-child { text-align: right; }

/* ══════════════════════════════════════════════
   8. HOME: CATEGORIES
══════════════════════════════════════════════ */
/* ── CATEGORIES ── */
.categories { padding: 72px 0; }
.section-header {
  display: flex; align-items: baseline;
  justify-content: space-between; margin-bottom: 36px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 400; font-size: 32px; color: var(--brown);
}
.section-link {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 500; color: var(--text-light);
  border-bottom: 1px solid var(--caramel); padding-bottom: 2px;
  transition: color .2s;
}
.section-link:hover { color: var(--brown); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cat-card { display: block; text-decoration: none; }
.cat-card__media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--beige);
}
.cat-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.25,.46,.45,.94);
  display: block;
}
.cat-card:hover .cat-card__media img { transform: scale(1.06); }
.cat-card__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 20px 20px;
  background: linear-gradient(to top, rgba(61,30,10,.72) 0%, transparent 100%);
  display: flex; flex-direction: column; gap: 4px;
}
.cat-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 400;
  color: #fff; line-height: 1.2;
}
.cat-card__count {
  font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.7);
}

/* ── BRANDS HOME ── */
.brands-home { background: var(--cream); padding: 80px 0; }
.brands-home__header {
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; margin-bottom: 52px;
}
.brands-home__label {
  font-size: 10px; text-transform: uppercase;
  letter-spacing: .22em; color: var(--caramel); font-weight: 500;
}
.brands-home__title {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 400;
  font-size: clamp(28px, 4vw, 44px); color: var(--brown);
}
.brands-home__sub {
  font-size: 14px; color: var(--text-light); max-width: 480px; line-height: 1.7;
}
.brands-home__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.brand-card { display: flex; flex-direction: column; background: #fff; }
.brand-card__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--beige);
}
.brand-card__media img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.brand-card:hover .brand-card__media img { transform: scale(1.05); }
.brand-card__body {
  padding: 24px 20px 28px;
  display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.brand-card__origin {
  font-size: 10px; text-transform: uppercase;
  letter-spacing: .16em; color: var(--caramel); font-weight: 500;
}
.brand-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 400; color: var(--brown);
}
.brand-card__desc {
  font-size: 13px; line-height: 1.75;
  color: var(--text-light); flex: 1;
}
.brand-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--caramel); text-decoration: none;
  transition: color .2s, gap .2s;
}
.brand-card__link:hover { color: var(--brown); gap: 12px; }

/* ══════════════════════════════════════════════
   10. HOME: PRODUCTS PREVIEW
══════════════════════════════════════════════ */
.products { padding: 72px 40px; max-width: var(--max-width); margin: 0 auto; }
.products-header {
  display: flex; align-items: baseline;
  justify-content: space-between; margin-bottom: 36px;
}
.products-header h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 400; font-size: 32px; color: var(--brown);
}
.products-header a {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 500; color: var(--text-light);
  border-bottom: 1px solid var(--caramel); padding-bottom: 2px;
  transition: color .2s;
}
.products-header a:hover { color: var(--brown); }
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ── PRODUCT CARD (pcard) — homepage + shop ── */
.pcard { display: flex; flex-direction: column; }

/* Media */
.pcard__media {
  position: relative;
  aspect-ratio: 7/10;
  overflow: hidden;
  background: var(--beige);
  cursor: pointer;
}
.pcard__link {
  position: absolute; inset: 0; z-index: 1;
}
.pcard__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .45s ease, transform .55s ease;
}
.pcard__img--main  { opacity: 1; transform: scale(1); z-index: 0; }
.pcard__img--alt   { opacity: 0; transform: scale(1.04); z-index: 0; }
.pcard:hover .pcard__img--main { opacity: 0; transform: scale(1.04); }
.pcard:hover .pcard__img--alt  { opacity: 1; transform: scale(1); }
.pcard__placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 13px;
  padding: 16px; text-align: center;
}

/* Overlay actions */
.pcard__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex; flex-direction: column; gap: 1px;
  transform: translateY(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
}
.pcard:hover .pcard__overlay { transform: translateY(0); }

.pcard__btn {
  width: 100%; border: none; cursor: pointer;
  font-family: inherit;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 13px 16px;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  transition: background .2s, color .2s;
}
.pcard__btn--atc {
  background: var(--brown); color: var(--white);
}
.pcard__btn--atc:hover { background: var(--caramel); }
.pcard__btn--atc.loading { opacity: .7; cursor: wait; }
.pcard__btn--atc.added   { background: #3a7d52; }

.pcard__btn--qbuy {
  background: rgba(255,255,255,.92); color: var(--brown);
  backdrop-filter: blur(4px);
}
.pcard__btn--qbuy:hover { background: var(--white); color: var(--caramel); }
.pcard__btn--qbuy.loading { opacity: .7; cursor: wait; }

/* Info */
.pcard__info { padding: 14px 0 6px; }
.pcard__name {
  display: block; text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 400; line-height: 1.3;
  color: var(--text); margin-bottom: 5px;
  transition: color .2s;
}
.pcard__name:hover { color: var(--caramel); }
.pcard__price { font-size: 13px; color: var(--text-light); margin-bottom: 8px; letter-spacing: .03em; }
.pcard__sizes { display: flex; gap: 8px; flex-wrap: wrap; }
.pcard__size {
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-light); font-weight: 500;
}

/* ══════════════════════════════════════════════
   11. HOME: STORY / STAMP
══════════════════════════════════════════════ */
.story { background: var(--cream); padding: 80px 40px; display: flex; justify-content: center; align-items: center; }
.stamp-card {
  max-width: 680px; width: 100%; background: var(--beige);
  padding: 52px 60px 48px; position: relative;
  border: 2px dashed rgba(61,30,10,.2);
  outline: 2px dashed rgba(61,30,10,.08); outline-offset: 7px;
}
.stamp-card::before {
  content: ''; position: absolute; inset: 10px;
  border: 1px dashed rgba(61,30,10,.15); pointer-events: none;
}
.stamp-card p { font-size: 14px; line-height: 1.85; color: var(--text); margin-bottom: 16px; text-align: center; }
.stamp-card p:last-of-type { margin-bottom: 32px; }
.stamp-signature {
  text-align: right;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 32px; color: var(--caramel);
}

/* ══════════════════════════════════════════════
   12. SHOP / ARCHIVE
══════════════════════════════════════════════ */
.breadcrumb-bar { padding: 14px 40px; max-width: 1400px; margin: 0 auto; }
.filter-bar {
  position: sticky; top: 72px;
  background: #fff; border-bottom: 1px solid #f0ebe0;
  padding: 16px 40px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 90;
}
.filter-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  font-size: 10px; text-transform: uppercase; letter-spacing: .12em;
  padding: 7px 18px; border: 1px solid #b47850;
  background: transparent; cursor: pointer; font-family: inherit;
  transition: all .2s; color: #b47850;
}
.filter-btn:hover { background: rgba(180,120,80,.08); }
.filter-btn.active { background: #b47850; color: #fff; border-color: #b47850; }
.product-count { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #7a5230; white-space: nowrap; }
.shop-section { padding: 48px 40px; max-width: 1400px; margin: 0 auto; }
.shop-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.no-products { grid-column: 1/-1; text-align: center; padding: 60px 20px; color: #7a5230; font-size: 14px; }

/* ══════════════════════════════════════════════
   13. SINGLE PRODUCT
══════════════════════════════════════════════ */
.product-layout {
  display: grid; grid-template-columns: 55fr 45fr;
  gap: 48px; padding: 48px 40px;
  max-width: 1400px; margin: 0 auto;
}
.gallery-main { aspect-ratio: 3/4; overflow: hidden; background: #f5f0e8; cursor: zoom-in; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; display: block; }
.gallery-main:hover img { transform: scale(1.03); }
.thumbnails { display: flex; gap: 10px; margin-top: 12px; }
.thumb { width: 80px; height: 80px; object-fit: cover; cursor: pointer; border: 2px solid transparent; transition: border-color .2s; flex-shrink: 0; background: #f5f0e8; }
.thumb.active { border-color: #b47850; }
.product-info { display: flex; flex-direction: column; gap: 0; }
.product-category-tag { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: #b47850; margin-bottom: 10px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 400; color: #3c2010; line-height: 1.1; margin-bottom: 12px; }
.product-price { font-size: 22px; font-weight: 400; color: #7a5230; margin-bottom: 24px; }
.product-divider { height: 1px; background: #f0ebe0; margin-bottom: 24px; }
.size-label { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: #3c2010; margin-bottom: 10px; display: block; }
.size-btns { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.size-btn {
  width: 44px; height: 44px; border: 1px solid #f0ebe0;
  background: #fff; cursor: pointer; font-size: 11px; font-family: inherit;
  transition: all .2s; display: flex; align-items: center; justify-content: center; color: #3c2010;
}
.size-btn:hover { border-color: #b47850; }
.size-btn.selected { background: #3d1e0a; color: #fff; border-color: #3d1e0a; }
.talla-guide { font-size: 11px; color: #b47850; text-decoration: underline; text-underline-offset: 2px; cursor: pointer; margin-bottom: 24px; display: inline-block; }
.error-msg { font-size: 12px; color: #c0392b; margin-top: 8px; opacity: 0; transition: opacity .3s; min-height: 18px; }
.error-msg.show { opacity: 1; }
.qty-section { margin-bottom: 20px; }
.qty-label { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: #3c2010; margin-bottom: 10px; display: block; }
.qty-control { display: flex; align-items: center; margin-bottom: 24px; }
.qty-btn {
  width: 40px; height: 40px; border: 1px solid #f0ebe0;
  background: #fff; cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s; color: #3c2010; font-family: inherit; line-height: 1;
}
.qty-btn:hover { border-color: #b47850; background: #fdf8f3; }
.qty-display {
  width: 48px; height: 40px;
  border-top: 1px solid #f0ebe0; border-bottom: 1px solid #f0ebe0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #3c2010; user-select: none;
}
.add-to-cart-btn {
  display: block; width: 100%; height: 52px;
  background: #3d1e0a; color: #fff;
  font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: .12em;
  border: none; cursor: pointer; font-family: inherit;
  transition: background .25s; margin-bottom: 28px;
}
.add-to-cart-btn:hover { background: #b47850; }
.product-section-title { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: #3c2010; margin-bottom: 10px; font-weight: 600; }
.product-description, .product-cuidados { font-size: 14px; line-height: 1.8; color: #7a5230; margin-bottom: 24px; }

@keyframes shakeX {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}
.shake { animation: shakeX .4s ease; }

.success-toast {
  position: fixed; bottom: 24px; right: 24px;
  background: #3d1e0a; color: #fff;
  padding: 14px 24px; font-size: 13px; z-index: 999;
  transform: translateY(100px); opacity: 0;
  transition: all .4s ease; pointer-events: none; font-family: inherit;
}
.success-toast.show { transform: translateY(0); opacity: 1; }

.related-section { padding: 48px 40px 64px; max-width: 1400px; margin: 0 auto; }
.related-title { font-family: 'Playfair Display', serif; font-style: italic; font-size: 28px; font-weight: 400; color: #3d1e0a; margin-bottom: 32px; }
.related-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ══════════════════════════════════════════════
   14. CART (WooCommerce cart page)
══════════════════════════════════════════════ */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  max-width: 1200px; margin: 0 auto; padding: 48px 40px;
}
.woocommerce table.shop_table { width: 100%; border-collapse: collapse; }
.woocommerce table.shop_table th { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: var(--text-light); padding: 12px 8px; border-bottom: 1px solid #f0ebe0; }
.woocommerce table.shop_table td { padding: 20px 8px; border-bottom: 1px solid #f0ebe0; font-size: 14px; color: var(--text); vertical-align: middle; }
.woocommerce table.shop_table .product-thumbnail img { width: 80px; height: 100px; object-fit: cover; }
.woocommerce table.shop_table .product-name a { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--brown); }
.woocommerce-cart-form__cart-item .product-remove a { color: var(--text-light); font-size: 18px; }
.woocommerce .cart-collaterals { margin-top: 32px; }
.woocommerce .cart_totals { max-width: 400px; background: #f5f0e8; padding: 32px; }
.woocommerce .cart_totals h2 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 400; color: var(--brown); margin-bottom: 20px; }
.woocommerce .cart_totals table { width: 100%; }
.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td { padding: 10px 0; font-size: 14px; border-bottom: 1px solid #e0d8cc; }
.woocommerce .cart_totals .order-total td { font-size: 18px; font-weight: 600; color: var(--caramel); }
.woocommerce .wc-proceed-to-checkout .checkout-button { display: block; width: 100%; background: var(--brown); color: var(--white); text-align: center; padding: 14px 24px; font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; border: none; cursor: pointer; transition: background var(--transition); margin-top: 20px; }
.woocommerce .wc-proceed-to-checkout .checkout-button:hover { background: var(--caramel); }

/* WC quantity input */
.woocommerce .quantity input.qty { width: 48px; height: 40px; border: 1px solid #f0ebe0; text-align: center; font-size: 14px; font-family: inherit; }

/* ══════════════════════════════════════════════
   15. CHECKOUT
══════════════════════════════════════════════ */
.woocommerce-checkout h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 400; color: var(--brown); margin-bottom: 20px; }
.woocommerce form .form-row label { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: var(--text-light); font-weight: 500; margin-bottom: 6px; display: block; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  width: 100%; border: 0; border-bottom: 1px solid #e0d8cc;
  padding: 12px 0; font-size: 14px; background: transparent; outline: none; font-family: inherit; color: var(--text);
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus { border-bottom-color: var(--caramel); }
.woocommerce #payment { background: #f5f0e8; padding: 24px; margin-top: 20px; }
.woocommerce #payment ul.payment_methods { margin-bottom: 16px; }
.woocommerce #payment #place_order { display: block; width: 100%; background: var(--brown); color: var(--white); padding: 16px; font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; border: none; cursor: pointer; transition: background var(--transition); font-family: inherit; }
.woocommerce #payment #place_order:hover { background: var(--caramel); }

/* ══════════════════════════════════════════════
   16. THANK YOU PAGE
══════════════════════════════════════════════ */
.sty-hero { text-align: center; padding: 72px 40px 48px; background: var(--cream); }
.sty-hero__icon { width: 64px; height: 64px; background: var(--caramel); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.sty-hero__icon svg { color: var(--white); }
.sty-hero h1 { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 400; color: var(--brown); margin-bottom: 12px; }
.sty-order-tag { font-size: 13px; color: var(--text-light); }
.sty-order-tag strong { color: var(--caramel); }
.sty-container { max-width: 800px; margin: 0 auto; padding: 48px 40px; }
.sty-summary { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.sty-pill { background: #f5f0e8; padding: 12px 20px; flex: 1; min-width: 160px; }
.sty-pill__label { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: var(--text-light); margin-bottom: 4px; }
.sty-pill__value { font-size: 15px; color: var(--brown); font-weight: 500; }
.sty-section-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 400; color: var(--brown); margin-bottom: 20px; }
.sty-items-table { width: 100%; border-collapse: collapse; margin-bottom: 40px; }
.sty-items-table th { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--text-light); padding: 8px 0; border-bottom: 1px solid #f0ebe0; text-align: left; }
.sty-items-table td { padding: 16px 0; border-bottom: 1px solid #f0ebe0; font-size: 14px; color: var(--text); }
.sty-items-table .item-img { width: 64px; height: 80px; object-fit: cover; background: #f5f0e8; }
.sty-items-table .item-name { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--brown); }
.sty-items-table .item-meta { font-size: 12px; color: var(--text-light); }
.sty-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 40px; }
.sty-ctas a { flex: 1; min-width: 200px; padding: 14px 24px; text-align: center; font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; cursor: pointer; transition: all .25s; }
.sty-btn-primary { background: var(--brown); color: var(--white) !important; }
.sty-btn-primary:hover { background: var(--caramel); }
.sty-btn-outline { border: 1px solid var(--brown); color: var(--brown) !important; }
.sty-btn-outline:hover { background: var(--brown); color: var(--white) !important; }

/* ══════════════════════════════════════════════
   17. NOSOTROS (ABOUT)
══════════════════════════════════════════════ */
.about-hero { background: #f5f0e8; padding: 100px 40px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.about-hero__label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.22em; color: #b47850; font-weight: 500; }
.about-hero__title { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(36px,6vw,56px); font-weight: 400; color: #3d1e0a; line-height: 1.1; max-width: 700px; }
.about-hero__subtitle { font-family: 'Inter', sans-serif; font-size: 16px; color: var(--text-light); max-width: 560px; line-height: 1.7; font-weight: 300; }
.story-section { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.story-img { width: 100%; height: 100%; object-fit: cover; display: block; max-height: 720px; }
.story-img-wrap { overflow: hidden; max-height: 720px; }
.story-text { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }
.story-text h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 400; color: #3d1e0a; margin-bottom: 4px; }
.story-text p { font-size: 14px; line-height: 1.85; color: var(--text); }
.story-signature { font-family: 'Playfair Display', serif; font-style: italic; font-size: 32px; color: #b47850; margin-top: 8px; }
.values-section { background: #f5f0e8; padding: 72px 40px; }
.values-inner { max-width: 1200px; margin: 0 auto; }
.values-title { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 400; color: #3d1e0a; text-align: center; margin-bottom: 48px; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; }
.value-item { display: flex; flex-direction: column; gap: 14px; }
.value-item__line { width: 40px; height: 2px; background: #b47850; flex-shrink: 0; }
.value-item__title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 400; color: #3d1e0a; }
.value-item__text { font-size: 14px; line-height: 1.8; color: var(--text-light); }
.brands-section { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }
.brands-inner { max-width: 1200px; margin: 0 auto; }
.brands-title { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 400; color: #3d1e0a; text-align: center; margin-bottom: 16px; }
.brands-subtitle { font-size: 14px; line-height: 1.8; color: var(--text-light); text-align: center; max-width: 600px; margin: 0 auto 48px; }
.brands-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.brand-card { border: 1px solid rgba(61,30,10,.12); padding: 32px 28px; display: flex; flex-direction: column; gap: 16px; }
.brand-card__header { display: flex; flex-direction: column; gap: 6px; }
.brand-card__name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 400; color: #3d1e0a; }
.brand-card__tag { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: #b47850; font-weight: 500; }
.brand-card__desc { font-size: 13px; line-height: 1.8; color: var(--text-light); flex: 1; }
.brand-card__designers { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 8px; border-top: 1px solid rgba(61,30,10,.08); }
.brand-card__designers span { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: #3d1e0a; font-weight: 500; }
.about-cta { background: #3d1e0a; padding: 72px 40px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.about-cta__title { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(28px,5vw,40px); font-weight: 400; color: #ffffff; line-height: 1.2; }
.about-cta__btn { display: inline-block; border: 1px solid #ffffff; color: #ffffff; padding: 14px 40px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 500; background: transparent; cursor: pointer; transition: background 0.25s ease, color 0.25s ease; text-decoration: none; font-family: inherit; }
.about-cta__btn:hover { background: #ffffff; color: #3d1e0a; }

/* ══════════════════════════════════════════════
   18. CONTACTO
══════════════════════════════════════════════ */
.contact-hero { background: #f5f0e8; padding: 72px 40px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.contact-hero__label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.22em; color: #b47850; font-weight: 500; }
.contact-hero__title { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(32px,5vw,48px); font-weight: 400; color: #3d1e0a; line-height: 1.15; }
.contact-hero__sub { font-size: 15px; color: var(--text-light); max-width: 520px; line-height: 1.7; }
.contact-layout { display: grid; grid-template-columns: 60fr 40fr; gap: 60px; padding: 72px 40px; max-width: 1100px; margin: 0 auto; }
.contact-form-wrap h2,
.contact-info-wrap h2 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 400; color: #3d1e0a; margin-bottom: 32px; }
.form-group { margin-bottom: 28px; }
.form-group label { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-light); font-weight: 500; margin-bottom: 8px; }
.form-field { width: 100%; border: 0; border-bottom: 1px solid #e0d8cc; padding: 12px 0; font-size: 14px; background: transparent; outline: none; font-family: inherit; color: var(--text); transition: border-bottom-color 0.25s ease; -webkit-appearance: none; appearance: none; border-radius: 0; }
.form-field::placeholder { color: rgba(60,32,16,.35); }
.form-field:focus { border-bottom-color: #b47850; }
textarea.form-field { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-submit .btn-primary { width: auto; padding: 14px 40px; display: inline-block; }
.form-success { display: none; background: #f0f7f2; border-left: 3px solid #4a7c59; padding: 16px 20px; margin-top: 20px; font-size: 14px; color: #2d5a3d; line-height: 1.5; }
.form-success.visible { display: block; }
.contact-info-wrap { padding-top: 8px; }
.info-items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.info-item { display: flex; align-items: flex-start; gap: 14px; }
.info-item__icon { flex-shrink: 0; width: 36px; height: 36px; background: #f5f0e8; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #b47850; }
.info-item__text { display: flex; flex-direction: column; gap: 2px; }
.info-item__label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-light); font-weight: 500; }
.info-item__value { font-size: 14px; color: var(--text); line-height: 1.4; }
.delivery-section { border-top: 1px solid #e0d8cc; padding-top: 28px; }
.delivery-section h3 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 400; color: #3d1e0a; margin-bottom: 16px; }
.delivery-table { display: flex; flex-direction: column; border: 1px solid #e0d8cc; }
.delivery-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; font-size: 13px; color: var(--text); }
.delivery-row:not(:last-child) { border-bottom: 1px solid #e0d8cc; }
.delivery-row__time { color: #b47850; font-weight: 500; text-align: right; }

/* ══════════════════════════════════════════════
   19. WooCommerce notices & misc
══════════════════════════════════════════════ */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 12px 20px; margin-bottom: 20px; font-size: 14px; border-left: 4px solid var(--caramel);
  background: #fdf8f3; color: var(--text);
}
.woocommerce-error { border-left-color: #c0392b; background: #fdf0ef; }
.woocommerce .woocommerce-message a.button,
.woocommerce a.button {
  display: inline-block; background: var(--brown); color: var(--white) !important;
  padding: 10px 20px; font-size: 12px; text-transform: uppercase; letter-spacing: .1em;
  font-weight: 500; transition: background var(--transition);
}
.woocommerce a.button:hover { background: var(--caramel) !important; }

/* ══════════════════════════════════════════════
   20. GENERIC PAGE
══════════════════════════════════════════════ */
.page-content-wrap { max-width: 900px; margin: 0 auto; padding: 64px 40px; }
.page-content-wrap h1 { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 400; color: var(--brown); margin-bottom: 24px; }
.page-content-wrap p { font-size: 15px; line-height: 1.8; color: var(--text); margin-bottom: 16px; }

/* ══════════════════════════════════════════════
   21. 404
══════════════════════════════════════════════ */
.error-404 { text-align: center; padding: 120px 40px; }
.error-404 h1 { font-family: 'Playfair Display', serif; font-style: italic; font-size: 80px; color: var(--caramel); line-height: 1; }
.error-404 h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 400; color: var(--brown); margin: 16px 0; }
.error-404 p { color: var(--text-light); font-size: 15px; margin-bottom: 32px; }

/* ══════════════════════════════════════════════
   22. CAROUSEL COMPONENT
══════════════════════════════════════════════ */
.carousel-wrap {
  position: relative;
  /* Extra lateral padding para que los botones no tape el contenido */
  padding-left: 44px;
  padding-right: 44px;
}
.carousel-viewport {
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform .42s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
/* Item width se calcula en JS; el CSS garantiza que no crezca */
.carousel-item {
  flex-shrink: 0;
  /* default 3 cols */
  width: calc((100% - 32px) / 3);
}

/* Botones prev/next */
.carousel-btn {
  position: absolute;
  top: 38%;                /* ~mitad de la imagen (aspect 3:4) */
  transform: translateY(-50%);
  z-index: 10;
  width: 36px; height: 36px;
  background: #fff;
  border: 1px solid rgba(61,30,10,.12);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--brown);
  transition: background .2s, color .2s, opacity .2s;
  border-radius: 0;
}
.carousel-btn:hover { background: var(--caramel); color: #fff; border-color: var(--caramel); }
.carousel-btn:disabled { opacity: .3; cursor: default; }
.carousel-btn--prev { left: 0; }
.carousel-btn--next { right: 0; }

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  border: none; cursor: pointer; padding: 0;
  background: var(--caramel);
  opacity: .3;
  transition: opacity .2s, transform .2s;
}
.carousel-dot.active { opacity: 1; transform: scale(1.3); }

/* Responsive item widths */
@media (max-width: 1024px) {
  .carousel-item { width: calc((100% - 16px) / 2); }
  .carousel-wrap { padding-left: 40px; padding-right: 40px; }
}
@media (max-width: 768px) {
  .carousel-item { width: calc(83% - 8px); } /* muestra pico del siguiente */
  .carousel-wrap { padding-left: 36px; padding-right: 36px; }
  .carousel-btn { width: 30px; height: 30px; }
}

/* ══════════════════════════════════════════════
   24. RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .categories, .products { padding: 52px 0; }
  .categories-grid { grid-template-columns: repeat(3,1fr); gap: 12px; }
  .brands-home__grid { grid-template-columns: repeat(3,1fr); gap: 20px; }
  .related-grid { grid-template-columns: repeat(2,1fr); }
  .story-grid { gap: 40px; }
  .values-grid { gap: 32px; }
  .contact-layout { gap: 40px; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-top { padding: 48px 20px 40px; }
  .footer-top-inner { flex-direction: column; align-items: flex-start; gap: 36px; }
  .footer-newsletter-block { max-width: 100%; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .page-container { padding: 0 20px; }
  .hero-text { padding: 0 24px; }
  .hero-text span { font-size: clamp(28px,8vw,56px); }
  .categories-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .brands-home__grid { grid-template-columns: 1fr; gap: 24px; }
  .brands-home { padding: 60px 0; }
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .products { padding: 48px 20px; }
  .stamp-card { padding: 36px 28px 32px; }
  .story { padding: 56px 20px; }
  .breadcrumb-bar { padding: 12px 20px; }
  .filter-bar { padding: 12px 20px; }
  .shop-grid { grid-template-columns: repeat(2,1fr); }
  .shop-section { padding: 32px 20px; }
  .product-layout { grid-template-columns: 1fr; padding: 32px 20px; gap: 32px; }
  .product-name { font-size: 28px; }
  .related-section { padding: 32px 20px 48px; }
  .related-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .woocommerce-cart .woocommerce,
  .woocommerce-checkout .woocommerce { padding: 32px 20px; }
  .sty-container { padding: 32px 20px; }
  .sty-hero { padding: 56px 24px 36px; }
  .story-section { padding: 60px 24px; }
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .story-img-wrap { max-height: 480px; }
  .values-section { padding: 56px 24px; }
  .values-grid { grid-template-columns: 1fr; gap: 36px; }
  .values-title { font-size: 28px; }
  .brands-section { padding: 60px 24px; }
  .brands-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-hero { padding: 72px 24px; }
  .about-cta { padding: 60px 24px; }
  .contact-hero { padding: 56px 24px; }
  .contact-layout { grid-template-columns: 1fr; padding: 48px 24px; gap: 48px; }
  .page-content-wrap { padding: 48px 24px; }
  .error-404 { padding: 80px 24px; }
  .error-404 h1 { font-size: 56px; }
}
@media (max-width: 480px) {
  .hero-text { flex-direction: column; align-items: flex-start; }
  .hero-text span:last-child { text-align: left; }
  .section-title { font-size: 26px; }
  .shop-grid { gap: 16px; }
  .filter-bar { flex-direction: column; gap: 12px; align-items: flex-start; }
  .thumbnails { gap: 8px; }
  .thumb { width: 64px; height: 64px; }
  .about-hero { padding: 60px 20px; }
  .story-section { padding: 48px 20px; }
  .values-section { padding: 48px 20px; }
  .brands-section { padding: 48px 20px; }
  .about-cta { padding: 48px 20px; }
  .contact-hero { padding: 48px 20px; }
  .contact-layout { padding: 40px 20px; }
  .form-submit .btn-primary { width: 100%; display: block; }
  .sty-ctas { flex-direction: column; }
}
