:root {
  --ec-ink: #1f1412;
  --ec-muted: #6f5a55;
  --ec-paper: #fefbfc;
  --ec-sand: #fff8f3;
  --ec-gold: #c8953f;
  --ec-green: #4b100d;
  --ec-green-soft: rgba(75, 16, 13, 0.08);
  --ec-brown-soft: rgba(200, 149, 63, 0.12);
  --ec-border: rgba(92, 58, 53, 0.14);
  --ec-shadow: 0 30px 90px rgba(60, 28, 23, 0.12);
  --ec-radius-xl: 30px;
  --ec-radius-lg: 24px;
  --ec-radius-md: 18px;
  --ec-radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100%;
  height: auto;
}

body.ec-site,
body.ec-admin {
  margin: 0;
  width: 100%;
  height: auto;
  color: var(--ec-ink);
  background:
    radial-gradient(circle at top left, var(--ec-brown-soft), transparent 34%),
    radial-gradient(circle at top right, var(--ec-green-soft), transparent 28%),
    linear-gradient(180deg, #fffdfb 0%, #fff8f3 100%);
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

code {
  color: var(--ec-green);
}

.ec-bg-orb {
  position: fixed;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.5;
  z-index: 0;
}

.ec-bg-orb-1 {
  width: 320px;
  height: 320px;
  left: -120px;
  top: 140px;
  background: var(--ec-brown-soft);
}

.ec-bg-orb-2 {
  width: 260px;
  height: 260px;
  right: -90px;
  top: 50vh;
  background: var(--ec-green-soft);
}

.ec-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  backdrop-filter: blur(16px);
}

.ec-topbar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border: 1px solid var(--ec-border);
  border-radius: 28px;
  background: rgba(255, 250, 241, 0.72);
  box-shadow: var(--ec-shadow);
  position: relative;
  z-index: 1;
}

.ec-brand-link,
.ec-admin-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.ec-brand-link strong,
.ec-admin-brand strong {
  display: block;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.ec-brand-link small,
.ec-admin-brand small {
  display: block;
  color: var(--ec-muted);
  font-size: 12px;
}

.ec-brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--ec-green), var(--ec-gold));
  box-shadow: 0 18px 30px rgba(75, 16, 13, 0.18);
}

.ec-brand-mark img,
.ec-brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ec-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.ec-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ec-muted);
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.ec-nav a:hover,
.ec-nav a.active {
  background: var(--ec-green);
  color: #fff;
  transform: translateY(-1px);
}

.ec-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ec-search {
  min-width: 320px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--ec-border);
}

.ec-search i {
  color: var(--ec-muted);
}

.ec-search input {
  border: 0;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 15px;
}

.ec-icon-btn {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--ec-border);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 22px rgba(43, 28, 14, 0.08);
}

.ec-icon-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--ec-green);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.ec-mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--ec-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.ec-main {
  position: relative;
  z-index: 1;
  padding: 26px 0 72px;
  width: 100%;
  min-height: auto;
}

.container-xxl {
  --bs-gutter-x: 1.5rem;
  max-width: 1240px;
}

.ec-section {
  margin-bottom: 44px;
}

.ec-tenant-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--ec-border);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 241, 0.72)),
    radial-gradient(circle at top left, var(--ec-green-soft), transparent 35%),
    radial-gradient(circle at bottom right, var(--ec-brown-soft), transparent 34%);
  box-shadow: var(--ec-shadow);
}

.ec-tenant-banner-copy .ec-display {
  max-width: 11ch;
}

.ec-tenant-banner-visual {
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--ec-border);
  background: linear-gradient(145deg, rgba(75, 16, 13, 0.08), rgba(200, 149, 63, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.ec-tenant-banner-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.ec-tenant-banner-fallback {
  min-height: 320px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--ec-green), var(--ec-gold));
}

.ec-tenant-banner-fallback .ec-brand-mark {
  width: 110px;
  height: 110px;
  border-radius: 32px;
  font-size: 38px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.ec-page-head {
  margin-bottom: 18px;
}

.ec-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--ec-gold);
  margin-bottom: 10px;
}

.ec-display,
.ec-title-serif,
.ec-section-title,
.ec-card-title {
  font-family: 'Fraunces', serif;
  letter-spacing: -0.03em;
}

.ec-display {
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.96;
  max-width: 11ch;
}

.ec-display-sm {
  font-size: clamp(34px, 4.5vw, 58px);
  max-width: none;
}

.ec-lead,
.ec-muted,
.ec-copy,
.ec-book-excerpt {
  color: var(--ec-muted);
}

.ec-lead {
  max-width: 60ch;
  font-size: 17px;
  line-height: 1.8;
}

.ec-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.ec-section-title {
  font-size: clamp(25px, 3vw, 40px);
  margin: 0;
}

.ec-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ec-stat-card,
.ec-kpi-card {
  padding: 18px;
  border-radius: var(--ec-radius-md);
  border: 1px solid var(--ec-border);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 30px rgba(42, 27, 14, 0.08);
}

.ec-stat-card strong,
.ec-kpi-card strong {
  display: block;
  font-size: 29px;
  line-height: 1;
  margin-bottom: 5px;
  font-family: 'Fraunces', serif;
}

.ec-stat-card span,
.ec-kpi-card span {
  font-size: 14px;
  color: var(--ec-muted);
}

.ec-spotlight-card,
.ec-card,
.ec-summary-card,
.ec-filter-shell,
.ec-copy-card {
  border-radius: var(--ec-radius-xl);
  border: 1px solid var(--ec-border);
  background: rgba(255, 250, 241, 0.82);
  box-shadow: var(--ec-shadow);
}

.ec-spotlight-card {
  overflow: hidden;
}

.ec-spotlight-art {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(75, 16, 13, 0.08), rgba(200, 149, 63, 0.08));
}

.ec-spotlight-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ec-spotlight-body {
  padding: 22px;
}

.ec-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ec-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--ec-green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.ec-pill-soft {
  background: rgba(75, 16, 13, 0.08);
  color: var(--ec-green);
}

.ec-card-title {
  font-size: 23px;
  margin-bottom: 8px;
}

.ec-card-text {
  color: var(--ec-muted);
  line-height: 1.75;
}

.ec-price {
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.ec-price-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.ec-price-old {
  color: var(--ec-muted);
  text-decoration: line-through;
}

.ec-book-card {
  height: 100%;
  overflow: hidden;
  border-radius: var(--ec-radius-lg);
  border: 1px solid var(--ec-border);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 30px rgba(42, 27, 14, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ec-book-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(42, 27, 14, 0.14);
}

.ec-book-cover {
  position: relative;
  aspect-ratio: 4 / 5.8;
  background: linear-gradient(135deg, rgba(75, 16, 13, 0.1), rgba(200, 149, 63, 0.1));
  overflow: hidden;
}

.ec-book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ec-book-ribbon {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}

.ec-book-ribbon-sale {
  background: var(--ec-gold);
}

.ec-book-ribbon-out {
  background: #8d3d3d;
}

.ec-book-body {
  padding: 16px;
}

.ec-book-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--ec-muted);
  font-size: 12px;
  margin-bottom: 8px;
}

.ec-book-title {
  margin: 0 0 8px;
  font-family: 'Fraunces', serif;
  font-size: 19px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.ec-book-title a:hover {
  color: var(--ec-green);
}

.ec-book-excerpt {
  font-size: 15px;
  line-height: 1.65;
  min-height: 4.8em;
}

.ec-book-price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.ec-book-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.ec-book-status,
.ec-book-category-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.ec-book-status.is-live {
  color: #1f6d4c;
  background: rgba(30, 118, 80, 0.12);
}

.ec-book-status.is-low {
  color: #996216;
  background: rgba(200, 149, 63, 0.18);
}

.ec-book-status.is-empty {
  color: #8d3d3d;
  background: rgba(183, 77, 77, 0.12);
}

.ec-book-category-chip {
  color: var(--ec-green);
  background: rgba(75, 16, 13, 0.08);
  max-width: 55%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ec-book-stock {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.ec-book-stock.is-live {
  background: rgba(75, 16, 13, 0.08);
  color: var(--ec-green);
}

.ec-book-stock.is-low {
  background: rgba(200, 149, 63, 0.18);
  color: #996216;
}

.ec-book-stock.is-empty {
  background: rgba(183, 77, 77, 0.12);
  color: #8d3d3d;
}

.ec-book-support-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 0;
  color: var(--ec-muted);
  font-size: 12px;
  line-height: 1.6;
}

.ec-book-support-copy span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ec-filter-shell {
  padding: 22px;
}

.ec-label {
  display: block;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--ec-ink);
}

.ec-input {
  border-radius: 14px !important;
  border-color: rgba(37, 24, 14, 0.15) !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: none !important;
}

.ec-input:focus {
  border-color: rgba(75, 16, 13, 0.35) !important;
  box-shadow: 0 0 0 0.2rem rgba(75, 16, 13, 0.08) !important;
}

.ec-empty-state {
  padding: 48px 24px;
  text-align: center;
  border-radius: var(--ec-radius-xl);
  border: 1px dashed rgba(37, 24, 14, 0.16);
  background: rgba(255, 255, 255, 0.64);
}

.ec-empty-state-large {
  padding: 84px 24px;
}

.ec-empty-icon {
  width: 82px;
  height: 82px;
  border-radius: 26px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  background: rgba(75, 16, 13, 0.08);
  color: var(--ec-green);
  font-size: 32px;
}

.ec-empty-icon-success {
  background: rgba(75, 16, 13, 0.12);
}

.ec-card,
.ec-summary-card,
.ec-copy-card {
  padding: 24px;
}

.ec-summary-card-centered {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.ec-summary-title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  margin-bottom: 16px;
}

.ec-summary-row,
.ec-summary-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ec-border);
}

.ec-summary-total {
  font-weight: 800;
  font-size: 17px;
  border-bottom: 0;
  padding-top: 16px;
}

.ec-summary-product {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ec-border);
}

.ec-summary-product img {
  width: 56px;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--ec-border);
}

.ec-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ec-info-card {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--ec-border);
  background: rgba(255, 255, 255, 0.82);
}

.ec-info-card span,
.ec-info-card strong {
  display: block;
}

.ec-info-card span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ec-muted);
  margin-bottom: 6px;
}

.ec-info-card strong {
  font-size: 15px;
}

.ec-action-card {
  padding: 18px;
  border-radius: 24px;
  background: rgba(75, 16, 13, 0.04);
  border: 1px solid rgba(75, 16, 13, 0.08);
}

.ec-attributes {
  display: grid;
  gap: 10px;
}

.ec-attribute-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--ec-border);
}

.ec-attribute-row span {
    color: var(--ec-muted);
    font-size: 13px;
}

.ec-attribute-row strong {
  text-align: right;
}

.ec-gallery {
  display: grid;
  gap: 14px;
}

.ec-gallery-main {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--ec-border);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--ec-shadow);
}

.ec-gallery-main img {
  width: 100%;
  aspect-ratio: 4 / 5.5;
  object-fit: cover;
}

.ec-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(74px, 1fr));
  gap: 10px;
}

.ec-thumb {
  padding: 0;
  border: 1px solid var(--ec-border);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
}

.ec-thumb img {
  width: 100%;
  height: 92px;
  object-fit: cover;
}

.ec-copy p,
.ec-copy li {
  line-height: 1.85;
}

.ec-copy-card .ec-copy {
  max-width: 78ch;
}

.ec-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.ec-badge-success {
  background: rgba(75, 16, 13, 0.12);
  color: var(--ec-green);
}

.ec-badge-info {
  background: rgba(75, 16, 13, 0.08);
  color: var(--ec-green);
}

.ec-badge-warning {
  background: rgba(160, 107, 42, 0.14);
  color: var(--ec-gold);
}

.ec-badge-danger {
  background: rgba(183, 77, 77, 0.12);
  color: #8d3d3d;
}

.ec-badge-secondary {
  background: rgba(29, 22, 18, 0.08);
  color: var(--ec-ink);
}

.ec-badge-sale {
  background: rgba(160, 107, 42, 0.14);
  color: var(--ec-gold);
}

.ec-flash-stack {
  margin-bottom: 18px;
}

.ec-alert {
  border-radius: 18px;
  border: 1px solid var(--ec-border);
}

.ec-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.ec-pagination .page-link,
.ec-pagination .page-count,
.ec-pagination .ec-page-link,
.ec-pagination .ec-page-current,
.ec-pagination .ec-page-ellipsis {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--ec-border);
  background: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.ec-pagination .ec-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ec-ink);
}

.ec-pagination .ec-page-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(42, 27, 14, 0.08);
}

.ec-pagination .ec-page-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    background: #f5eee9;
    border-color: #6f6f6f;
}

.ec-pagination .ec-page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: transparent;
  background: transparent;
  padding-inline: 8px;
  box-shadow: none;
}

.ec-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ec-chip,
.ec-brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid var(--ec-border);
  background: rgba(255, 255, 255, 0.84);
  min-width: 220px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ec-chip:hover,
.ec-brand-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(42, 27, 14, 0.1);
}

.ec-brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ec-banner {
  padding: 26px;
  border-radius: var(--ec-radius-xl);
  border: 1px solid var(--ec-border);
  background: linear-gradient(135deg, rgba(75, 16, 13, 0.06), rgba(200, 149, 63, 0.08));
  display: grid;
  gap: 18px;
}

.ec-kpi-card {
  height: 100%;
}

.ec-stack-list {
  display: grid;
  gap: 12px;
}

.ec-stack-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid var(--ec-border);
  background: rgba(255, 255, 255, 0.84);
}

.ec-stack-item img {
  width: 48px;
  height: 68px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--ec-border);
}

.ec-cart-table thead th,
.ec-orders-table thead th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ec-muted);
}

.ec-orders-table {
  border-collapse: separate;
  border-spacing: 0 10px;
}

.ec-orders-table tbody tr {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(44, 19, 12, 0.05);
}

.ec-orders-table tbody tr:hover {
  transform: translateY(-1px);
}

.ec-orders-table tbody td {
  padding-top: 14px;
  padding-bottom: 14px;
  border-top: 1px solid var(--ec-border);
  border-bottom: 1px solid var(--ec-border);
}

.ec-orders-table tbody tr td:first-child {
  padding-left: 16px;
  border-left: 1px solid var(--ec-border);
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.ec-orders-table tbody tr td:last-child {
  padding-right: 16px;
  border-right: 1px solid var(--ec-border);
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.ec-cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ec-cart-item img {
  width: 60px;
  height: 84px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--ec-border);
}

.ec-qty-input {
  width: 92px;
}

.ec-admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
}

.ec-admin-sidebar {
  padding: 24px;
  border-right: 1px solid var(--ec-border);
  background: rgba(255, 250, 241, 0.75);
  backdrop-filter: blur(16px);
}

.ec-admin-brand {
  margin-bottom: 28px;
}

.ec-admin-nav {
  display: grid;
  gap: 8px;
}

.ec-admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--ec-muted);
  font-weight: 700;
}

.ec-admin-nav a.active,
.ec-admin-nav a:hover {
  background: var(--ec-green);
  color: #fff;
}

.ec-admin-main {
  min-width: 0;
}

.ec-admin-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--ec-border);
  background: rgba(246, 239, 229, 0.86);
  backdrop-filter: blur(16px);
}

.ec-admin-topbar h1 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(23px, 2.6vw, 35px);
}

.ec-admin-topbar p {
  margin: 6px 0 0;
  color: var(--ec-muted);
}

.ec-admin-content {
  padding: 28px;
}

.ec-footer {
  padding: 24px 0 32px;
  color: var(--ec-muted);
}

.ec-footer .row {
  padding: 22px;
  border-radius: 28px;
  border: 1px solid var(--ec-border);
  background: rgba(255, 250, 241, 0.66);
}

.ec-footer h6 {
  color: var(--ec-ink);
  font-weight: 800;
  margin-bottom: 12px;
}

.ec-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.ec-footer a {
  color: inherit;
}

.ec-footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ec-footer-brand p {
  margin: 8px 0 0;
  line-height: 1.8;
}

.ec-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 12px 0 18px;
  backdrop-filter: blur(18px);
}

.ec-trustbar {
  margin-bottom: 12px;
}

.ec-trustbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 16px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #4b100d 0%, #250403 100%);
  box-shadow: 0 18px 36px rgba(48, 18, 14, 0.18);
}

.ec-trustbar-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ec-trust-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 248, 243, 0.12);
  font-size: 13px;
  font-weight: 700;
}

.ec-trustbar-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 700;
}

.ec-trustbar-links a {
  color: rgba(255, 255, 255, 0.9);
}

.ec-main-header {
  display: grid;
  grid-template-columns: auto auto minmax(320px, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--ec-border);
  border-radius: 28px;
  background: rgba(254, 251, 252, 0.9);
  box-shadow: var(--ec-shadow);
}

.ec-brand-mark-premium {
  background: linear-gradient(135deg, #4b100d, #250403);
}

.ec-search-shell {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--ec-border);
  position: relative;
  overflow: visible;
}

.ec-search-select {
  border: 0;
  outline: none;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(75, 16, 13, 0.06);
  color: var(--ec-ink);
  font-weight: 700;
}

.ec-search-shell input {
  border: 0;
  outline: none;
  font-size: 15px;
  background: transparent;
  width: 100%;
}

.ec-search-submit {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #4b100d, #650d05);
}

.ec-search-suggestions {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid var(--ec-border);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 26px 60px rgba(42, 27, 14, 0.16);
  max-height: 420px;
  overflow: auto;
}

.ec-search-suggestions[hidden] {
  display: none;
}

.ec-search-suggestions.is-loading {
  min-height: 84px;
}

.ec-search-suggestions-loading {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 6px;
  color: var(--ec-muted);
  font-size: 15px;
  line-height: 1.45;
}

.ec-search-suggestions-loading strong,
.ec-search-suggestions-loading small {
  display: block;
}

.ec-search-suggestions-head {
    display: contents;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.ec-search-suggestions-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ec-gold);
}

.ec-search-suggestions-note {
  font-size: 13px;
  color: var(--ec-muted);
}

.ec-search-suggestions-list {
  display: grid;
  gap: 8px;
}

.ec-search-suggestion {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid transparent;
  background: rgba(75, 16, 13, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.ec-search-suggestion:hover {
  transform: translateY(-1px);
  border-color: rgba(200, 149, 63, 0.4);
  background: rgba(255, 248, 243, 0.96);
}

.ec-search-suggestion img,
.ec-search-suggestion-fallback {
  width: 56px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(75, 16, 13, 0.1), rgba(200, 149, 63, 0.1));
}

.ec-search-suggestion-fallback {
  display: grid;
  place-items: center;
  color: var(--ec-green);
  font-size: 18px;
}

.ec-search-suggestion-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.ec-search-suggestion-copy strong {
  display: block;
  color: var(--ec-ink);
  font-size: 15px;
  line-height: 1.35;
}

.ec-search-suggestion-copy small,
.ec-search-suggestion-meta span,
.ec-search-suggestion-meta em {
  display: block;
  font-size: 13px;
  color: var(--ec-muted);
}

.ec-search-suggestion-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.ec-search-suggestion-meta em {
  font-style: normal;
  font-weight: 800;
  color: var(--ec-green);
}

.ec-search-suggestion > i {
  color: var(--ec-gold);
}

.ec-search-suggestions-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ec-green);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.ec-search-suggestions-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ec-search-suggestions-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(75, 16, 13, 0.12);
  background: rgba(255, 248, 243, 0.9);
  color: var(--ec-ink);
  font-size: 13px;
  font-weight: 700;
}

