/** Shopify CDN: Minification failed

Line 1127:0 Unexpected "#2b2320"

**/
/* Ecloré — US Premium CRO Design System */
:root {
  /* Brand palette — canonical tokens */
  --ecl-gold: #C8A96A;
  --ecl-cream: #F6EFE7;
  --ecl-espresso: #2B2320;
  --ecl-gold-hover: #B89855;
  --ecl-sand: #EDE4D6;
  --ecl-taupe: #8A7E6E;

  /* Semantic aliases */
  --color-bg: var(--ecl-cream);
  --color-foreground: var(--ecl-espresso);
  --color-text: var(--ecl-espresso);
  --color-muted: var(--ecl-taupe);
  --color-primary: var(--ecl-gold);
  --color-accent: var(--ecl-gold);
  --color-accent-hover: var(--ecl-gold-hover);
  --color-blush: #E9D4CE;
  --color-cream: var(--ecl-cream);
  --color-success: #5A7A5C;
  --color-sale: #B8463C;
  /* Typography families */
  --font-display: var(--font-heading--family, "Fraunces"), Georgia, serif;
  --font-body: "Hanken Grotesk", sans-serif;
  --font-eyebrow: "IBM Plex Mono", monospace;
  --font-serif: var(--font-display);
  --font-sans: var(--font-body);
  --font-mono: var(--font-eyebrow);

  /* Type scale: 12 / 14 / 16 / 20 / 28 / 40 / 64 */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.25rem;
  --text-xl: 1.75rem;
  --text-2xl: 2.5rem;
  --text-6xl: 4rem;

  /* Horizon bridge — body/UI sans */
  --font-body--family: "Hanken Grotesk", sans-serif;
  --font-subheading--family: "Hanken Grotesk", sans-serif;
  --radius: 16px;
  --ecl-btn-radius: 10px;
  --shadow-soft: 0 2px 8px rgba(43, 35, 32, 0.06), 0 8px 24px rgba(43, 35, 32, 0.05);
  --shadow-hover: 0 4px 12px rgba(43, 35, 32, 0.08), 0 16px 40px rgba(43, 35, 32, 0.1);
  --shadow-drawer: -4px 0 24px rgba(43, 35, 32, 0.1), -12px 0 48px rgba(43, 35, 32, 0.06);
  --ecl-grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  --spacing-unit: 8px;
  --eclore-header-offset: 0px;
}

body {
  font-family: var(--font-body);
}

body.template-product {
  padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
}

/* —— Typography —— */
.eclore-serif,
.eclore-heading-display,
.eclore-heading-section {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.eclore-heading-display {
  font-size: clamp(var(--text-xl), 8vw, var(--text-6xl));
  line-height: 1.05;
}

.eclore-heading-section {
  font-size: clamp(var(--text-lg), 4vw, var(--text-2xl));
}

.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-6xl { font-size: var(--text-6xl); }

.eclore-section {
  padding: calc(var(--spacing-unit) * 8) calc(var(--spacing-unit) * 2);
}

@media (min-width: 750px) {
  .eclore-section {
    padding: calc(var(--spacing-unit) * 12) calc(var(--spacing-unit) * 4);
  }
}

.eclore-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 16px;
}

.eclore-eyebrow {
  font-family: var(--font-eyebrow);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* —— Buttons —— */
.eclore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 28px;
  border-radius: var(--ecl-btn-radius);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.eclore-btn:active {
  transform: scale(0.98);
}

.eclore-btn--primary {
  background: var(--ecl-gold);
  color: var(--ecl-espresso);
}

.eclore-btn--primary:hover {
  background: var(--ecl-gold-hover);
  box-shadow: var(--shadow-soft);
}

.eclore-btn--secondary {
  background: transparent;
  color: var(--ecl-espresso);
  border: 1.5px solid var(--ecl-espresso);
}

.eclore-btn--secondary:hover {
  background: var(--ecl-espresso);
  color: var(--ecl-cream);
}

.eclore-btn--full {
  width: 100%;
}

/* —— Hero —— */
.eclore-hero {
  position: relative;
  min-height: 85vh;
  min-height: 85dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-text);
}

.eclore-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.eclore-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eclore-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 24, 22, 0.75) 0%,
    rgba(26, 24, 22, 0.35) 45%,
    rgba(26, 24, 22, 0.15) 100%
  );
  z-index: 1;
}

.eclore-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 75% 60% at 50% 42%,
    var(--ecl-cream) 0%,
    rgba(246, 239, 231, 0.35) 40%,
    rgba(200, 169, 106, 0.1) 72%,
    transparent 100%
  );
  opacity: 0.7;
}

