/* caleung 公司网站 - 全站样式
 * 配色沿用现有 caleung.com：酒红 + 暖米 + 金边
 */

:root {
  --bg: #f4eee6;
  --paper: #fffaf3;
  --card: #fffdf9;
  --ink: #1f1713;
  --muted: #6f6258;
  --line: rgba(76, 43, 32, .13);
  --wine: #6e1f31;
  --wine-deep: #3d111d;
  --olive: #5b6a44;
  --gold: #c89b58;
  --shadow: 0 24px 70px rgba(43, 20, 15, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(200, 155, 88, .20), transparent 24%),
    radial-gradient(circle at top right, rgba(110, 31, 49, .16), transparent 30%),
    linear-gradient(180deg, #f6f0e7 0%, #f0e8dc 46%, #f7f1e8 100%);
  font-family: "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--wine); }
img { display: block; max-width: 100%; }

.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

/* ====== 顶部导航 ====== */
.nav {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-weight: 800;
  font-size: 22px;
  color: var(--wine-deep);
}
.nav-logo small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 15px;
}
.nav-links a {
  color: var(--ink);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--wine);
  border-bottom-color: var(--gold);
}

/* ====== Hero ====== */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}
.hero h1 {
  font-size: 44px;
  font-weight: 800;
  color: var(--wine-deep);
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}
.hero .tagline {
  font-size: 20px;
  color: var(--muted);
  margin-bottom: 32px;
}
.hero .stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
}
.hero .stat {
  text-align: center;
}
.hero .stat .num {
  font-size: 36px;
  font-weight: 800;
  color: var(--wine);
}
.hero .stat .label {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ====== 通用卡片网格 ====== */
.section {
  padding: 56px 0;
}
.section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--wine-deep);
  margin: 0 0 28px;
  text-align: center;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  margin-top: -20px;
  margin-bottom: 36px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
@media (max-width: 600px) {
  .grid { grid-template-columns: 1fr; }
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(43, 20, 15, .18);
}
.card-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: #eee9df;
  object-fit: cover;
}
.card-image-placeholder {
  background: linear-gradient(135deg, #d9cbb5, #b89f7e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}
.card-body {
  padding: 18px 20px;
}
.card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--wine-deep);
  margin: 0 0 4px;
}
.card-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}
.card-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(110, 31, 49, .08);
  color: var(--wine);
}
.badge.gold { background: rgba(200, 155, 88, .18); color: #8a6a30; }
.badge.olive { background: rgba(91, 106, 68, .15); color: var(--olive); }
.tier-badge { font-weight: 800; }
.tier-core_agent { background: rgba(110, 31, 49, .12); color: var(--wine); }
.tier-agent { background: rgba(200, 155, 88, .18); color: #8a6a30; }
.tier-parallel { background: rgba(55, 65, 81, .10); color: #374151; }
.tier-partner { background: rgba(91, 106, 68, .15); color: var(--olive); }

/* ====== 详情页 ====== */
.detail {
  padding: 48px 0;
}
.detail-header {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 760px) {
  .detail-header { grid-template-columns: 1fr; }
}
.detail-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.detail-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--wine-deep);
  margin: 0 0 12px;
}
.detail-subtitle {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 20px;
}
.detail-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
  font-size: 14px;
}
.detail-info dt {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.detail-info dd {
  margin: 0;
  font-weight: 600;
}

.detail-body {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
  box-shadow: var(--shadow);
  font-size: 15px;
  line-height: 1.8;
}
.detail-body h2 {
  font-size: 22px;
  color: var(--wine-deep);
  margin: 24px 0 12px;
}
.detail-body h2:first-child { margin-top: 0; }

/* ====== 产品详情完整资料页 ====== */
.product-hero {
  padding: 42px 0 24px;
}
.product-hero-shell {
  background:
    linear-gradient(135deg, rgba(61, 17, 29, .96), rgba(83, 39, 24, .92) 54%, rgba(91, 106, 68, .88));
  border-radius: 28px;
  box-shadow: var(--shadow);
  color: #fff8ef;
  overflow: hidden;
}
.product-hero-grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 36px;
  padding: 40px;
}
.product-bottle-card {
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
}
.product-bottle-card img {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
}
.product-bottle-placeholder {
  width: 100%;
  min-height: 320px;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
}
.product-summary h1 {
  margin: 10px 0 8px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}