.ec-search-suggestions-empty {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(75, 16, 13, 0.04);
  border: 1px dashed rgba(75, 16, 13, 0.12);
}

.ec-search-suggestions-empty strong {
  color: var(--ec-ink);
  font-size: 14px;
}

.ec-search-suggestions-empty small {
  color: var(--ec-muted);
  font-size: 13px;
}

@media (max-width: 767.98px) {
  .ec-search-suggestions {
    padding: 12px;
  }

  .ec-search-suggestion {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .ec-search-suggestion img,
  .ec-search-suggestion-fallback {
    width: 48px;
    height: 72px;
  }

  .ec-search-suggestion > i {
    grid-column: 2 / -1;
    justify-self: end;
  }

  .ec-search-suggestions-actions {
    display: grid;
  }

  .ec-search-suggestions-more,
  .ec-search-suggestions-secondary {
    width: 100%;
  }

  .ec-live-alerts {
    right: 14px;
    left: 14px;
    bottom: 82px;
  }

  .ec-live-alert {
    min-width: 0;
  }
}

.ec-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.ec-live-alerts {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 70;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.ec-live-alert {
  min-width: min(92vw, 320px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(104, 73, 62, 0.14);
  background: rgba(255, 251, 247, 0.96);
  box-shadow: 0 18px 38px rgba(42, 27, 14, 0.16);
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.ec-live-alert.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ec-live-alert-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 16px;
}

.ec-live-alert.is-success .ec-live-alert-icon {
  color: #1f6d4c;
  background: rgba(30, 118, 80, 0.12);
}

.ec-live-alert.is-error .ec-live-alert-icon {
  color: #8d3d3d;
  background: rgba(183, 77, 77, 0.14);
}

.ec-live-alert.is-info .ec-live-alert-icon {
  color: #7a5a12;
  background: rgba(200, 149, 63, 0.16);
}

.ec-live-alert-copy {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--ec-ink);
}

body.is-fetch-loading [data-ec-shell="header"],
body.is-fetch-loading [data-ec-shell="main"] {
  opacity: 1;
  transition: none;
}

body.is-fetch-loading [data-ec-shell="main"] {
  pointer-events: auto;
}

form.is-submitting {
  opacity: 1;
}

form.is-submitting button,
form.is-submitting .btn,
form.is-submitting .ec-store-icon-button,
form.is-submitting .ec-book-mini-cart,
form.is-submitting .ec-book-favorite {
  pointer-events: none;
}

.ec-action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--ec-ink);
  font-weight: 700;
  border: 1px solid transparent;
}

.ec-action-link:hover {
  border-color: var(--ec-border);
  background: rgba(75, 16, 13, 0.05);
}

.ec-cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--ec-border);
  background: rgba(75, 16, 13, 0.05);
}

.ec-cart-pill-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #4b100d, #650d05);
}

.ec-cart-pill-text {
  display: grid;
  line-height: 1.1;
}

.ec-cart-pill-text small {
  color: var(--ec-muted);
  font-size: 12px;
  font-weight: 700;
}

.ec-cart-pill-text strong {
  font-size: 15px;
}

.ec-main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--ec-border);
  background: rgba(254, 251, 252, 0.82);
  box-shadow: 0 10px 24px rgba(52, 23, 18, 0.06);
  overflow-x: auto;
}

.ec-main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ec-muted);
  font-weight: 700;
  white-space: nowrap;
}

.ec-main-nav a:hover,
.ec-main-nav a.active {
  color: #fff;
  background: linear-gradient(135deg, #4b100d, #650d05);
}

.ec-home-shell {
  margin-top: 10px;
}

.ec-home-mobile-actions {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 14px;
}

.ec-home-drawer-button {
  min-height: 48px;
  box-shadow: 0 10px 24px rgba(52, 23, 18, 0.08);
}

.ec-home-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) 320px;
  gap: 18px;
}

.ec-home-sidebar,
.ec-home-hero,
.ec-home-rail,
.ec-rail-card,
.ec-benefit-card,
.ec-quick-card,
.ec-promo-card,
.ec-testimonial-card,
.ec-publisher-card,
.ec-pwa-banner {
  border: 1px solid var(--ec-border);
  border-radius: var(--ec-radius-xl);
  background: rgba(254, 251, 252, 0.92);
  box-shadow: var(--ec-shadow);
}

.ec-home-sidebar {
  padding: 18px;
}

.ec-sidebar-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.ec-sidebar-title {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.ec-sidebar-all {
  color: var(--ec-gold);
  font-weight: 800;
  font-size: 14px;
}

.ec-sidebar-list {
  display: grid;
  gap: 10px;
  max-height: 760px;
  overflow: auto;
  padding-right: 4px;
}

.ec-sidebar-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(92, 58, 53, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 243, 0.86));
}

.ec-sidebar-item:hover {
  border-color: rgba(75, 16, 13, 0.22);
  transform: translateY(-1px);
}

.ec-sidebar-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #4b100d, #650d05);
}

.ec-sidebar-copy strong {
  display: block;
  font-size: 15px;
}

.ec-sidebar-copy small {
  color: var(--ec-muted);
}

.ec-sidebar-arrow {
  color: var(--ec-gold);
}

.ec-home-hero {
  padding: 24px;
  color: #fff;
  border: 0;
  background:
    radial-gradient(circle at top right, rgba(200, 149, 63, 0.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 248, 243, 0.08), transparent 28%),
    linear-gradient(135deg, #4b100d 0%, #250403 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.ec-home-hero-copy {
  padding: 12px;
}

.ec-home-h1 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(38px, 4vw, 75px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.ec-home-h1-secondary {
  margin-top: 8px;
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 2.5vw, 45px);
  font-style: italic;
  color: rgba(255, 248, 243, 0.88);
  line-height: 1.05;
  max-width: 13ch;
}

.ec-home-lead {
  max-width: 60ch;
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255, 248, 243, 0.84);
}

.ec-btn-primary {
  color: #250403 !important;
  background: linear-gradient(135deg, #fff8f3, #f7dfb2) !important;
  border: 0 !important;
}

.ec-home-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ec-home-stat {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 248, 243, 0.08);
  border: 1px solid rgba(255, 248, 243, 0.12);
}

.ec-home-stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: 25px;
  font-family: 'Fraunces', serif;
}

.ec-home-stat span {
  font-size: 13px;
  color: rgba(255, 248, 243, 0.78);
}

.ec-home-hero-art {
  display: grid;
  gap: 14px;
  align-content: start;
}

.ec-home-book-card {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 243, 0.18);
  background: rgba(255, 248, 243, 0.08);
}

.ec-home-banner-visual {
  height: 170px;
  overflow: hidden;
  background: rgba(255, 248, 243, 0.06);
}

.ec-home-banner-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ec-home-book-cover {
  aspect-ratio: 4 / 3;
  background: rgba(255, 248, 243, 0.06);
}

.ec-home-book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ec-home-book-body {
  padding: 18px;
}

.ec-home-book-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.ec-home-hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 248, 243, 0.12);
  border: 1px solid rgba(255, 248, 243, 0.12);
}

.ec-home-note-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #250403;
  background: linear-gradient(135deg, #fff8f3, #c8953f);
}

.ec-home-rail {
    padding: 18px;
    display: block;
    gap: 14px;
    height: auto;
    position: relative;
}

.ec-rail-card {
  padding: 18px;
}

.ec-rail-card-highlight {
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, #4b100d, #250403);
}

.ec-rail-card-dark {
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, #650d05, #250403);
}

.ec-rail-title {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.ec-countdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 12px 0;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 248, 243, 0.1);
}

.ec-rail-offer {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.ec-rail-offer img {
  width: 88px;
  height: 122px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 248, 243, 0.2);
}

.ec-rail-feature {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 0;
}

.ec-rail-feature i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #4b100d, #650d05);
}

.ec-rail-feature strong {
  display: block;
  margin-bottom: 4px;
}

.ec-rail-feature p {
  margin: 0;
  color: inherit;
  opacity: 0.82;
}

.ec-benefit-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.ec-benefit-card {
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.ec-benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #4b100d, #650d05);
}

.ec-benefit-card strong {
  display: block;
  margin-bottom: 4px;
}

.ec-benefit-card p {
  color: var(--ec-muted);
  line-height: 1.5;
}

.ec-benefit-payments {
  min-width: 0;
}

.ec-payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.ec-payment-methods span {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--ec-border);
  background: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
}

.ec-quick-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
}

.ec-collection-grid,
.ec-author-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ec-quick-card {
  padding: 16px 14px;
  text-align: center;
}

.ec-quick-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #4b100d, #650d05);
}

.ec-quick-card strong,
.ec-quick-card small {
  display: block;
}

.ec-quick-card small {
  margin-top: 4px;
  color: var(--ec-muted);
}

.ec-collection-card,
.ec-author-card {
  min-height: 88px;
}

.ec-collection-card {
  justify-content: space-between;
  text-align: left;
}

.ec-collection-card strong,
.ec-author-card strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  margin-bottom: 4px;
}

.ec-collection-card span,
.ec-author-card span {
  display: block;
  color: var(--ec-muted);
  font-size: 13px;
}

.ec-author-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
}

.ec-author-avatar {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #4b100d, #650d05);
  font-size: 22px;
}

.ec-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ec-promo-card {
  padding: 18px;
  display: grid;
  gap: 16px;
  overflow: hidden;
}

.ec-promo-card-dark {
  color: #fff;
  background: linear-gradient(135deg, #4b100d 0%, #250403 100%);
  border-color: rgba(255, 248, 243, 0.12);
}

.ec-promo-card-ink {
  color: #fff;
  background: linear-gradient(135deg, #250403 0%, #1f1412 100%);
  border-color: rgba(255, 248, 243, 0.08);
}

.ec-promo-card-surface {
  color: var(--ec-ink);
  background: linear-gradient(135deg, #fefbfc, #fff8f3);
}

.ec-promo-copy h3 {
  margin: 0 0 8px;
  font-family: 'Fraunces', serif;
  font-size: 24px;
}

.ec-promo-card-dark .ec-promo-copy p,
.ec-promo-card-ink .ec-promo-copy p {
  color: rgba(255, 248, 243, 0.82);
}

.ec-promo-card-surface .ec-promo-copy p {
  color: var(--ec-muted);
}

.ec-promo-copy p {
  line-height: 1.7;
  margin-bottom: 18px;
}

.ec-promo-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #c8953f, #a06b2a);
}

.ec-promo-card-surface .ec-promo-icon {
  background: linear-gradient(135deg, #4b100d, #650d05);
}

.ec-promo-card .btn {
  justify-self: start;
}

.ec-carousel-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(100%, 100%);
  gap: 14px;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
}

.ec-carousel-item {
  scroll-snap-align: start;
  min-width: 0;
}

.ec-carousel-slide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  align-items: stretch;
}

.ec-carousel-slide-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ec-carousel-slide-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media (max-width: 1199.98px) {
  .ec-carousel-slide-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ec-carousel-slide-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .ec-carousel-slide-5,
  .ec-carousel-slide-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (max-width: 575.98px) {
  .ec-carousel-slide-5,
  .ec-carousel-slide-3 {
    grid-template-columns: 1fr;
  }
}

.ec-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ec-testimonial-card {
  padding: 22px;
}

.ec-stars {
  color: var(--ec-gold);
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.ec-testimonial-card p {
  line-height: 1.8;
  color: var(--ec-muted);
}

.ec-testimonial-meta {
  display: grid;
  gap: 4px;
  margin-top: 18px;
}

.ec-testimonial-meta span {
  color: var(--ec-muted);
  font-size: 13px;
}

.ec-publisher-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ec-publisher-card {
  display: grid;
  gap: 6px;
  text-align: center;
  padding: 18px;
}

.ec-publisher-card strong {
  font-family: 'Fraunces', serif;
  font-size: 19px;
}

.ec-publisher-card span {
  color: var(--ec-muted);
}

.ec-pwa-banner {
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(135deg, rgba(75, 16, 13, 0.08), rgba(200, 149, 63, 0.12));
}

.ec-pwa-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ec-pwa-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--ec-border);
  background: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
}

body.ec-site button.ec-header-action,
body.ec-site button.ec-nav-link {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  cursor: pointer;
}

body.ec-site button.ec-nav-link {
  border: 0;
  background: transparent;
  text-align: left;
}

body.ec-site .ec-pwa-install-trigger i {
  color: var(--ec-gold);
}

body.ec-site .ec-pwa-install-trigger.is-ready i {
  color: var(--ec-wine);
}

body.ec-site .ec-install-modal .modal-content {
  border: 1px solid rgba(75, 16, 13, 0.12);
  border-radius: 28px;
  background: #fffdf9;
  box-shadow: 0 28px 70px rgba(48, 18, 14, 0.2);
}

body.ec-site .ec-install-modal .modal-header,
body.ec-site .ec-install-modal .modal-footer {
  border-color: rgba(75, 16, 13, 0.12);
}

body.ec-site .ec-install-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--ec-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.ec-site .ec-install-intro {
  color: var(--ec-ink);
  line-height: 1.7;
}

body.ec-site .ec-install-guides {
  display: grid;
  gap: 12px;
}

body.ec-site .ec-install-guide {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(75, 16, 13, 0.1);
  background: rgba(255, 248, 243, 0.88);
}

body.ec-site .ec-install-guide strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ec-ink);
  font-size: 15px;
}

body.ec-site .ec-install-guide p {
  margin: 0;
  color: var(--ec-muted);
  line-height: 1.65;
}

.ec-footer {
  padding: 24px 0 34px;
  color: rgba(255, 248, 243, 0.86);
}

.ec-footer-panel {
  padding: 24px;
  border-radius: 32px;
  background: linear-gradient(135deg, #4b100d 0%, #250403 100%);
  box-shadow: 0 24px 60px rgba(48, 18, 14, 0.18);
}

.ec-footer .row {
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
}

.ec-footer h6 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
}

.ec-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.ec-footer a {
  color: rgba(255, 248, 243, 0.86);
}

.ec-footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ec-footer-brand p,
.ec-footer-copy {
  margin: 8px 0 0;
  line-height: 1.8;
  color: rgba(255, 248, 243, 0.78);
}

.ec-footer-socials {
  display: flex;
  gap: 10px;
}

.ec-footer-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 248, 243, 0.18);
  background: rgba(255, 248, 243, 0.08);
}

.ec-newsletter {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.ec-newsletter-input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 248, 243, 0.16);
  background: rgba(255, 248, 243, 0.08);
  color: #fff;
}

.ec-newsletter-input::placeholder {
  color: rgba(255, 248, 243, 0.66);
}

.ec-newsletter-button {
  padding: 12px 18px;
  border: 0;
  border-radius: 16px;
  color: #250403;
  font-weight: 800;
  background: linear-gradient(135deg, #fff8f3, #f7dfb2);
}

.ec-footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ec-footer-payments span {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 243, 0.16);
  background: rgba(255, 248, 243, 0.08);
  font-size: 13px;
}

.ec-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 248, 243, 0.16);
}

.ec-footer-legal {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ec-footer-legal a {
  color: rgba(255, 248, 243, 0.78);
}

.ec-whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.28);
  z-index: 40;
}

.ec-whatsapp-fab i {
  font-size: 26px;
}

