:root {
  --coffee-dark: #3A2416;
  --espresso: #1F130C;
  --cream: #F7F1E8;
  --sand: #E7D7C4;
  --gold: #B88A44;
  --olive: #4A5A3A;
  --warm-white: #FFFDF8;
  --text-main: #2B211C;
  --text-muted: #6F625A;
  --line: #DED2C4;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --font-serif: "Helvetica Neue Black", "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --font-sans: "Helvetica Neue", Arial, sans-serif;

  /* Marca: alineada con el sitio público (rojo Café León) */
  --primary: #8E000B;
  --primary-dark: #6F0008;
  --primary-soft: rgba(142, 0, 11, 0.07);
  --focus-ring: rgba(142, 0, 11, 0.20);

  /* Escala de controles (botones, inputs) estandarizada */
  --control-height: 44px;
  --control-height-sm: 36px;
  --control-height-lg: 52px;
  --control-pad-x: 0.9rem;
  --control-radius: var(--radius-md);
  --fs-control: 0.9375rem; /* 15px */
  --fs-label: 0.8125rem;   /* 13px */
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  color: var(--text-main);
  background: var(--warm-white);
  font-family: var(--font-sans);
  line-height: 1.55;
  font-size: 16px;
}

a {
  color: var(--coffee-dark);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  margin: 0 0 0.6rem;
  color: var(--espresso);
  font-family: var(--font-serif);
  line-height: 1.2;
}