.product-summary h1 span {
  font-weight: 500;
  color: rgba(255, 248, 239, .76);
}
.product-subtitle {
  color: rgba(255, 248, 239, .82);
  font-size: 17px;
}
.product-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 248, 239, .84);
  line-height: 1.85;
}
.product-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.product-fact,
.grape-panel {
  padding: 15px 17px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
}
.product-fact-label {
  color: rgba(255, 248, 239, .66);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.product-fact-value {
  font-weight: 700;
  line-height: 1.55;
}
.product-fact-value a {
  color: #fff8ef;
  border-bottom: 1px solid rgba(255, 248, 239, .38);
}
.grape-panel {
  margin-top: 14px;
}
.grape-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.grape-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .12);
}
.grape-item strong {
  color: #fff8ef;
}
.product-ratings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.product-rating {
  padding: 14px 12px;
  border-radius: 18px;
  text-align: center;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 248, 239, .82);
}
.product-rating.strong {
  background: rgba(200, 155, 88, .23);
  border-color: rgba(200, 155, 88, .38);
}
.product-rating-score {
  font-size: 26px;
  font-weight: 900;
  color: #fff8ef;
  line-height: 1.1;
}
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.product-actions .btn-ghost {
  color: #fff8ef;
  border-color: rgba(255, 248, 239, .34);
}
.product-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, .10);
  color: #fff;
}
.product-section-card {
  max-width: 960px;
  margin: 0 auto;
}
.richtext-block p,
.richtext-block ul,
.richtext-block ol,
.richtext-block blockquote {
  margin: 0 0 1em;
}
.richtext-block p:last-child,
.richtext-block ul:last-child,
.richtext-block ol:last-child,
.richtext-block blockquote:last-child {
  margin-bottom: 0;
}
.richtext-block ul,
.richtext-block ol {
  padding-left: 1.3em;
}
.richtext-block li + li {
  margin-top: .35em;
}
.richtext-block blockquote {
  padding-left: 14px;
  border-left: 3px solid rgba(76, 43, 32, .16);
}
.product-note-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.note-card {
  box-shadow: 0 16px 48px rgba(43, 20, 15, .07);
}
.product-story-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}
.story-card {
  box-shadow: 0 16px 48px rgba(43, 20, 15, .07);
}
.winemaker-portrait {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
}
@media (max-width: 900px) {
  .product-hero-grid,
  .product-story-grid {
    grid-template-columns: 1fr;
  }
  .product-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .product-hero-grid {
    padding: 24px;
  }
  .product-bottle-card {
    min-height: 300px;
  }
  .product-facts {
    grid-template-columns: 1fr;
  }
}

/* ====== 年份表格 ====== */
.vintage-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.vintage-table th {
  text-align: left;
  padding: 12px;
  background: rgba(110, 31, 49, .06);
  font-size: 13px;
  color: var(--wine);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.vintage-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
}
.vintage-table tr:last-child td { border-bottom: 0; }
.vintage-rating {
  font-weight: 800;
  color: var(--gold);
}

/* ====== 联系区 ====== */
.contact {
  background: var(--paper);
  padding: 48px 0;
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-card {
  background: var(--card);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--line);
  text-align: center;
}
.contact-card h3 {
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px;
}
.contact-card .value {
  font-size: 16px;
  font-weight: 600;
  word-break: break-all;
}
.contact-card .qr {
  width: 160px;
  height: 160px;
  margin: 0 auto;
}

/* ====== 搜索 ====== */
.search-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  max-width: 500px;
}
.search-bar input {
  flex: 1;
  padding: 10px 14px;
  font-size: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}
.search-bar input:focus {
  outline: none;
  border-color: var(--wine);
}

/* ====== 页脚 ====== */
.footer {
  background: var(--wine-deep);
  color: rgba(255, 255, 255, .85);
  padding: 36px 0 24px;
  font-size: 13px;
}
.footer a { color: rgba(255, 255, 255, .85); }
.footer .top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.footer .bottom {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, .55);
}

/* ====== 通用工具类 ====== */
.text-center { text-align: center; }
.muted { color: var(--muted); }
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}

/* ====================================================================
 * Home page 增强样式
 * ==================================================================== */

/* eyebrow（section 上面的小标签） */
.eyebrow, .section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}
.section-eyebrow { color: var(--wine); display: block; text-align: center; border: 0; }

/* hero 双栏 */
.hero {
  padding: 64px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.05;
  color: var(--wine-deep);
  margin: 0 0 24px;
  letter-spacing: -1px;
}
@media (max-width: 600px) { .hero h1 { font-size: 38px; } }

