/* ==========================================================================
   STOREFRONT.CSS
   Estilos públicos de storefront, más específicos
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens específicos storefront
   -------------------------------------------------------------------------- */
:root {
  --store-surface-strong: rgba(255, 250, 242, 0.92);
  --store-surface-soft: rgba(255, 251, 245, 0.9);
  --store-ink-strong: #251608;
  --store-ink-medium: #5a3920;
  --store-ink-soft: #7b5a40;
  --store-line: rgba(130, 77, 20, 0.14);
  --store-line-strong: rgba(130, 77, 20, 0.22);
  --store-shadow-sm: 0 10px 24px rgba(56, 31, 11, 0.07);
  --store-shadow-md: 0 18px 34px rgba(56, 31, 11, 0.12);
  --store-shadow-lg: 0 20px 44px rgba(28, 15, 6, 0.22);
  --store-shadow-xl: 0 18px 38px rgba(38, 19, 7, 0.2);
  --store-radius-sm: 16px;
  --store-radius-md: 20px;
  --store-radius-lg: 24px;
  --store-radius-xl: 28px;
  --store-section-y: clamp(3.2rem, 6vw, 6rem);
}

/* --------------------------------------------------------------------------
   2. Base storefront shell
   -------------------------------------------------------------------------- */
body.storefront {
  background: linear-gradient(180deg, #f7efe3 0%, #f5ecde 100%);
  color: var(--store-ink-strong);
}

.storefront .site-shell {
  position: relative;
  isolation: isolate;
}

.storefront .skip-link {
  position: absolute;
  top: -120%;
  left: 0.8rem;
  z-index: 200;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.storefront .skip-link:focus {
  top: 0.8rem;
}

/* --------------------------------------------------------------------------
   3. Announcement bar
   -------------------------------------------------------------------------- */
.storefront .site-announcement {
  background: linear-gradient(90deg, #2a180b 0%, #4a2a11 55%, #5f3312 100%);
  color: rgba(255, 243, 228, 0.94);
  font-size: 0.86rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.storefront .site-announcement__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.35rem;
  padding: 0.45rem 0;
}

.storefront .site-announcement__inner p {
  margin: 0;
  color: inherit;
  min-width: 0;
  line-height: 1.35;
}

.storefront .site-announcement__inner a {
  flex-shrink: 0;
  color: #ffd78c;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.storefront .site-announcement__inner a:hover,
.storefront .site-announcement__inner a:focus-visible {
  color: #fff2d2;
}

@media (max-width: 991px) {
  .storefront .site-announcement {
    font-size: 0.82rem;
  }

  .storefront .site-announcement__inner {
    gap: 0.75rem;
    min-height: 2.1rem;
  }

  .storefront .site-announcement__inner p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .storefront .site-announcement {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   4. Header / nav
   -------------------------------------------------------------------------- */
.storefront .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 247, 236, 0.84);
  border-bottom: 1px solid rgba(154, 93, 40, 0.16);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  transition:
    background 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.storefront .site-header.site-header--scrolled {
  background: rgba(255, 249, 241, 0.96);
  border-bottom-color: rgba(154, 93, 40, 0.24);
  box-shadow: 0 10px 24px rgba(63, 32, 10, 0.1);
}

.storefront .site-header__inner {
  min-height: 5rem;
}

.storefront .site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.storefront .site-logo__mark {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.85rem;
  background: linear-gradient(140deg, #9f5613, #c9781f 52%, #e5aa56);
  color: #fff9f0;
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(156, 87, 32, 0.28);
}

.storefront .site-logo__text {
  display: grid;
  gap: 0.08rem;
}

.storefront .site-logo__text strong {
  color: #3a220f;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  line-height: 1;
}

.storefront .site-logo__text small {
  color: #8b653f;
  letter-spacing: 0.03em;
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
}

.storefront .site-nav {
  display: flex;
  align-items: center;
}

.storefront .site-nav__link {
  position: relative;
  display: inline-block;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  color: #614020;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.storefront .site-nav__link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.45rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c9781f, #ebb65b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.storefront .site-nav__link:hover,
.storefront .site-nav__link:focus-visible,
.storefront .site-nav__link.is-active {
  color: #2f1c0c;
  background: rgba(201, 120, 31, 0.12);
}

.storefront .site-nav__link:hover::after,
.storefront .site-nav__link:focus-visible::after,
.storefront .site-nav__link.is-active::after {
  transform: scaleX(1);
}

.storefront .site-nav__actions .button--ghost {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(130, 77, 20, 0.14);
}

.storefront .site-nav__actions .button {
  height: 2.55rem;
}

.storefront .nav-toggle {
  border-color: rgba(145, 86, 33, 0.34);
  background: rgba(255, 255, 255, 0.55);
}

.storefront .nav-toggle__bar {
  background: #4c2c12;
}

/* --------------------------------------------------------------------------
   5. Flash banners
   -------------------------------------------------------------------------- */
.storefront .flash-banner {
  margin-top: 1rem;
  margin-bottom: 1.1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  border: 1px solid;
  font-weight: 700;
}

.storefront .flash-banner--success {
  border-color: rgba(47, 125, 90, 0.3);
  color: #1f5b3f;
  background: rgba(47, 125, 90, 0.1);
}

.storefront .flash-banner--error {
  border-color: rgba(181, 64, 56, 0.3);
  color: #7f261f;
  background: rgba(181, 64, 56, 0.12);
}

/* --------------------------------------------------------------------------
   6. Hero slider / Hero
   -------------------------------------------------------------------------- */
.storefront .hero-slider {
  position: relative;
  overflow: hidden;
}

.storefront .hero-slider__viewport {
  position: relative;
  overflow: hidden;
}

.storefront .hero-slider__track {
  display: flex;
  width: 200%;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.storefront .hero-slide {
  width: 50%;
  flex: 0 0 50%;
}

.storefront .hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 7vw, 6.5rem) 0 clamp(2rem, 5vw, 4.8rem);
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.storefront .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      112deg,
      rgba(16, 10, 5, 0.92) 0%,
      rgba(20, 12, 6, 0.74) 38%,
      rgba(20, 12, 6, 0.42) 68%,
      rgba(20, 12, 6, 0.22) 100%
    );
  z-index: 0;
}

.storefront .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 214, 145, 0.18), transparent 32%),
    radial-gradient(circle at 78% 28%, rgba(255, 243, 220, 0.12), transparent 28%);
  z-index: 0;
  pointer-events: none;
}

.storefront .hero > .container {
  position: relative;
  z-index: 1;
}

.storefront .hero__grid {
  display: grid;
  align-items: center;
  gap: clamp(1.4rem, 4vw, 3.2rem);
}

.storefront .hero__content {
  display: grid;
  gap: 1.2rem;
  max-width: 43rem;
}

.storefront .hero .eyebrow {
  margin: 0;
  color: rgba(255, 220, 155, 0.98);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.storefront .hero h1,
.storefront .hero .hero__title-alt {
  margin: 0;
  color: #fff8ee;
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.storefront .hero .hero__title-alt {
  font-weight: 800;
}

.storefront .lead--bright {
  margin: 0;
  max-width: 58ch;
  color: rgba(255, 239, 214, 0.9);
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  line-height: 1.75;
}

.storefront .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.2rem;
}

.storefront .hero .button--primary {
  box-shadow: 0 14px 34px rgba(56, 25, 4, 0.28);
}

.storefront .hero .button--ghost {
  background: rgba(255, 249, 240, 0.1);
  border-color: rgba(255, 226, 185, 0.24);
  color: #fff5e4;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.storefront .hero .button--ghost:hover,
.storefront .hero .button--ghost:focus-visible {
  background: rgba(255, 249, 240, 0.16);
  border-color: rgba(255, 226, 185, 0.42);
  color: #fffaf3;
  box-shadow: 0 10px 28px rgba(10, 6, 3, 0.14);
}

.storefront .hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.storefront .hero-metrics li {
  display: grid;
  gap: 0.28rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 250, 238, 0.14), rgba(255, 250, 238, 0.08));
  border: 1px solid rgba(255, 221, 168, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.storefront .hero-metrics strong {
  display: block;
  color: #fff7e5;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.storefront .hero-metrics span {
  display: block;
  color: rgba(255, 237, 205, 0.74);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.storefront .hero-showcase {
  display: flex;
  justify-content: flex-end;
  align-self: center;
}

.storefront .hero-product-card {
  width: min(100%, 470px);
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 248, 240, 0.08);
  box-shadow:
    0 28px 70px rgba(13, 8, 4, 0.42),
    0 10px 24px rgba(13, 8, 4, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.storefront .hero-product-card__media {
  position: relative;
  overflow: hidden;
}

.storefront .hero-product-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transform: scale(1.01);
}

.storefront .hero-product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.storefront .hero-product-card__copy {
  display: grid;
  gap: 0.7rem;
  padding: 1.35rem 1.35rem 1.45rem;
  background: linear-gradient(180deg, rgba(18, 10, 4, 0.72), rgba(18, 10, 4, 0.94));
}

.storefront .hero-product-card__kicker {
  margin: 0;
  color: rgba(255, 214, 145, 0.88);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.storefront .hero-product-card__copy h2 {
  margin: 0;
  color: #fff8ec;
  font-size: clamp(1.35rem, 2.1vw, 1.7rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.storefront .hero-product-card__copy p {
  margin: 0;
  color: rgba(255, 232, 200, 0.84);
  font-size: 0.95rem;
  line-height: 1.65;
}

.storefront .hero-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.25rem;
}

.storefront .hero-product-card__footer strong {
  color: #ffdd88;
  font-size: 1.24rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.storefront .hero-product-card__link {
  color: #fff4dc;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 221, 136, 0.4);
  transition: border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.storefront .hero-product-card__link:hover,
.storefront .hero-product-card__link:focus-visible {
  color: #fff9ef;
  border-color: rgba(255, 221, 136, 0.85);
}

/* --------------------------------------------------------------------------
   Hero slider arrows / dots
   -------------------------------------------------------------------------- */
.storefront .hero-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 235, 205, 0.22);
  border-radius: 999px;
  background: rgba(20, 10, 4, 0.48);
  color: #fff4dc;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(-50%);
  cursor: pointer;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease,
    color 0.22s ease,
    opacity 0.22s ease;
}

.storefront .hero-slider__arrow:hover,
.storefront .hero-slider__arrow:focus-visible {
  background: rgba(32, 16, 7, 0.72);
  border-color: rgba(255, 235, 205, 0.42);
  color: #ffffff;
}

.storefront .hero-slider__arrow--prev {
  left: clamp(0.8rem, 2vw, 1.4rem);
}

.storefront .hero-slider__arrow--next {
  right: clamp(0.8rem, 2vw, 1.4rem);
}

.storefront .hero-slider__arrow span {
  font-size: 1.9rem;
  line-height: 1;
  transform: translateY(-1px);
}

.storefront .hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 1.3rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  transform: translateX(-50%);
}

.storefront .hero-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 239, 214, 0.42);
  cursor: pointer;
  transition: transform 0.22s ease, background-color 0.22s ease, opacity 0.22s ease;
}

.storefront .hero-slider__dot:hover,
.storefront .hero-slider__dot:focus-visible {
  background: rgba(255, 248, 234, 0.8);
}

.storefront .hero-slider__dot.is-active {
  background: #ffd788;
  transform: scale(1.2);
}

/* --------------------------------------------------------------------------
   Responsive hero
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  .storefront .hero-slider__arrow {
    width: 48px;
    height: 48px;
  }

  .storefront .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  }
}

@media (max-width: 980px) {
  .storefront .hero__grid {
    grid-template-columns: 1fr;
  }

  .storefront .hero__content {
    max-width: none;
  }

  .storefront .hero h1,
  .storefront .hero .hero__title-alt {
    max-width: 12ch;
  }

  .storefront .hero-showcase {
    justify-content: flex-start;
  }

  .storefront .hero-product-card {
    width: min(100%, 520px);
  }
}

@media (max-width: 720px) {
  .storefront .hero {
    padding: 2.1rem 0 4.3rem;
    background-position: center;
  }

  .storefront .hero h1,
  .storefront .hero .hero__title-alt {
    max-width: none;
    font-size: clamp(2.15rem, 9vw, 3.25rem);
    line-height: 0.98;
  }

  .storefront .lead--bright {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .storefront .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .storefront .hero__actions .button {
    width: 100%;
    justify-content: center;
  }

  .storefront .hero-metrics {
    grid-template-columns: 1fr;
  }

  .storefront .hero-product-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .storefront .hero-slider__arrow {
    display: none;
  }

  .storefront .hero-slider__dots {
    bottom: 1.2rem;
  }
}

@media (max-width: 560px) {
  .storefront .hero {
    padding: 1.8rem 0 4.4rem;
  }

  .storefront .hero__content {
    gap: 1rem;
  }

  .storefront .hero .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .storefront .lead--bright {
    font-size: 0.94rem;
  }

  .storefront .hero-metrics li {
    padding: 0.9rem 1rem;
  }

  .storefront .hero-product-card__copy {
    padding: 1.1rem 1.05rem 1.2rem;
  }

  .storefront .hero-product-card__copy h2 {
    font-size: 1.22rem;
  }

  .storefront .hero-product-card__copy p {
    font-size: 0.9rem;
  }

  .storefront .hero-product-card__footer strong {
    font-size: 1.08rem;
  }
}

@media (max-width: 400px) {
  .storefront .hero-slider__arrow {
    width: 40px;
    height: 40px;
  }

  .storefront .hero-slider__arrow span {
    font-size: 1.6rem;
  }

  .storefront .hero-slider__dots {
    gap: 0.45rem;
  }

  .storefront .hero-slider__dot {
    width: 9px;
    height: 9px;
  }
}
/* --------------------------------------------------------------------------
   7. Trust bar
   -------------------------------------------------------------------------- */
.storefront .trust-bar {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(140, 84, 34, 0.14);
  border-bottom: 1px solid rgba(140, 84, 34, 0.14);
  background: linear-gradient(
    90deg,
    rgba(255, 245, 230, 0.92) 0%,
    rgba(255, 250, 242, 0.98) 50%,
    rgba(255, 245, 230, 0.92) 100%
  );
}

.storefront .trust-bar__viewport {
  width: 100%;
  overflow: hidden;
}

.storefront .trust-bar__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: trustBarMarquee 24s linear infinite;
  will-change: transform;
}

.storefront .trust-bar__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  margin: 0;
  padding: 0 1rem;
  list-style: none;
}

.storefront .trust-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3rem;
  padding: 0 1.1rem;
  color: #4a2e10;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  border-right: 1px solid rgba(140, 84, 34, 0.12);
}

.storefront .trust-bar__inner .trust-bar__item:last-child {
  border-right: 1px solid rgba(140, 84, 34, 0.12);
}

.storefront .trust-bar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #c9781f;
}