.ec-category-drawer {
  width: min(92vw, 430px);
  background: linear-gradient(180deg, #fffdfb 0%, #fff8f3 100%);
}

.ec-category-drawer-header {
  padding: 20px 18px 12px;
  border-bottom: 1px solid var(--ec-border);
}

.ec-category-drawer-body {
  padding: 16px 18px 22px;
}

.ec-category-drawer-list {
  max-height: none;
  padding-right: 0;
}

.ec-summary-card,
.ec-copy-card,
.ec-card,
.ec-filter-shell {
  position: relative;
  height: auto !important;
}

@media (max-width: 1199.98px) {
  .ec-stat-grid,
  .ec-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ec-home-grid {
    grid-template-columns: 1fr;
  }

  .ec-home-sidebar {
    order: 2;
  }

  .ec-home-hero {
    order: 1;
  }

  .ec-home-rail {
    order: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ec-collection-grid,
  .ec-author-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ec-promo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .ec-trustbar-inner,
  .ec-main-header,
  .ec-pwa-banner,
  .ec-footer-bottom {
    flex-direction: column;
    align-items: start;
  }

  .ec-main-header {
    grid-template-columns: 1fr;
  }

  .ec-search-shell {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .ec-search-select {
    width: 100%;
  }

  .ec-header-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .ec-main-nav {
    display: none;
    width: 100%;
    flex-wrap: wrap;
    border-radius: 22px;
  }

  .ec-main-nav.is-open {
    display: flex;
  }

  .ec-mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .ec-home-grid,
  .ec-home-hero,
  .ec-promo-card {
    grid-template-columns: 1fr;
  }

  .ec-home-stats,
  .ec-benefit-strip,
  .ec-quick-grid,
  .ec-collection-grid,
  .ec-author-grid,
  .ec-testimonial-grid,
  .ec-publisher-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ec-home-rail {
    grid-template-columns: 1fr;
  }

  .ec-sidebar-list {
    max-height: none;
  }
}

@media (max-width: 767.98px) {
  .ec-main {
    padding-top: 18px;
  }

  .ec-section {
    margin-bottom: 34px;
  }

  .ec-trustbar-inner,
  .ec-main-header,
  .ec-home-sidebar,
  .ec-home-hero,
  .ec-home-rail,
  .ec-pwa-banner,
  .ec-footer-panel {
    padding: 16px;
    border-radius: 22px;
  }

  .ec-home-stats,
  .ec-benefit-strip,
  .ec-quick-grid,
  .ec-testimonial-grid,
  .ec-publisher-grid {
    grid-template-columns: 1fr;
  }

  .ec-section-head {
    flex-direction: column;
    align-items: start;
  }

  .ec-spotlight-body,
  .ec-card,
  .ec-summary-card,
  .ec-copy-card,
  .ec-filter-shell,
  .ec-rail-card,
  .ec-promo-card,
  .ec-testimonial-card,
  .ec-publisher-card {
    padding: 18px;
  }

  .ec-book-price-row,
  .ec-summary-row,
  .ec-summary-total,
  .ec-attribute-row,
  .ec-stack-item {
    flex-direction: column;
    align-items: start;
  }

  .ec-book-stock,
  .ec-summary-product,
  .ec-book-price {
    width: 100%;
  }

  .ec-book-cover img,
  .ec-gallery-main img {
    aspect-ratio: 4 / 6;
  }

  .ec-tenant-banner {
    padding: 18px;
  }

  .ec-tenant-banner-visual,
  .ec-tenant-banner-visual img,
  .ec-tenant-banner-fallback {
    min-height: 240px;
  }

  .ec-gallery-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ec-home-hero-copy,
  .ec-home-hero-art,
  .ec-home-rail {
    padding: 0;
  }

  .ec-home-sidebar {
    display: none;
  }

  .ec-home-mobile-actions {
    display: flex;
  }

  .ec-home-hero {
    gap: 16px;
  }

  .ec-home-banner-visual {
    height: 220px;
  }

  .ec-promo-card {
    gap: 12px;
  }

  .ec-promo-card .ec-promo-book .ec-book-card {
    height: auto;
  }

  .ec-pwa-actions,
  .ec-footer-socials,
  .ec-footer-legal,
  .ec-trustbar-chips {
    justify-content: flex-start;
  }

  .ec-whatsapp-fab {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 991.98px) {
  .ec-benefit-strip,
  .ec-promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .ec-collection-grid,
  .ec-author-grid {
    grid-template-columns: 1fr;
  }
}

body.ec-site {
  --ec-ink: #2b1a16;
  --ec-muted: #6b5a52;
  --ec-paper: #ffffff;
  --ec-surface: #faf8f6;
  --ec-card: #f7f4f1;
  --ec-sand: #f5eee9;
  --ec-gold: #b58d55;
  --ec-gold-soft: #e1bc7e;
  --ec-wine: #300406;
  --ec-wine-deep: #250907;
  --ec-wine-soft: #401a15;
  --ec-border: #e8ddd4;
  --ec-shadow-soft: 0 8px 24px rgba(48, 4, 6, 0.1);
  --ec-shadow-card: 0 4px 14px rgba(48, 4, 6, 0.08);
  margin: 0;
  color: var(--ec-ink);
  background: var(--ec-surface);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

body.ec-site .ec-bg-orb {
  display: none;
}

body.ec-site .container-xxl {
  max-width: 1180px;
}

body.ec-site .ec-main {
  padding: 24px 0 68px;
}

body.ec-site.ec-route-home .ec-main {
  padding-top: 0;
}

body.ec-site .btn-dark,
body.ec-site .btn-dark:hover,
body.ec-site .btn-dark:focus {
  background: var(--ec-wine);
  border-color: var(--ec-wine);
}

body.ec-site .btn-outline-dark,
body.ec-site .btn-outline-dark:hover,
body.ec-site .btn-outline-dark:focus {
  color: var(--ec-wine);
  border-color: rgba(177, 144, 98, 0.44);
}

body.ec-site .ec-card,
body.ec-site .ec-summary-card,
body.ec-site .ec-copy-card,
body.ec-site .ec-filter-shell,
body.ec-site .ec-alert {
  border-radius: 10px;
  border: 1px solid var(--ec-border);
  background: var(--ec-paper);
  box-shadow: var(--ec-shadow-card);
}

body.ec-site .ec-site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0;
  backdrop-filter: blur(14px);
  background: rgba(250, 248, 246, 0.94);
  border-bottom: 1px solid rgba(232, 221, 212, 0.88);
}

body.ec-site .ec-site-header.is-scrolled {
  box-shadow: 0 10px 24px rgba(48, 4, 6, 0.08);
}

body.ec-site .ec-topbar-strip {
  background: var(--ec-wine);
  color: #fff8f0;
}

body.ec-site .ec-topbar-inner {
  min-height: 28px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  line-height: 1;
  padding: 6px 0;
}

body.ec-site .ec-topbar-messages,
body.ec-site .ec-topbar-links {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

body.ec-site .ec-topbar-messages {
  justify-content: center;
  flex-wrap: nowrap;
  overflow: hidden;
}

body.ec-site .ec-topbar-ticker {
  gap: 0;
}

body.ec-site .ec-topbar-track {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: max-content;
  will-change: transform;
  animation: ec-topbar-marquee 18s linear infinite;
}

body.ec-site .ec-topbar-track:hover {
  animation-play-state: paused;
}

body.ec-site .ec-topbar-track span {
  position: relative;
  white-space: nowrap;
}

body.ec-site .ec-topbar-track span + span::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 248, 240, 0.72);
  transform: translateY(-50%);
}

body.ec-site .ec-topbar-links {
  justify-content: flex-end;
}

body.ec-site .ec-topbar-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 248, 240, 0.92);
}

@keyframes ec-topbar-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.ec-site .ec-topbar-track {
    animation: none;
  }
}

body.ec-site .ec-header-strip {
  background: rgba(255, 255, 255, 0.94);
}

body.ec-site .ec-main-header {
  display: grid;
  grid-template-columns: minmax(220px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 84px;
  padding: 14px 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

body.ec-site .ec-brand-link {
  gap: 14px;
}

body.ec-site .ec-brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  box-shadow: none;
}

body.ec-site .ec-brand-mark-premium {
    background: #ff000000;
}

body.ec-site .ec-brand-copy strong {
  color: var(--ec-wine);
  font-size: 17px;
  letter-spacing: 0.08em;
}

body.ec-site .ec-brand-copy small {
  margin-top: 3px;
  color: var(--ec-muted);
  font-size: 12px;
}

body.ec-site .ec-search-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 12px;
  min-height: 36px;
  padding: 0 0 0 14px;
  border-radius: 10px;
  border: 1px solid #ded9d4;
  background: var(--ec-paper);
  box-shadow: none;
}

body.ec-site .ec-search-shell input {
  min-width: 0;
  font-size: 13px;
  color: var(--ec-ink);
}

body.ec-site .ec-search-shell input::placeholder {
  color: #8a7e78;
}

body.ec-site .ec-search-shell.is-focused {
  border-color: rgba(177, 144, 98, 0.85);
  box-shadow: 0 0 0 3px rgba(177, 144, 98, 0.12);
}

body.ec-site .ec-search-shell.has-error {
  border-color: rgba(164, 48, 48, 0.58);
}

body.ec-site .ec-search-divider {
  width: 1px;
  align-self: stretch;
  background: #e3ddd8;
}

body.ec-site .ec-search-select {
  padding: 0 6px;
  border-radius: 0;
  background: transparent;
  color: var(--ec-muted);
  font-size: 12px;
  font-weight: 600;
}

body.ec-site .ec-search-submit {
  width: 48px;
  height: 36px;
  border-radius: 0 9px 9px 0;
  background: #3b0a06;
}

body.ec-site .ec-header-actions {
  gap: 12px;
}

body.ec-site .ec-header-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--ec-ink);
  background: transparent;
}

body.ec-site .ec-header-action.is-pulsing {
  animation: ecHeaderPulse 0.42s ease;
}

body.ec-site .ec-header-action i {
  font-size: 16px;
  color: var(--ec-wine-soft);
}

body.ec-site .ec-cart-link-icon {
  position: relative;
  display: inline-flex;
}

@keyframes ecHeaderPulse {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.03);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

body.ec-site .ec-header-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff8f0;
  background: var(--ec-wine);
}

body.ec-site .ec-nav-strip {
  background: #f5eee9;
  border-top: 1px solid rgba(232, 221, 212, 0.8);
}

body.ec-site .ec-nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 38px;
}

body.ec-site .ec-mobile-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  font-size: 19px;
  color: var(--ec-wine);
}

body.ec-site .ec-nav-secondary {
  display: none;
}

body.ec-site .ec-main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

body.ec-site .ec-nav-primary {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

body.ec-site .ec-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: var(--ec-ink);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 0;
  background: transparent;
}

body.ec-site .ec-nav-link:hover,
body.ec-site .ec-nav-link.active {
  color: var(--ec-wine);
  background: transparent;
}

body.ec-site .ec-nav-link.is-primary {
  padding-left: 0;
}

body.ec-site .ec-nav-link.is-primary::after {
  content: '';
  width: 1px;
  height: 14px;
  margin-left: 14px;
  background: rgba(107, 90, 82, 0.28);
}

body.ec-site .ec-nav-link-club {
  color: var(--ec-gold);
  font-weight: 700;
  margin-left: auto;
}

body.ec-site .ec-section-head {
  align-items: center;
}

body.ec-site .ec-section-title,
body.ec-site .ec-home-section-title,
body.ec-site .ec-home-section-head h2 {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ec-ink);
}

body.ec-site .ec-kicker {
  color: var(--ec-gold);
  letter-spacing: 0.14em;
}

body.ec-site .ec-carousel-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

body.ec-site .ec-carousel-button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ded9d4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ec-ink);
  background: var(--ec-paper);
  box-shadow: var(--ec-shadow-card);
}

body.ec-site .ec-home-page {
  margin-top: 0;
}

body.ec-site .ec-home-fullbleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

body.ec-site .ec-home-hero-bleed {
  background:
    radial-gradient(circle at 72% 28%, rgba(177, 144, 98, 0.16), transparent 24%),
    linear-gradient(90deg, var(--ec-wine-deep) 0%, #2d0c0b 46%, #401a15 100%);
  margin-bottom: 72px;
}

body.ec-site .ec-home-hero-frame {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 16px 0;
}

body.ec-site .ec-home-hero-panel {
  min-height: 258px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: 32px;
  align-items: center;
}

body.ec-site .ec-home-hero-copy {
  position: relative;
  z-index: 2;
  color: #fff8f0;
  padding: 12px 0 44px;
}

body.ec-site .ec-home-eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 248, 240, 0.78);
}

body.ec-site .ec-home-hero-title {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(35px, 3vw, 45px);
  line-height: 0.98;
  color: #fff8f0;
}

body.ec-site .ec-home-hero-subtitle {
  margin: 8px 0 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(27px, 2.1vw, 35px);
  line-height: 1.02;
  font-style: italic;
  color: var(--ec-gold-soft);
}

body.ec-site .ec-home-hero-description {
  max-width: 380px;
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 248, 240, 0.88);
}

body.ec-site .ec-home-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 9px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #fff8f0;
  background: linear-gradient(180deg, #c8a165 0%, #b58d55 100%);
}

body.ec-site .ec-home-hero-visual {
  position: relative;
  min-height: 258px;
}

body.ec-site .ec-home-hero-backdrop {
  position: absolute;
  inset: 0 0 18px auto;
  width: min(100%, 470px);
  border-radius: 12px 12px 0 0;
  background:
    linear-gradient(90deg, rgba(37, 9, 7, 0.46) 0%, rgba(37, 9, 7, 0.18) 34%, rgba(37, 9, 7, 0.04) 100%),
    linear-gradient(180deg, #5e3c34 0%, #2a110f 100%);
  background-size: cover;
  background-position: center right;
  opacity: 0.96;
}

body.ec-site .ec-home-hero-watermark {
  position: absolute;
  left: 30px;
  top: 20px;
  width: 150px;
  opacity: 0.09;
  filter: grayscale(1) brightness(2.1);
}

body.ec-site .ec-home-hero-watermark img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

body.ec-site .ec-home-spotlight-card {
  position: absolute;
  right: 16px;
  bottom: -8px;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
  width: min(360px, calc(100% - 20px));
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(232, 221, 212, 0.18);
  background: rgba(255, 248, 240, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 34px rgba(17, 4, 4, 0.28);
}

body.ec-site .ec-home-spotlight-cover {
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 248, 240, 0.08);
}

body.ec-site .ec-home-spotlight-cover img {
  width: 100%;
  height: 100%;
  min-height: 148px;
  object-fit: cover;
}

body.ec-site .ec-home-spotlight-body {
  color: #fff8f0;
}

body.ec-site .ec-home-spotlight-tag {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ec-gold-soft);
  background: rgba(255, 248, 240, 0.08);
}

body.ec-site .ec-home-spotlight-body h2 {
  margin: 9px 0 6px;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  line-height: 1.2;
}

body.ec-site .ec-home-spotlight-body p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 248, 240, 0.78);
}

body.ec-site .ec-home-spotlight-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
}

body.ec-site .ec-home-spotlight-price strong {
  font-size: 16px;
}

body.ec-site .ec-home-spotlight-price span {
  font-size: 12px;
  color: var(--ec-gold-soft);
}

body.ec-site .ec-home-benefits-bar {
    position: relative;
    top: 0px;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(220px, 1.1fr);
    gap: 1px;
    align-items: center;
    margin-top: -27px;
    padding: 16px 22px;
    border: 1px solid var(--ec-border);
    border-radius: 8px;
    background: var(--ec-paper);
    box-shadow: var(--ec-shadow-soft);
}

body.ec-site .ec-home-benefit,
body.ec-site .ec-home-payments {
  display: flex;
  align-items: center;
  gap: 12px;
}

body.ec-site .ec-home-benefit strong,
body.ec-site .ec-home-payments-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ec-ink);
}

body.ec-site .ec-home-benefit small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: #7a6d66;
}

body.ec-site .ec-home-benefit-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ec-gold);
  background: rgba(177, 144, 98, 0.12);
}

body.ec-site .ec-home-payments {
  justify-content: flex-end;
}

body.ec-site .ec-home-payments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

body.ec-site .ec-home-payments-list span {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--ec-card);
  border: 1px solid var(--ec-border);
  font-size: 11px;
  font-weight: 600;
  color: var(--ec-muted);
}

body.ec-site .ec-home-section {
  margin-bottom: 32px;
  content-visibility: auto;
  contain-intrinsic-size: 960px;
}

body.ec-site .ec-lazy-section {
  content-visibility: auto;
  contain-intrinsic-size: 860px;
}

body.ec-site .ec-home-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

body.ec-site .ec-home-section-head h2 {
  margin: 0;
}

body.ec-site .ec-home-section-head span {
  color: var(--ec-gold);
}

body.ec-site .ec-home-categories-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 228px;
  gap: 16px;
}

body.ec-site .ec-home-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

body.ec-site .ec-home-category-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 72px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--ec-border);
  background: var(--ec-sand);
}

body.ec-site .ec-home-category-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--ec-wine);
  background: rgba(255, 255, 255, 0.7);
}

body.ec-site .ec-home-category-copy strong,
body.ec-site .ec-home-category-copy small {
  display: block;
}

body.ec-site .ec-home-category-copy strong {
  font-size: 13px;
  font-weight: 700;
}

body.ec-site .ec-home-category-copy small {
  margin-top: 3px;
  font-size: 11px;
  color: var(--ec-muted);
}

body.ec-site .ec-home-club-card {
  min-height: 156px;
  padding: 16px;
  border-radius: 8px;
  color: #fff8f0;
  background: linear-gradient(135deg, #300406 0%, #5a130d 100%);
  box-shadow: var(--ec-shadow-card);
}

body.ec-site .ec-home-club-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ec-gold-soft);
  background: rgba(255, 248, 240, 0.08);
}

body.ec-site .ec-home-club-card h3 {
  margin: 12px 0 8px;
  font-family: 'Fraunces', serif;
  font-size: 16px;
}

body.ec-site .ec-home-club-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 248, 240, 0.82);
}

body.ec-site .ec-home-club-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--ec-gold-soft);
  font-size: 12px;
  font-weight: 700;
}

body.ec-site .ec-home-carousel {
  grid-auto-columns: minmax(138px, 1fr);
  gap: 12px;
  padding-bottom: 2px;
}

body.ec-site .ec-book-card {
  border-radius: 10px;
  border: 1px solid var(--ec-border);
  background: var(--ec-paper);
  box-shadow: var(--ec-shadow-card);
}

body.ec-site .ec-book-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(48, 4, 6, 0.12);
}

body.ec-site .ec-book-card-compact {
  overflow: hidden;
}

body.ec-site .ec-book-card-compact .ec-book-cover {
  aspect-ratio: 4 / 5.4;
  background: #efe8e2;
}

body.ec-site .ec-book-card-compact .ec-book-body {
  padding: 10px 10px 12px;
}

body.ec-site .ec-book-card-compact .ec-book-title {
  margin: 6px 0 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0;
}

body.ec-site .ec-book-card-compact .ec-book-title a {
  color: var(--ec-ink);
}

body.ec-site .ec-book-card-compact .ec-book-price-row {
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 8px;
}

body.ec-site .ec-book-card-compact .ec-book-price strong {
  display: block;
  font-size: 13px;
  line-height: 1.1;
}

body.ec-site .ec-book-card-compact .ec-price-old {
  display: block;
  margin-top: 2px;
  font-size: 11px;
}

body.ec-site .ec-book-byline {
  font-size: 10px;
  font-weight: 700;
  color: var(--ec-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body.ec-site .ec-book-discount {
  font-size: 10px;
  font-weight: 700;
  color: var(--ec-wine);
}

body.ec-site .ec-book-favorite {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(232, 221, 212, 0.88);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ec-wine);
  background: rgba(255, 255, 255, 0.9);
}

body.ec-site .ec-book-ribbon {
  top: 8px;
  left: 8px;
  padding: 5px 8px;
  font-size: 10px;
}

body.ec-site .ec-home-promos {
  display: grid;
  grid-template-columns: 1.06fr 0.96fr 1.22fr;
  gap: 16px;
}

body.ec-site .ec-home-promo-card {
  position: relative;
  min-height: 89px;
  padding: 16px 18px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--ec-shadow-card);
}

body.ec-site .ec-home-promo-card.is-wine {
  color: #fff8f0;
  background: linear-gradient(135deg, #300406 0%, #4b120f 100%);
}

body.ec-site .ec-home-promo-card.is-ink {
  color: #fff8f0;
  background: linear-gradient(135deg, #1f1e1d 0%, #101010 100%);
}

body.ec-site .ec-home-promo-card.is-cream {
  color: var(--ec-ink);
  background: linear-gradient(135deg, #f7f4f1 0%, #f2ece6 100%);
  border: 1px solid var(--ec-border);
}

body.ec-site .ec-home-promo-copy h3 {
  margin: 0 0 4px;
  font-family: 'Fraunces', serif;
  font-size: 17px;
}

body.ec-site .ec-home-promo-copy p {
  margin: 0;
  max-width: 240px;
  font-size: 12px;
  line-height: 1.5;
  color: inherit;
  opacity: 0.88;
}

body.ec-site .ec-home-promo-copy a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: inherit;
}

body.ec-site .ec-home-promo-icon {
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  color: var(--ec-gold-soft);
  opacity: 0.9;
}

body.ec-site .ec-home-promo-card.is-cream .ec-home-promo-icon {
  color: var(--ec-wine);
}

body.ec-site .ec-home-social-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  gap: 16px;
}

body.ec-site .ec-home-proof-panel,
body.ec-site .ec-home-publishers-panel {
  padding: 18px;
  border-radius: 10px;
  border: 1px solid var(--ec-border);
  background: var(--ec-paper);
  box-shadow: var(--ec-shadow-card);
}

body.ec-site .ec-home-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body.ec-site .ec-home-testimonial-card {
  min-height: 152px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--ec-border);
  background: var(--ec-paper);
}

body.ec-site .ec-home-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
  color: #c8a165;
}