.hero .lead {
  font-size: 18px;
  line-height: 1.7;
  color: #3a2f28;
  margin: 0 0 28px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform .15s, box-shadow .15s;
}
.btn-primary { background: var(--wine); color: #fff; }
.btn-primary:hover { background: var(--wine-deep); color: #fff; transform: translateY(-1px); box-shadow: 0 12px 30px rgba(110,31,49,.28); }
.btn-ghost { background: transparent; color: var(--wine-deep); border-color: rgba(76,43,32,.25); }
.btn-ghost:hover { background: rgba(110,31,49,.06); border-color: var(--wine); color: var(--wine); }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 13px;
  color: var(--muted);
}
.hero-badges b { color: var(--wine); font-weight: 800; font-size: 15px; margin-right: 4px; }
.hero-badges span { padding: 4px 0; }

/* hero 右侧酒庄拼图 */
.hero-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  aspect-ratio: 1;
}
.hero-tile {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow);
  background: #d9cbb5;
  transition: transform .2s;
}
.hero-tile:hover { transform: scale(1.02); }
.hero-tile.big {
  grid-row: span 2;
}
.hero-tile img { width: 100%; height: 100%; object-fit: cover; }
.hero-tile-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #d9cbb5, #b89f7e); color: #fff; padding: 16px;
  font-size: 13px; text-align: center; font-weight: 600;
}
.hero-tile-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 12px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: #fff;
}
.hero-tile-caption strong { display: block; font-size: 14px; }
.hero-tile-caption span { font-size: 12px; opacity: .8; }

/* about 双栏：文字 + 业务范围面板 */
.section-paper {
  background:
    radial-gradient(circle at top right, rgba(200,155,88,.10), transparent 50%),
    var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  margin-top: 32px;
  align-items: start;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }

.about-text p {
  font-size: 16px;
  line-height: 1.85;
  color: #3a2f28;
  margin: 0 0 18px;
}
.about-text b { color: var(--wine); }

.scope-panel {
  background: var(--card);
  padding: 28px 28px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.scope-panel h3 {
  font-size: 18px;
  margin: 0 0 18px;
  color: var(--wine-deep);
}
.scope-list { list-style: none; padding: 0; margin: 0; }
.scope-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px dashed var(--line);
}
.scope-list li:first-child { border-top: 0; padding-top: 0; }
.scope-list .num {
  flex: 0 0 30px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.scope-list strong {
  display: block;
  font-size: 15px;
  color: var(--wine-deep);
  margin-bottom: 4px;
}
.scope-list p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* 精选酒庄卡片 */
.winery-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 32px;
}
.winery-feature {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s;
}
.winery-feature:hover { transform: translateY(-4px); box-shadow: 0 28px 80px rgba(43,20,15,.18); }

.winery-feature-image {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  background: #d9cbb5;
  overflow: hidden;
}
.winery-feature-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.winery-feature:hover .winery-feature-image img { transform: scale(1.05); }
.winery-feature-image .placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #d9cbb5, #b89f7e);
  display: flex; align-items: center; justify-content: center;
  color: #fff; padding: 16px; text-align: center; font-weight: 600;
}
.winery-feature-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,.92);
  color: var(--wine);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.winery-feature-body { padding: 20px 22px; }
.winery-feature-body h3 { margin: 0 0 4px; font-size: 19px; }
.winery-feature-body h3 a { color: var(--wine-deep); }
.winery-feature-body h3 a:hover { color: var(--wine); }
.winery-feature-sub { font-size: 13px; color: var(--muted); margin-bottom: 12px; font-style: italic; }
.winery-feature-tagline { font-size: 14px; color: #3a2f28; line-height: 1.6; margin: 0 0 16px; }
.winery-feature-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}
.more-link { color: var(--wine); font-weight: 700; }
.more-link:hover { color: var(--wine-deep); }

/* trust 数字行 */
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--card);
  padding: 36px 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
@media (max-width: 700px) { .trust-row { grid-template-columns: repeat(2, 1fr); } }
.trust-item { text-align: center; }
.trust-num {
  font-size: 44px;
  font-weight: 900;
  color: var(--wine);
  line-height: 1;
  margin-bottom: 8px;
}
.trust-label { font-size: 13px; color: var(--muted); line-height: 1.5; }

.print-sheet-header {
  display: none;
}