.storefront .trust-bar__icon svg {
  width: 1.08rem;
  height: 1.08rem;
}

@keyframes trustBarMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (hover: hover) {
  .storefront .trust-bar__track:hover {
    animation-play-state: paused;
  }
}

@media (max-width: 768px) {
  .storefront .trust-bar {
    padding: 0.72rem 0;
  }

  .storefront .trust-bar__track {
    animation-duration: 20s;
  }

  .storefront .trust-bar__inner {
    gap: 0.75rem;
    padding: 0 0.75rem;
  }

  .storefront .trust-bar__item {
    min-height: 2.7rem;
    padding: 0 0.9rem;
    font-size: 0.84rem;
    gap: 0.6rem;
  }

  .storefront .trust-bar__icon svg {
    width: 1rem;
    height: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .storefront .trust-bar__track {
    animation: none;
  }
}
/* --------------------------------------------------------------------------
   8. Sections and headers
   -------------------------------------------------------------------------- */
.storefront .section {
  padding-block: var(--store-section-y);
  position: relative;
}

.storefront .section.section--soft {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.72), rgba(242, 231, 213, 0.46));
}

.storefront .section--categories,
.storefront .section--products,
.storefront .section--speciality,
.storefront .section--process,
.storefront .section--works {
  overflow: clip;
}

.storefront .section-header {
  display: grid;
  gap: 0.7rem;
  margin-bottom: clamp(1.7rem, 4.5vw, 3rem);
}

.storefront .section-header h2 {
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.storefront .section-header .lead {
  margin: 0;
  max-width: 64ch;
  line-height: 1.72;
  color: #6c4b2a;
}

.storefront .section-header--wide .lead {
  max-width: 72ch;
}

.storefront .section-header--center {
  justify-items: center;
  text-align: center;
}

.storefront .section-header--center .lead {
  margin-inline: auto;
}

.storefront .section-header--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1.2rem;
}

.storefront .section-header--split .lead {
  max-width: 58ch;
}

.storefront .section-header--align-end {
  align-items: end;
}

.storefront .empty-state__actions {
  justify-content: center;
  margin-top: 1.25rem;
}

/* --------------------------------------------------------------------------
   9. Cards storefront
   -------------------------------------------------------------------------- */
.storefront .card {
  border: 1px solid rgba(130, 77, 20, 0.11);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(255, 248, 239, 0.96));
  box-shadow:
    0 8px 24px rgba(45, 24, 7, 0.07),
    0 1px 3px rgba(45, 24, 7, 0.04);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.22s ease,
    background 0.22s ease;
}

.storefront .card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 122, 32, 0.22);
  box-shadow:
    0 20px 46px rgba(45, 24, 7, 0.13),
    0 5px 14px rgba(45, 24, 7, 0.05);
}

.storefront .card-body {
  display: grid;
  gap: 0.72rem;
  padding: 1.25rem 1.25rem 1.35rem;
}

.storefront .card-body h3 {
  margin: 0;
  font-size: clamp(1.14rem, 1.8vw, 1.42rem);
  line-height: 1.08;
  color: #221305;
  text-wrap: balance;
}