.eclore-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--ecl-max-width);
  margin: 0;
  padding: clamp(2.5rem, 6vw, 4rem) var(--ecl-section-pad-x);
  color: var(--ecl-cream);
  text-align: left;
}

.eclore-hero__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 8vw, var(--text-6xl));
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 16px;
}

.eclore-hero__sub {
  font-size: clamp(var(--text-base), 3vw, var(--text-lg));
  opacity: 0.92;
  max-width: 28rem;
  margin: 0 0 24px;
  line-height: 1.5;
}

.eclore-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

@media (min-width: 480px) {
  .eclore-hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.eclore-hero__trust-micro {
  font-size: var(--text-sm);
  opacity: 0.9;
  letter-spacing: 0.02em;
}

/* —— USP Bar —— */
.eclore-usp {
  background: var(--color-bg);
  border-block: 1px solid rgba(26, 24, 22, 0.08);
}

.eclore-usp__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
}

@media (min-width: 750px) {
  .eclore-usp__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.eclore-usp__item {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text);
}

.eclore-usp__icon {
  font-size: 0.5rem;
  margin-bottom: 6px;
  display: block;
  color: var(--color-accent);
  letter-spacing: 0.24em;
  opacity: 0.85;
}

/* —— Category Grid —— */
.eclore-categories__title {
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 5vw, var(--text-2xl));
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 8px;
}

.eclore-categories__sub {
  text-align: left;
  color: var(--color-muted);
  margin: 0 0 clamp(2rem, 4vw, 2.5rem);
}

.eclore-categories__grid {
  display: grid;
  gap: var(--ecl-grid-gap);
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .eclore-categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .eclore-categories__grid .eclore-cat:nth-child(4),
  .eclore-categories__grid .eclore-cat:nth-child(5) {
    grid-column: span 1;
  }
}

@media (min-width: 900px) {
  .eclore-categories__grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .eclore-cat--span-2 {
    grid-column: span 2;
  }
}

.eclore-cat {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.35s ease;
}

.eclore-cat:hover {
  box-shadow: var(--shadow-hover);
}

.eclore-cat__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eclore-cat__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43, 35, 32, 0.55), transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--ecl-cream);
}

.eclore-cat__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin: 0 0 4px;
}

.eclore-cat__link {
  font-size: var(--text-sm);
  opacity: 0.9;
}

/* —— Product Card —— */
.eclore-card {
  flex: 0 0 72%;
  max-width: 280px;
  scroll-snap-align: start;
}

@media (min-width: 750px) {
  .eclore-card {
    flex: 0 0 calc(33.333% - 12px);
    max-width: none;
  }
}

.eclore-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ecl-sand);
  margin-bottom: 12px;
}

.eclore-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.eclore-card__media img.eclore-card__img--alt {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.eclore-card:hover .eclore-card__img--alt {
  opacity: 1;
}

.eclore-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--ecl-espresso);
  color: var(--ecl-cream);
  font-family: var(--font-eyebrow);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.eclore-badge--de {
  top: auto;
  bottom: 10px;
  left: 10px;
  background: var(--color-success);
}

