/* Kinlig boutique home sections + store motion */

:root {
  --am-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --am-duration: 0.45s;
  --am-ink: var(--sh-ink, #1a1a1a);
  --am-muted: var(--sh-muted, #7a7a7a);
  --am-line: var(--sh-line, #e8e8e8);
  --am-soft: var(--sh-cream-deep, #f4f4f4);
  --am-accent: var(--sh-btn-bg, #000000);
  --am-serif: var(--sh-font-heading, Georgia, serif);
  --am-sans: var(--sh-font-body, system-ui, sans-serif);
  --am-script: var(--sh-font-heading, Georgia, serif);
}

/* —— Global soft motion (PC + mobile) —— */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

a, button, .sh-btn, .am-ghost-btn, .am-tab-btn, .am-product-card,
.am-nav-cats > a, .am-nav-item > a, .am-subnav a,
.sh-icon-btn, .sh-app-nav-item, .cuenta-auth-card, .cuenta-app-drawer {
  transition:
    color var(--am-duration) var(--am-ease),
    background var(--am-duration) var(--am-ease),
    border-color var(--am-duration) var(--am-ease),
    transform var(--am-duration) var(--am-ease),
    opacity var(--am-duration) var(--am-ease),
    box-shadow var(--am-duration) var(--am-ease);
}

.sh-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--am-ease), transform 0.7s var(--am-ease);
}
.sh-reveal.is-in {
  opacity: 1;
  transform: none;
}
.sh-reveal-delay-1 { transition-delay: 0.08s; }
.sh-reveal-delay-2 { transition-delay: 0.16s; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.am-ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  border: 1px solid var(--am-ink);
  background: var(--sh-cream, #fff);
  color: var(--am-ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--am-sans);
}
.am-ghost-btn:hover {
  background: var(--sh-btn-bg, var(--am-ink));
  color: var(--sh-btn-text, #fff);
}
.am-ghost-btn-sm {
  min-height: 38px;
  padding: 0 18px;
  font-size: 11px;
}

.am-section-head {
  margin-bottom: 36px;
}
.am-section-head h2 {
  margin: 0 0 10px;
  font-family: var(--am-sans);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--am-ink);
}
.am-section-head p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--am-muted);
  font-size: 14px;
}
.am-head-rule {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: #bbb;
  flex: 0 0 auto;
}

/* —— 1 Hero editorial —— */
.am-hero-editorial {
  background: var(--sh-cream, #fff);
  padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 7vw, 88px);
  overflow: hidden;
}
.am-hero-editorial-grid {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.am-hero-editorial-copy {
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}
.am-hero-title-stack {
  position: relative;
  margin-bottom: 10px;
}
.am-hero-script {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  font-family: var(--am-script);
  font-size: clamp(64px, 9vw, 110px);
  color: rgba(0,0,0,0.08);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}
.am-hero-editorial-copy h1 {
  position: relative;
  margin: 0;
  font-family: var(--am-sans);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}
.am-hero-editorial-copy h1 em {
  font-style: normal;
  font-weight: 800;
}
.am-hero-subtitle {
  margin: 8px 0 18px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--am-ink);
}
.am-hero-lead {
  margin: 0 auto 28px;
  max-width: 340px;
  color: #555;
  font-size: 13px;
  line-height: 1.7;
}
.am-hero-editorial-visual {
  position: relative;
  min-height: 420px;
}
.am-hero-visual-bg {
  position: absolute;
  right: 8%;
  top: 8%;
  width: 42%;
  height: 78%;
  background: #efefef;
  z-index: 0;
}
.am-hero-fig {
  margin: 0;
  position: absolute;
}
.am-hero-fig img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.12));
  transition: transform 0.8s var(--am-ease);
}
.am-hero-fig-back {
  left: 4%;
  top: 6%;
  width: 48%;
  z-index: 1;
}
.am-hero-fig-front {
  right: 2%;
  bottom: 0;
  width: 58%;
  z-index: 2;
}
.am-hero-editorial-visual:hover .am-hero-fig-front img {
  transform: translateY(-6px);
}
.am-hero-editorial-visual:hover .am-hero-fig-back img {
  transform: translateY(4px) scale(1.02);
}