.storefront .card-body p {
  margin: 0;
  color: #6c4b2a;
  line-height: 1.66;
}

.storefront .card-meta {
  margin: 0;
  color: #a05515;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.storefront .storefront-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.2rem;
  color: #7e4914;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

/* --------------------------------------------------------------------------
   10. Storefront cards
   -------------------------------------------------------------------------- */
.storefront .storefront-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
}

.storefront .storefront-card {
  height: 100%;
}

.storefront .storefront-card > a {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.storefront .storefront-card--editorial {
  overflow: hidden;
}

.storefront .storefront-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(247, 230, 201, 0.82), rgba(255, 247, 232, 0.94));
}

.storefront .storefront-card__media--square {
  aspect-ratio: 1 / 1;
}

.storefront .storefront-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.storefront .storefront-card:hover .storefront-card__media img {
  transform: scale(1.06);
}

.storefront .badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  background: linear-gradient(120deg, rgba(27, 17, 9, 0.9), rgba(62, 35, 13, 0.88));
  border: 1px solid rgba(255, 214, 145, 0.36);
}

.storefront .price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.1rem;
}

.storefront .price-row strong {
  color: #2b1707;
  font-size: 1.12rem;
  line-height: 1.1;
}

.storefront .price-row span {
  color: #a88561;
  font-size: 0.92rem;
  text-decoration: line-through;
}

/* --------------------------------------------------------------------------
   11. Editorial banner / process / gallery
   -------------------------------------------------------------------------- */
.storefront .editorial-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  gap: clamp(1.2rem, 3vw, 2rem);
  padding: clamp(1rem, 2vw, 1.2rem);
  border: 1px solid rgba(130, 77, 20, 0.11);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(255, 248, 239, 0.96));
  box-shadow:
    0 10px 26px rgba(45, 24, 7, 0.08),
    0 2px 6px rgba(45, 24, 7, 0.04);
}

.storefront .editorial-banner__media {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(247, 230, 201, 0.82), rgba(255, 247, 232, 0.94));
}

.storefront .editorial-banner__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.storefront .editorial-banner__copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(0.5rem, 1vw, 0.8rem);
}

.storefront .editorial-banner__copy h2 {
  margin: 0;
  color: #221305;
  font-size: clamp(1.7rem, 2.8vw, 2.55rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.storefront .editorial-banner__copy .lead {
  margin: 0;
  color: #6c4b2a;
  max-width: 58ch;
  line-height: 1.72;
}

.storefront .feature-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.storefront .feature-list li {
  position: relative;
  padding-left: 1.45rem;
  color: #53341a;
  line-height: 1.58;
}

.storefront .feature-list li::before {
  content: "";
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #c9781f, #e4a349);
  box-shadow: 0 0 0 4px rgba(201, 120, 31, 0.12);
}

.storefront .process-grid {
  display: grid;
  gap: 1.1rem;
}

.storefront .process-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.storefront .step-card {
  position: relative;
  height: 100%;
  padding: 1.45rem;
}

.storefront .step-card__number {
  color: rgba(157, 88, 22, 0.18);
  font-size: 2.7rem;
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.45rem;
}

.storefront .step-card h3 {
  margin: 0 0 0.45rem;
  color: #221305;
  font-size: clamp(1.08rem, 1.7vw, 1.26rem);
  line-height: 1.1;
}

.storefront .step-card p {
  margin: 0;
  color: #6c4b2a;
  line-height: 1.68;
}

.storefront .gallery-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
}

.storefront .gallery-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.storefront .gallery-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(130, 77, 20, 0.11);
  border-radius: 22px;
  background: #fffaf3;
  box-shadow:
    0 8px 22px rgba(45, 24, 7, 0.07),
    0 2px 5px rgba(45, 24, 7, 0.04);
  cursor: pointer;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.22s ease;
}

.storefront .gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 122, 32, 0.22);
  box-shadow:
    0 18px 42px rgba(45, 24, 7, 0.12),
    0 5px 12px rgba(45, 24, 7, 0.05);
}

.storefront .gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.storefront .gallery-card:hover img {
  transform: scale(1.05);
}

.storefront .gallery-card__title {
  position: absolute;
  inset-inline: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 2rem);
  padding: 0.72rem 0.92rem;
  border-radius: 14px;
  background: rgba(25, 12, 4, 0.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff4df;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
}

.storefront .gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 38%, rgba(18, 9, 3, 0.08) 58%, rgba(18, 9, 3, 0.34) 100%);
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   12. Legacy supporting cards kept compatible
   -------------------------------------------------------------------------- */
.storefront .value-card,
.storefront .info-card,
.storefront .testimonial-card {
  height: 100%;
}

.storefront .value-card {
  padding: 1.3rem;
  gap: 0.7rem;
}

.storefront .value-card h3 {
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.storefront .testimonial-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.storefront .testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.65rem;
  position: relative;
}

.storefront .testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.9rem;
  left: 1.4rem;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(201, 120, 31, 0.18);
  pointer-events: none;
  font-weight: 700;
}

.storefront .testimonial-card p {
  margin: 0 0 0.6rem;
  padding-top: 1.2rem;
  color: #4a2f14;
  font-size: 0.97rem;
  line-height: 1.75;
  font-style: italic;
}

.storefront .testimonial-card strong {
  display: block;
  margin-bottom: 0.15rem;
  color: #211306;
  font-weight: 700;
  font-size: 0.95rem;
}

.storefront .testimonial-card span {
  color: #9b7255;
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 600;
}

.storefront .info-card {
  display: flex;
  gap: 0.95rem;
  padding: 1.2rem;
}

.storefront .icon-wrap {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 16px;
  background: rgba(201, 120, 31, 0.14);
  color: #7e4914;
  font-size: 1.2rem;
}

.storefront .icon-wrap--wa {
  background: rgba(34, 197, 94, 0.16);
  color: #198142;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .storefront .storefront-grid,
  .storefront .gallery-grid--3,
  .storefront .process-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .storefront .editorial-banner {
    grid-template-columns: 1fr;
  }

  .storefront .editorial-banner__media {
    min-height: 320px;
  }

  .storefront .section-header--split {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 720px) {
  .storefront .section {
    padding-block: clamp(2.6rem, 7vw, 3.4rem);
  }

  .storefront .section-header {
    gap: 0.55rem;
    margin-bottom: 1.5rem;
  }

  .storefront .section-header h2 {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
  }

  .storefront .section-header .lead {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .storefront .storefront-grid,
  .storefront .gallery-grid--3,
  .storefront .process-grid--3,
  .storefront .testimonial-strip {
    grid-template-columns: 1fr;
  }

  .storefront .card-body {
    padding: 1.05rem 1rem 1.15rem;
  }

  .storefront .card-body h3 {
    font-size: 1.14rem;
  }

  .storefront .editorial-banner {
    gap: 1rem;
    padding: 0.85rem;
    border-radius: 22px;
  }

  .storefront .editorial-banner__media {
    border-radius: 18px;
    min-height: 260px;
  }

  .storefront .editorial-banner__copy {
    padding: 0.15rem 0.2rem 0.35rem;
    gap: 0.85rem;
    text-align: center;
    justify-items: center;
  }

  .storefront .editorial-banner__copy .lead {
    max-width: 34ch;
  }

  .storefront .feature-list {
    width: 100%;
    justify-items: center;
  }

  .storefront .feature-list li {
    max-width: 32ch;
    text-align: left;
  }

  .storefront .step-card {
    padding: 1.2rem;
  }

  .storefront .step-card__number {
    font-size: 2.25rem;
  }

  .storefront .gallery-card__title {
    inset-inline: 0.8rem;
    bottom: 0.8rem;
    max-width: calc(100% - 1.6rem);
    font-size: 0.82rem;
    padding: 0.64rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .storefront .section-header h2 {
    font-size: 1.45rem;
  }

  .storefront .section-header .lead,
  .storefront .card-body p,
  .storefront .step-card p,
  .storefront .editorial-banner__copy .lead {
    font-size: 0.92rem;
  }

  .storefront .card,
  .storefront .gallery-card,
  .storefront .editorial-banner {
    border-radius: 18px;
  }

  .storefront .storefront-card__media,
  .storefront .editorial-banner__media {
    border-radius: 16px;
  }

  .storefront .price-row strong {
    font-size: 1.04rem;
  }

  .storefront .storefront-card__cta {
    font-size: 0.84rem;
  }
}

/* --------------------------------------------------------------------------
   12. Editorial banner
   -------------------------------------------------------------------------- */
.storefront .editorial-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 3.5vw, 2.8rem);
  align-items: center;
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  border-radius: 28px;
  border: 1px solid rgba(196, 122, 32, 0.16);
  background: linear-gradient(145deg, rgba(255, 252, 244, 0.95), rgba(255, 247, 232, 0.88));
  box-shadow: 0 20px 48px rgba(56, 31, 11, 0.1), 0 4px 12px rgba(56, 31, 11, 0.05);
  overflow: hidden;
}

.storefront .editorial-banner__media {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(56, 31, 11, 0.14);
}

.storefront .editorial-banner__media img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.storefront .editorial-banner:hover .editorial-banner__media img {
  transform: scale(1.03);
}

.storefront .editorial-banner__copy {
  display: grid;
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   13. Page hero and detail layouts
   -------------------------------------------------------------------------- */
.storefront .page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 5vw, 4.8rem) 0 clamp(2.2rem, 4vw, 3.4rem);
}