.eclore-stars {
  color: var(--color-accent);
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.eclore-stars__count {
  color: var(--color-muted);
  font-size: 0.75rem;
  margin-left: 4px;
}

.eclore-price {
  font-weight: 600;
  font-size: 1rem;
}

.eclore-price__compare {
  text-decoration: line-through;
  color: var(--color-muted);
  font-weight: 400;
  margin-right: 6px;
}

.eclore-price__sale {
  color: var(--color-sale);
}

.eclore-save-badge {
  display: inline-block;
  background: rgba(184, 70, 60, 0.12);
  color: var(--color-sale);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 6px;
}

.eclore-quick-add {
  margin-top: 10px;
  width: 100%;
  min-height: 44px;
  font-size: 0.875rem;
}

/* —— Carousel / product grid —— */
.eclore-carousel {
  display: flex;
  gap: var(--ecl-grid-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.eclore-carousel::-webkit-scrollbar {
  display: none;
}

@media (min-width: 900px) {
  .eclore-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .eclore-carousel .eclore-card {
    flex: none;
    max-width: none;
  }
}

.eclore-carousel__view-all {
  flex-shrink: 0;
}

.eclore-carousel__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  gap: var(--ecl-grid-gap);
}

/* —— Hero-product feature (bundle / spotlight) —— */
.eclore-hero-product__inner {
  display: grid;
  gap: var(--ecl-split-gap);
  align-items: center;
}

.eclore-hero-product--bleed .eclore-hero-product__inner {
  max-width: var(--ecl-bleed-max-width);
  margin-inline: auto;
  padding-inline: var(--ecl-section-pad-x);
  width: 100%;
}

.eclore-hero-product__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  max-height: 520px;
  background: var(--ecl-sand, #ede4d6);
}

.eclore-hero-product__media img,
.eclore-hero-product__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eclore-hero-product__copy {
  text-align: left;
}

.eclore-hero-product__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 12px;
  line-height: 1.15;
}

.eclore-hero-product__text {
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 36rem;
}

.eclore-hero-product__badge {
  position: static;
  display: inline-block;
  margin-bottom: 12px;
}

.eclore-hero-product__price {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

@media (min-width: 900px) {
  .eclore-hero-product__inner {
    grid-template-columns: 7fr 5fr;
  }

  .eclore-hero-product--reverse .eclore-hero-product__inner {
    grid-template-columns: 5fr 7fr;
  }

  .eclore-hero-product--reverse .eclore-hero-product__media {
    order: 2;
  }

  .eclore-hero-product--reverse .eclore-hero-product__copy {
    order: 1;
  }
}

/* —— Campaign —— */
.eclore-campaign {
  background: var(--ecl-espresso);
  color: var(--ecl-cream);
  text-align: center;
}

.eclore-campaign__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin: 0 0 12px;
}

.eclore-countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 24px 0;
}

.eclore-countdown__unit {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(200, 169, 106, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 64px;
}

.eclore-countdown__num {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
}

.eclore-countdown__label {
  font-size: 0.6875rem;
  opacity: 0.75;
  text-transform: uppercase;
}

/* —— Reviews —— */
.eclore-reviews__grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 750px) {
  .eclore-reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.eclore-review {
  background: var(--ecl-cream);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.eclore-review__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.35;
  margin-bottom: 12px;
}

/* —— PDP Conversion —— */
.eclore-pdp-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 12px;
  flex-wrap: wrap;
}

.eclore-pdp-trust {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.eclore-pdp-trust li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  margin-bottom: 8px;
  color: var(--color-text);
}

.eclore-pdp-trust li::before {
  content: "✓";
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
}

.eclore-urgency {
  font-size: 0.875rem;
  color: var(--color-sale);
  margin: 12px 0;
  padding: 10px 14px;
  background: rgba(184, 70, 60, 0.08);
  border-radius: 10px;
}

/* —— PDP benefit icons (below title/price) —— */
.eclore-pdp-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.eclore-pdp-benefits__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--color-muted, rgb(var(--color-foreground-rgb) / 0.72));
}

.eclore-pdp-benefits__icon {
  display: inline-flex;
  color: var(--color-primary, var(--ecl-taupe, #8b7355));
  flex-shrink: 0;
}

@media (max-width: 389px) {
  .eclore-pdp-benefits {
    flex-direction: column;
    gap: 8px;
  }
}

/* —— Trust line under ATC —— */
.eclore-pdp-trust-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-muted, rgb(var(--color-foreground-rgb) / 0.72));
}

.eclore-pdp-trust-line__sep {
  opacity: 0.5;
}

/* —— Cross-sell item layout —— */
.eclore-pdp-crosssell__item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  cursor: pointer;
}

.eclore-pdp-crosssell__thumb {
  border-radius: 8px;
  object-fit: cover;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.eclore-pdp-crosssell__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.eclore-pdp-crosssell__price {
  color: var(--color-muted);
  font-size: 0.875rem;
  font-weight: 400;
}

/* —— Bundle upsell block —— */
.eclore-pdp-bundle {
  margin-top: 32px;
  padding: 24px;
  background: var(--ecl-cream, #f6f1e8);
  border-radius: var(--radius, 12px);
  border: 1px solid rgba(200, 169, 140, 0.2);
}

.eclore-pdp-bundle__eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-eyebrow);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.eclore-pdp-bundle__card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.eclore-pdp-bundle__media img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.eclore-pdp-bundle__title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
}

.eclore-pdp-bundle__title a {
  color: inherit;
  text-decoration: none;
}

.eclore-pdp-bundle__text {
  margin: 0 0 8px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-muted);
}

.eclore-pdp-bundle__price {
  margin: 0 0 12px;
  font-weight: 600;
}

/* —— Review widget slot (empty until app installs) —— */
.eclore-reviews-slot {
  margin-top: 32px;
  min-height: 0;
}