body.ec-site .ec-home-testimonial-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  color: var(--ec-muted);
}

body.ec-site .ec-home-testimonial-card strong {
  display: block;
  margin-top: 14px;
  font-size: 12px;
}

body.ec-site .ec-home-publishers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.ec-site .ec-home-publisher-card {
  min-height: 84px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--ec-border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--ec-paper);
}

body.ec-site .ec-home-publisher-card span {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  color: #2f2925;
}

body.ec-site .ec-footer {
  padding: 0;
  color: #fff8f0;
  background: var(--ec-wine);
}

body.ec-site .ec-footer-main {
  padding: 34px 0 20px;
}

body.ec-site .ec-footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.82fr 0.82fr 0.82fr 1.1fr;
  gap: 22px;
}

body.ec-site .ec-footer-panel,
body.ec-site .ec-footer .row {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.ec-site .ec-footer-column h6 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: #fff8f0;
}

body.ec-site .ec-footer-column ul {
  display: grid;
  gap: 9px;
}

body.ec-site .ec-footer-column a,
body.ec-site .ec-footer-column li {
  font-size: 12px;
  color: rgba(255, 248, 240, 0.82);
}

body.ec-site .ec-footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

body.ec-site .ec-footer-brand p {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 248, 240, 0.76);
}

body.ec-site .ec-footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

body.ec-site .ec-footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(177, 144, 98, 0.68);
  background: rgba(255, 248, 240, 0.04);
}

body.ec-site .ec-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 8px;
}

body.ec-site .ec-newsletter-input {
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid rgba(177, 144, 98, 0.54);
  background: rgba(255, 248, 240, 0.04);
  color: #fff8f0;
}

body.ec-site .ec-newsletter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 8px;
  border: 0;
  color: var(--ec-wine);
  background: linear-gradient(180deg, #c8a165 0%, #b58d55 100%);
}

body.ec-site .ec-footer-contact {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 248, 240, 0.8);
}

body.ec-site .ec-footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 248, 240, 0.14);
  font-size: 11px;
  color: rgba(255, 248, 240, 0.76);
}

body.ec-site .ec-footer-legal,
body.ec-site .ec-footer-payments {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

body.ec-site .ec-footer-legal {
  justify-content: center;
}

body.ec-site .ec-footer-payments {
  justify-content: flex-end;
}

body.ec-site .ec-footer-payments span {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 11px;
  color: rgba(255, 248, 240, 0.78);
}

body.ec-site .ec-whatsapp-fab {
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.26);
}

body.ec-site .ec-whatsapp-fab i {
  font-size: 21px;
}

@media (max-width: 1199.98px) {
  body.ec-site .ec-main-header {
    grid-template-columns: 220px minmax(0, 1fr) auto;
    gap: 16px;
  }

  body.ec-site .ec-header-strip {
    background: rgba(255, 255, 255, 0.94);
    height: 50px;
}
  body.ec-site .ec-home-hero-panel {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  }

  body.ec-site .ec-home-categories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.ec-site .ec-home-testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ec-site .ec-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.ec-site .ec-footer-brand-column,
  body.ec-site .ec-footer-newsletter-column {
    grid-column: span 3;
  }
}

@media (max-width: 991.98px) {
  body.ec-site .ec-topbar-strip {
    display: none;
  }

    body.ec-site .ec-main-header {
        grid-template-columns: revert-rule;
        grid-template-areas:         'toggle brand'        'search search';
        gap: 12px 14px;
        padding: 12px 0 14px;
        position: relative;
        top: -8px;
    }

  body.ec-site .ec-mobile-toggle-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-area: toggle;
  }

  body.ec-site .ec-brand-link {
    grid-area: brand;
    min-width: 0;
  }

  body.ec-site .ec-header-actions {
    display: none;
  }

  body.ec-site .ec-search-shell {
    grid-area: search;
    width: 100%;
  }

  body.ec-site .ec-nav-strip {
    background: transparent;
    border-top: 0;
  }

  body.ec-site .ec-nav-shell {
    min-height: 0;
  }

  body.ec-site .ec-main-nav {
    display: none;
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
    position: absolute;
    left: 12px;
    right: 12px;
    top: 8px;
    max-height: calc(100vh - 112px);
    padding: 14px;
    border: 1px solid var(--ec-border);
    border-radius: 10px;
    background: var(--ec-paper);
    box-shadow: var(--ec-shadow-soft);
    overflow: auto;
    z-index: 60;
  }

  body.ec-site .ec-main-nav.is-open {
    display: flex;
  }

  body.ec-site .ec-nav-primary {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  body.ec-site .ec-nav-link {
    width: 100%;
    padding: 8px 0;
  }

  body.ec-site .ec-nav-secondary {
    display: grid;
    width: 100%;
    gap: 0;
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid rgba(104, 73, 62, 0.12);
  }

  body.ec-site .ec-nav-link.is-primary::after {
    display: none;
  }

  body.ec-site .ec-nav-link-club {
    margin-left: 0;
    width: 100%;
  }

  body.ec-site .ec-home-hero-panel,
  body.ec-site .ec-home-benefits-bar,
  body.ec-site .ec-home-categories-layout,
  body.ec-site .ec-home-social-grid,
  body.ec-site .ec-home-deals-layout,
  body.ec-site .ec-home-promos,
  body.ec-site .ec-footer-bottom {
    grid-template-columns: 1fr;
  }

  body.ec-site .ec-home-hero-panel {
    gap: 22px;
  }

  body.ec-site .ec-home-hero-copy {
    padding-bottom: 18px;
  }

  body.ec-site .ec-home-hero-visual {
    min-height: 320px;
  }

  body.ec-site .ec-home-benefits-bar {
    gap: 12px;
    margin-top: 0;
  }

  body.ec-site .ec-home-payments {
    justify-content: flex-start;
  }

  body.ec-site .ec-home-categories-grid,
  body.ec-site .ec-home-publishers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ec-site .ec-home-deal-highlights,
  body.ec-site .ec-home-combo-books {
    grid-template-columns: 1fr;
  }

  body.ec-site .ec-home-carousel {
    grid-auto-columns: minmax(152px, 1fr);
  }

  body.ec-site .ec-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ec-site .ec-footer-brand-column,
  body.ec-site .ec-footer-newsletter-column {
    grid-column: span 2;
  }

  body.ec-site .ec-footer-bottom {
    justify-items: start;
  }
}

@media (max-width: 767.98px) {
  body.ec-site .ec-main {
    padding: 16px 0 56px;
  }

  body.ec-site .ec-topbar-messages {
    gap: 10px;
  }

  body.ec-site .ec-topbar-links {
    flex-wrap: wrap;
    gap: 10px;
  }

  body.ec-site .ec-brand-copy small,
  body.ec-site .ec-header-action span {
    display: none;
  }

  body.ec-site .ec-brand-copy strong {
    font-size: 16px;
    letter-spacing: 0.04em;
  }

  body.ec-site .ec-brand-mark {
    width: 48px;
    height: 48px;
  }

  body.ec-site .ec-search-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 42px;
    padding-right: 0;
  }

  body.ec-site .ec-search-divider,
  body.ec-site .ec-search-select {
    display: none;
  }

  body.ec-site .ec-search-submit {
    height: 42px;
    width: 50px;
  }

  body.ec-site .ec-search-suggestions {
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    max-height: min(58vh, 420px);
  }

  body.ec-site .ec-home-hero-frame {
    padding-top: 10px;
  }

  body.ec-site .ec-home-hero-copy {
    padding-left: 0;
    padding-right: 0;
  }

  body.ec-site .ec-home-hero-visual {
    min-height: 280px;
  }

  body.ec-site .ec-home-spotlight-card {
    grid-template-columns: 92px minmax(0, 1fr);
    right: 0;
    left: 0;
    width: auto;
  }

  body.ec-site .ec-home-categories-grid,
  body.ec-site .ec-home-testimonials-grid,
  body.ec-site .ec-home-publishers-grid,
  body.ec-site .ec-footer-grid {
    grid-template-columns: 1fr;
  }

  body.ec-site .ec-home-carousel {
    grid-auto-columns: minmax(132px, 132px);
  }

  body.ec-site .ec-home-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ec-site .ec-home-promo-card {
    min-height: 100px;
  }

  body.ec-site .ec-footer-brand-column,
  body.ec-site .ec-footer-newsletter-column {
    grid-column: span 1;
  }

  body.ec-site .ec-footer-payments,
  body.ec-site .ec-footer-legal {
    justify-content: flex-start;
  }
}

body.ec-site .ec-thumb.is-active,
body.ec-site .ec-detail-thumb.is-active {
  border-color: rgba(177, 144, 98, 0.9);
  box-shadow: 0 0 0 2px rgba(177, 144, 98, 0.16);
}

body.ec-site .ec-detail-page {
  margin-top: 18px;
}

body.ec-site .ec-detail-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--ec-muted);
  flex-wrap: wrap;
}

body.ec-site .ec-detail-breadcrumbs a {
  color: var(--ec-muted);
}

body.ec-site .ec-detail-breadcrumbs span {
  color: var(--ec-ink);
}

body.ec-site .ec-detail-breadcrumbs i {
  font-size: 10px;
  color: rgba(107, 90, 82, 0.55);
}

body.ec-site .ec-detail-hero {
  display: grid;
  grid-template-columns: minmax(340px, 430px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

body.ec-site .ec-detail-gallery-panel,
body.ec-site .ec-detail-summary-panel,
body.ec-site .ec-detail-tabs-panel,
body.ec-site .ec-detail-related-panel {
  border: 1px solid var(--ec-border);
  border-radius: 10px;
  background: var(--ec-paper);
  box-shadow: var(--ec-shadow-card);
}

body.ec-site .ec-detail-gallery-panel {
  padding: 18px;
}

body.ec-site .ec-detail-gallery-stage {
  position: relative;
}

body.ec-site .ec-detail-gallery-main {
  border-radius: 10px;
  background:
    radial-gradient(circle at top, rgba(177, 144, 98, 0.1), transparent 40%),
    linear-gradient(180deg, #f2ebe4 0%, #ece3db 100%);
  box-shadow: none;
}

body.ec-site .ec-detail-gallery-main img {
    aspect-ratio: 0.82;
    object-fit: contain;
    padding: 10px;
    height: auto;
}

body.ec-site .ec-detail-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid var(--ec-border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ec-muted);
  background: rgba(255, 255, 255, 0.92);
}

body.ec-site .ec-detail-image-modal {
  z-index: 5000;
}

body.ec-site .ec-detail-image-dialog {
  width: min(70vw, 980px);
  max-width: 70vw;
  z-index: 5001;
}

body.ec-site .ec-detail-image-content {
  position: relative;
  overflow: hidden;
  max-height: 70vh;
  border-radius: 18px;
  background: #111;
}

body.ec-site .ec-detail-image-header {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 17, 17, 0.96);
  color: #fff;
}

body.ec-site .ec-detail-image-header .btn-close {
  position: relative;
  z-index: 6;
  filter: invert(1);
}

body.ec-site .ec-detail-image-body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.92));
}

body.ec-site .ec-detail-image-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 6;
  filter: invert(1);
  opacity: 0.95;
}

body.ec-site .modal-backdrop.show {
    z-index: 99;
}


body.ec-site .ec-detail-image-modal {
    z-index: 999999999999999999999999 !important;
}
body.ec-site .ec-detail-image-body img {
  width: auto;
  max-width: 100%;
  max-height: calc(70vh - 5rem);
  object-fit: contain;
}

@media (max-width: 991.98px) {
  body.ec-site .ec-detail-image-dialog {
    width: 92vw;
    max-width: 92vw;
  }
}

body.ec-site .ec-detail-thumbs-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

body.ec-site .ec-detail-thumb {
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ec-card);
}

body.ec-site .ec-detail-thumb img {
  width: 100%;
  height: 74px;
  object-fit: cover;
}

body.ec-site .ec-detail-summary-panel {
  padding: 18px 22px;
}

body.ec-site .ec-detail-heading {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(232, 221, 212, 0.92);
}

body.ec-site .ec-detail-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff8f0;
  background: linear-gradient(180deg, #c8a165 0%, #b58d55 100%);
}

body.ec-site .ec-detail-title {
  margin: 10px 0 4px;
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 2.8vw, 48px);
  line-height: 1;
  color: var(--ec-ink);
}

body.ec-site .ec-detail-author {
  margin: 0;
  font-size: 14px;
  color: var(--ec-muted);
}

body.ec-site .ec-detail-author span {
  color: var(--ec-wine);
}

body.ec-site .ec-detail-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--ec-muted);
  flex-wrap: wrap;
}

body.ec-site .ec-detail-stars {
  display: inline-flex;
  gap: 2px;
  color: #c8a165;
}

body.ec-site .ec-detail-rating-copy {
  font-weight: 700;
  color: var(--ec-ink);
}

body.ec-site .ec-detail-price-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}

body.ec-site .ec-detail-price {
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ec-wine);
}

body.ec-site .ec-detail-price-old {
  font-size: 17px;
  color: rgba(107, 90, 82, 0.8);
  text-decoration: line-through;
}

body.ec-site .ec-detail-discount-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  color: #fff8f0;
  background: #b4261b;
}

body.ec-site .ec-detail-summary-copy {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ec-muted);
}

body.ec-site .ec-detail-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 16px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(232, 221, 212, 0.92);
}

body.ec-site .ec-detail-spec-card {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-width: 0;
}

body.ec-site .ec-detail-spec-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--ec-gold);
}

body.ec-site .ec-detail-spec-label,
body.ec-site .ec-detail-spec-card small {
  display: block;
}

body.ec-site .ec-detail-spec-label {
  font-size: 11px;
  color: var(--ec-muted);
}

body.ec-site .ec-detail-spec-card strong {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  color: var(--ec-ink);
  line-height: 1.4;
}

body.ec-site .ec-detail-spec-card small {
  margin-top: 2px;
  font-size: 11px;
  color: var(--ec-muted);
}

body.ec-site .ec-detail-purchase-form {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(232, 221, 212, 0.92);
}

body.ec-site .ec-detail-buy-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: end;
}

body.ec-site .ec-detail-qty-group {
  display: grid;
  gap: 8px;
}

body.ec-site .ec-detail-qty-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ec-ink);
}

body.ec-site .ec-detail-qty-box {
  display: inline-grid;
  grid-template-columns: 38px 56px 38px;
  border: 1px solid var(--ec-border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--ec-paper);
}

body.ec-site .ec-qty-step {
  border: 0;
  background: var(--ec-card);
  font-size: 16px;
  font-weight: 700;
  color: var(--ec-muted);
}

body.ec-site .ec-detail-qty-input {
  width: 100%;
  border: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--ec-ink);
  background: transparent;
  -moz-appearance: textfield;
}

body.ec-site .ec-detail-qty-input::-webkit-outer-spin-button,
body.ec-site .ec-detail-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

body.ec-site .ec-detail-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 1fr);
    gap: 12px;
}

body.ec-site .ec-detail-btn {
    min-height: 46px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
}

body.ec-site .ec-detail-btn-primary {
  background: linear-gradient(180deg, #64160f 0%, #300406 100%);
}

body.ec-site .ec-detail-btn-secondary {
  color: #fff8f0;
  border: 0;
  background: linear-gradient(180deg, #c8a165 0%, #b58d55 100%);
}

body.ec-site .ec-detail-btn-whatsapp {
  color: #fff;
  border: 0;
  background: linear-gradient(180deg, #25d366 0%, #128c4a 100%);
}

body.ec-site .ec-detail-benefits-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(232, 221, 212, 0.92);
}

body.ec-site .ec-detail-benefit {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

body.ec-site .ec-detail-benefit-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ec-gold);
}

body.ec-site .ec-detail-benefit strong,
body.ec-site .ec-detail-benefit small {
  display: block;
}

body.ec-site .ec-detail-benefit strong {
  font-size: 12px;
  color: var(--ec-ink);
}

body.ec-site .ec-detail-benefit small {
  margin-top: 2px;
  font-size: 11px;
  color: var(--ec-muted);
  line-height: 1.45;
}

body.ec-site .ec-detail-lower-section {
  margin-top: 14px;
}

body.ec-site .ec-detail-lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 18px;
}

body.ec-site .ec-detail-lower-grid.is-single {
  grid-template-columns: 1fr;
}

body.ec-site .ec-detail-tabs-panel,
body.ec-site .ec-detail-related-panel {
  padding: 0;
  overflow: hidden;
}

body.ec-site .ec-detail-tabs {
  display: flex;
  gap: 0;
  padding: 0 16px;
  border-bottom: 1px solid rgba(232, 221, 212, 0.92);
  background: rgba(247, 244, 241, 0.62);
}

body.ec-site .ec-detail-tabs .nav-link {
  margin: 0;
  padding: 14px 12px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  color: var(--ec-muted);
  font-size: 12px;
  font-weight: 700;
  background: transparent;
}

body.ec-site .ec-detail-tabs .nav-link.active,
body.ec-site .ec-detail-tabs .nav-link:hover {
  color: var(--ec-wine);
  border-bottom-color: var(--ec-gold);
  background: transparent;
}

body.ec-site .ec-detail-tab-content {
  padding: 18px;
}

body.ec-site .ec-detail-copy {
  color: var(--ec-muted);
  font-size: 13px;
  line-height: 1.78;
}

body.ec-site .ec-detail-copy p:last-child {
  margin-bottom: 0;
}

body.ec-site .ec-detail-reader-voices {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(232, 221, 212, 0.92);
}

body.ec-site .ec-detail-reader-voices h3 {
  margin: 0 0 12px;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  color: var(--ec-ink);
}

body.ec-site .ec-detail-reader-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body.ec-site .ec-detail-reader-card,
body.ec-site .ec-detail-opinion-card {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--ec-border);
  background: var(--ec-paper);
}

body.ec-site .ec-detail-reader-card p,
body.ec-site .ec-detail-opinion-card p {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ec-muted);
}

body.ec-site .ec-detail-reader-card strong {
  display: block;
  margin-top: 10px;
  font-size: 12px;
}

body.ec-site .ec-detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

body.ec-site .ec-detail-meta-card {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid var(--ec-border);
  background: rgba(247, 244, 241, 0.48);
}

body.ec-site .ec-detail-meta-label {
  display: block;
  margin-bottom: 5px;
  font-size: 11px;
  color: var(--ec-muted);
}

body.ec-site .ec-detail-meta-card strong {
  font-size: 13px;
  color: var(--ec-ink);
}

body.ec-site .ec-home-deals-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 16px;
  margin-bottom: 16px;
}

body.ec-site .ec-home-deal-card,
body.ec-site .ec-home-combos-panel {
  min-height: 100%;
}

body.ec-site .ec-home-deal-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

body.ec-site .ec-home-deal-highlight {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 248, 243, 0.1);
}

body.ec-site .ec-home-deal-highlight span {
  display: block;
  font-size: 12px;
  color: rgba(255, 248, 240, 0.72);
}

body.ec-site .ec-home-deal-highlight strong {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: #fff8f0;
}