.storefront .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(32, 19, 8, 0.84), rgba(32, 19, 8, 0.44));
  opacity: 0;
}

.storefront .page-hero--catalog,
.storefront .page-hero--gallery {
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center top;
}

.storefront .page-hero--catalog::before,
.storefront .page-hero--gallery::before {
  opacity: 1;
}

.storefront .page-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 52rem;
}

.storefront .page-hero__copy h1 {
  line-height: 1.0;
  letter-spacing: -0.025em;
}

.storefront .page-hero--catalog .page-hero__copy,
.storefront .page-hero--gallery .page-hero__copy {
  color: #fff4e1;
}

.storefront .page-hero--catalog .lead,
.storefront .page-hero--gallery .lead {
  color: rgba(255, 235, 203, 0.88);
}

.storefront .page-hero--split .split-layout {
  align-items: center;
}

.storefront .catalog-layout {
  gap: 1.2rem;
}

.storefront .aside-filter {
  top: 6.6rem;
  background: var(--store-surface-strong);
}

.storefront .aside-filter h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
}

.storefront .catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.storefront .catalog-toolbar__count {
  margin: 0;
  color: #614020;
  font-weight: 700;
}

.storefront .product-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 3.4vw, 2.8rem);
  align-items: start;
}

.storefront .product-stage__media {
  position: sticky;
  top: 7rem;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(130, 77, 20, 0.2);
  background: rgba(255, 247, 232, 0.88);
  box-shadow: 0 28px 62px rgba(58, 31, 11, 0.17);
}

.storefront .product-stage__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.storefront .product-stage__copy {
  display: grid;
  gap: 1rem;
}

.storefront .product-gallery {
  position: relative;
}

.storefront .product-gallery__viewport {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: rgba(255, 247, 232, 0.88);
}

.storefront .product-gallery__track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.storefront .product-gallery__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.storefront .product-gallery__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
}

.storefront .product-gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 235, 205, 0.42);
  border-radius: 999px;
  background: rgba(22, 12, 5, 0.48);
  color: #fff7ea;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.storefront .product-gallery__arrow:hover,
.storefront .product-gallery__arrow:focus-visible {
  background: rgba(22, 12, 5, 0.72);
  border-color: rgba(255, 235, 205, 0.65);
  color: #ffffff;
}

.storefront .product-gallery__arrow span {
  font-size: 1.5rem;
  line-height: 1;
  transform: translateY(-1px);
}

.storefront .product-gallery__arrow--prev {
  left: 0.8rem;
}

.storefront .product-gallery__arrow--next {
  right: 0.8rem;
}

.storefront .product-gallery__dots {
  position: absolute;
  left: 50%;
  bottom: 0.9rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.48rem;
  transform: translateX(-50%);
}

.storefront .product-gallery__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 244, 226, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.storefront .product-gallery__dot:hover,
.storefront .product-gallery__dot:focus-visible {
  background: rgba(255, 249, 239, 0.78);
}

.storefront .product-gallery__dot.is-active {
  background: #ffd788;
  transform: scale(1.2);
}

.storefront .form-panel {
  border-radius: 22px;
  border: 1px solid rgba(130, 77, 20, 0.16);
  background: rgba(255, 251, 244, 0.9);
  box-shadow: 0 14px 34px rgba(58, 31, 11, 0.08);
}

.storefront .contact-layout {
  align-items: start;
}

.storefront .contact-stack {
  position: sticky;
  top: 6.6rem;
}

/* --------------------------------------------------------------------------
   15. Gallery / lightbox
   -------------------------------------------------------------------------- */
.storefront .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.storefront .gallery-card {
  border: 1px solid rgba(130, 77, 20, 0.2);
  background: rgba(255, 251, 244, 0.84);
}

.storefront .gallery-card:focus-visible {
  outline: 2px solid rgba(201, 120, 31, 0.42);
  outline-offset: 2px;
}

.storefront .gallery-card__title {
  opacity: 1;
  transform: translateY(0);
  background: linear-gradient(180deg, rgba(18, 11, 5, 0.2), rgba(18, 11, 5, 0.74));
}

.storefront .lightbox__panel {
  border: 1px solid rgba(130, 77, 20, 0.2);
}

.storefront .lightbox__close:hover,
.storefront .lightbox__close:focus-visible {
  background: #fff8ef;
  border-color: rgba(130, 77, 20, 0.32);
}
/* --------------------------------------------------------------------------
   16. Footer CTA / footer
   -------------------------------------------------------------------------- */
.storefront .footer-cta {
  margin-top: clamp(2rem, 4vw, 4rem);
}

.storefront .footer-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2.6rem) clamp(1.25rem, 3vw, 2.8rem);
  border: 1px solid rgba(196, 122, 32, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 30%, rgba(237, 173, 72, 0.14), transparent 34%),
    linear-gradient(145deg, #241308 0%, #3b1e0d 32%, #562b0f 68%, #2c1508 100%);
  box-shadow:
    0 18px 40px rgba(25, 12, 4, 0.22),
    inset 0 1px 0 rgba(255, 214, 145, 0.06);
  overflow: hidden;
}

.storefront .footer-cta__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%);
}

.storefront .footer-cta__inner > * {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.storefront .footer-cta__inner .eyebrow {
  margin: 0 0 0.45rem;
  color: rgba(246, 190, 99, 0.92);
}

.storefront .footer-cta__inner h2 {
  margin: 0;
  color: #fff7ea;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
  max-width: 18ch;
}

.storefront .footer-cta__inner p {
  margin: 0.7rem 0 0;
  max-width: 58ch;
  color: rgba(255, 229, 192, 0.82);
}

.storefront .footer-cta__inner .button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.85rem;
}

.storefront .footer-cta__inner .button-row .button {
  min-height: 46px;
  white-space: nowrap;
}

/* -------------------------------------------------------------------------- */

.storefront .site-footer {
  margin-top: clamp(2rem, 4vw, 4.5rem);
  padding-top: clamp(2rem, 4vw, 3.2rem);
  padding-bottom: 1.25rem;
  border-top: 1px solid rgba(255, 224, 178, 0.08);
  border-bottom: 1px solid rgba(255, 224, 178, 0.08);
  background:
    radial-gradient(circle at 10% 0%, rgba(237, 173, 72, 0.16), transparent 28%),
    linear-gradient(180deg, #261608 0%, #1d1006 72%, #160c05 100%);
}

.storefront .site-footer__grid {
  display: grid;
  gap: clamp(1.2rem, 2.6vw, 2rem);
}

.storefront .site-footer__grid--with-logo {
  grid-template-columns:
    minmax(72px, 96px)
    minmax(240px, 1.45fr)
    minmax(170px, 0.95fr)
    minmax(170px, 0.95fr)
    minmax(170px, 0.95fr);
  align-items: start;
  column-gap: clamp(1rem, 2vw, 1.8rem);
  row-gap: clamp(1.2rem, 2.5vw, 1.8rem);
}

.storefront .site-footer__grid--with-logo > * {
  min-width: 0;
}

.storefront .site-footer__brand-logo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0.25rem;
}

.storefront .site-footer__brand-logo img {
  display: block;
  width: 100%;
  max-width: 88px;
  height: auto;
  object-fit: contain;
}

.storefront .site-footer__brand h2 {
  margin: 0 0 0.55rem;
  color: #fff0d6;
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  line-height: 1.08;
}

.storefront .site-footer__brand p {
  margin: 0;
  color: rgba(255, 227, 186, 0.74);
  max-width: 44ch;
}

.storefront .footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.68rem 1rem;
  border-radius: 999px;
  background: #2acf67;
  color: #112616;
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 14px 24px rgba(34, 197, 94, 0.26);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.storefront .footer-wa-btn:hover,
.storefront .footer-wa-btn:focus-visible {
  background: #22bd5b;
  color: #0d1e11;
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(34, 197, 94, 0.3);
}

.storefront .site-footer__title {
  margin: 0 0 0.8rem;
  color: #ffe4ba;
  font-size: 1rem;
}

.storefront .site-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.storefront .site-footer__links li + li {
  margin-top: 0.5rem;
}

.storefront .site-footer__links,
.storefront .site-footer__links li,
.storefront .site-footer__links a {
  min-width: 0;
}

.storefront .site-footer__links a {
  color: rgba(255, 230, 194, 0.72);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.storefront .site-footer__links a:hover,
.storefront .site-footer__links a:focus-visible {
  color: #fff4df;
}

.storefront .footer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.storefront .footer-actions .button {
  min-width: 8.4rem;
}

.storefront .footer-actions--social .button {
  min-height: 44px;
}

.storefront .social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 244, 223, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #fff4df;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 20px rgba(10, 4, 1, 0.14);
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.storefront .social-icon-link:hover,
.storefront .social-icon-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 244, 223, 0.28);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 26px rgba(10, 4, 1, 0.22);
}