h1 { font-size: clamp(1.75rem, 2.3vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 1.8vw, 1.6rem); }
h3 { font-size: clamp(1.06rem, 1.5vw, 1.22rem); }
p { margin: 0 0 0.9rem; color: #FFFDF8; }

small, .small-text {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

.narrow {
  width: min(780px, 100%);
  margin-inline: auto;
}

.section {
  padding: 2.3rem 0;
}

.section-cream { background: var(--cream); }
.section-band {
  background: linear-gradient(0deg, #f0e5d7 0%, #f9f4ed 100%);
  border-block: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 0.45rem;
  color: var(--olive);
  letter-spacing: 0.03em;
  font-size: 0.82rem;
  font-weight: 600;
}

.lead {
  color: var(--text-muted);
  font-size: 1rem;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--warm-white);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.42rem;
  font-weight: 700;
  color: var(--espresso);
}

.site-nav {
  display: flex;
  gap: 0.95rem;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 0.93rem;
  color: var(--text-main);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.link-cart {
  font-size: 0.9rem;
  color: var(--coffee-dark);
}

.site-main {
  min-height: calc(100vh - 280px);
}

.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--line);
  margin-top: 2.4rem;
}

.footer-grid {
  padding: 2rem 0 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 0.8rem 0 1rem;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-clean li { margin-bottom: 0.45rem; }

.grid-2, .grid-3 {
  display: grid;
  gap: 1rem;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  align-items: center;
}

.section-head {
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.hero-home {
  padding: 2.2rem 0 2rem;
}

.hero-panel {
  padding: 1rem 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #f9f4eb;
}

.contact-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--warm-white);
  padding: 0.95rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.81rem;
  color: var(--text-muted);
}

.card-foot {
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.price {
  font-weight: 700;
  color: var(--coffee-dark);
}

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.info-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 0.95rem;
}

.editorial-block {
  border-left: 2px solid var(--sand);
  padding-left: 1rem;
}

.editorial-list {
  display: grid;
  gap: 0.8rem;
}

.editorial-card {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.7rem;
}

.meta-text {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.filter-bar {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.8rem;
  background: #fff;
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
  align-items: end;
}

.form-grid {
  display: grid;
  gap: 0.78rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: var(--fs-label);
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Labels que envuelven un radio/checkbox: fila horizontal, no apilada */
label:has(> input[type="checkbox"]),
label:has(> input[type="radio"]) {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 500;
  color: var(--text-main);
  cursor: pointer;
}

input, select, textarea {
  border: 1px solid var(--line);
  border-radius: var(--control-radius);
  background: #fff;
  color: var(--text-main);
  min-height: var(--control-height);
  padding: 0.5rem var(--control-pad-x);
  font-size: var(--fs-control);
  font-family: var(--font-sans);
  line-height: 1.4;
}

textarea {
  min-height: 110px;
  padding-top: 0.6rem;
  resize: vertical;
}

/* Radios y checkboxes: tamaño consistente, color de marca y sin inflar a la altura de input */
input[type="checkbox"],
input[type="radio"] {
  width: 1.1rem;
  height: 1.1rem;
  min-height: 0;
  padding: 0;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--primary);
  cursor: pointer;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

input[type="checkbox"]:focus-visible,
input[type="radio"]:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  box-shadow: none;
}

::placeholder { color: #a99e93; }

input:disabled, select:disabled, textarea:disabled {
  background: #f5efe7;
  color: var(--text-muted);
  cursor: not-allowed;
}

.btn {
  border: 1px solid transparent;
  border-radius: var(--control-radius);
  min-height: var(--control-height);
  padding: 0 1.15rem;
  gap: 0.45rem;
  font-size: var(--fs-control);
  font-weight: 600;
  line-height: 1;
  font-family: var(--font-sans);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn:hover { text-decoration: none; }

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--focus-ring);
}

.btn:disabled,
.btn[disabled],
.btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* Variantes de tamaño */
.btn-sm {
  min-height: var(--control-height-sm);
  padding: 0 0.8rem;
  font-size: 0.82rem;
}

.btn-lg {
  min-height: var(--control-height-lg);
  padding: 0 1.5rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover { background: var(--primary-soft); }

.btn-muted {
  background: var(--cream);
  color: var(--text-main);
  border-color: var(--line);
}

.btn-muted:hover { background: var(--sand); }

.btn-link {
  background: transparent;
  border: none;
  padding: 0;
  min-height: auto;
  font-weight: 600;
  color: var(--primary);
}

.btn-link:hover { color: var(--primary-dark); text-decoration: underline; }

.inline-form {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.alert {
  margin: 0.75rem 0;
  padding: 0.66rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-size: 0.88rem;
}

.alert-success {
  color: #234120;
  border-color: #b8d6b5;
  background: #eff8ee;
}

.alert-error {
  color: #6f241f;
  border-color: #e3c0bd;
  background: #fdf2f1;
}

.form-error {
  color: #9d3b34;
  font-weight: 600;
}

.table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow-x: auto;
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  text-align: left;
  padding: 0.63rem;
  border-bottom: 1px solid #efe4d8;
  font-size: 0.89rem;
  vertical-align: top;
}

th {
  background: #fbf5ed;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: none;
}

.checkout-bar {
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.8rem;
  background: #fff;
}

.stat-card p {
  margin: 0;
  font-size: 1.4rem;
  color: var(--coffee-dark);
  font-weight: 700;
}

.tag {
  display: inline-block;
  margin: 0 0.35rem 0.35rem 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.77rem;
  padding: 0.14rem 0.48rem;
  background: #fff;
}

.mt-sm { margin-top: 0.8rem; }

.blend-builder {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 1rem;
}

.blend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.blend-item {
  border: 1px solid #eadfce;
  border-radius: var(--radius-sm);
  background: #fcf8f1;
  padding: 0.8rem;
}

.blend-footer {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
}

.blend-total {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.blend-result {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 1rem;
}

.result-metrics {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.shadow-ambient-warm {
  box-shadow: 0 24px 48px -12px rgba(33, 15, 11, 0.08);
}

.image-warm-filter::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(220, 204, 185, 0.05), rgba(33, 15, 11, 0.1));
  pointer-events: none;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.faq-item.open .faq-content {
  max-height: 260px;
  opacity: 1;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.contact-pin-bounce {
  animation: contact-pin-bounce 1.8s ease-in-out infinite;
}

nav.contact-nav-scrolled {
  box-shadow: 0 14px 30px -12px rgba(33, 15, 11, 0.35);
}

.shadow-blog-card {
  box-shadow: 0 20px 40px -15px rgba(33, 15, 11, 0.08);
}

.blog-rich-content {
  line-height: 1.8;
}

.blog-rich-content p {
  margin: 0 0 1rem;
}

.line-clamp-2,
.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 { -webkit-line-clamp: 2; }
.line-clamp-3 { -webkit-line-clamp: 3; }

.shadow-ambient-shop {
  box-shadow: 0 20px 40px -10px rgba(33, 15, 11, 0.08);
}

.shop-page-shell .shop-chip {
  display: inline-flex;
}

.shop-page-shell .shop-chip-pill {
  border: 1px solid rgba(144, 111, 107, 0.45);
  border-radius: 9999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #5c403d;
  transition: all 0.2s ease;
}

.shop-page-shell .shop-chip input:checked + .shop-chip-pill {
  border-color: #8e000b;
  color: #8e000b;
  background: rgba(184, 13, 22, 0.06);
}

.shop-page-shell .shop-chip-pill:hover {
  border-color: #4d4234;
  color: #4d4234;
}

.hero-media-shell {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #140b07;
}

.hero-media-shell .hero-image-base,
.hero-media-shell .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media-shell .hero-image-base {
  filter: brightness(0.48);
}

.hero-media-shell .hero-video {
  z-index: 1;
  filter: brightness(0.55);
}

.hero-media-overlay {
  background: linear-gradient(
    to bottom,
    rgba(12, 6, 4, 0.38) 0%,
    rgba(12, 6, 4, 0.55) 45%,
    rgba(12, 6, 4, 0.64) 100%
  );
  pointer-events: none;
}

.blend-lab-compact .blend-lab-section {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

.blend-lab-compact .blend-lab-head {
  margin-bottom: 2rem;
}

.blend-lab-compact .blend-lab-title {
  font-size: clamp(1.7rem, 2.3vw, 2.05rem);
  line-height: 1.15;
}

.blend-lab-compact .blend-lab-subtitle {
  font-size: 0.96rem;
  line-height: 1.45;
}

.blend-lab-compact .blend-lab-grid {
  gap: 1.25rem;
}

.blend-lab-compact .blend-lab-visual-grid {
  gap: 1rem;
}

.blend-lab-compact .blend-lab-card {
  padding: 1rem;
  border-radius: 0.95rem;
}

.blend-lab-compact .blend-lab-form-panel .space-y-4 {
  gap: 0.75rem;
}

.blend-lab-compact .blend-lab-row {
  padding: 0.75rem;
  border-radius: 0.8rem;
}

.blend-lab-compact .blend-lab-input {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.blend-lab-compact .blend-lab-btn {
  padding-top: 0.72rem;
  padding-bottom: 0.72rem;
}

.blend-lab-compact .blend-lab-radar {
  max-width: 235px;
  margin-inline: auto;
}

.blend-lab-compact .blend-lab-pack {
  max-width: 235px;
  margin-inline: auto;
  aspect-ratio: 4 / 5;
}

.blend-lab-compact .blend-lab-share-section {
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
}

.blend-lab-compact .blend-lab-share-card {
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 1.1rem;
}

.blend-lab-compact .blend-lab-score-card {
  padding: 1rem;
  transform: rotate(0.35deg);
}

.blend-lab-page {
  padding-top: 2.65rem;
  padding-bottom: 2.5rem;
}

.blend-lab-page .blend-lab-page-head {
  margin-bottom: 1.65rem;
}

.blend-lab-page .blend-lab-result-card {
  margin-top: 1.6rem;
  padding: 1rem;
}

.blend-eyebrow {
  margin: 0 0 0.45rem;
  color: #8e000b;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.home-hero {
  position: relative;
  min-height: calc(100svh - 5rem);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.home-hero-content {
  position: relative;
  z-index: 2;
  width: min(1200px, 100% - 2.5rem);
  margin-inline: auto;
  color: #fff;
}

.home-hero-content h1 {
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 4rem);
  margin-bottom: 0.8rem;
}

.home-hero-content p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
  font-size: 1.05rem;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.home-hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.home-hero .btn-outline:hover {
  color: #8e000b;
  background: #fff;
}

.home-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: center;
}

.home-story-image-wrap img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

.blend-wizard-shell {
  border: 1px solid #e7dbcd;
  border-radius: 14px;
  background: #fff;
}

.blend-wizard-form {
  padding: 1rem;
  display: grid;
  gap: 1rem;
}

.blend-wizard-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.blend-heading {
  margin: 0;
}

.blend-subheading {
  margin: 0.35rem 0 0;
  color: #6f625a;
  font-size: 0.92rem;
}

.blend-stepper {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.blend-step-chip {
  border: 1px solid #d8c6b3;
  background: #fff;
  border-radius: 999px;
  padding: 0.34rem 0.78rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #6b5243;
  cursor: pointer;
}

.blend-step-chip.is-active {
  border-color: #8e000b;
  color: #8e000b;
  background: rgba(184, 13, 22, 0.08);
}

.blend-step-panel {
  display: none;
}

.blend-step-panel.is-active {
  display: block;
}

.blend-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.blend-form-fields {
  display: grid;
  gap: 0.68rem;
}

.blend-pack-preview {
  border: 1px solid #eadfce;
  border-radius: 12px;
  padding: 0.8rem;
  background: #fcf8f1;
}

.blend-pack-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 260px;
}

.blend-pack-card--final {
  min-height: 300px;
}

.blend-pack-color {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #8e000b 0%, #2f2521 100%);
}

.blend-pack-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(10, 6, 4, 0.68), rgba(10, 6, 4, 0.16));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.9rem;
  color: #fff;
}

.blend-pack-kicker {
  margin: 0 0 0.3rem;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.blend-pack-title {
  margin: 0 0 0.2rem;
  color: #fff;
  font-size: 1.1rem;
}

.blend-pack-subtitle,
.blend-pack-composition {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.92);
}

.blend-pack-help {
  margin: 0.7rem 0 0;
  font-size: 0.82rem;
  color: #6f625a;
}

.blend-step-description {
  margin-bottom: 0.6rem;
}

.blend-step-description p {
  margin: 0;
  color: #6f625a;
  font-size: 0.9rem;
}

.blend-components-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.blend-component-card {
  border: 1px solid #eadfce;
  border-radius: 10px;
  padding: 0.72rem;
  background: #fcf8f1;
  display: grid;
  gap: 0.55rem;
}

.blend-component-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.blend-component-head h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

.blend-component-head span {
  font-size: 0.78rem;
  font-weight: 700;
  color: #8e000b;
}

.blend-component-meta {
  margin: 0;
  font-size: 0.78rem;
  color: #6f625a;
}

.blend-component-slider {
  width: 100%;
  accent-color: #8e000b;
}

.blend-total-row {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  color: #6f625a;
}

.blend-total-row strong.is-valid {
  color: #1f6f35;
}

.blend-final-card,
.blend-radar-card {
  border: 1px solid #eadfce;
  border-radius: 12px;
  background: #fcf8f1;
  padding: 0.8rem;
}

.blend-final-card h3,
.blend-radar-card h3 {
  margin: 0 0 0.6rem;
}

.blend-final-meta {
  margin-top: 0.6rem;
  display: grid;
  gap: 0.28rem;
}

.blend-final-meta p {
  margin: 0;
  font-size: 0.84rem;
}

.blend-radar-wrap {
  width: min(280px, 100%);
  margin-inline: auto;
}

.blend-radar-svg {
  width: 100%;
  height: auto;
}

.blend-radar-svg text {
  fill: #6b5243;
  font-size: 10px;
}

.blend-composition-list {
  margin: 0.5rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.2rem;
  font-size: 0.82rem;
  color: #5c403d;
}

.blend-wizard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.blend-wizard-actions [data-submit-intent] {
  display: none;
}

.blend-wizard-feedback {
  margin: 0;
  min-height: 1.2rem;
  font-size: 0.84rem;
  color: #6f625a;
}

.blend-wizard-feedback.is-error {
  color: #9d3b34;
  font-weight: 700;
}

.blend-wizard-feedback.is-success {
  color: #1f6f35;
  font-weight: 700;
}

.blend-lookup-card {
  border: 1px solid #eadfce;
  border-radius: 10px;
  background: #fff;
  padding: 0.8rem;
}

.blend-lookup-card h3 {
  margin-bottom: 0.4rem;
}

.blend-lookup-card p {
  margin: 0 0 0.32rem;
  font-size: 0.9rem;
}

.blend-lookup-card ul {
  margin: 0.42rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.84rem;
}

.blend-lookup-card--empty {
  background: #fdf2f1;
}

.editorial-shadow {
  box-shadow: 0 20px 40px -15px rgba(33, 15, 11, 0.08);
}

.auth-entry-shell .form-error,
.auth-recover-shell .form-error {
  color: #9d3b34;
  font-size: 0.82rem;
  font-weight: 600;
}

.auth-entry-shell [data-auth-tab],
.auth-entry-shell [data-apple-disabled] {
  user-select: none;
}

.auth-page .public-main-auth {
  min-height: calc(100svh - var(--public-nav-height));
  height: calc(100svh - var(--public-nav-height));
}

.auth-page .auth-entry-shell {
  font-size: clamp(0.88rem, 0.84rem + 0.2vw, 1rem);
}

.auth-page .auth-entry-shell .auth-side-title {
  font-size: clamp(1.95rem, 2.6vw, 3rem);
  line-height: 1.08;
}

.auth-page .auth-entry-shell .auth-form-title {
  font-size: clamp(1.65rem, 2vw, 2.1rem);
  line-height: 1.14;
}

.auth-page .auth-entry-shell .auth-body-lg {
  font-size: clamp(0.95rem, 0.9rem + 0.15vw, 1.03rem);
  line-height: 1.45;
}

.auth-page .auth-entry-shell .auth-body-md {
  font-size: 0.93rem;
  line-height: 1.45;
}

.auth-page .auth-entry-shell .auth-label-md {
  font-size: 0.79rem;
  line-height: 1.2;
  letter-spacing: 0.035em;
}

.auth-page .auth-entry-shell .auth-fields input {
  padding-top: 0.62rem;
  padding-bottom: 0.62rem;
  font-size: 0.92rem;
}

.auth-page .auth-entry-shell .auth-primary-btn {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  font-size: 0.8rem;
}

.checkout-payment-option {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.checkout-payment-option:hover {
  box-shadow: 0 12px 24px -18px rgba(33, 15, 11, 0.35);
}

@keyframes contact-pin-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@media (max-width: 1020px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .filter-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blend-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .blend-lab-compact .blend-lab-section {
    padding-top: 2.35rem;
    padding-bottom: 2.35rem;
  }

  .blend-lab-compact .blend-lab-title {
    font-size: clamp(1.55rem, 2.4vw, 1.9rem);
  }

  .blend-lab-compact .blend-lab-pack,
  .blend-lab-compact .blend-lab-radar {
    max-width: 210px;
  }

  .home-story-grid {
    grid-template-columns: 1fr;
  }

  .blend-grid-two {
    grid-template-columns: 1fr;
  }

  .blend-components-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem 0;
  }
  .footer-grid,
  .grid-2,
  .grid-3,
  .product-grid,
  .stats-grid,
  .blend-grid {
    grid-template-columns: 1fr;
  }
  .section-head,
  .checkout-bar,
  .contact-band {
    flex-direction: column;
    align-items: flex-start;
  }
  .filter-bar { grid-template-columns: 1fr; }
  .site-nav { width: 100%; }

  .blend-lab-compact .blend-lab-title {
    font-size: 1.52rem;
  }

  .blend-lab-compact .blend-lab-head {
    margin-bottom: 1.3rem;
  }

  .blend-lab-compact .blend-lab-grid {
    gap: 0.95rem;
  }

  .blend-lab-compact .blend-lab-card {
    padding: 0.85rem;
  }

  .blend-lab-compact .blend-lab-pack,
  .blend-lab-compact .blend-lab-radar {
    max-width: 185px;
  }

  .blend-lab-page {
    padding-top: 2rem;
    padding-bottom: 1.9rem;
  }

  .home-hero-content {
    width: min(1200px, 100% - 1.5rem);
  }

  .home-hero-content h1 {
    font-size: clamp(1.7rem, 8.5vw, 2.3rem);
  }

  .blend-wizard-form {
    padding: 0.75rem;
  }

  .blend-wizard-head {
    flex-direction: column;
  }

  .blend-wizard-actions {
    justify-content: stretch;
  }

  .blend-wizard-actions .btn {
    width: 100%;
  }
}