body.ec-site .ec-home-deal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

body.ec-site .ec-home-offer-placeholder {
  width: 88px;
  height: 122px;
  border-radius: 16px;
  border: 1px solid rgba(255, 248, 243, 0.2);
  background: linear-gradient(135deg, rgba(255, 248, 243, 0.15), rgba(255, 248, 243, 0.04));
}

body.ec-site .ec-home-combos-panel {
  padding: 18px;
}

body.ec-site .ec-home-combos-grid {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

body.ec-site .ec-home-combo-card {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(92, 58, 53, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 243, 0.86));
}

body.ec-site .ec-home-combo-head {
  display: grid;
  gap: 6px;
}

body.ec-site .ec-home-combo-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  color: #fff8f0;
  background: linear-gradient(135deg, #4b100d, #650d05);
}

body.ec-site .ec-home-combo-head strong {
  font-size: 13px;
  color: var(--ec-ink);
}

body.ec-site .ec-home-combo-head p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ec-muted);
}

body.ec-site .ec-home-combo-books {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

body.ec-site .ec-home-combo-book {
  display: grid;
  gap: 8px;
  color: inherit;
}

body.ec-site .ec-home-combo-book img {
  width: 100%;
  aspect-ratio: 4 / 5.5;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(92, 58, 53, 0.12);
}

body.ec-site .ec-home-combo-book strong {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ec-ink);
}

body.ec-site .ec-home-combo-book small {
  font-size: 12px;
  color: var(--ec-muted);
}

body.ec-site .ec-home-combo-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}

body.ec-site .ec-home-combo-foot span,
body.ec-site .ec-home-combo-foot a {
  font-size: 13px;
  font-weight: 700;
}

body.ec-site .ec-detail-attributes {
  display: grid;
  gap: 10px;
}

body.ec-site .ec-detail-opinions-list {
  display: grid;
  gap: 12px;
}

body.ec-site .ec-detail-opinion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

body.ec-site .ec-detail-opinion-head strong {
  font-size: 13px;
}

body.ec-site .ec-detail-opinion-head span {
  font-size: 11px;
  color: var(--ec-muted);
}

body.ec-site .ec-detail-related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px 10px;
}

body.ec-site .ec-detail-related-head h2 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--ec-ink);
}

body.ec-site .ec-detail-related-carousel {
  grid-auto-columns: minmax(0, calc((100% - 12px) / 2));
  gap: 12px;
  padding: 0 18px 18px;
}

body.ec-site .ec-book-card-compact-shop {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

body.ec-site .ec-book-card-compact-shop .ec-book-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding-bottom: 12px;
}

body.ec-site .ec-book-card-list-25 .ec-book-title {
  margin: 6px 0 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0;
}

body.ec-site .ec-book-card-list-25 .ec-book-title a {
  color: var(--ec-ink);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2.7em;
}

body.ec-site .ec-book-mini-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
}

body.ec-site .ec-book-mini-link {
  font-size: 11px;
  font-weight: 700;
  color: var(--ec-muted);
}

body.ec-site .ec-book-mini-cart {
    min-height: 38px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff8f0;
    font-size: 11px;
    font-weight: 600;
    background: linear-gradient(180deg, #4b100d 0%, #2f0806 100%);
    box-shadow: 0 12px 24px rgba(58, 30, 24, 0.16);
}

body.ec-site .ec-book-mini-cart.is-disabled {
  color: var(--ec-muted);
  background: rgba(104, 73, 62, 0.08);
  box-shadow: none;
}

body.ec-site .ec-book-card-compact-shop .ec-book-topline {
  margin-bottom: 12px;
}

body.ec-site .ec-book-card-compact-shop .ec-book-byline {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ec-muted);
}

body.ec-site .ec-book-card-compact-shop .ec-book-title {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.28;
}

body.ec-site .ec-book-card-compact-shop .ec-book-title a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

body.ec-site .ec-book-card-compact-shop .ec-book-support-copy {
  min-height: 2.7rem;
}

body.ec-site .ec-book-card-compact-shop .ec-book-price-row {
  margin-top: 12px;
  align-items: flex-start;
}

body.ec-site .ec-book-card-compact-shop .ec-book-price strong {
  font-size: 16px;
  line-height: 1.05;
  color: var(--ec-green);
}

body.ec-site .ec-book-card-compact-shop .ec-book-discount {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #996216;
  font-size: 10px;
  font-weight: 800;
  background: rgba(200, 149, 63, 0.18);
}

@media (max-width: 1199.98px) {
  body.ec-site .ec-detail-spec-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.ec-site .ec-detail-lower-grid {
    grid-template-columns: 1fr;
  }

  body.ec-site .ec-detail-reader-grid,
  body.ec-site .ec-detail-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  body.ec-site .ec-detail-hero {
    grid-template-columns: 1fr;
  }

  body.ec-site .ec-detail-spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ec-site .ec-detail-buy-row,
  body.ec-site .ec-detail-actions,
  body.ec-site .ec-detail-benefits-row {
    grid-template-columns: 1fr;
  }

  body.ec-site .ec-detail-thumbs-row {
    grid-template-columns: repeat(5, minmax(56px, 1fr));
  }
}

@media (max-width: 767.98px) {
  body.ec-site .ec-detail-page {
    margin-top: 10px;
  }

  body.ec-site .ec-detail-gallery-panel,
  body.ec-site .ec-detail-summary-panel,
  body.ec-site .ec-detail-tab-content,
  body.ec-site .ec-detail-related-head,
  body.ec-site .ec-detail-related-carousel {
    padding-left: 14px;
    padding-right: 14px;
  }

  body.ec-site .ec-detail-spec-grid,
  body.ec-site .ec-detail-reader-grid,
  body.ec-site .ec-detail-meta-grid {
    grid-template-columns: 1fr;
  }

  body.ec-site .ec-detail-thumbs-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body.ec-site .ec-detail-title {
    font-size: 32px;
  }

  body.ec-site .ec-detail-price {
    font-size: 27px;
  }

  body.ec-site .ec-detail-tabs {
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  body.ec-site .ec-detail-related-carousel {
    grid-auto-columns: minmax(0, calc((100% - 12px) / 2));
  }
}

body.ec-site .ec-detail-copy-shell {
  position: relative;
}

body.ec-site .ec-detail-copy-shell.is-collapsed {
  max-height: 350px;
  overflow: hidden;
}

body.ec-site .ec-detail-copy-shell.is-collapsed::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 96px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.94) 55%, #ffffff 100%);
  pointer-events: none;
}

body.ec-site .ec-detail-copy-shell.is-expanded {
  max-height: none;
}

body.ec-site .ec-detail-copy-shell.is-expanded::after {
  display: none;
}

body.ec-site .ec-detail-copy-toggle {
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ec-wine);
  font-size: 12px;
  font-weight: 700;
}

body.ec-site .ec-detail-copy {
  color: var(--ec-muted);
  font-size: 13px;
  line-height: 1.85;
}

body.ec-site .ec-detail-copy p {
  margin: 0 0 1rem;
}

body.ec-site .ec-detail-copy p:last-child {
  margin-bottom: 0;
}

body.ec-site .ec-detail-copy strong,
body.ec-site .ec-detail-copy b {
  color: var(--ec-ink);
  font-weight: 700;
}

body.ec-site .ec-detail-copy h2,
body.ec-site .ec-detail-copy h3,
body.ec-site .ec-detail-copy h4 {
  margin: 0 0 0.75rem;
  font-family: 'Fraunces', serif;
  color: var(--ec-ink);
}

body.ec-site .ec-detail-copy ul,
body.ec-site .ec-detail-copy ol {
  padding-left: 1.2rem;
  margin: 0 0 1rem;
}

body.ec-site .ec-detail-copy li + li {
  margin-top: 0.4rem;
}

body.ec-site .ec-detail-copy a {
  color: var(--ec-wine);
  text-decoration: underline;
}

body.ec-site .ec-detail-reader-voices h3 {
  font-weight: 600;
}

body.ec-site .ec-detail-reader-card strong,
body.ec-site .ec-detail-opinion-card strong {
  color: var(--ec-ink);
  font-weight: 700;
}

body.ec-site .ec-detail-related-panel {
  align-self: start;
}

body.ec-site .ec-detail-related-head {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(232, 221, 212, 0.92);
}

body.ec-site .ec-detail-related-carousel {
  grid-auto-columns: minmax(0, calc((100% - 10px) / 2));
  gap: 10px;
  padding: 0 16px 16px;
}

body.ec-site .ec-detail-related-carousel .ec-book-card-compact-shop {
  height: 100%;
  overflow: hidden;
}

body.ec-site .ec-detail-related-carousel .ec-book-card-compact-shop .ec-book-cover {
  aspect-ratio: 4 / 5.4;
  background: #efe8e2;
}

body.ec-site .ec-detail-related-carousel .ec-book-card-compact-shop .ec-book-body {
  padding: 10px 10px 12px;
}

body.ec-site .ec-detail-related-carousel .ec-book-card-compact-shop .ec-book-title {
  margin: 6px 0 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0;
}

body.ec-site .ec-detail-related-carousel .ec-book-card-compact-shop .ec-book-title a {
  color: var(--ec-ink);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: 4.1em;
}

body.ec-site .ec-detail-related-carousel .ec-book-card-compact-shop .ec-book-price-row {
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 8px;
}

body.ec-site .ec-detail-related-carousel .ec-book-card-compact-shop .ec-book-price strong {
  display: block;
  font-size: 13px;
  line-height: 1.1;
}

body.ec-site .ec-detail-related-carousel .ec-book-card-compact-shop .ec-price-old {
  display: block;
  margin-top: 2px;
  font-size: 10px;
}

body.ec-site .ec-detail-related-carousel .ec-book-card-compact-shop .ec-book-mini-actions {
  margin-top: 10px;
}

body.ec-site .ec-detail-related-carousel .ec-book-card-compact-shop .ec-book-mini-link {
  font-size: 10px;
}

body.ec-site .ec-detail-related-carousel .ec-book-card-compact-shop .ec-book-mini-cart {
    width: auto;
    height: 26px;
    border-radius: 999px;
}



body.ec-site .ec-book-card-compact-related {
  border-radius: 8px;
  overflow: hidden;
  background: var(--ec-paper);
  box-shadow: none;
}

body.ec-site .ec-book-card-compact-related:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(42, 5, 4, 0.08);
}

body.ec-site .ec-book-card-compact-related .ec-book-cover {
  aspect-ratio: 4 / 5.35;
  background: #efe8e2;
}

body.ec-site .ec-book-card-compact-related .ec-book-favorite {
  width: 24px;
  height: 24px;
  top: 6px;
  right: 6px;
}

body.ec-site .ec-book-card-compact-related .ec-book-ribbon {
  top: 6px;
  left: 6px;
  padding: 4px 7px;
  font-size: 9px;
}

body.ec-site .ec-book-card-compact-related .ec-book-body {
  display: flex;
  flex-direction: column;
  padding: 10px 10px 12px;
}

body.ec-site .ec-book-card-compact-related .ec-book-byline {
  font-size: 9px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ec-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.ec-site .ec-book-card-compact-related .ec-book-title {
  margin: 6px 0 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

body.ec-site .ec-book-card-compact-related .ec-book-title a {
  color: var(--ec-ink);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: 4.1em;
}

body.ec-site .ec-book-card-compact-related .ec-book-price-row {
  margin-top: 8px;
  align-items: flex-start;
}

body.ec-site .ec-book-card-compact-related .ec-book-price strong {
  display: block;
  font-size: 13px;
  line-height: 1.1;
  color: var(--ec-wine);
}

body.ec-site .ec-book-card-compact-related .ec-price-old {
  display: block;
  margin-top: 3px;
  font-size: 10px;
}

body.ec-site .ec-book-card-compact-related .ec-book-discount {
  font-size: 10px;
  color: var(--ec-danger);
}

body.ec-site .ec-book-card-compact-related .ec-book-mini-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
}

body.ec-site .ec-book-card-compact-related .ec-book-mini-link {
  font-size: 10px;
  font-weight: 700;
  color: var(--ec-muted);
}

body.ec-site .ec-book-card-compact-related .ec-book-mini-cart {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, #c8a165 0%, #b58d55 100%);
}

@media (max-width: 991.98px) {
  body.ec-site .ec-detail-related-carousel {
    grid-auto-columns: minmax(0, calc((100% - 12px) / 2));
  }
}


    .h3, h3 {
        font-size: 17px;
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-weight: 700;
    }

body.ec-site .ec-book-cover-shell {
  position: relative;
}

body.ec-site .ec-book-favorite-form {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  margin: 0;
}

body.ec-site .ec-book-favorite {
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

body.ec-site .ec-book-favorite:hover {
  transform: translateY(-1px);
}

body.ec-site .ec-book-favorite.is-active {
  color: #fff8f0;
  border-color: rgba(75, 16, 13, 0.16);
  background: linear-gradient(180deg, #64160f 0%, #300406 100%);
}

body.ec-site .ec-store-page {
  margin-top: 18px;
}

body.ec-site .ec-store-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--ec-muted);
  flex-wrap: wrap;
}

body.ec-site .ec-store-breadcrumbs a {
  color: var(--ec-muted);
}

body.ec-site .ec-store-breadcrumbs span {
  color: var(--ec-ink);
}

body.ec-site .ec-store-breadcrumbs i {
  font-size: 10px;
  color: rgba(107, 90, 82, 0.55);
}

body.ec-site .ec-store-hero,
body.ec-site .ec-store-panel,
body.ec-site .ec-store-sidebar-card,
body.ec-site .ec-store-confirmation-panel {
  border: 1px solid var(--ec-border);
  border-radius: 10px;
  background: var(--ec-paper);
  box-shadow: var(--ec-shadow-card);
}

body.ec-site .ec-store-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: start;
  padding: 22px 24px;
  background:
    radial-gradient(circle at top right, rgba(177, 144, 98, 0.14), transparent 22%),
    linear-gradient(135deg, #fffaf6 0%, #f4ece5 100%);
}

body.ec-site .ec-store-hero-copy {
  min-width: 0;
}

body.ec-site .ec-store-hero-title {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 0.98;
  color: var(--ec-ink);
}

body.ec-site .ec-store-hero-description {
  max-width: 60ch;
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--ec-muted);
}

body.ec-site .ec-store-inline-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

body.ec-site .ec-store-hero-aside {
  display: grid;
  gap: 14px;
  align-content: start;
}

body.ec-site .ec-store-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.ec-site .ec-store-stat-card {
  padding: 16px;
  border: 1px solid var(--ec-border);
  border-radius: 8px;
  background: rgba(247, 244, 241, 0.74);
}

body.ec-site .ec-store-stat-card span,
body.ec-site .ec-store-check-card span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ec-muted);
}

body.ec-site .ec-store-stat-card strong,
body.ec-site .ec-store-check-card strong {
  display: block;
  margin-top: 6px;
  font-size: 19px;
  line-height: 1.15;
  color: var(--ec-ink);
}

body.ec-site .ec-store-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.ec-site .ec-store-panel {
  padding: 22px;
}

body.ec-site .ec-store-empty-panel {
  padding: 48px 24px;
  text-align: center;
}

body.ec-site .ec-store-section-head {
  align-items: flex-end;
}

body.ec-site .ec-store-section-copy {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: var(--ec-muted);
}

body.ec-site .ec-store-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ec-wine);
}

body.ec-site .ec-store-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

body.ec-site .ec-store-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--ec-border);
  background: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
  color: var(--ec-ink);
}

body.ec-site .ec-store-discovery-panel {
  padding: 22px;
}

body.ec-site .ec-store-discovery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

body.ec-site .ec-store-discovery-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--ec-border);
  border-radius: 8px;
  background: rgba(247, 244, 241, 0.74);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body.ec-site .ec-store-discovery-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(177, 144, 98, 0.58);
  box-shadow: 0 10px 22px rgba(48, 4, 6, 0.08);
}

body.ec-site .ec-store-discovery-chip strong,
body.ec-site .ec-store-discovery-chip small,
body.ec-site .ec-store-discovery-chip span {
  display: block;
}

body.ec-site .ec-store-discovery-chip strong {
  font-size: 13px;
  line-height: 1.35;
  color: var(--ec-ink);
}

body.ec-site .ec-store-discovery-chip small {
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--ec-muted);
}

body.ec-site .ec-store-discovery-chip span {
    flex: 0 0 auto;
    min-width: 34px;
    padding: 6px 8px;
    border-radius: 999px;
    background: rgba(177, 144, 98, 0.14);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    color: var(--ec-wine);
}

body.ec-site .ec-catalog-filter-panel {
  padding: 22px;
}

body.ec-site .ec-store-results-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

body.ec-site .ec-store-results-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(177, 144, 98, 0.14);
  font-size: 11px;
  font-weight: 700;
  color: var(--ec-wine);
}

body.ec-site .ec-store-results-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

body.ec-site .ec-store-results-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

body.ec-site .ec-mobile-dock {
  display: none;
}

body.ec-site .ec-mobile-dock-link {
  text-decoration: none;
}

body.ec-site .ec-mobile-dock-icon {
  position: relative;
  display: inline-flex;
}

body.ec-site .ec-mobile-dock-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #3b0a06;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

body.ec-site .ec-store-pagination-shell {
    padding-top: 25px;
}

body.ec-site .ec-store-benefits-bar {
  margin-top: 0;
}

body.ec-site .ec-store-benefits-bar.is-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.ec-site .ec-store-shelf {
  padding-bottom: 2px;
}

body.ec-site .ec-store-sticky {
  position: sticky;
  top: 148px;
  display: grid;
  gap: 16px;
}

body.ec-site .ec-store-summary-card {
  background: var(--ec-paper);
}

body.ec-site .ec-store-summary-note {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: var(--ec-muted);
}

body.ec-site .ec-store-sidebar-card {
  padding: 18px;
}

body.ec-site .ec-store-support-card h2 {
  margin: 0 0 12px;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--ec-ink);
}

body.ec-site .ec-store-info-list {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 10px;
  font-size: 12px;
  line-height: 1.75;
  color: var(--ec-muted);
}

body.ec-site .ec-store-info-list a {
  font-weight: 700;
  color: var(--ec-wine);
}

body.ec-site .ec-store-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

body.ec-site .ec-store-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid var(--ec-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
  color: var(--ec-muted);
}

body.ec-site .ec-store-steps .is-active {
  border-color: transparent;
  color: #fff8f0;
  background: linear-gradient(180deg, #64160f 0%, #300406 100%);
}

body.ec-site .ec-store-steps .is-complete {
  color: var(--ec-wine);
  background: rgba(177, 144, 98, 0.16);
}

body.ec-site .ec-store-fieldset + .ec-store-fieldset {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 221, 212, 0.92);
}

body.ec-site .ec-store-fieldset-head h2 {
  margin: 6px 0 4px;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--ec-ink);
}

body.ec-site .ec-store-fieldset-head p {
  margin: 0 0 16px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--ec-muted);
}