.storefront .social-icon-link:focus-visible {
  outline: 2px solid rgba(255, 230, 194, 0.45);
  outline-offset: 3px;
}

.storefront .social-icon-link svg {
  width: 19px;
  height: 19px;
  display: block;
}

.storefront .site-footer__bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 224, 178, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.storefront .site-footer__bottom p {
  margin: 0;
  color: rgba(255, 230, 194, 0.6);
  text-align: center;
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  .storefront .site-footer__grid--with-logo {
    grid-template-columns:
      minmax(72px, 92px)
      minmax(220px, 1.3fr)
      minmax(160px, 1fr)
      minmax(160px, 1fr);
  }
}

@media (max-width: 960px) {
  .storefront .footer-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .storefront .footer-cta__inner h2 {
    max-width: 20ch;
  }

  .storefront .footer-cta__inner p {
    max-width: 60ch;
  }

  .storefront .footer-cta__inner .button-row {
    justify-content: center;
  }

  .storefront .site-footer__grid--with-logo {
    grid-template-columns: minmax(72px, 92px) 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .storefront .site-footer {
    padding-top: 1.8rem;
    padding-bottom: 1rem;
  }

  .storefront .site-footer__grid--with-logo {
    grid-template-columns: 1fr;
    row-gap: 1.4rem;
    text-align: center;
  }

  .storefront .site-footer__brand-logo {
    justify-content: center;
    padding-top: 0;
  }

  .storefront .site-footer__brand-logo img {
    max-width: 82px;
  }

  .storefront .site-footer__brand h2,
  .storefront .site-footer__brand p,
  .storefront .site-footer__title,
  .storefront .site-footer__links,
  .storefront .site-footer__links li,
  .storefront .site-footer__links a {
    text-align: center;
  }

  .storefront .site-footer__brand p {
    margin-inline: auto;
    max-width: 34ch;
  }

  .storefront .footer-wa-btn {
    margin-inline: auto;
  }

  .storefront .footer-actions {
    justify-content: center;
  }

  .storefront .site-footer__bottom {
    margin-top: 1.6rem;
    padding-top: 0.9rem;
  }

  .storefront .site-footer__bottom p {
    font-size: 0.82rem;
  }
}

@media (max-width: 560px) {
  .storefront .footer-cta__inner {
    padding: 1.3rem 1rem;
    border-radius: 22px;
    gap: 1rem;
  }

  .storefront .footer-cta__inner .eyebrow {
    margin-bottom: 0.35rem;
  }

  .storefront .footer-cta__inner h2 {
    font-size: 1.35rem;
    max-width: 16ch;
    margin-inline: auto;
  }

  .storefront .footer-cta__inner p {
    font-size: 0.92rem;
    max-width: 30ch;
    margin-inline: auto;
  }

  .storefront .footer-cta__inner .button-row {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .storefront .footer-cta__inner .button-row .button {
    width: 100%;
    min-width: 0;
  }

  .storefront .site-footer__title {
    font-size: 0.95rem;
  }

  .storefront .site-footer__links li + li {
    margin-top: 0.42rem;
  }

  .storefront .site-footer__links a,
  .storefront .site-footer__links li {
    font-size: 0.92rem;
  }

  .storefront .footer-actions {
    gap: 0.65rem;
  }

  .storefront .social-icon-link {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .storefront .social-icon-link svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 400px) {
  .storefront .footer-cta__inner h2 {
    font-size: 1.22rem;
  }

  .storefront .footer-cta__inner p {
    font-size: 0.88rem;
  }

  .storefront .site-footer__brand h2 {
    font-size: 1.28rem;
  }

  .storefront .site-footer__brand p,
  .storefront .site-footer__links a,
  .storefront .site-footer__links li {
    font-size: 0.88rem;
  }

  .storefront .site-footer__bottom p {
    font-size: 0.78rem;
  }
}
/* --------------------------------------------------------------------------
   17. Floating contact
   -------------------------------------------------------------------------- */
.storefront .floating-contact {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #1fbe57, #2ee06f);
  color: #0f2818;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.32);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
}

.storefront .floating-contact:hover,
.storefront .floating-contact:focus-visible {
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   18. Reveal animation
   -------------------------------------------------------------------------- */
.storefront .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.storefront .reveal--delay-1 {
  transition-delay: 0.08s;
}

.storefront .reveal--delay-2 {
  transition-delay: 0.16s;
}

.storefront .reveal--delay-3 {
  transition-delay: 0.24s;
}

.storefront .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   18.5. Catalog page enhancements
   -------------------------------------------------------------------------- */
.storefront.storefront-catalog .page-hero--catalog {
  padding-top: clamp(3.4rem, 6vw, 5.2rem);
  padding-bottom: clamp(2.6rem, 4vw, 3.4rem);
}

.storefront .catalog-hero {
  display: grid;
  align-items: center;
  min-height: clamp(15rem, 26vw, 21rem);
}

.storefront .catalog-hero__copy {
  max-width: 44rem;
}

.storefront .catalog-hero__copy h1 {
  max-width: 12ch;
}

.storefront .catalog-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.storefront .catalog-hero__meta-item {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 234, 203, 0.22);
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.12);
  color: rgba(255, 240, 219, 0.92);
  font-size: 0.84rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.storefront .catalog-layout {
  align-items: start;
}

.storefront .catalog-filter-panel {
  padding: 1.35rem;
}

.storefront .catalog-filter-panel__header {
  display: grid;
  gap: 0.42rem;
  margin-bottom: 1rem;
}

.storefront .catalog-filter-panel__header h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  line-height: 1.05;
}

.storefront .catalog-filter-panel__header p:last-child {
  margin: 0;
  color: #7a5940;
  font-size: 0.95rem;
}

.storefront .catalog-filter-form {
  gap: 0.95rem;
}

.storefront .catalog-filter-form__field {
  gap: 0.45rem;
}

.storefront .catalog-filter-form__field>span {
  color: #4d2e15;
  font-size: 0.88rem;
  font-weight: 700;
}

.storefront .catalog-filter-form__actions {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.35rem;
}

.storefront .catalog-filter-form__actions .button {
  width: 100%;
}

.storefront .catalog-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(130, 77, 20, 0.12);
  border-radius: 20px;
  background: rgba(255, 252, 247, 0.84);
  box-shadow: 0 8px 22px rgba(56, 31, 11, 0.05);
}

.storefront .catalog-toolbar__summary {
  display: grid;
  gap: 0.55rem;
}

.storefront .catalog-toolbar__count {
  margin: 0;
  color: #4e3118;
  font-size: 0.95rem;
  font-weight: 800;
}

.storefront .catalog-toolbar__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.storefront .catalog-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(201, 120, 31, 0.11);
  color: #8b4f14;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid rgba(201, 120, 31, 0.14);
}

.storefront.storefront-catalog .storefront-grid {
  align-items: stretch;
}

.storefront.storefront-catalog .storefront-card {
  overflow: hidden;
}

.storefront.storefront-catalog .storefront-card__media {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(247, 230, 201, 0.82), rgba(255, 247, 232, 0.94));
}

.storefront.storefront-catalog .storefront-card .card-body {
  gap: 0.62rem;
}