/* —— Empty state (sin productos demo) —— */
.am-home-empty {
  margin: 8px 0 0;
  padding: 28px 20px;
  text-align: center;
  color: var(--sh-muted, #777);
  font-size: 14px;
  line-height: 1.55;
  background: rgba(0, 0, 0, 0.03);
}

.am-home-empty strong {
  color: inherit;
  font-weight: 650;
}

.am-home-empty--rich {
  padding: 36px 24px;
  border-radius: 12px;
}

.am-home-empty-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 650;
  color: var(--sh-text, #111);
}

.am-home-empty-text {
  margin: 0 auto 16px;
  max-width: 28rem;
}

.am-home-empty-cta {
  display: inline-block;
  font-size: 13px;
  font-weight: 650;
  color: var(--sh-text, #111);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* —— Featured / product cards —— */
.am-featured {
  padding: 24px 0 64px;
  background: var(--sh-cream, #fff);
}
.am-featured-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.am-featured-head-row .am-section-head,
.am-featured-head-row > div:first-child {
  margin-bottom: 0;
}
.am-carousel-nav {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}
.am-carousel-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--sh-ink, #111);
  background: var(--sh-cream, #fff);
  color: var(--sh-ink, #111);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.am-carousel-btn:hover {
  background: var(--sh-btn-bg, #111);
  color: var(--sh-btn-text, #fff);
}
.am-featured-carousel {
  overflow: hidden;
}
.am-featured-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.am-featured-track::-webkit-scrollbar { display: none; }
.am-featured-slide {
  flex: 0 0 calc((100% - 66px) / 4);
  min-width: 180px;
  scroll-snap-align: start;
}
.am-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 22px;
}
.am-product-card {
  text-align: left;
}
.am-product-media {
  background: var(--am-soft);
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 8px;
  cursor: pointer;
}
.am-product-media img,
.am-product-media-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--am-ease);
}
.am-product-card:hover .am-product-media img {
  transform: scale(1.04);
}
.am-product-media-link {
  display: block;
  width: 100%;
  height: 100%;
}
.am-product-badge {
  margin: 0 0 2px;
  color: #a33;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}
.am-product-name {
  margin: 0 0 2px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sh-muted, #444);
  line-height: 1.25;
}
.am-product-name a {
  color: inherit;
  text-decoration: none;
}
.am-product-name a:hover {
  color: var(--sh-ink, var(--am-ink));
}
.am-product-price {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--sh-ink, var(--am-ink));
  line-height: 1.2;
}
.am-product-stars {
  display: flex;
  gap: 2px;
  margin-top: 0;
}
.am-product-stars span {
  width: 10px;
  height: 10px;
  background:
    linear-gradient(#ddd, #ddd) center / 100% 100% no-repeat;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0.55;
}
.am-product-card .am-add { display: none; }
.am-empty-hint {
  grid-column: 1 / -1;
  color: var(--am-muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .am-featured-slide {
    flex-basis: calc((100% - 22px) / 2);
  }
}

/* —— 3 Luxury —— */
.am-luxury {
  background: var(--sh-cream, #fff);
  padding: 20px 0 72px;
}
.am-luxury-grid {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  align-items: stretch;
}
.am-luxury-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 36px;
  background: var(--sh-cream, #fff);
}
.am-luxury-script {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  font-family: var(--am-script);
  font-size: clamp(48px, 6vw, 84px);
  color: rgba(0,0,0,0.07);
  white-space: nowrap;
  pointer-events: none;
}
.am-luxury-kicker {
  position: relative;
  margin: 0 0 6px;
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 18px;
}
.am-luxury-copy h2 {
  position: relative;
  margin: 0 0 18px;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0.18em;
}
.am-luxury-lead {
  position: relative;
  margin: 0 0 28px;
  max-width: 340px;
  color: #666;
  font-size: 13px;
  line-height: 1.7;
}
.am-luxury-media {
  overflow: hidden;
  background: #eee;
}
.am-luxury-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 420px;
  transition: transform 1s var(--am-ease);
}
.am-luxury:hover .am-luxury-media img {
  transform: scale(1.03);
}

/* —— 4 Popular categories —— */
.am-popular {
  padding: 20px 0 64px;
  background: var(--sh-cream, #fff);
}
.am-popular-wrap {
  position: relative;
}
.am-popular-wm {
  position: absolute;
  left: 50%;
  top: 28%;
  transform: translate(-50%, -50%);
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.045);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}
.am-popular-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: left;
}
.am-popular-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}
.am-popular-media {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--am-soft, #f5f5f5);
  margin: 0;
}
.am-popular-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--am-ease, cubic-bezier(0.22, 1, 0.36, 1));
}
.am-popular-item:hover .am-popular-media img {
  transform: scale(1.04);
}
.am-popular-info {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}
.am-popular-name {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--sh-ink, var(--am-ink, #111));
  line-height: 1.3;
}
.am-popular-count {
  flex: 0 0 auto;
  margin: 0;
  color: #888;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}
.am-popular-item:hover .am-popular-name {
  color: var(--sh-ink, var(--am-ink, #111));
}
.am-show-all {
  display: none;
}

/* —— 5 Categories grid (“Nuestras categorías”) —— */
.am-tabs-cats {
  padding: 12px 0 64px;
  background: var(--sh-cream, #fff);
}
.am-tabs-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.am-tabs-head .am-section-head {
  margin-bottom: 0;
}
.am-tabs-all {
  flex: 0 0 auto;
  font-family: var(--am-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sh-ink, var(--am-ink, #111));
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 2px;
  line-height: 1.2;
}
.am-tabs-all:hover {
  opacity: 0.7;
  color: var(--sh-ink, var(--am-ink, #111));
}
.am-cats-nav {
  display: none;
}
.am-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

@keyframes amFadeUp {
  to { opacity: 1; transform: none; }
}

/* —— 6 Promo duo (horizontal + overlay) —— */
.am-promo-duo {
  padding: 12px 0 64px;
}
.am-promo-shell {
  position: relative;
}
.am-promo-toolbar {
  display: none;
}
.am-promo-nav {
  display: none;
}
.am-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.am-promo-card {
  --promo-text: #ffffff;
  --promo-btn-bg: #ffffff;
  --promo-btn-text: #111111;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 0;
  aspect-ratio: 2.2 / 1;
  overflow: hidden;
  background: #6e6e6e;
  isolation: isolate;
}
.am-promo-bg {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  overflow: hidden;
}
.am-promo-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translate3d(0, 0, 0) scale(1.12);
  will-change: transform;
}
.am-promo-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.38) 42%,
    rgba(0, 0, 0, 0.08) 100%
  );
  pointer-events: none;
}
.am-promo-copy {
  position: relative;
  z-index: 2;
  padding: clamp(20px, 3vw, 36px);
  max-width: min(72%, 360px);
}
.am-promo-copy h3 {
  margin: 0 0 16px;
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--promo-text);
  max-width: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.am-promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid var(--promo-btn-bg);
  background: var(--promo-btn-bg);
  color: var(--promo-btn-text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--am-sans);
  transition: transform 0.25s var(--am-ease), opacity 0.25s var(--am-ease);
}
.am-promo-btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
  color: var(--promo-btn-text);
  background: var(--promo-btn-bg);
}

/* —— 7 Testimonials —— */
.am-testimonials {
  padding: 24px 0 72px;
  background: var(--sh-cream, #fff);
}
.am-testimonial-slider {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 12px 48px;
}
.am-testimonial-item {
  display: none;
  margin: 0;
}
.am-testimonial-item.is-active {
  display: block;
  animation: amFadeUp 0.5s var(--am-ease) forwards;
}
.am-testimonial-quote {
  margin: 0 0 18px;
  font-family: var(--am-serif);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.55;
  color: var(--am-ink);
  font-weight: 500;
}
.am-testimonial-email {
  margin: 0 0 6px;
  color: #999;
  font-size: 12px;
}
.am-testimonial-name {
  display: block;
  font-style: normal;
  font-family: var(--am-sans);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 13px;
}
.am-testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  font-size: 28px;
  color: #ccc;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
}
.am-testimonial-nav:hover { color: #888; }
.am-testimonial-nav.is-prev { left: 0; }
.am-testimonial-nav.is-next { right: 0; }

/* —— Trust / contacto (editorial boutique) —— */
.sh-home-desktop .am-trust.sh-trust {
  background: transparent;
  color: #fff;
  margin: 0;
  padding: 0;
  border-radius: 0;
}

.sh-home-desktop .am-trust-stage {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(255, 255, 255, 0.07) 0%, transparent 55%),
    linear-gradient(165deg, #171717 0%, #0a0a0a 48%, #111 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sh-home-desktop .am-trust-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -12deg,
    transparent 0,
    transparent 11px,
    rgba(255, 255, 255, 0.015) 11px,
    rgba(255, 255, 255, 0.015) 12px
  );
  pointer-events: none;
}

.sh-home-desktop .am-trust-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 64px 0 56px;
  max-width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.sh-home-desktop .am-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.75fr);
  gap: 36px 56px;
  align-items: start;
}

.sh-home-desktop .am-trust-eyebrow {
  margin: 0 0 14px;
  font-family: var(--am-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.sh-home-desktop .am-trust-title {
  margin: 0;
  max-width: 14ch;
  font-family: var(--am-serif);
  font-size: clamp(36px, 4.6vw, 56px);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.12;
  color: #fff;
}

.sh-home-desktop .am-trust-aside {
  display: flex;
  justify-content: flex-end;
  padding-top: 2px;
}

.sh-home-desktop .am-trust-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 18px;
  row-gap: 4px;
  align-items: center;
  min-width: min(100%, 280px);
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  text-decoration: none;
  transition: transform 0.28s var(--am-ease);
}

.sh-home-desktop .am-trust-cta:hover {
  transform: translateY(-2px);
  background: transparent;
  color: #fff;
}

.sh-home-desktop .am-trust-cta-kicker {
  grid-column: 1;
  grid-row: 1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.sh-home-desktop .am-trust-cta-num {
  grid-column: 1;
  grid-row: 2;
  font-family: var(--am-sans);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: #fff;
}

.sh-home-desktop .am-trust-cta-go {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-size: 22px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.28s var(--am-ease), color 0.28s var(--am-ease);
}

.sh-home-desktop .am-trust-cta:hover .am-trust-cta-go {
  color: #fff;
  transform: translateX(4px);
}

.sh-home-desktop .am-trust-list {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
  border-top: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 28px;
}

.sh-home-desktop .am-trust-list li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  position: static;
}

.sh-home-desktop .am-trust-list li::before {
  display: none;
}

.sh-home-desktop .am-trust-idx {
  font-family: var(--am-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.35);
}

.sh-home-desktop .am-trust-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
}

@media (max-width: 900px) {
  .sh-home-desktop .am-trust-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .sh-home-desktop .am-trust-aside {
    justify-content: flex-start;
  }
  .sh-home-desktop .am-trust-title {
    max-width: none;
  }
  .sh-home-desktop .am-trust-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* —— 8 Services + newsletter —— */
.am-services {
  padding: 40px 0 48px;
  border-top: 1px solid var(--am-line);
}
.am-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.am-service-ico {
  display: inline-flex;
  color: var(--am-ink);
  margin-bottom: 14px;
}
.am-service-item h3 {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.am-service-item p {
  margin: 0 auto;
  max-width: 260px;
  color: var(--am-muted);
  font-size: 13px;
  line-height: 1.6;
}
.am-services--product {
  margin: 40px 0 24px;
  padding-top: 32px;
}

.am-newsletter {
  background: #f2f2f2;
  padding: 28px 0;
}
.am-newsletter-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1.2fr;
  gap: 24px;
  align-items: center;
}
.am-newsletter-inner h2 {
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.14em;
  font-weight: 800;
}
.am-newsletter-text {
  margin: 0;
  color: #666;
  font-size: 12px;
  line-height: 1.55;
}
.am-newsletter-form {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #222;
  gap: 8px;
}
.am-newsletter-form input[type="email"] {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 10px 0;
  font-size: 13px;
  outline: none;
  font-family: var(--am-sans);
}
.am-newsletter-form button {
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
  color: var(--am-ink);
}
.am-newsletter-msg {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  margin: 0;
  font-size: 12px;
  color: #111;
}
.am-newsletter-msg.is-error { color: #a33; }

  /* —— Nav dropdown smoother —— */
@media (min-width: 721px) {
  .am-subnav {
    /* keep translateX from Kinlig-desktop; only animate opacity/visibility here */
  }
}

/* —— Mobile: solo stream del lienzo móvil —— */
@media (max-width: 720px) {
  .sh-home-desktop { display: none !important; }
  .am-boutique-only { display: none !important; }

  .sh-app-nav-item,
  .sh-app-banner-slide img,
  .sh-app-list article {
    transition: transform 0.35s var(--am-ease), opacity 0.35s var(--am-ease);
  }

  .cuenta-auth-layer,
  .cuenta-app-layer {
    transition: opacity 0.35s var(--am-ease);
  }
  .cuenta-app-drawer {
    transition: transform 0.4s var(--am-ease);
  }

  .am-tabs-cats,
  .am-promo-duo,
  .am-testimonials,
  .am-newsletter {
    padding-left: 0;
    padding-right: 0;
  }

  .am-tabs-cats {
    padding: 8px 0 36px;
  }

  .am-tabs-cats .sh-container,
  .am-testimonials .sh-container,
  .am-newsletter .sh-container,
  .am-promo-shell {
    width: calc(100% - 28px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .am-section-head {
    margin-bottom: 18px;
    text-align: center;
  }

  .am-section-head h2 {
    margin: 0 0 4px;
    font-size: 17px;
    letter-spacing: 0.1em;
  }

  .am-section-head p {
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    line-height: 1.35;
  }

  .am-head-rule {
    display: none;
  }

  .am-tabs-head {
    position: relative;
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    text-align: center;
    padding-right: 80px;
    min-height: 32px;
  }

  .am-tabs-head .am-section-head {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }

  .am-tabs-cats .sh-container {
    position: relative;
    overflow: visible;
  }

  .am-cats-nav {
    display: flex !important;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
    gap: 6px;
  }

  .am-cats-nav .am-carousel-btn,
  .am-promo-toolbar .am-carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  /* Full-bleed a la derecha; la 1ª tarjeta con aire a la izquierda */
  .am-cats-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -14px;
    width: calc(100% + 28px);
    max-width: none;
    padding: 0 0 0 14px;
    box-sizing: border-box;
  }

  .am-cats-grid::-webkit-scrollbar {
    display: none;
  }

  .am-cats-grid .am-cats-slide {
    flex: 0 0 44%;
    width: 44%;
    max-width: 44%;
    scroll-snap-align: start;
    min-width: 0;
  }

  .am-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
  }

  /* Promo: uno + peek; flechas Kinlig arriba derecha */
  .am-promo-duo {
    padding: 4px 0 40px;
  }

  .am-promo-shell {
    position: relative;
    display: block;
  }

  .am-promo-toolbar {
    display: flex;
    justify-content: flex-end;
    margin: 0 0 12px;
  }

  .am-promo-toolbar .am-carousel-nav {
    display: flex;
  }

  .am-promo-grid {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0;
    margin: 0 -14px;
    width: calc(100% + 28px);
  }

  .am-promo-grid::-webkit-scrollbar {
    display: none;
  }

  .am-promo-card {
    flex: 0 0 88%;
    width: 88%;
    max-width: 88%;
    aspect-ratio: 1.65 / 1;
    scroll-snap-align: start;
    border-radius: 0;
  }

  .am-promo-copy {
    max-width: 78%;
    padding: 18px;
  }

  .am-promo-copy h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .am-testimonials {
    padding: 8px 0 40px;
  }

  .am-testimonial-slider {
    padding: 8px 36px;
    max-width: none;
  }

  .am-testimonial-quote {
    font-size: 17px;
    line-height: 1.5;
  }

  .am-testimonial-nav {
    font-size: 24px;
    color: #bbb;
  }

  .am-newsletter {
    padding: 22px 0 26px;
  }

  .am-newsletter-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left;
  }

  .am-newsletter-inner h2 {
    font-size: 14px;
  }

  .am-newsletter-text {
    font-size: 12px;
  }
}

@media (min-width: 721px) {
  .sh-home-app { display: none !important; }
  .hm-mobile-stream { display: none !important; }

  .am-promo-shell {
    display: block;
  }

  .am-promo-toolbar {
    display: none !important;
  }

  .am-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .am-cats-nav {
    display: none !important;
  }

  .am-cats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .am-hero-editorial-grid,
  .am-luxury-grid,
  .am-newsletter-inner {
    grid-template-columns: 1fr;
  }
  .am-featured-grid,
  .am-popular-grid,
  .am-cats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .am-tabs-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .am-services-grid { grid-template-columns: 1fr; }
  .am-hero-editorial-visual { min-height: 320px; }
  .am-promo-grid {
    grid-template-columns: 1fr;
  }
  .am-promo-card {
    aspect-ratio: 2 / 1;
  }
  .am-promo-copy {
    max-width: 80%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .am-promo-bg-img {
    transform: none !important;
  }
}