body.ec-site .ec-store-checkbox {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--ec-border);
  border-radius: 8px;
  background: rgba(247, 244, 241, 0.7);
  color: var(--ec-ink);
  font-size: 13px;
}

body.ec-site .ec-store-checkbox input {
  margin: 0;
}

body.ec-site .ec-cart-panel {
  padding: 0;
  overflow: hidden;
}

body.ec-site .ec-cart-head,
body.ec-site .ec-cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) 150px 110px 110px 72px;
  gap: 16px;
  align-items: center;
}

body.ec-site .ec-cart-head {
  padding: 16px 22px;
  border-bottom: 1px solid rgba(232, 221, 212, 0.92);
  background: rgba(247, 244, 241, 0.7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ec-muted);
}

body.ec-site .ec-cart-list {
  display: grid;
}

body.ec-site .ec-cart-row {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(232, 221, 212, 0.92);
  align-items: start;
}

body.ec-site .ec-cart-row:last-child {
  border-bottom: 0;
}

body.ec-site .ec-cart-book {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-width: 0;
}

body.ec-site .ec-cart-book-media {
  display: block;
}

body.ec-site .ec-cart-book-cover,
body.ec-site .ec-favorite-cover {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--ec-border);
  background: #efe8e2;
}

body.ec-site .ec-cart-book-cover img {
  width: 100%;
  height: 132px;
  object-fit: cover;
}

body.ec-site .ec-cart-book-overline,
body.ec-site .ec-favorite-overline {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ec-muted);
}

body.ec-site .ec-cart-book-copy h3,
body.ec-site .ec-favorite-copy h3 {
  margin: 6px 0 8px;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  line-height: 1.2;
  color: var(--ec-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.ec-site .ec-cart-book-copy p,
body.ec-site .ec-favorite-copy p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ec-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.ec-site .ec-cart-cell {
  display: grid;
  gap: 8px;
  align-content: start;
}

body.ec-site .ec-cart-cell strong {
  font-size: 14px;
  color: var(--ec-ink);
}

body.ec-site .ec-cart-mobile-label {
  display: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ec-muted);
}

body.ec-site .ec-cart-cell-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 2px;
}

body.ec-site .ec-store-icon-button,
body.ec-site .ec-store-icon-link {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--ec-border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ec-paper);
  color: var(--ec-ink);
  box-shadow: var(--ec-shadow-card);
}

body.ec-site .ec-store-icon-link {
  text-decoration: none;
}

body.ec-site .ec-qty-wrapper {
  display: grid;
  grid-template-columns: 36px 58px 36px;
  border: 1px solid var(--ec-border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--ec-paper);
}

body.ec-site .ec-cart-qty-input {
  width: 100%;
  border: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--ec-ink);
  background: transparent;
  -moz-appearance: textfield;
}

body.ec-site .ec-cart-qty-input::-webkit-outer-spin-button,
body.ec-site .ec-cart-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

body.ec-site .ec-cart-tools {
  padding: 0 22px 22px;
}

body.ec-site .ec-cart-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

body.ec-site .ec-favorite-list {
  display: grid;
  gap: 14px;
}

body.ec-site .ec-favorite-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 120px auto;
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(232, 221, 212, 0.92);
  border-radius: 10px;
  background: rgba(247, 244, 241, 0.54);
}

body.ec-site .ec-favorite-cover img {
  width: 100%;
  height: 136px;
  object-fit: cover;
}

body.ec-site .ec-favorite-copy {
  min-width: 0;
  display: grid;
  gap: 8px;
}

body.ec-site .ec-favorite-price {
  display: grid;
  gap: 6px;
}

body.ec-site .ec-favorite-price strong {
  font-size: 16px;
  color: var(--ec-wine);
}

body.ec-site .ec-favorite-price span {
  font-size: 12px;
  text-decoration: line-through;
  color: var(--ec-muted);
}

body.ec-site .ec-favorite-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  align-self: center;
}

body.ec-site .ec-store-order-list {
  display: grid;
  gap: 16px;
}

body.ec-site .ec-store-order-card,
body.ec-site .ec-store-check-card {
  border: 1px solid var(--ec-border);
  border-radius: 10px;
  background: var(--ec-paper);
  box-shadow: var(--ec-shadow-card);
}

body.ec-site .ec-store-order-card {
  padding: 18px;
}

body.ec-site .ec-store-order-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(232, 221, 212, 0.92);
}

body.ec-site .ec-store-order-number {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(177, 144, 98, 0.14);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ec-wine);
}

body.ec-site .ec-store-order-head h3 {
  margin: 8px 0 0;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--ec-ink);
}

body.ec-site .ec-store-order-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 14px;
}

body.ec-site .ec-store-order-grid span {
  display: block;
  font-size: 11px;
  color: var(--ec-muted);
}

body.ec-site .ec-store-order-grid strong {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ec-ink);
}

body.ec-site .ec-store-order-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(232, 221, 212, 0.92);
  font-size: 12px;
  color: var(--ec-muted);
}

body.ec-site .ec-store-order-footer strong {
  font-size: 16px;
  color: var(--ec-wine);
}

body.ec-site .ec-store-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body.ec-site .ec-store-check-card {
  padding: 16px;
}

body.ec-site .ec-store-order-items {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

body.ec-site .ec-store-order-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(232, 221, 212, 0.92);
}

body.ec-site .ec-store-order-item:last-child {
  border-bottom: 0;
}

body.ec-site .ec-store-confirmation-panel {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(177, 144, 98, 0.14), transparent 20%),
    linear-gradient(135deg, #fffaf6 0%, #f4ece5 100%);
}

body.ec-site .ec-store-confirmation-icon {
  width: 84px;
  height: 84px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--ec-gold);
  background: rgba(177, 144, 98, 0.16);
}

body.ec-site .ec-store-confirmation-icon.is-muted {
  color: var(--ec-wine);
  background: rgba(75, 16, 13, 0.08);
}

body.ec-site .ec-store-confirmation-copy p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.78;
  color: var(--ec-muted);
}

body.ec-site .ec-store-notice-panel {
  background:
    radial-gradient(circle at top right, rgba(177, 144, 98, 0.12), transparent 20%),
    linear-gradient(135deg, #fffaf6 0%, #f4ece5 100%);
}

body.ec-site .ec-detail-utility-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

body.ec-site .ec-detail-link-btn {
  padding: 0;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  color: var(--ec-wine);
}

body.ec-site .ec-detail-link-btn.is-active {
  color: var(--ec-gold);
}

body.ec-site .ec-detail-utility-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ec-muted);
}

@media (max-width: 1199.98px) {
  body.ec-site .ec-store-hero {
    grid-template-columns: 1fr;
  }

  body.ec-site .ec-store-order-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ec-site .ec-store-discovery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  body.ec-site .ec-store-sticky {
    position: static;
  }

  body.ec-site .ec-cart-head {
    display: none;
  }

  body.ec-site .ec-cart-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  body.ec-site .ec-cart-mobile-label {
    display: block;
  }

  body.ec-site .ec-favorite-row {
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: start;
  }

  body.ec-site .ec-favorite-price,
  body.ec-site .ec-favorite-actions {
    grid-column: 2 / -1;
  }

  body.ec-site .ec-favorite-actions {
    justify-content: flex-start;
  }

  body.ec-site .ec-store-confirmation-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  body.ec-site .ec-store-page {
    margin-top: 10px;
  }

  body.ec-site .ec-store-hero,
  body.ec-site .ec-store-panel,
  body.ec-site .ec-store-sidebar-card,
  body.ec-site .ec-store-confirmation-panel {
    padding: 16px;
  }

  body.ec-site .ec-store-stat-grid,
  body.ec-site .ec-store-check-grid,
  body.ec-site .ec-store-order-grid,
  body.ec-site .ec-store-discovery-grid,
  body.ec-site .ec-store-benefits-bar,
  body.ec-site .ec-store-benefits-bar.is-compact {
    grid-template-columns: 1fr;
  }

  body.ec-site .ec-cart-book {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  body.ec-site .ec-cart-book-cover img,
  body.ec-site .ec-favorite-cover img {
    height: 116px;
  }

  body.ec-site .ec-favorite-row {
    grid-template-columns: 1fr;
  }

  body.ec-site .ec-favorite-cover {
    max-width: 96px;
  }

  body.ec-site .ec-favorite-price,
  body.ec-site .ec-favorite-actions {
    grid-column: auto;
  }

  body.ec-site .ec-favorite-actions {
    justify-content: flex-start;
  }

  body.ec-site .ec-detail-utility-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

body.ec-site .ec-store-hero,
body.ec-site .ec-store-panel,
body.ec-site .ec-store-sidebar-card,
body.ec-site .ec-store-confirmation-panel {
  border-radius: 30px;
  border: 1px solid rgba(104, 73, 62, 0.12);
  box-shadow: 0 26px 64px rgba(58, 30, 24, 0.1);
}

body.ec-site .ec-store-panel,
body.ec-site .ec-store-sidebar-card {
  background:
    linear-gradient(180deg, rgba(255, 254, 252, 0.98), rgba(252, 246, 240, 0.94)),
    radial-gradient(circle at top right, rgba(200, 149, 63, 0.08), transparent 24%);
}

body.ec-site .ec-store-hero {
  gap: 32px;
  padding: 32px;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  background:
    radial-gradient(circle at top right, rgba(200, 149, 63, 0.16), transparent 22%),
    radial-gradient(circle at bottom left, rgba(75, 16, 13, 0.08), transparent 28%),
    linear-gradient(135deg, #fffaf6 0%, #f3ebe4 100%);
}

body.ec-site .ec-store-confirmation-panel {
  padding: 32px;
  border-radius: 32px;
}

body.ec-site .ec-store-panel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

body.ec-site .ec-store-panel-head h2,
body.ec-site .ec-store-note-card h2 {
  margin: 6px 0 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.05;
  color: var(--ec-ink);
}

body.ec-site .ec-store-panel-head-border {
  margin-bottom: 0;
  padding: 24px 22px 18px;
  border-bottom: 1px solid rgba(232, 221, 212, 0.92);
}

body.ec-site .ec-store-panel-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

body.ec-site .ec-store-results-count.is-muted {
  background: rgba(75, 16, 13, 0.08);
  color: var(--ec-muted);
}

body.ec-site .ec-store-hero-title {
  max-width: 10ch;
}

body.ec-site .ec-store-hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

body.ec-site .ec-store-hero-point {
    display: grid;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(104, 73, 62, 0.12);
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(10px);
    justify-content: center;
}

body.ec-site .ec-store-hero-point-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(75, 16, 13, 0.14), rgba(75, 16, 13, 0.08));
  color: var(--ec-wine);
  font-size: 16px;
}

body.ec-site .ec-store-hero-point strong {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  color: var(--ec-ink);
}

body.ec-site .ec-store-hero-point p {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: var(--ec-muted);
}

body.ec-site .ec-store-note-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(160deg, #4b100d 0%, #2f0806 100%);
  color: #fff8f0;
  box-shadow: 0 18px 44px rgba(48, 18, 14, 0.22);
}

body.ec-site .ec-store-note-card h2 {
  color: #fff8f0;
}

body.ec-site .ec-store-note-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 241, 225, 0.72);
}

body.ec-site .ec-store-note-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 248, 243, 0.84);
}

body.ec-site .ec-store-note-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 10px;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 248, 243, 0.86);
}

body.ec-site .ec-store-note-list li::marker {
  color: rgba(200, 149, 63, 0.95);
}

body.ec-site .ec-store-progress {
  width: 100%;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 248, 243, 0.12);
}

body.ec-site .ec-store-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #c8953f 0%, #e0b66d 100%);
}

body.ec-site .ec-store-discovery-grid {
  gap: 14px;
}

body.ec-site .ec-store-discovery-chip {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.72);
}

body.ec-site .ec-store-discovery-icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(75, 16, 13, 0.12), rgba(75, 16, 13, 0.06));
  color: var(--ec-wine);
  font-size: 22px;
}

body.ec-site .ec-store-discovery-icon i {
  line-height: 1;
}

body.ec-site .ec-store-discovery-chip .ec-store-discovery-icon{
 
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    flex: 0 0 60px;
    justify-self: center;
    display: flex;
    font-size: 20px;
}

body.ec-site .ec-store-discovery-copy {
  min-width: 0;
}

body.ec-site .ec-store-discovery-count {
  min-width: 42px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(177, 144, 98, 0.16);
  color: var(--ec-wine);
}

body.ec-site .ec-catalog-filter-panel,
body.ec-site .ec-store-results-panel,
body.ec-site .ec-store-shelf-panel {
  padding: 26px;
}

body.ec-site .ec-store-filter-actions {
  margin-top: 4px;
}

body.ec-site .ec-store-shelf-head {
  margin-bottom: 18px;
}

body.ec-site .ec-store-suggestion-row,
body.ec-site .ec-store-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.ec-site .ec-store-suggestion-row {
  justify-content: center;
  margin-top: 24px;
}

body.ec-site .ec-store-suggestion-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(104, 73, 62, 0.14);
  background: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 700;
  color: var(--ec-wine);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.ec-site .ec-store-suggestion-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 149, 63, 0.5);
  box-shadow: 0 14px 28px rgba(58, 30, 24, 0.08);
}

body.ec-site .ec-store-suggestion-chip.is-static {
  color: var(--ec-ink);
  pointer-events: none;
}

body.ec-site .ec-store-empty-actions {
  justify-content: center;
}

body.ec-site .ec-store-empty-panel h2 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(27px, 3vw, 38px);
}

body.ec-site .ec-store-empty-panel p {
  max-width: 54ch;
  margin: 12px auto 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--ec-muted);
}

body.ec-site .ec-cart-panel {
  background:
    linear-gradient(180deg, rgba(255, 254, 252, 0.98), rgba(249, 243, 237, 0.95)),
    radial-gradient(circle at top right, rgba(200, 149, 63, 0.08), transparent 24%);
}

body.ec-site .ec-cart-panel-head {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 241, 234, 0.74));
}

body.ec-site .ec-cart-list {
  gap: 14px;
  padding: 18px 0 0;
}

body.ec-site .ec-cart-head {
  padding: 0 22px 6px;
  background: transparent;
  border-bottom: 0;
}

body.ec-site .ec-cart-row {
  margin: 0 22px;
  padding: 20px;
  border: 1px solid rgba(104, 73, 62, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 32px rgba(58, 30, 24, 0.05);
}

body.ec-site .ec-cart-row:last-child {
  margin-bottom: 0;
}

body.ec-site .ec-cart-tools {
  padding: 24px 22px 22px;
}

body.ec-site .ec-cart-tools-head {
  margin-bottom: 20px;
}

body.ec-site .ec-cart-book-cover,
body.ec-site .ec-favorite-cover {
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(58, 30, 24, 0.12);
}

body.ec-site .ec-store-icon-button,
body.ec-site .ec-store-icon-link {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body.ec-site .ec-store-icon-button:hover,
body.ec-site .ec-store-icon-link:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 149, 63, 0.45);
  box-shadow: 0 14px 28px rgba(58, 30, 24, 0.12);
}

body.ec-site .ec-qty-wrapper {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
}

body.ec-site .ec-store-mini-points {
  margin: 18px 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 10px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--ec-muted);
}

body.ec-site .ec-store-mini-points li::marker {
  color: var(--ec-gold);
}

body.ec-site .ec-favorite-row {
  grid-template-columns: 108px minmax(0, 1fr) 132px auto;
  padding: 35px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 32px rgba(58, 30, 24, 0.05);
}

body.ec-site .ec-favorite-actions {
  gap: 12px;
}

body.ec-site .ec-store-order-card,
body.ec-site .ec-store-check-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 34px rgba(58, 30, 24, 0.06);
}

body.ec-site .ec-store-order-head,
body.ec-site .ec-store-order-footer {
  border-color: rgba(104, 73, 62, 0.12);
}

body.ec-site .ec-store-summary-card,
body.ec-site .ec-store-sidebar-card {
  border-radius: 26px;
}

body.ec-site .ec-store-summary-card .btn,
body.ec-site .ec-store-sidebar-card .btn {
  min-height: 48px;
}

body.ec-site .ec-store-page .btn {
  font-weight: 600;
}

body.ec-site .ec-store-page .btn-dark {
  background: linear-gradient(180deg, #4b100d 0%, #2f0806 100%);
  border-color: #2f0806;
}

body.ec-site .ec-store-page .btn-outline-dark {
  border-color: rgba(75, 16, 13, 0.18);
  color: var(--ec-ink);
}

body.ec-site .ec-store-grid-six .ec-book-card-compact-shop {
  height: 100%;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 241, 234, 0.96)),
    radial-gradient(circle at top right, rgba(200, 149, 63, 0.12), transparent 26%);
}

body.ec-site .ec-store-grid-six .ec-book-card-compact-shop .ec-book-cover {
  aspect-ratio: 4 / 5.35;
  background:
    linear-gradient(180deg, rgba(255, 248, 243, 0.92), rgba(239, 232, 226, 0.98)),
    radial-gradient(circle at top, rgba(200, 149, 63, 0.14), transparent 34%);
}

body.ec-site .ec-store-grid-six .ec-book-card-compact-shop .ec-book-body {
  padding: 14px 14px 15px;
}