.storefront.storefront-catalog .storefront-card .card-body p:not(.card-meta) {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.storefront .catalog-empty-state {
  grid-column: 1 / -1;
  padding: 2.2rem 1.4rem;
  border-style: solid;
  border-color: rgba(130, 77, 20, 0.14);
  background: rgba(255, 251, 244, 0.92);
  box-shadow: 0 12px 28px rgba(56, 31, 11, 0.06);
}

.storefront .catalog-empty-state h2 {
  margin-bottom: 0.45rem;
}

.storefront .catalog-empty-state p {
  max-width: 48ch;
  margin-inline: auto;
}

.storefront .catalog-empty-state .button-row {
  justify-content: center;
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   19. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  .storefront .hero__grid {
    grid-template-columns: 1fr;
    max-width: 46rem;
    margin-inline: auto;
  }

  .storefront .hero__content {
    align-content: center;
    justify-items: center;
    gap: 1.4rem;
    max-width: 38rem;
    text-align: center;
  }

  .storefront .hero__actions {
    justify-content: center;
  }

  .storefront .hero-metrics {
    width: 100%;
  }

  .storefront .editorial-banner {
    grid-template-columns: 1fr;
  }

  .storefront .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .storefront .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .storefront .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .storefront .site-announcement__inner {
    min-height: auto;
    padding-block: 0.45rem;
    flex-wrap: wrap;
  }

  .storefront .catalog-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .storefront .catalog-toolbar .button {
    width: 100%;
  }

  .storefront .site-nav {
    position: fixed;
    top: 5.9rem;
    right: 0.8rem;
    left: 0.8rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.9rem;
    border-radius: 18px;
    border: 1px solid rgba(130, 77, 20, 0.18);
    background: rgba(255, 250, 242, 0.98);
    box-shadow: 0 20px 44px rgba(56, 31, 11, 0.18);
  }

  .storefront .site-nav.is-open {
    display: grid;
    gap: 0.55rem;
  }

  .storefront .site-nav__list,
  .storefront .site-nav__actions {
    display: grid;
    gap: 0.42rem;
    width: 100%;
  }

  .storefront .site-nav__link {
    display: block;
    padding: 0.75rem 0.92rem;
  }

  .storefront .nav-toggle {
    display: inline-flex;
  }

  .storefront .catalog-layout,
  .storefront .product-stage,
  .storefront .contact-layout,
  .storefront .split-layout {
    grid-template-columns: 1fr;
  }

  .storefront .contact-stack,
  .storefront .product-stage__media {
    position: static;
  }

  .storefront .footer-cta__inner {
    grid-template-columns: 1fr;
  }

  .storefront .footer-cta__inner .button-row {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .storefront .hero-metrics {
    grid-template-columns: 1fr;
  }

  .storefront .trust-bar__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1rem;
    padding: 1rem 0;
  }

  .storefront .trust-bar__item {
    min-height: auto;
    padding: 0;
    border-right: 0;
  }

  .storefront .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .storefront .faq-wa-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .storefront .testimonial-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 640px) {
  .storefront .product-gallery__arrow {
    width: 36px;
    height: 36px;
  }

  .storefront .product-gallery__arrow span {
    font-size: 1.35rem;
  }

  .storefront .product-gallery__dots {
    bottom: 0.72rem;
  }
}

@media (max-width: 640px) {
  .storefront .site-logo__text small {
    display: none;
  }

  .storefront .hero {
    padding-top: 3.4rem;
    padding-bottom: 2.6rem;
  }

  .storefront .hero h1 {
    max-width: none;
  }

  .storefront .catalog-hero__meta {
    flex-direction: column;
    align-items: stretch;
  }

  .storefront .catalog-hero__meta-item {
    justify-content: center;
  }

  .storefront .catalog-filter-panel {
    padding: 1rem;
  }

  .storefront .button-row .button,
  .storefront .hero__actions .button,
  .storefront .footer-cta .button {
    width: 100%;
  }

  .storefront .testimonial-strip {
    grid-template-columns: 1fr;
  }

  .storefront .process-grid,
  .storefront .grid--2,
  .storefront .grid--3,
  .storefront .gallery-grid,
  .storefront .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .storefront .floating-contact {
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.75rem;
  }

  .storefront .floating-contact span {
    display: none;
  }
}


/* ============================================================
   20. Additional polish & micro-improvements
   ============================================================ */

/* Price styling improvements */
.storefront .price-current {
  font-size: 1.28rem;
  font-weight: 700;
  color: #7a3d10;
  font-family: var(--font-serif);
}

.storefront .price-original {
  font-size: 0.9rem;
  color: #9a7a62;
  text-decoration: line-through;
}

/* Contact info cards improvement */
.storefront .info-card {
  padding: 1.3rem;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow 0.24s ease, transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.storefront .info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(45, 24, 7, 0.1);
}

/* Back-to-catalog nav */
.storefront .product-back-nav {
  padding: 1rem 0 0;
}

.storefront .product-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6c4b2a;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.18s ease, gap 0.18s ease;
}

.storefront .product-back-link:hover {
  color: #c9781f;
  gap: 0.6rem;
}

/* Product stage (product detail) improvements */
.storefront .product-stage__copy {
  gap: 1.2rem;
}

.storefront .product-description {
  display: grid;
  gap: 0.55rem;
}

.storefront .product-description p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--ink-soft);
}

.storefront .product-description ul {
  margin: 0.15rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.3rem;
}

.storefront .product-description li {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Catalog filter panel */
.storefront .catalog-filter-panel {
  border-radius: 20px;
  border: 1px solid rgba(196, 122, 32, 0.14);
  background: rgba(255, 252, 244, 0.97);
}

/* Highlight better button-row alignment on hero */
.storefront .hero .button--primary {
  background: linear-gradient(135deg, #c9781f 0%, #e8a83a 100%);
  box-shadow: 0 10px 28px rgba(196, 122, 32, 0.38);
}

.storefront .hero .button--primary:hover {
  background: linear-gradient(135deg, #b06818 0%, #d4963a 100%);
  box-shadow: 0 14px 36px rgba(196, 122, 32, 0.48);
}

/* Announcement bar: minor improvement */
.storefront .site-announcement {
  border-bottom: 1px solid rgba(196, 122, 32, 0.18);
}

/* Scrollbar for modern browsers */
.storefront ::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.storefront ::-webkit-scrollbar-track {
  background: rgba(245, 236, 222, 0.6);
}

.storefront ::-webkit-scrollbar-thumb {
  background: rgba(196, 122, 32, 0.35);
  border-radius: 999px;
}

.storefront ::-webkit-scrollbar-thumb:hover {
  background: rgba(196, 122, 32, 0.55);
}

@media (prefers-reduced-motion: reduce) {

  .storefront .reveal,
  .storefront .card,
  .storefront .storefront-card__media img,
  .storefront .gallery-card img,
  .storefront .button,
  .storefront .floating-contact {
    transition: none;
    animation: none;
    transform: none;
  }

  .storefront html {
    scroll-behavior: auto;
  }
}

.storefront-contact .page-hero--contact {
  position: relative;
  overflow: hidden;
}

.storefront-contact .page-hero--contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 220, 168, 0.34), transparent 34%),
    radial-gradient(circle at bottom right, rgba(196, 134, 48, 0.18), transparent 26%);
  pointer-events: none;
}

.storefront-contact .contact-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 1.75rem;
  align-items: start;
}

.storefront-contact .contact-hero__copy {
  display: grid;
  gap: 1.5rem;
}

.storefront-contact .contact-hero__actions,
.storefront-contact .contact-preview-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.storefront-contact .contact-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.storefront-contact .contact-metric-card,
.storefront-contact .contact-hero-card,
.storefront-contact .contact-panel,
.storefront-contact .contact-route-cta,
.storefront-contact .contact-builder,
.storefront-contact .contact-preview-card {
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
}

.storefront-contact .contact-metric-card {
  padding: 1rem 1.05rem;
  backdrop-filter: blur(8px);
}

.storefront-contact .contact-metric-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #0f172a;
  font-size: 0.95rem;
}

.storefront-contact .contact-metric-card span,
.storefront-contact .contact-panel p,
.storefront-contact .contact-route-cta p,
.storefront-contact .contact-purpose-panel__intro p,
.storefront-contact .contact-preview-card__header p,
.storefront-contact .contact-muted {
  color: #526072;
  line-height: 1.72;
}

.storefront-contact .contact-hero__aside,
.storefront-contact .contact-sidebar,
.storefront-contact .contact-main {
  display: grid;
  gap: 1rem;
}

.storefront-contact .contact-hero-card,
.storefront-contact .contact-panel,
.storefront-contact .contact-builder,
.storefront-contact .contact-preview-card {
  padding: 1.45rem;
}

.storefront-contact .contact-hero-card--highlight {
  background:
    linear-gradient(145deg, rgba(255, 251, 243, 0.98), rgba(255, 241, 217, 0.96));
  border-color: rgba(181, 114, 18, 0.22);
}

.storefront-contact .contact-hero-card h2,
.storefront-contact .contact-panel h2,
.storefront-contact .contact-builder__header h2 {
  margin: 0.25rem 0 0.75rem;
}

.storefront-contact .contact-hero-card h3,
.storefront-contact .contact-preview-card h3,
.storefront-contact .contact-purpose-panel__intro h3,
.storefront-contact .contact-route-cta h3 {
  margin: 0 0 0.45rem;
}

.storefront-contact .contact-checklist {
  margin: 0;
  padding-left: 1.1rem;
  color: #526072;
  line-height: 1.72;
}

.storefront-contact .contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.storefront-contact .contact-sidebar {
  position: sticky;
  top: 5.75rem;
}

.storefront-contact .contact-route-list {
  display: grid;
  gap: 1rem;
}

.storefront-contact .contact-route-cta {
  display: grid;
  gap: 0.95rem;
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 236, 0.92));
}

.storefront-contact .contact-route-cta__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a5b19;
}

.storefront-contact .contact-builder {
  display: grid;
  gap: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 241, 0.94));
}

.storefront-contact .contact-builder__topics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.storefront-contact .contact-topic {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.82);
  color: #223041;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.storefront-contact .contact-topic:hover,
.storefront-contact .contact-topic.is-active {
  transform: translateY(-1px);
  border-color: rgba(18, 140, 91, 0.34);
  background: linear-gradient(180deg, rgba(233, 255, 247, 0.95), rgba(255, 255, 255, 0.98));
  box-shadow: 0 12px 24px rgba(18, 140, 91, 0.12);
}

.storefront-contact .contact-builder__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 1.2rem;
  align-items: start;
}

.storefront-contact .contact-builder__forms {
  display: grid;
}

.storefront-contact .contact-purpose-panel {
  display: none;
  gap: 1rem;
}