/* ====== 产品详情打印 / PDF ====== */
@media print {
  @page {
    size: A4;
    margin: 12mm;
  }

  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }

  html,
  body {
    background: #fff !important;
    color: #141414 !important;
    font-size: 10.5pt;
    line-height: 1.45;
  }

  a {
    color: inherit !important;
    text-decoration: none !important;
  }

  .nav,
  .contact,
  .footer,
  .product-actions {
    display: none !important;
  }

  .wrap {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .print-sheet-header {
    display: flex !important;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12mm;
    padding-bottom: 4mm;
    margin-bottom: 6mm;
    border-bottom: 2px solid #6e1f31;
    color: #141414;
    font-size: 9pt;
  }

  .print-sheet-header strong {
    display: block;
    color: #6e1f31;
    font-size: 14pt;
    line-height: 1.15;
  }

  .print-sheet-header span {
    display: block;
    margin-top: 1mm;
    color: #555;
  }

  .product-hero,
  .section {
    padding: 0 !important;
  }

  .product-hero-shell {
    color: #141414 !important;
    background: #fff !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }

  .product-hero-grid {
    display: grid !important;
    grid-template-columns: 42mm 1fr !important;
    gap: 8mm !important;
    padding: 0 0 7mm !important;
    border-bottom: 1px solid #d8d8d8;
  }

  .product-bottle-card {
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
  }

  .product-bottle-card img {
    width: 42mm !important;
    max-height: 112mm !important;
    object-fit: contain !important;
  }

  .product-bottle-placeholder {
    min-height: 60mm !important;
    border: 1px solid #ddd;
    color: #555 !important;
    background: #fff !important;
  }

  .eyebrow,
  .section-eyebrow {
    margin: 0 0 3mm !important;
    padding: 0 !important;
    border: 0 !important;
    color: #6e1f31 !important;
    font-size: 8pt !important;
    letter-spacing: 1.4px !important;
  }

  .product-summary h1 {
    margin: 0 0 2mm !important;
    color: #141414 !important;
    font-size: 21pt !important;
    line-height: 1.15 !important;
  }

  .product-summary h1 span,
  .product-subtitle,
  .product-lead {
    color: #444 !important;
  }

  .product-subtitle {
    margin-bottom: 3mm !important;
    font-size: 10pt !important;
  }

  .product-lead {
    margin: 0 0 4mm !important;
    max-width: none !important;
    line-height: 1.55 !important;
  }

  .product-facts {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2.5mm !important;
    margin-top: 4mm !important;
  }

  .product-fact,
  .grape-panel,
  .product-rating {
    color: #141414 !important;
    background: #fff !important;
    border: 1px solid #d8d8d8 !important;
    border-radius: 0 !important;
    padding: 2.5mm !important;
  }

  .product-fact-label {
    margin-bottom: 1mm !important;
    color: #666 !important;
    font-size: 7.5pt !important;
  }

  .product-fact-value {
    color: #141414 !important;
    font-size: 9.5pt !important;
    font-weight: 700 !important;
  }

  .grape-panel {
    margin-top: 2.5mm !important;
  }

  .grape-list {
    gap: 1.5mm !important;
  }

  .grape-item {
    padding: 1.5mm 2mm !important;
    color: #141414 !important;
    background: #f7f7f7 !important;
    border-color: #ddd !important;
    border-radius: 0 !important;
  }

  .grape-item strong {
    color: #141414 !important;
  }

  .product-ratings {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2.5mm !important;
    margin-top: 3mm !important;
  }

  .product-rating-score {
    color: #141414 !important;
    font-size: 16pt !important;
  }

  .section-title {
    margin: 0 0 4mm !important;
    color: #141414 !important;
    font-size: 17pt !important;
    text-align: left !important;
  }

  .detail-body {
    margin-top: 6mm !important;
    padding: 0 !important;
    color: #141414 !important;
    background: #fff !important;
    border: 0 !important;
    border-radius: 0 !important;
    font-size: 10pt !important;
    line-height: 1.55 !important;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .detail-body h2 {
    margin: 0 0 2.5mm !important;
    padding-bottom: 1.5mm;
    border-bottom: 1px solid #d8d8d8;
    color: #141414 !important;
    font-size: 14pt !important;
  }

  .product-note-grid,
  .product-story-grid {
    display: block !important;
  }

  .note-card,
  .story-card {
    margin-top: 5mm !important;
  }

  .richtext-block p,
  .richtext-block ul,
  .richtext-block ol,
  .richtext-block blockquote {
    margin-bottom: 3mm !important;
  }

  .winemaker-portrait {
    float: right;
    width: 42mm !important;
    max-height: 54mm !important;
    margin: 0 0 4mm 6mm !important;
    border-radius: 0 !important;
  }

  .vintage-table {
    font-size: 9.5pt !important;
    page-break-inside: avoid;
  }

  .vintage-table th,
  .vintage-table td {
    padding: 2mm !important;
  }
}