body.ec-site .ec-store-grid-six .ec-book-card-compact-shop .ec-book-title {
  margin: 8px 0 0;
  font-family: 'Fraunces', serif;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

body.ec-site .ec-store-grid-six .ec-book-card-compact-shop .ec-book-title a {
    color: var(--ec-ink);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    min-height: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.ec-site .ec-store-grid-six .ec-book-card-compact-shop .ec-book-price-row {
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 12px;
    padding-bottom: 10px;
}

body.ec-site .ec-store-grid-six .ec-book-card-compact-shop .ec-book-price strong {
  display: block;
  font-size: 16px;
  line-height: 1.1;
}

body.ec-site .ec-store-grid-six .ec-book-card-compact-shop .ec-price-old {
  display: block;
  margin-top: 4px;
  font-size: 11px;
}

body.ec-site .ec-store-grid-six .ec-book-card-compact-shop .ec-book-mini-actions {
    margin-top: auto;
    padding-top: 0;
}

body.ec-site .ec-store-grid-six .ec-book-card-compact-shop .ec-book-mini-link {
  font-size: 11px;
}

body.ec-site .ec-store-grid-six .ec-book-card-compact-shop .ec-book-mini-cart {
    min-width: 112px;
    min-height: 40px;
    border-radius: 999px;
    border: solid 1px #939393;
}

body.ec-site .ec-store-grid-six .ec-book-card-compact-shop .ec-book-support-copy {
    min-height: 2.9rem;
    align-items: center;
}

body.ec-site .ec-store-grid-six .ec-book-card-compact-shop .ec-book-status,
body.ec-site .ec-store-grid-six .ec-book-card-compact-shop .ec-book-category-chip {
  min-height: 30px;
  font-size: 10px;
}

@media (max-width: 1199.98px) {
  body.ec-site .ec-store-hero-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  body.ec-site {
    padding-bottom: 92px;
  }

  body.ec-site .ec-store-hero,
  body.ec-site .ec-store-confirmation-panel {
    padding: 24px;
  }

  body.ec-site .ec-store-panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  body.ec-site .ec-store-panel-meta {
    justify-content: flex-start;
  }

  body.ec-site .ec-store-hero-points,
  body.ec-site .ec-store-discovery-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.ec-site .ec-store-grid-six .col-xl-2 {
    flex: 0 0 auto;
    width: 25%;
  }

  body.ec-site .ec-cart-row {
    margin: 0 18px;
  }

  body.ec-site .ec-mobile-dock {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(75, 16, 13, 0.12);
    border-radius: 24px;
    background: rgba(255, 251, 248, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 36px rgba(42, 27, 14, 0.14);
  }

  body.ec-site .ec-mobile-dock-link {
    display: grid;
    gap: 6px;
    justify-items: center;
    padding: 8px 4px;
    border-radius: 16px;
    color: var(--ec-muted);
    font-size: 11px;
    font-weight: 700;
  }

  body.ec-site .ec-mobile-dock-link i {
    font-size: 18px;
    color: var(--ec-ink);
  }

  body.ec-site .ec-mobile-dock-link.is-active {
    background: rgba(75, 16, 13, 0.08);
    color: var(--ec-ink);
  }

  body.ec-site .ec-mobile-dock-link.is-active i {
    color: #3b0a06;
  }

  body.ec-site .ec-header-search-shell {
    display: none;
  }

  body.ec-site .ec-mobile-search-panel {
    width: 100%;
    height: min(82vh, 560px);
    border: 0;
    border-radius: 28px 28px 0 0;
    background: linear-gradient(180deg, #fffdfb 0%, #fff8f3 100%);
    box-shadow: 0 -18px 48px rgba(42, 27, 14, 0.18);
  }

  body.ec-site .ec-mobile-search-header {
    align-items: flex-start;
    gap: 12px;
    padding: 18px 18px 12px;
    border-bottom: 1px solid rgba(75, 16, 13, 0.08);
  }

  body.ec-site .ec-mobile-search-kicker {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ec-gold);
  }

  body.ec-site .ec-mobile-search-title {
    margin: 0;
    font-family: 'Fraunces', serif;
    font-size: 18px;
    line-height: 1.08;
    color: var(--ec-ink);
  }

    body.ec-site .ec-mobile-search-body {
        display: block;
        gap: 12px;
        padding: 16px 18px calc(env(safe-area-inset-bottom) + 18px);
        overflow-y: auto;
    }


  body.ec-site .ec-mobile-search-copy {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: var(--ec-muted);
  }

    body.ec-site .ec-mobile-search-shell {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        width: 100%;
        margin-top: 10px;
    }

  body.ec-site .ec-mobile-search-shell .ec-search-divider,
  body.ec-site .ec-mobile-search-shell .ec-search-select {
    display: none;
  }

  body.ec-site .ec-mobile-search-shell input {
    min-width: 0;
    font-size: 16px;
  }

  body.ec-site .ec-mobile-search-shell .ec-search-submit {
    width: 50px;
    height: 42px;
  }

  body.ec-site .ec-mobile-search-shell .ec-search-suggestions {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    margin-top: 12px;
    max-height: min(48vh, 320px);
    box-shadow: none;
  }
}

@media (max-width: 767.98px) {
  body.ec-site .ec-whatsapp-fab {
    bottom: 96px;
  }

  body.ec-site .ec-store-hero,
  body.ec-site .ec-store-panel,
  body.ec-site .ec-store-sidebar-card,
  body.ec-site .ec-store-confirmation-panel {
    padding: 18px;
    border-radius: 24px;
  }

  body.ec-site .ec-catalog-filter-panel,
  body.ec-site .ec-store-results-panel,
  body.ec-site .ec-store-shelf-panel {
    padding: 18px;
  }

  body.ec-site .ec-store-hero-points,
  body.ec-site .ec-store-discovery-grid {
    grid-template-columns: 1fr;
  }

  body.ec-site .ec-store-note-card {
    padding: 18px;
    border-radius: 22px;
  }

  body.ec-site .ec-store-results-head,
  body.ec-site .ec-store-results-tools {
    align-items: stretch;
  }

  body.ec-site .ec-store-results-head,
  body.ec-site .ec-store-results-tools,
  body.ec-site .ec-store-results-actions {
    flex-direction: column;
  }

  body.ec-site .ec-store-hero-actions .btn,
  body.ec-site .ec-store-empty-actions .btn,
  body.ec-site .ec-store-results-actions .btn {
    width: 100%;
  }

  body.ec-site .ec-store-chip-list,
  body.ec-site .ec-store-suggestion-row,
  body.ec-site .ec-store-pill-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  body.ec-site .ec-store-chip-list > *,
  body.ec-site .ec-store-suggestion-row > *,
  body.ec-site .ec-store-pill-list > * {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  body.ec-site .ec-store-filter-form .row {
    --bs-gutter-y: 0.85rem;
  }

  body.ec-site .ec-store-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

    body.ec-site .ec-search-shell input {
        font-size: 12px;
    }

  body.ec-site .ec-cart-head {
    padding: 0 16px 4px;
  }

  body.ec-site .ec-cart-row {
    margin: 0 16px;
    padding: 16px;
  }

  body.ec-site .ec-cart-tools {
    padding: 20px 16px 16px;
  }

  body.ec-site .ec-favorite-row {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  body.ec-site .ec-favorite-cover {
    max-width: 110px;
  }

  body.ec-site .ec-store-discovery-chip {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  body.ec-site .ec-store-discovery-count {
    grid-column: 1 / -1;
    justify-self: flex-start;
  }

  body.ec-site .ec-store-suggestion-row,
  body.ec-site .ec-store-chip-list {
    gap: 8px;
  }

  body.ec-site .ec-store-suggestion-chip {
    width: 100%;
  }

  body.ec-site .ec-store-grid-six .col-6,
  body.ec-site .ec-store-grid-six .col-md-4,
  body.ec-site .ec-store-grid-six .col-xl-2 {
    width: 50%;
  }
}

@media (max-width: 575.98px) {
  body.ec-site .ec-store-grid-six .col-6,
  body.ec-site .ec-store-grid-six .col-md-4,
  body.ec-site .ec-store-grid-six .col-xl-2 {
    width: 50%;
  }
}

body.ec-site .ec-home-banner-ribbon {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

body.ec-site .ec-home-banner-card {
  display: grid;
  grid-template-columns: minmax(140px, 168px) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  min-height: 136px;
  border-radius: 24px;
  background: rgba(255, 251, 252, 0.92);
  border: 1px solid rgba(188, 188, 190, 0.45);
  box-shadow: 0 18px 38px rgba(31, 20, 18, 0.1);
  color: inherit;
  text-decoration: none;
}

body.ec-site .ec-home-banner-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(31, 20, 18, 0.14);
}

body.ec-site .ec-home-banner-media {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16 / 9;
  background: rgba(75, 16, 13, 0.08);
}

body.ec-site .ec-home-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.ec-site .ec-home-banner-copy {
  display: grid;
  gap: 6px;
}

body.ec-site .ec-home-banner-copy strong {
  font-size: 16px;
  color: var(--ec-ink);
}

body.ec-site .ec-home-banner-copy small {
  color: var(--ec-muted);
  font-size: 14px;
}

body.ec-site .ec-home-banner-copy em {
  color: var(--ec-green);
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
}

body.ec-site .ec-home-banner-showcase {
  padding-top: 4px;
}

body.ec-site .ec-home-section-banner {
  margin-top: 18px;
}

body.ec-site .ec-home-section-banner .ec-home-banner-card {
  width: 100%;
}

body.ec-site .ec-home-banner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body.ec-site .ec-home-banner-panel {
  position: relative;
  min-height: 240px;
  border-radius: 28px;
  overflow: hidden;
  padding: 26px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 50px rgba(31, 20, 18, 0.14);
}

body.ec-site .ec-home-banner-panel-copy {
  display: grid;
  gap: 8px;
  max-width: 24rem;
  color: #fffaf5;
}

body.ec-site .ec-home-banner-panel-copy strong {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
}

body.ec-site .ec-home-banner-panel-copy small,
body.ec-site .ec-home-banner-panel-copy span {
  font-size: 15px;
  color: rgba(255, 250, 245, 0.88);
}

body.ec-site :is(
  .ec-home-benefit-icon,
  .ec-home-category-icon,
  .ec-home-club-icon,
  .ec-home-promo-icon,
  .ec-home-note-icon,
  .ec-store-hero-point-icon,
  .ec-store-discovery-icon,
  .ec-detail-spec-icon,
  .ec-detail-benefit-icon,
  .ec-store-confirmation-icon,
  .ec-sidebar-icon,
  .ec-quick-icon,
  .ec-empty-icon,
  .ec-cart-pill-icon
) {
  display: grid;
  place-items: center;
  text-align: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  min-width: 54px;
  min-height: 54px;
  border-radius: 18px;
  font-size: 22px;
  line-height: 1;
}

body.ec-site .ec-store-confirmation-icon,
body.ec-site .ec-home-club-icon {
  border-radius: 50%;
}

body.ec-site .ec-empty-icon {
  width: 84px;
  height: 84px;
  min-width: 84px;
  min-height: 84px;
  border-radius: 26px;
  font-size: 32px;
}

body.ec-site .ec-cart-pill-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  font-size: 20px;
}

body.ec-admin .ec-banner-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body.ec-admin .ec-banner-admin-card {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(188, 188, 190, 0.45);
  background: rgba(255, 251, 252, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

body.ec-admin .ec-banner-admin-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}

body.ec-admin .ec-banner-admin-preview {
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 16 / 9;
  background: rgba(75, 16, 13, 0.08);
  border: 1px solid rgba(188, 188, 190, 0.45);
}

body.ec-admin .ec-banner-admin-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991.98px) {
  body.ec-site .ec-home-banner-ribbon,
  body.ec-site .ec-home-banner-grid,
  body.ec-admin .ec-banner-admin-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  body.ec-site .ec-home-banner-card {
    grid-template-columns: 1fr;
  }

  body.ec-site .ec-home-banner-panel {
    min-height: 190px;
    padding: 20px;
    border-radius: 24px;
  }
}

body.ec-site .ec-brand-mark-wordmark {
  width: clamp(170px, 22vw, 260px);
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.ec-site .ec-brand-logo-wordmark {
    width: auto;
}

body.ec-site .ec-home-benefit-icon {
  width: 52px;
  height: 52px;
  flex-basis: 52px;
  border-radius: 18px;
  font-size: 19px;
}

body.ec-site .ec-home-category-card {
  min-height: 86px;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(247, 241, 235, 0.96));
  box-shadow: 0 16px 32px rgba(58, 30, 24, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

body.ec-site .ec-home-category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 149, 63, 0.45);
  box-shadow: 0 20px 36px rgba(58, 30, 24, 0.12);
}

body.ec-site .ec-home-category-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  font-size: 20px;
}

body.ec-site .ec-home-promo-card {
  min-height: 122px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.ec-site .ec-home-promo-card:hover {
  transform: translateY(-3px);
}

body.ec-site .ec-home-promo-icon {
  width: 56px;
  height: 56px;
  right: 14px;
  bottom: 12px;
  font-size: 25px;
}

body.ec-site .ec-store-discovery-chip {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.96), rgba(247, 241, 235, 0.94));
  box-shadow: 0 16px 32px rgba(58, 30, 24, 0.08);
}

body.ec-site .ec-store-discovery-chip:hover {
  transform: translateY(-3px);
}

body.ec-site .ec-store-discovery-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  font-size: 20px;
}

body.ec-site .ec-store-discovery-count {
  min-width: 46px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
}

body.ec-site .ec-home-banner-card-media-only {
  display: block;
  padding: 0;
  border-radius: 26px;
  overflow: hidden;
  min-height: 250px;
  background: rgba(75, 16, 13, 0.08);
  box-shadow: 0 24px 50px rgba(31, 20, 18, 0.14);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.ec-site .ec-home-banner-card-media-only:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px rgba(31, 20, 18, 0.16);
}

body.ec-site .ec-home-banner-media-full {
  display: block;
  aspect-ratio: 21 / 8;
  border-radius: 0;
}

body.ec-site .ec-home-banner-media-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.ec-site .ec-detail-rating-row {
  align-items: flex-start;
}

body.ec-site .ec-detail-rating-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(232, 221, 212, 0.92);
  border-radius: 18px;
  background: rgba(247, 244, 241, 0.72);
}

body.ec-site .ec-detail-rating-form-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 12px;
}

body.ec-site .ec-detail-rating-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ec-muted);
}

body.ec-site .ec-detail-rating-hint {
  font-size: 12px;
  font-weight: 700;
  color: var(--ec-wine);
}

body.ec-site .ec-detail-rating-stars {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 6px;
}

body.ec-site .ec-rating-star {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: rgba(177, 144, 98, 0.28);
  box-shadow: inset 0 0 0 1px rgba(200, 149, 63, 0.12);
  transition: transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

body.ec-site .ec-rating-star:hover,
body.ec-site .ec-rating-star:hover ~ .ec-rating-star,
body.ec-site .ec-rating-star.is-active {
  color: #c8a165;
  box-shadow: inset 0 0 0 1px rgba(200, 149, 63, 0.35), 0 12px 22px rgba(58, 30, 24, 0.1);
  transform: translateY(-2px) scale(1.05);
}

body.ec-site .ec-rating-star:focus-visible {
  outline: 2px solid rgba(75, 16, 13, 0.45);
  outline-offset: 2px;
}

@media (max-width: 767.98px) {
  body.ec-site .ec-brand-mark-wordmark {
    width: min(56vw, 220px);
  }

  body.ec-site .ec-home-category-card,
  body.ec-site .ec-store-discovery-chip {
    grid-template-columns: 50px minmax(0, 1fr);
    grid-template-areas: "icon copy" "count count";
  }

  body.ec-site .ec-store-discovery-chip {
    justify-content: start;
  }

  body.ec-site .ec-store-discovery-icon,
  body.ec-site .ec-home-category-icon {
    width: 50px;
    height: 50px;
    font-size: 17px;
  }

  body.ec-site .ec-store-discovery-count {
    grid-column: 2 / -1;
    justify-self: start;
  }

  body.ec-site .ec-home-banner-card-media-only {
    min-height: 180px;
  }

  body.ec-site .ec-detail-rating-stars {
    flex-wrap: wrap;
  }

  body.ec-site .ec-rating-star {
    width: 38px;
    height: 38px;
  }
}

body.ec-site,
body.ec-admin {
  font-size: 13px;
}

body.ec-site .ec-display,
body.ec-site .ec-display-sm,
body.ec-site .ec-section-title,
body.ec-site .ec-home-section-title,
body.ec-site .ec-home-hero-title,
body.ec-site .ec-detail-title,
body.ec-site .ec-summary-title,
body.ec-site .ec-rail-title,
body.ec-site .ec-card-title,
body.ec-site .ec-promo-copy h3,
body.ec-site .ec-home-promo-copy h3,
body.ec-site .ec-sidebar-title,
body.ec-site .ec-home-club-card h3,
body.ec-site .ec-admin-topbar h1 {
  font-size: 35px;
}

body.ec-site .ec-home-hero-subtitle,
body.ec-site .ec-home-hero-description,
body.ec-site .ec-lead,
body.ec-site .ec-copy,
body.ec-site .ec-book-excerpt,
body.ec-site .ec-detail-author,
body.ec-site .ec-detail-rating-row,
body.ec-site .ec-detail-summary-copy,
body.ec-site .ec-book-byline,
body.ec-site .ec-home-banner-copy small,
body.ec-site .ec-home-category-copy small,
body.ec-site .ec-home-promo-copy p,
body.ec-site .ec-book-card-compact .ec-book-title,
body.ec-site .ec-book-card-compact .ec-book-support-copy,
body.ec-site .ec-book-card-compact-related .ec-book-byline,
body.ec-site .ec-book-card-compact-shop .ec-book-support-copy {
  font-size: 14px;
}

body.ec-site .ec-book-card-compact .ec-book-title,
body.ec-site .ec-book-card-compact .ec-book-support-copy,
body.ec-site .ec-book-card-compact-related .ec-book-byline,
body.ec-site .ec-book-card-compact-shop .ec-book-support-copy {
  font-size: 13px;
}

body.ec-site .ec-book-card-compact .ec-book-price strong,
body.ec-site .ec-book-card-compact-related .ec-book-price strong,
body.ec-site .ec-book-card-compact-shop .ec-book-price strong,
body.ec-site .ec-home-category-copy strong,
body.ec-site .ec-home-banner-copy strong,
body.ec-site .ec-detail-spec-card strong,
body.ec-site .ec-detail-meta-card strong,
body.ec-site .ec-detail-opinion-card strong,
body.ec-site .ec-detail-reader-card strong {
  font-size: 13px;
}

body.ec-site .ec-detail-related-carousel {
  grid-auto-columns: minmax(100%, 100%);
}



.form-control, .form-select {

    font-size: 13px!important;

}

body.ec-site :is( .ec-home-benefit-icon, .ec-home-category-icon, .ec-home-club-icon, .ec-home-promo-icon, .ec-home-note-icon, .ec-store-hero-point-icon, .ec-store-discovery-icon, .ec-detail-spec-icon, .ec-detail-benefit-icon, .ec-store-confirmation-icon, .ec-sidebar-icon, .ec-quick-icon, .ec-empty-icon, .ec-cart-pill-icon ) {
    display: grid;
    place-items: center;
    text-align: center;
    flex: 0 0 38px;
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    border-radius: 18px;
    font-size: 22px;
    line-height: 1;
    left: 1;
    margin-left: -6px;
    border: solid 1px;
    font-size: 17px;
}

.accordion-button {
    font-size: 13px;
    font-weight: 600;
}

.btn{
  font-size: 13px!important;
}

body.ec-site .btn-outline-dark, body.ec-site .btn-outline-dark:hover, body.ec-site .btn-outline-dark:focus {
    color: var(--ec-wine);
    border-color: rgba(177, 144, 98, 0.44);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
}

body.ec-site .btn-dark, body.ec-site .btn-dark:hover, body.ec-site .btn-dark:focus {
    background: var(--ec-wine);
    border-color: var(--ec-wine);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: var(--bs-dropdown-item-border-radius, 0);
    font-size: 13px;
}

.ec-page-loader {
  position: fixed;
  inset: 0;
  z-index: 1085;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 248, 243, 0.76);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.ec-page-loader-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ec-wine);
}

.ec-page-loader-spinner {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(75, 16, 13, 0.18);
  border-top-color: var(--ec-wine);
  animation: ec-page-loader-spin 0.8s linear infinite;
}

html[data-ec-loading] .ec-page-loader {
  opacity: 1;
  visibility: visible;
}

html[data-ec-loading] body {
  cursor: progress;
}

@keyframes ec-page-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

body.ec-site .ec-detail-rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}