.storefront-contact .contact-purpose-panel.is-active {
  display: grid;
}

.storefront-contact .contact-purpose-panel label,
.storefront-product .wa-product-card label {
  display: grid;
  gap: 0.45rem;
}

.storefront-contact .contact-purpose-panel label>span,
.storefront-product .wa-product-card label>span {
  color: #223041;
  font-size: 0.9rem;
  font-weight: 700;
}

.storefront-contact .contact-form-grid,
.storefront-product .wa-product-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.storefront-contact .contact-purpose-panel input,
.storefront-contact .contact-purpose-panel select,
.storefront-contact .contact-purpose-panel textarea,
.storefront-product .wa-product-card input,
.storefront-product .wa-product-card textarea {
  width: 100%;
  border: 1px solid #d8e2eb;
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.storefront-contact .contact-purpose-panel input:focus,
.storefront-contact .contact-purpose-panel select:focus,
.storefront-contact .contact-purpose-panel textarea:focus,
.storefront-product .wa-product-card input:focus,
.storefront-product .wa-product-card textarea:focus {
  outline: none;
  border-color: rgba(18, 140, 91, 0.4);
  box-shadow: 0 0 0 4px rgba(18, 140, 91, 0.12);
  background: #fff;
}

.storefront-contact .contact-preview-card {
  position: sticky;
  top: 5.75rem;
  display: grid;
  gap: 1rem;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(31, 41, 55, 0.98));
  border-color: rgba(15, 23, 42, 0.12);
  color: #e5eef8;
}

.storefront-contact .contact-preview-card .eyebrow,
.storefront-contact .contact-preview-card h3,
.storefront-contact .contact-preview-card__note {
  color: #f8fafc;
}

.storefront-contact .contact-preview-card__message,
.storefront-product .wa-product-card__preview pre {
  margin: 0;
  padding: 1.15rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  font: 500 0.95rem/1.72 "Manrope", sans-serif;
  white-space: pre-wrap;
}

.storefront-contact .contact-preview-card__note {
  margin: 0;
  opacity: 0.84;
}

.storefront-contact .contact-preview-card__button.is-disabled,
.storefront-product .wa-product-card a.is-disabled {
  pointer-events: none;
  opacity: 0.55;
}

.storefront-product .wa-product-card {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 244, 0.92));
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
}

.storefront-product .wa-product-card__header p,
.storefront-product .wa-product-card__header h2 {
  margin-bottom: 0.6rem;
}

.storefront-product .wa-product-card__preview {
  display: grid;
  gap: 0.85rem;
}

.storefront-product .wa-product-card__actions {
  display: grid;
  gap: 0.65rem;
  padding-top: 0.25rem;
}

.storefront-product .wa-product-card__actions .button {
  width: 100%;
  justify-content: center;
}

@media (max-width: 1080px) {

  .storefront-contact .contact-hero,
  .storefront-contact .contact-layout,
  .storefront-contact .contact-builder__grid {
    grid-template-columns: 1fr;
  }

  .storefront-contact .contact-sidebar,
  .storefront-contact .contact-preview-card {
    position: static;
  }
}

@media (max-width: 820px) {

  .storefront-contact .contact-hero__metrics,
  .storefront-contact .contact-builder__topics,
  .storefront-contact .contact-form-grid,
  .storefront-product .wa-product-card__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {

  .storefront-contact .contact-hero__actions,
  .storefront-contact .contact-preview-card__actions {
    flex-direction: column;
  }

  .storefront-contact .contact-hero__actions .button,
  .storefront-contact .contact-preview-card__button,
  .storefront-contact .contact-route-cta .button,
  .storefront-product .wa-product-card .button {
    width: 100%;
    justify-content: center;
  }

  .storefront-contact .contact-builder,
  .storefront-contact .contact-preview-card,
  .storefront-contact .contact-panel,
  .storefront-contact .contact-route-cta,
  .storefront-contact .contact-hero-card,
  .storefront-product .wa-product-card {
    padding: 1.1rem;
    border-radius: 24px;
  }
}

.storefront-contact .page-hero--contact-simple {
  padding: clamp(3rem, 5vw, 4.8rem) 0 clamp(2rem, 4vw, 3rem);
}

.storefront-contact .contact-simple-hero {
  display: grid;
  gap: 1rem;
}

.storefront-contact .contact-simple-hero h1 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.storefront-contact .contact-simple-hero .lead {
  max-width: 60ch;
  color: #5b6675;
  line-height: 1.75;
}

.storefront-contact .contact-simple-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.storefront-contact .section--contact-simple {
  padding-top: 0;
}

.storefront-contact .contact-simple-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.4rem;
  align-items: start;
}

.storefront-contact .contact-simple-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
  padding: 1.4rem;
}

.storefront-contact .contact-simple-card__header {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.storefront-contact .contact-simple-card__header h2 {
  margin: 0;
}

.storefront-contact .contact-simple-card__header p:last-child {
  margin: 0;
  color: #5b6675;
  line-height: 1.7;
}

.storefront-contact .contact-simple-points {
  display: grid;
  gap: 0.85rem;
}

.storefront-contact .contact-simple-point {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(250, 247, 241, 0.95), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(181, 114, 18, 0.12);
}

.storefront-contact .contact-simple-point strong {
  color: #1d2632;
}

.storefront-contact .contact-simple-point span {
  color: #607082;
  line-height: 1.65;
}

.storefront-contact .contact-simple-main-cta {
  margin-top: 1rem;
}

.storefront-contact .contact-simple-card--builder {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 241, 0.96));
}

.storefront-contact .contact-simple-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.storefront-contact .contact-simple-topic {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.82);
  color: #233142;
  font-weight: 700;
  transition: 0.2s ease;
}

.storefront-contact .contact-simple-topic:hover,
.storefront-contact .contact-simple-topic.is-active {
  border-color: rgba(18, 140, 91, 0.34);
  background: rgba(233, 255, 247, 0.95);
  box-shadow: 0 10px 22px rgba(18, 140, 91, 0.1);
}

.storefront-contact .contact-simple-builder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1rem;
  align-items: start;
}

.storefront-contact .contact-simple-forms {
  display: grid;
}

.storefront-contact .contact-simple-panel {
  display: none;
  gap: 1rem;
}

.storefront-contact .contact-simple-panel.is-active {
  display: grid;
}

.storefront-contact .contact-simple-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.storefront-contact .contact-simple-panel label {
  display: grid;
  gap: 0.45rem;
}

.storefront-contact .contact-simple-panel label>span {
  color: #223041;
  font-size: 0.9rem;
  font-weight: 700;
}

.storefront-contact .contact-simple-panel input,
.storefront-contact .contact-simple-panel select,
.storefront-contact .contact-simple-panel textarea {
  width: 100%;
  border: 1px solid #d8e2eb;
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.97);
  color: #0f172a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.storefront-contact .contact-simple-panel input:focus,
.storefront-contact .contact-simple-panel select:focus,
.storefront-contact .contact-simple-panel textarea:focus {
  outline: none;
  border-color: rgba(18, 140, 91, 0.4);
  box-shadow: 0 0 0 4px rgba(18, 140, 91, 0.1);
}

.storefront-contact .contact-simple-preview {
  position: sticky;
  top: 5.75rem;
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(31, 41, 55, 0.98));
  color: #eef5fb;
}

.storefront-contact .contact-simple-preview .eyebrow {
  margin: 0;
  color: rgba(255, 219, 145, 0.95);
}

.storefront-contact .contact-simple-preview__message {
  margin: 0;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: inherit;
  white-space: pre-wrap;
  font: 500 0.94rem/1.7 "Manrope", sans-serif;
}

@media (max-width: 1080px) {

  .storefront-contact .contact-simple-layout,
  .storefront-contact .contact-simple-builder-grid {
    grid-template-columns: 1fr;
  }

  .storefront-contact .contact-simple-preview {
    position: static;
  }
}

@media (max-width: 720px) {
  .storefront-contact .contact-simple-form-grid {
    grid-template-columns: 1fr;
  }

  .storefront-contact .contact-simple-hero__actions,
  .storefront-contact .contact-simple-topics {
    flex-direction: column;
  }

  .storefront-contact .contact-simple-hero__actions .button,
  .storefront-contact .contact-simple-topic,
  .storefront-contact .contact-simple-preview__button {
    width: 100%;
    justify-content: center;
  }

  .storefront-contact .contact-simple-card,
  .storefront-contact .contact-simple-preview {
    padding: 1.1rem;
    border-radius: 22px;
  }
}

.storefront-contact .contact-simple-builder-grid--single {
  display: block;
}

.storefront-contact .contact-simple-submit {
  margin-top: 1rem;
}

.storefront-contact .contact-simple-submit__button {
  width: 100%;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   21. Servicios page
   -------------------------------------------------------------------------- */
.storefront-services .hero--services {
  background-position: center center;
}

.storefront-services .services-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
}

.storefront-services .services-pillar {
  overflow: hidden;
  height: 100%;
}

.storefront-services .services-pillar__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(247, 230, 201, 0.82), rgba(255, 247, 232, 0.94));
}