.eclore-reviews-slot:not(.eclore-reviews-slot--has-reviews) {
  display: none;
}

.eclore-reviews-slot__heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 16px;
}

/* —— Cart drawer: GLOW15 —— */
.eclore-glow15 {
  width: 100%;
  margin-block-end: var(--padding-md);
}

.eclore-glow15__btn {
  width: 100%;
  min-height: 44px;
}

.eclore-glow15__hint {
  margin: 8px 0 0;
  font-size: 0.75rem;
  color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text, 0.65));
}

.eclore-glow15__error {
  margin: 8px 0 0;
  font-size: 0.8125rem;
  color: var(--color-sale, #b8463c);
}

.eclore-glow15__error.hidden {
  display: none;
}

/* —— Cart drawer: upsell —— */
.eclore-cart-upsell {
  padding: var(--padding-md) var(--padding-lg);
  border-block: 1px solid var(--color-border);
}

.eclore-cart-upsell__eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-eyebrow);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text, 0.65));
}

.eclore-cart-upsell__card {
  display: flex;
  gap: 12px;
  align-items: center;
}

.eclore-cart-upsell__media img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.eclore-cart-upsell__body {
  flex: 1;
  min-width: 0;
}

.eclore-cart-upsell__title {
  margin: 0 0 4px;
  font-size: 0.875rem;
  font-weight: 600;
}

.eclore-cart-upsell__title a {
  color: inherit;
  text-decoration: none;
}

.eclore-cart-upsell__price {
  margin: 0 0 8px;
  font-size: 0.8125rem;
  color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text, 0.65));
}

.eclore-cart-upsell__btn {
  min-height: 36px;
  padding-inline: var(--padding-md);
  font-size: 0.8125rem;
}

/* —— Accordion —— */
.eclore-accordion details {
  border-bottom: 1px solid rgba(26, 24, 22, 0.1);
}

.eclore-accordion summary {
  padding: 16px 0;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.eclore-accordion summary::-webkit-details-marker {
  display: none;
}

.eclore-accordion__body {
  padding-bottom: 16px;
  color: var(--color-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* —— Instagram grid —— */
.eclore-insta__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

@media (min-width: 750px) {
  .eclore-insta__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.eclore-insta__cell {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #e8dfd6, #d4c4b5);
  border-radius: 4px;
}

/* —— Newsletter —— */
.eclore-newsletter {
  background: var(--color-cream);
  color: var(--color-text);
  text-align: center;
  border-radius: var(--radius);
  margin-inline: 16px;
  border: 1px solid rgba(200, 169, 106, 0.28);
  box-shadow: 0 4px 24px rgba(43, 35, 32, 0.04);
}

.eclore-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
  margin: 20px auto 0;
}

@media (min-width: 480px) {
  .eclore-newsletter__form {
    flex-direction: row;
  }
}

.eclore-newsletter__input {
  flex: 1;
  min-height: 48px;
  border: none;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 1rem;
}

.eclore-newsletter__input:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* —— Collection hero —— */
.eclore-col-hero {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}

.eclore-col-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ecl-sand), var(--ecl-cream));
}

.eclore-col-hero__content {
  position: relative;
  padding: 32px 20px;
  color: var(--ecl-espresso);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* —— Animations: quiet by default — hero + intro + LED glow only —— */
.eclore-fade-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .eclore-btn--primary {
    box-shadow: 0 4px 20px rgba(200, 169, 106, 0.28);
  }

  .product-card,
  .eclore-product-card {
    transition: box-shadow 0.35s ease;
  }

  .product-card:hover,
  .eclore-product-card:hover {
    box-shadow: 0 12px 32px rgba(43, 35, 32, 0.08);
  }
}

/* —— Cookie consent banner —— */
.eclore-cookie-consent {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: calc(var(--layer-sticky, 1000) + 2);
  padding: 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  background: rgba(246, 239, 231, 0.98);
  border-top: 1px solid rgba(200, 169, 106, 0.35);
  box-shadow: 0 -8px 32px rgba(43, 35, 32, 0.12);
}

.eclore-cookie-consent[hidden] {
  display: none !important;
}

.eclore-cookie-consent__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 750px) {
  .eclore-cookie-consent__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
}

.eclore-cookie-consent__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ecl-espresso, #2b2320);
}

.eclore-cookie-consent__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.eclore-cookie-consent__actions .eclore-btn {
  min-height: 44px;
  min-width: 44px;
}
#2b2320);
}

.eclore-cookie-consent__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.eclore-cookie-consent__actions .eclore-btn {
  min-height: 44px;
  min-width: 44px;
}