body.ec-site .ec-detail-rating-copy,
body.ec-site .ec-detail-rating-count {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(232, 221, 212, 0.92);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ec-muted);
  font-size: 12px;
  font-weight: 700;
}

body.ec-site .ec-detail-rating-count {
  color: var(--ec-wine);
}

body.ec-site .ec-detail-rating-form,
body.ec-site .ec-detail-review-login,
body.ec-site .ec-detail-featured-review,
body.ec-site .ec-detail-reviews-panel,
body.ec-site .ec-detail-review-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(232, 221, 212, 0.94);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 243, 239, 0.94));
  box-shadow: 0 18px 40px rgba(31, 20, 18, 0.08);
}

body.ec-site .ec-detail-rating-form {
  gap: 14px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(246, 241, 236, 0.96));
}

body.ec-site .ec-detail-rating-form-head {
  align-items: center;
}

body.ec-site .ec-detail-rating-label {
  color: var(--ec-wine);
}

body.ec-site .ec-detail-rating-hint {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(75, 16, 13, 0.08);
}

body.ec-site .ec-detail-review-author {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(232, 221, 212, 0.92);
}

body.ec-site .ec-detail-review-author small,
body.ec-site .ec-detail-review-login p,
body.ec-site .ec-detail-reviews-head p,
body.ec-site .ec-detail-featured-review small,
body.ec-site .ec-detail-review-card small {
  color: var(--ec-muted);
}

body.ec-site .ec-detail-review-copy-group {
  display: grid;
  gap: 8px;
}

body.ec-site .ec-review-comment-input {
  min-height: 126px;
  resize: vertical;
  border-radius: 18px;
  border: 1px solid rgba(211, 196, 183, 0.95);
  background: #ffffff;
}

body.ec-site .ec-review-comment-input:focus {
  border-color: rgba(75, 16, 13, 0.32);
  box-shadow: 0 0 0 0.2rem rgba(75, 16, 13, 0.08);
}

body.ec-site .ec-detail-rating-stars {
  gap: 8px;
}

body.ec-site .ec-rating-star {
  display: grid;
  place-items: center;
  font-size: 18px;
  border: 1px solid rgba(200, 149, 63, 0.14);
  background: rgba(255, 255, 255, 0.9);
}

body.ec-site .ec-rating-star.is-active {
  background: linear-gradient(180deg, #fff7e7, #fffdf8);
}

body.ec-site .ec-detail-review-login {
  display: grid;
  gap: 16px;
  padding: 18px 20px;
}

body.ec-site .ec-detail-review-login-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.ec-site .ec-detail-review-login-actions .btn,
body.ec-site .ec-detail-review-actions .btn,
body.ec-site .ec-detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 8px;
  min-height: 44px;
}

body.ec-site .ec-detail-review-actions {
  display: flex;
  justify-content: flex-end;
}

body.ec-site .ec-detail-review-submit {
  min-width: min(220px, 100%);
}

body.ec-site .ec-detail-reviews-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
}

body.ec-site .ec-detail-reviews-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 16px;
  align-items: flex-start;
}

body.ec-site .ec-detail-reviews-head h3,
body.ec-site .ec-detail-featured-review-head h3 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 2.4vw, 24px);
  letter-spacing: -0.02em;
  color: var(--ec-ink);
}

body.ec-site .ec-detail-reviews-count {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(200, 149, 63, 0.18);
  background: rgba(255, 248, 240, 0.92);
  color: var(--ec-wine);
  font-size: 12px;
  font-weight: 800;
}

body.ec-site .ec-detail-featured-review,
body.ec-site .ec-detail-review-card {
  padding: 20px;
}

body.ec-site .ec-detail-featured-review {
  display: grid;
  gap: 14px;
  margin-top: 20px;
  background:
    radial-gradient(circle at top right, rgba(200, 161, 101, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(248, 243, 238, 0.96));
}

body.ec-site .ec-detail-featured-review::before,
body.ec-site .ec-detail-review-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--ec-wine), rgba(200, 161, 101, 0.9));
}

body.ec-site .ec-detail-featured-review-head,
body.ec-site .ec-detail-review-card-head,
body.ec-site .ec-detail-review-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

body.ec-site .ec-detail-featured-review-head {
  justify-content: space-between;
  flex-wrap: wrap;
}

body.ec-site .ec-detail-review-kicker {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--ec-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.ec-site .ec-detail-review-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(200, 161, 101, 0.12);
  color: var(--ec-wine);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.ec-site .ec-detail-review-avatar {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ec-wine), #9b5f2b);
  color: #fffaf5;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 24px rgba(75, 16, 13, 0.18);
}

body.ec-site .ec-detail-review-author-row strong,
body.ec-site .ec-detail-review-card strong,
body.ec-site .ec-detail-featured-review strong {
  color: var(--ec-ink);
  font-weight: 800;
}

body.ec-site .ec-detail-review-stars,
body.ec-site .ec-detail-review-stars-inline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ec-gold);
}

body.ec-site .ec-detail-review-stars i,
body.ec-site .ec-detail-review-stars-inline i {
  font-size: 13px;
}

body.ec-site .ec-detail-featured-review p,
body.ec-site .ec-detail-review-card p {
  margin: 0;
  color: var(--ec-ink);
  line-height: 1.75;
}

body.ec-site .ec-detail-review-card {
  min-height: 100%;
}

body.ec-site .ec-detail-review-carousel {
  padding-top: 4px;
}

body.ec-site .ec-detail-review-carousel .ec-carousel-item {
  min-width: 0;
}

body.ec-site .ec-detail-review-carousel .ec-detail-review-card {
  height: 100%;
}

body.ec-site .ec-detail-review-carousel .ec-detail-review-card p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
}

body.ec-site .ec-detail-review-login-actions .btn {
  white-space: normal;
}

@media (max-width: 767.98px) {
  body.ec-site .ec-detail-reviews-panel,
  body.ec-site .ec-detail-rating-form,
  body.ec-site .ec-detail-review-login,
  body.ec-site .ec-detail-featured-review,
  body.ec-site .ec-detail-review-card {
    border-radius: 20px;
  }

  body.ec-site .ec-detail-reviews-panel {
    padding: 16px;
  }

  body.ec-site .ec-detail-review-login-actions,
  body.ec-site .ec-detail-review-actions {
    width: 100%;
  }

  body.ec-site .ec-detail-review-login-actions .btn,
  body.ec-site .ec-detail-review-actions .btn {
    width: 100%;
  }

  body.ec-site .ec-detail-review-author-row,
  body.ec-site .ec-detail-featured-review-head,
  body.ec-site .ec-detail-review-card-head,
  body.ec-site .ec-detail-review-login {
    align-items: flex-start;
  }

  body.ec-site .ec-detail-rating-stars {
    flex-wrap: wrap;
  }
}

@media (max-width: 767.98px) {
  body.ec-site .ec-home-page {
    margin-top: 0;
  }

  body.ec-site .ec-home-hero-bleed {
    margin-bottom: 30px;
  }

  body.ec-site .ec-home-hero-frame {
    padding: 8px 12px 0;
  }

  body.ec-site .ec-home-hero-panel {
    gap: 12px;
    align-items: stretch;
  }

  body.ec-site .ec-home-hero-copy {
    padding: 4px 0 0;
  }

  body.ec-site .ec-home-eyebrow {
    margin-bottom: 6px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  body.ec-site .ec-home-hero-title {
    font-size: clamp(28px, 9vw, 34px);
  }

  body.ec-site .ec-home-hero-subtitle {
    margin-top: 6px;
    font-size: clamp(20px, 6.5vw, 26px);
  }

  body.ec-site .ec-home-hero-description {
    max-width: none;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.6;
  }

  body.ec-site .ec-home-hero-copy > .d-flex.flex-wrap.gap-2.mt-3 {
    display: none !important;
  }

  body.ec-site .ec-home-hero-cta {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    margin-top: 16px;
  }

  body.ec-site .ec-home-hero-visual {
    min-height: 0;
  }

  body.ec-site .ec-home-hero-backdrop {
    inset: 0;
    width: 100%;
    border-radius: 22px;
  }

  body.ec-site .ec-home-hero-watermark {
    display: none;
  }

  body.ec-site .ec-home-spotlight-card {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 12px;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
    border-radius: 18px;
  }

  body.ec-site .ec-home-spotlight-cover img {
    min-height: 116px;
  }

  body.ec-site .ec-home-spotlight-body h2 {
    margin: 6px 0 4px;
    font-size: 14px;
    line-height: 1.15;
  }

  body.ec-site .ec-home-spotlight-body p {
    font-size: 11px;
    line-height: 1.45;
  }

  body.ec-site .ec-home-spotlight-price {
    margin-top: 10px;
  }

  body.ec-site .ec-home-spotlight-price strong {
    font-size: 14px;
  }

  body.ec-site .ec-home-spotlight-price span {
    font-size: 11px;
  }

  body.ec-site .ec-home-benefits-bar {
    top: 0;
    margin-top: 10px;
    padding: 12px;
    border-radius: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body.ec-site .ec-home-benefit,
  body.ec-site .ec-home-payments {
    gap: 8px;
  }

    body.ec-site .ec-home-benefit strong, body.ec-site .ec-home-payments-label {
        font-size: 12px;
        padding-bottom: 10px;
    }

  body.ec-site .ec-home-benefit small {
    font-size: 10px;
  }

  body.ec-site .ec-home-benefit-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  body.ec-site .ec-home-payments {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  body.ec-site .ec-home-payments-list {
    width: 100%;
    gap: 6px;
  }

  body.ec-site .ec-home-payments-list span {
    font-size: 10px;
    padding: 4px 7px;
  }

  body.ec-site .ec-home-section {
    margin-bottom: 24px;
  }

  body.ec-site .ec-home-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
  }

  body.ec-site .ec-home-section-head h2 {
    font-size: clamp(20px, 7.8vw, 28px);
    line-height: 1.08;
  }

  body.ec-site .ec-store-text-link {
    font-size: 11px;
  }

  body.ec-site .ec-home-categories-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.ec-site .ec-home-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body.ec-site .ec-home-category-card {
    min-height: 68px;
    padding: 10px;
    gap: 8px;
    grid-template-columns: 42px minmax(0, 1fr);
    border-radius: 16px;
  }

  body.ec-site .ec-home-category-icon {
    width: 42px;
    height: 42px;
    font-size: 16px;
    border-radius: 14px;
  }

  body.ec-site .ec-home-category-copy strong {
    font-size: 12px;
    line-height: 1.15;
  }

  body.ec-site .ec-home-category-copy small {
    margin-top: 2px;
    font-size: 10px;
  }

  body.ec-site .ec-home-club-card {
    grid-column: 1 / -1;
    min-height: 0;
    padding: 14px;
    border-radius: 18px;
  }

  body.ec-site .ec-home-club-icon {
    width: 36px;
    height: 36px;
  }

  body.ec-site .ec-home-club-card h3 {
    margin-top: 10px;
    font-size: 15px;
  }

  body.ec-site .ec-home-club-card p {
    font-size: 11px;
    line-height: 1.55;
  }

  body.ec-site .ec-home-club-card a {
    margin-top: 10px;
    font-size: 11px;
  }

  body.ec-site .ec-home-banner-carousel .carousel-indicators {
    margin-bottom: 0.5rem;
  }

  body.ec-site .ec-home-banner-card-media-only {
    min-height: 150px;
    border-radius: 20px;
  }

  body.ec-site .ec-home-banner-media-full {
    aspect-ratio: 16 / 8;
  }

  body.ec-site .ec-home-banner-card {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 10px;
    padding: 12px;
    border-radius: 18px;
  }

  body.ec-site .ec-home-banner-media {
    aspect-ratio: 16 / 7;
    border-radius: 14px;
  }

  body.ec-site .ec-home-banner-copy strong {
    font-size: 14px;
  }

  body.ec-site .ec-home-banner-copy small,
  body.ec-site .ec-home-banner-copy em {
    font-size: 11px;
  }

  body.ec-site .ec-home-banner-panel {
    min-height: 168px;
    padding: 18px;
    border-radius: 20px;
  }

  body.ec-site .ec-home-banner-ribbon {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  body.ec-site .ec-home-promos {
    gap: 10px;
  }

  body.ec-site .ec-home-promo-card {
    min-height: 84px;
    padding: 14px;
    border-radius: 16px;
  }

  body.ec-site .ec-home-promo-copy h3 {
    font-size: 15px;
  }

  body.ec-site .ec-home-promo-copy p {
    max-width: none;
    font-size: 11px;
    line-height: 1.45;
  }

  body.ec-site .ec-home-promo-icon {
    width: 36px;
    height: 36px;
    right: 12px;
    bottom: 10px;
    font-size: 18px;
  }

  body.ec-site .ec-home-social-grid {
    gap: 12px;
  }

  body.ec-site .ec-home-proof-panel,
  body.ec-site .ec-home-publishers-panel {
    padding: 14px;
    border-radius: 18px;
  }

  body.ec-site .ec-home-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body.ec-site .ec-home-testimonial-card {
    min-height: 0;
    padding: 14px;
    border-radius: 16px;
  }

  body.ec-site .ec-home-testimonial-card p {
    font-size: 11px;
    line-height: 1.55;
  }

  body.ec-site .ec-home-testimonial-card strong {
    margin-top: 10px;
    font-size: 11px;
  }

  body.ec-site .ec-home-publishers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body.ec-site .ec-home-publisher-card {
    min-height: 68px;
    padding: 12px;
    border-radius: 16px;
  }

  body.ec-site .ec-home-publisher-card span {
    font-size: 13px;
  }

  body.ec-site .ec-home-section .ec-store-grid-six > .col:nth-child(n+7) {
    display: none !important;
  }

  body.ec-site .ec-home-section .ec-store-grid-six {
    --bs-gutter-x: 0.8rem;
    --bs-gutter-y: 0.8rem;
  }

  body.ec-site .ec-store-shelf-panel {
    padding: 16px;
  }

  body.ec-site .ec-store-shelf-head {
    margin-bottom: 12px;
  }

  body.ec-site .ec-store-section-copy {
    font-size: 11px;
    line-height: 1.55;
  }

  body.ec-site .ec-store-grid-six .ec-book-card-compact-shop {
    border-radius: 18px;
  }

  body.ec-site .ec-store-grid-six .ec-book-card-compact-shop .ec-book-cover {
    aspect-ratio: 4 / 5.28;
  }

  body.ec-site .ec-store-grid-six .ec-book-card-compact-shop .ec-book-body {
    padding: 10px 10px 11px;
  }

  body.ec-site .ec-store-grid-six .ec-book-card-compact-shop .ec-book-byline {
    font-size: 9px;
  }

  body.ec-site .ec-store-grid-six .ec-book-card-compact-shop .ec-book-title {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.18;
  }

  body.ec-site .ec-store-grid-six .ec-book-card-compact-shop .ec-book-support-copy {
    min-height: 0;
    margin-top: 6px;
    font-size: 9px;
    line-height: 1.35;
  }

  body.ec-site .ec-store-grid-six .ec-book-card-compact-shop .ec-book-price-row {
    margin-top: 8px;
    padding-bottom: 0;
  }

  body.ec-site .ec-store-grid-six .ec-book-card-compact-shop .ec-book-price strong {
    font-size: 14px;
  }

  body.ec-site .ec-store-grid-six .ec-book-card-compact-shop .ec-book-discount {
    min-height: 22px;
    padding: 3px 7px;
    font-size: 8px;
  }

  body.ec-site .ec-store-grid-six .ec-book-card-compact-shop .ec-book-mini-actions {
    gap: 6px;
  }

  body.ec-site .ec-store-grid-six .ec-book-card-compact-shop .ec-book-mini-link {
    font-size: 9px;
  }

  body.ec-site .ec-store-grid-six .ec-book-card-compact-shop .ec-book-mini-cart {
    min-width: 82px;
    min-height: 32px;
    padding: 0 8px;
    font-size: 9px;
  }

  body.ec-site .ec-store-grid-six .ec-book-card-compact-shop .ec-book-status,
  body.ec-site .ec-store-grid-six .ec-book-card-compact-shop .ec-book-category-chip {
    min-height: 22px;
    padding: 3px 7px;
    font-size: 8px;
  }
}

@media (max-width: 1199.98px) {
  body.ec-site .ec-store-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  body.ec-site .ec-store-hero-title {
    max-width: none;
  }

  body.ec-site .ec-store-hero-aside {
    min-width: 0;
  }
}

@media (max-width: 767.98px) {
  body.ec-site .ec-store-hero {
    gap: 20px;
  }

  body.ec-site .ec-store-hero-description {
    max-width: none;
  }

  body.ec-site .ec-store-hero-point {
    grid-template-columns: 42px minmax(0, 1fr);
    justify-content: stretch;
    justify-items: stretch;
  }

  body.ec-site .ec-store-hero-point > div,
  body.ec-site .ec-store-note-card,
  body.ec-site .ec-store-stat-card,
  body.ec-site .ec-favorite-actions {
    min-width: 0;
  }

  body.ec-site .ec-store-hero-point p {
    max-width: none;
  }

  body.ec-site .ec-favorite-actions {
    width: 100%;
  }

  body.ec-site .ec-favorite-action-form,
  body.ec-site .ec-favorite-action-link {
    flex: 1 1 140px;
  }

  body.ec-site .ec-favorite-action-form .btn,
  body.ec-site .ec-favorite-action-link {
    width: 100%;
  }

  body.ec-site .ec-favorite-remove-form {
    flex: 0 0 auto;
  }

  body.ec-site .ec-favorite-actions .ec-store-icon-button {
    flex: 0 0 42px;
  }
}

@media (max-width: 575.98px) {
  body.ec-site .ec-store-hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  body.ec-site .ec-store-hero-actions .btn {
    width: 100%;
  }

  body.ec-site .ec-store-stat-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 767.98px) {
  body.ec-site .ec-catalog-results-tools,
  body.ec-site .ec-catalog-filter-meta,
  body.ec-site .ec-catalog-results-actions,
  body.ec-site .ec-catalog-filter-actions {
    width: 100%;
  }

  body.ec-site .ec-catalog-results-tools,
  body.ec-site .ec-catalog-filter-meta {
    display: grid;
    gap: 10px;
  }

  body.ec-site .ec-catalog-results-actions,
  body.ec-site .ec-catalog-filter-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body.ec-site .ec-catalog-results-actions .btn,
  body.ec-site .ec-catalog-filter-actions .btn {
    width: 100%;
  }

  body.ec-site .ec-catalog-quick-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
  }

  body.ec-site .ec-catalog-quick-links > * {
    min-width: 0;
  }

  body.ec-site .ec-catalog-quick-links .ec-store-suggestion-chip {
    width: 100%;
    min-height: 44px;
    padding-inline: 12px;
    text-align: center;
  }

  body.ec-site .ec-catalog-facets-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  body.ec-site .ec-catalog-results-actions,
  body.ec-site .ec-catalog-filter-actions,
  body.ec-site .ec-catalog-quick-links {
    grid-template-columns: minmax(0, 1fr);
  }
}