.storefront-services .services-pillar__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.storefront-services .services-pillar:hover .services-pillar__media img {
  transform: scale(1.05);
}

.storefront-services .services-grid {
  display: grid;
  gap: 1.1rem;
}

.storefront-services .services-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.storefront-services .service-card {
  height: 100%;
  padding: 1.4rem;
}

.storefront-services .service-card h3 {
  margin: 0 0 0.45rem;
  color: #221305;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.1;
}

.storefront-services .service-card p {
  margin: 0;
  color: #6c4b2a;
  line-height: 1.68;
}

.storefront-services .services-process-wrap {
  display: grid;
  gap: 1.2rem;
}

.storefront-services .services-process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.storefront-services .services-highlight {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  gap: clamp(1.2rem, 3vw, 2rem);
  padding: clamp(1rem, 2vw, 1.2rem);
  border: 1px solid rgba(130, 77, 20, 0.11);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(255, 248, 239, 0.96));
  box-shadow:
    0 10px 26px rgba(45, 24, 7, 0.08),
    0 2px 6px rgba(45, 24, 7, 0.04);
}

.storefront-services .services-highlight__media {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(247, 230, 201, 0.82), rgba(255, 247, 232, 0.94));
}

.storefront-services .services-highlight__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.storefront-services .services-highlight__copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(0.5rem, 1vw, 0.8rem);
}

.storefront-services .services-highlight__copy h2 {
  margin: 0;
  color: #221305;
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.storefront-services .services-products-grid {
  align-items: stretch;
}

/* --------------------------------------------------------------------------
   Servicios responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .storefront-services .services-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .storefront-services .services-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .storefront-services .services-highlight {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .storefront-services .services-pillars,
  .storefront-services .services-grid--3,
  .storefront-services .services-process-grid {
    grid-template-columns: 1fr;
  }

  .storefront-services .service-card {
    padding: 1.2rem;
  }

  .storefront-services .services-highlight {
    gap: 1rem;
    padding: 0.9rem;
    border-radius: 22px;
  }

  .storefront-services .services-highlight__media {
    border-radius: 18px;
    min-height: 260px;
  }

  .storefront-services .services-highlight__copy {
    padding: 0.1rem 0.2rem 0.35rem;
    text-align: center;
    justify-items: center;
  }

  .storefront-services .services-highlight__copy .lead {
    max-width: 34ch;
  }
}

@media (max-width: 480px) {
  .storefront-services .services-highlight,
  .storefront-services .services-pillar {
    border-radius: 18px;
  }

  .storefront-services .services-pillar__media,
  .storefront-services .services-highlight__media {
    border-radius: 16px;
  }

  .storefront-services .service-card h3 {
    font-size: 1.12rem;
  }

  .storefront-services .service-card p,
  .storefront-services .services-highlight__copy .lead {
    font-size: 0.92rem;
  }
}

/* --------------------------------------------------------------------------
   22. Storefront cart drawer
   -------------------------------------------------------------------------- */
.storefront .site-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.storefront .site-nav__cart {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.storefront .site-nav__cart-count {
  min-width: 1.45rem;
  height: 1.45rem;
  padding: 0 0.38rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ce7a21, #e6a84b);
  color: #261507;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.storefront .product-stage__offer-badge {
  margin: -0.2rem 0 0;
  color: #8d5217;
  font-size: 0.84rem;
  font-weight: 700;
}

.storefront .wa-product-card__message {
  margin: 0;
  color: #5d6f7f;
  line-height: 1.68;
}

body.cart-open {
  overflow: hidden;
}

.storefront .storefront-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
}

.storefront .storefront-cart-drawer.is-open {
  pointer-events: auto;
}

.storefront .storefront-cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: rgba(8, 11, 18, 0.56);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.24s ease;
}

.storefront .storefront-cart-drawer.is-open .storefront-cart-drawer__backdrop {
  opacity: 1;
}

.storefront .storefront-cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(460px, 94vw);
  height: 100dvh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(250, 245, 238, 0.98));
  border-left: 1px solid rgba(145, 86, 33, 0.18);
  box-shadow: -20px 0 52px rgba(18, 8, 3, 0.22);
  transform: translateX(104%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  outline: none;
}

.storefront .storefront-cart-drawer.is-open .storefront-cart-drawer__panel {
  transform: translateX(0);
}

.storefront .storefront-cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1.15rem 1rem 0.95rem;
  border-bottom: 1px solid rgba(145, 86, 33, 0.14);
}

.storefront .storefront-cart-drawer__header h2 {
  margin: 0.08rem 0 0;
  color: #2d1808;
  font-size: clamp(1.35rem, 2.2vw, 1.62rem);
  line-height: 1.02;
}

.storefront .storefront-cart-drawer__close {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(145, 86, 33, 0.2);
  background: rgba(255, 255, 255, 0.8);
  color: #4a2c12;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.storefront .storefront-cart-drawer__body {
  overflow-y: auto;
  padding: 0.95rem 1rem;
}

.storefront .storefront-cart-drawer__empty {
  margin: 0;
  display: none;
  color: #6a4c31;
  line-height: 1.7;
}

.storefront .storefront-cart-drawer__empty.is-visible {
  display: block;
}

.storefront .storefront-cart-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.storefront .storefront-cart-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 0.8rem;
  padding: 0.75rem;
  border-radius: 18px;
  border: 1px solid rgba(145, 86, 33, 0.14);
  background: rgba(255, 255, 255, 0.86);
}

.storefront .storefront-cart-item--unavailable {
  opacity: 0.72;
}

.storefront .storefront-cart-item__media {
  overflow: hidden;
  border-radius: 12px;
  display: block;
  aspect-ratio: 1 / 1;
}

.storefront .storefront-cart-item__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.storefront .storefront-cart-item__content {
  min-width: 0;
  display: grid;
  gap: 0.45rem;
}

.storefront .storefront-cart-item__content h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.storefront .storefront-cart-item__content h3 a {
  color: #251608;
  text-decoration: none;
}

.storefront .storefront-cart-item__offer {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  width: fit-content;
  background: rgba(201, 120, 31, 0.14);
  color: #8f4e10;
  font-size: 0.72rem;
  font-weight: 800;
}

.storefront .storefront-cart-item__meta {
  margin: 0;
  color: #5f6f7d;
  font-size: 0.8rem;
  line-height: 1.55;
}

.storefront .storefront-cart-item__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: #4c2d13;
  font-size: 0.88rem;
}

.storefront .storefront-cart-item__row strong {
  color: #221205;
  font-size: 0.96rem;
}

.storefront .storefront-cart-item__warn {
  margin: 0;
  color: #8f4a14;
  font-size: 0.78rem;
  line-height: 1.5;
}

.storefront .storefront-cart-item__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.storefront .storefront-cart-item__qty-form {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.storefront .storefront-cart-item__qty-form input {
  width: 70px;
  height: 2rem;
  border: 1px solid rgba(145, 86, 33, 0.2);
  border-radius: 10px;
  padding: 0 0.55rem;
  background: #fff;
}

.storefront .storefront-cart-drawer__footer {
  padding: 0.95rem 1rem 1.05rem;
  border-top: 1px solid rgba(145, 86, 33, 0.14);
  background: rgba(255, 251, 245, 0.94);
  display: grid;
  gap: 0.65rem;
}

.storefront .storefront-cart-drawer__totals {
  display: grid;
  gap: 0.32rem;
}

.storefront .storefront-cart-drawer__totals p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #50331a;
  font-size: 0.88rem;
}

.storefront .storefront-cart-drawer__totals strong {
  color: #1e1006;
  font-size: 0.96rem;
}

.storefront .storefront-cart-drawer__wa {
  width: 100%;
  justify-content: center;
}

.storefront .storefront-cart-drawer__wa.is-disabled {
  pointer-events: none;
  opacity: 0.58;
}

.storefront .storefront-cart-drawer__note {
  margin: 0;
  color: #6f5439;
  font-size: 0.8rem;
  line-height: 1.56;
}

.storefront .storefront-cart-drawer__clear {
  width: 100%;
  justify-content: center;
}

@media (max-width: 1100px) {
  .storefront .site-nav__actions {
    display: grid;
    gap: 0.42rem;
    width: 100%;
  }

  .storefront .site-nav__cart {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .storefront .storefront-cart-drawer__panel {
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: min(76dvh, 680px);
    border-left: 0;
    border-top: 1px solid rgba(145, 86, 33, 0.18);
    border-radius: 22px 22px 0 0;
    transform: translateY(104%);
    box-shadow: 0 -16px 42px rgba(18, 8, 3, 0.24);
  }

  .storefront .storefront-cart-drawer.is-open .storefront-cart-drawer__panel {
    transform: translateY(0);
  }

  .storefront .storefront-cart-item {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 0.65rem;
    padding: 0.62rem;
  }

  .storefront .storefront-cart-item__content h3 {
    font-size: 0.94rem;
  }

  .storefront .storefront-cart-item__qty-form input {
    width: 62px;
  }
}