:root {
  --red: #8b0000;
  --red-2: #a00000;
  --red-3: #6b0000;
  --gold: #c9a961;
  --gold-2: #ffd700;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #f9fafb;
  --blue: #1e3a5f;
  --blue-2: #2e5070;
  --olive: #556b2f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
.container { width: min(100% - 32px, 1280px); margin: 0 auto; }
.grid { display: grid; gap: 24px; }
.center { text-align: center; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: var(--red);
  box-shadow: 0 10px 24px rgb(0 0 0 / 18%);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 64px; gap: 24px; }
.brand { color: var(--gold-2); font-size: 24px; font-weight: 800; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 14px; white-space: nowrap; }
.nav-links a:hover, .nav-tools button:hover, .nav-links a.active-nav { color: var(--gold-2); }
.nav-tools { display: flex; align-items: center; gap: 16px; }
.search { position: relative; }
.search input {
  width: 192px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 999px;
  padding: 7px 34px 7px 16px;
  color: #fff;
  background: rgb(255 255 255 / 10%);
  outline: none;
}
.search input::placeholder { color: rgb(255 255 255 / 65%); }
.search span { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: rgb(255 255 255 / 65%); }
.cart { position: relative; border: 0; color: #fff; background: transparent; }
.cart b { position: absolute; top: -8px; right: -12px; width: 20px; height: 20px; border-radius: 50%; color: var(--red); background: var(--gold-2); font-size: 12px; line-height: 20px; }
.phone-pill { border-radius: 999px; padding: 7px 16px; color: var(--red); background: var(--gold); font-weight: 700; font-size: 14px; }
.menu-button { display: none; border: 0; color: #fff; background: transparent; font-size: 26px; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-2) 52%, var(--red-3));
}
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 72px; background: linear-gradient(to top, #fff, transparent); }
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .1;
  background: url("public/assets/festival-gift-box-pattern-1920x800.jpg") center / cover;
}
.hero-content { position: relative; z-index: 1; padding: 126px 0 96px; text-align: center; }
.hero h1 { margin: 0 0 24px; font-size: clamp(42px, 7vw, 72px); line-height: 1.04; font-weight: 900; letter-spacing: 0; }
.hero p { margin: 0 auto 32px; max-width: 720px; color: var(--gold); font-size: 20px; line-height: 1.55; }
.hero-actions { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 56px; border-radius: 999px; padding: 0 32px; font-size: 18px; font-weight: 800; transition: transform .3s, background .3s, color .3s, box-shadow .3s; }
.btn:hover { transform: scale(1.04); }
.btn.gold { color: var(--red); background: var(--gold); box-shadow: 0 12px 24px rgb(0 0 0 / 18%); }
.btn.gold:hover { background: var(--gold-2); }
.btn.outline { border: 2px solid #fff; color: #fff; }
.btn.outline:hover { color: var(--red); background: #fff; }
.btn.red { color: #fff; background: var(--red); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 680px; margin: 48px auto 0; }
.stats strong { color: var(--gold-2); font-size: 40px; line-height: 1; }
.stats span { display: block; margin-top: 8px; color: rgb(255 255 255 / 80%); font-size: 14px; font-weight: 500; }

.section-soft { background: linear-gradient(#fff, var(--soft)); padding: 48px 0; }
.quick-grid { grid-template-columns: repeat(4, 1fr); max-width: 1024px; }
.quick-card, .festival-card {
  position: relative;
  overflow: hidden;
  color: #fff;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgb(31 41 55 / 14%);
  transition: transform .3s, box-shadow .3s;
}
.quick-card:hover, .festival-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgb(31 41 55 / 20%); }
.quick-card { min-height: 192px; padding: 32px; }
.quick-card i, .festival-card i { display: inline-grid; place-items: center; width: 56px; height: 56px; margin-bottom: 18px; border-radius: 50%; background: rgb(255 255 255 / 18%); font-style: normal; font-size: 26px; font-weight: 900; }
.quick-card h3, .festival-card h3 { margin: 0 0 8px; font-size: 20px; }
.quick-card p, .festival-card p { margin: 0; color: rgb(255 255 255 / 82%); font-size: 14px; }
.blue { background: linear-gradient(135deg, var(--blue), var(--blue-2)); }
.rose { background: linear-gradient(135deg, #c41e3a, #e43e5a); }
.olive { background: linear-gradient(135deg, var(--olive), #758b4f); }
.red { background: linear-gradient(135deg, var(--red), #ab2020); }

.section-head { margin-bottom: 44px; text-align: center; }
.section-head h2 { margin: 0 0 16px; color: var(--red); font-size: clamp(30px, 4vw, 40px); line-height: 1.15; font-weight: 900; }
.section-head p { margin: 0 auto; max-width: 720px; color: var(--muted); line-height: 1.7; }
.festival-grid { grid-template-columns: repeat(3, 1fr); max-width: 1080px; margin: 0 auto; }
.festival-card { min-height: 320px; padding: 56px 32px 40px; }
.festival-card i { width: 80px; height: 80px; font-size: 34px; }
.festival-card h3 { font-size: 28px; }
.festival-card span { display: inline-block; margin-top: 24px; border-radius: 999px; padding: 9px 24px; background: rgb(255 255 255 / 20%); font-weight: 800; }
.olive-red { background: linear-gradient(135deg, var(--olive), var(--red)); }
.blue-gold { background: linear-gradient(135deg, var(--blue), var(--gold)); }
.red-gold { background: linear-gradient(135deg, #c41e3a, var(--gold-2)); }

.catalog { padding: 72px 0; background: #fff; }
.category-grid { grid-template-columns: repeat(4, 1fr); }
.category-card { border: 1px solid var(--line); border-radius: 14px; padding: 24px; background: var(--soft); transition: border-color .2s, box-shadow .2s; }
.category-card:hover { border-color: var(--gold); box-shadow: 0 12px 26px rgb(31 41 55 / 10%); }
.category-card h3 { margin: 0 0 16px; font-size: 20px; color: var(--red); }
.category-card div { display: flex; flex-wrap: wrap; gap: 8px; }
.category-card span { border-radius: 6px; padding: 6px 10px; color: var(--red); background: rgb(139 0 0 / 8%); font-size: 13px; }

.products, .brands, .news-section, .process, .outlets, .services { padding: 72px 0; }
.products { background: #fff; }
.product-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 28px; }
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chips button { border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; color: var(--ink); background: #fff; }
.chips button.active, .chips button:hover { border-color: var(--red); color: #fff; background: var(--red); }
.product-toolbar span { color: var(--muted); font-size: 14px; }
.product-grid { grid-template-columns: repeat(3, 1fr); }
.product-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 4px 12px rgb(31 41 55 / 8%); transition: transform .25s, box-shadow .25s; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgb(31 41 55 / 14%); }
.product-card em { position: absolute; top: 14px; left: 14px; z-index: 1; border-radius: 999px; padding: 5px 12px; color: #fff; background: var(--red); font-style: normal; font-size: 12px; font-weight: 800; }
.product-card img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #f3f4f6; }
.product-card div { padding: 20px; }
.product-card span { color: var(--gold); font-size: 13px; font-weight: 800; }
.product-card h3 { min-height: 54px; margin: 8px 0 18px; font-size: 17px; line-height: 1.55; }
.product-card p { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin: 0 0 16px; }
.product-card strong { color: var(--red); font-size: 22px; }
.product-card small { color: var(--muted); }
.product-card .product-price-range { min-height: 34px; }
.product-card .product-price-range strong { white-space: nowrap; }
.product-card .product-price-range small { white-space: nowrap; }
.product-card a { display: block; border-radius: 10px; padding: 11px; color: #fff; background: var(--red); text-align: center; font-weight: 800; }
.product-card a:hover { background: var(--red-2); }

.brands { background: #fff; }
.brand-grid { grid-template-columns: repeat(4, 1fr); margin-bottom: 64px; }
.brand-card { border: 1px solid #f3f4f6; border-radius: 16px; padding: 24px; background: var(--soft); transition: transform .25s, border-color .25s; }
.brand-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.logo-box { display: grid; place-items: center; aspect-ratio: 1; margin-bottom: 18px; border-radius: 12px; background: #fff; }
.logo-box img { width: 96px; height: 96px; object-fit: contain; }
.brand-card h3 { margin: 0 0 8px; font-size: 20px; }
.brand-card p { margin: 0 0 10px; color: var(--muted); font-size: 14px; }
.brand-card small { display: block; min-height: 36px; color: #9ca3af; }
.brand-card span { display: inline-block; margin: 14px 6px 0 0; border-radius: 6px; padding: 4px 8px; color: var(--red); background: rgb(139 0 0 / 9%); font-size: 12px; }
.promise-panel { border-radius: 24px; padding: 40px; color: #fff; background: linear-gradient(135deg, var(--red), var(--red-2)); }
.promise-panel h3 { margin: 0 0 32px; text-align: center; font-size: 28px; }
.promise-grid { grid-template-columns: repeat(4, 1fr); }
.promise-grid article { text-align: center; }
.promise-grid i { color: var(--gold-2); font-style: normal; font-size: 34px; font-weight: 900; }
.promise-grid h4 { margin: 10px 0 8px; font-size: 18px; }
.promise-grid p { margin: 0; color: rgb(255 255 255 / 82%); font-size: 14px; line-height: 1.6; }

.news-section { background: #fff; }
.news-columns { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.news-column { min-width: 0; }
.news-column-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 2px solid var(--ink); }
.news-column-head h3 { margin: 0; font-size: 22px; line-height: 1.25; }
.news-column-head a { flex: 0 0 auto; color: var(--muted); font-size: 12px; font-weight: 700; }
.news-column-head a:hover { color: var(--red); }
.news-featured { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.news-featured-image { display: block; overflow: hidden; background: #f3f4f6; }
.news-featured-image img { width: 100%; aspect-ratio: 8 / 5; object-fit: cover; transition: transform .3s ease; }
.news-featured-image:hover img { transform: scale(1.015); }
.news-featured-body { padding-top: 12px; }
.news-featured h4 { overflow: hidden; margin: 0 0 7px; font-size: 15px; line-height: 1.55; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
.news-featured h4 a:hover { color: var(--red); }
.news-featured-body p { display: -webkit-box; overflow: hidden; min-height: 44px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.news-column-list { padding-top: 6px; }
.news-column-list a { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 38px; border-bottom: 1px solid var(--line); font-size: 13px; line-height: 1.45; }
.news-column-list a::before { content: ""; flex: 0 0 auto; width: 4px; height: 4px; border-radius: 50%; background: var(--red); }
.news-column-list a:hover span { color: var(--red); }
.news-column-list span { overflow: hidden; min-width: 0; text-overflow: ellipsis; white-space: nowrap; transition: color .2s; }
.news-column-list time { flex: 0 0 auto; color: var(--muted); font-size: 11px; font-variant-numeric: tabular-nums; }
.news-home-empty { padding: 48px 20px; color: var(--muted); background: var(--soft); text-align: center; }

.news-detail-page { min-height: 100vh; background: var(--soft); }
.news-list-page { min-height: 100vh; background: var(--soft); }
.news-list-shell { width: min(100% - 32px, 1100px); margin: 0 auto; padding: 42px 0 80px; }
.news-list-header { margin: 0 0 24px; }
.news-list-header h1 { margin: 0 0 8px; font-size: 34px; }
.news-list-header p { margin: 0; color: var(--muted); }
.news-list-grid { display: grid; gap: 16px; }
.news-list-item { display: grid; grid-template-columns: 220px 1fr; gap: 22px; padding: 18px; background: #fff; border: 1px solid var(--line); }
.news-list-item:hover { border-color: var(--gold); }
.news-list-item img { width: 220px; height: 138px; object-fit: cover; }
.news-list-item h2 { margin: 8px 0; font-size: 20px; line-height: 1.45; }
.news-list-item > div > p:last-child { margin: 0; color: var(--muted); line-height: 1.7; }
.news-list-empty { padding: 50px; background: #fff; color: var(--muted); text-align: center; }
.news-detail-shell { width: min(100% - 32px, 920px); margin: 0 auto; padding: 42px 0 80px; }
.news-detail-breadcrumb { margin: 0 0 22px; color: var(--muted); font-size: 14px; }
.news-detail-breadcrumb a:hover { color: var(--red); }
.news-article { background: #fff; }
.news-article-header { padding: 44px 54px 30px; }
.news-article-meta { display: flex; gap: 16px; margin: 0 0 14px; color: var(--muted); font-size: 13px; }
.news-article-meta span { color: var(--gold); font-weight: 800; }
.news-article h1 { margin: 0 0 16px; font-size: 38px; line-height: 1.35; }
.news-article-lead { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.8; }
.news-article-cover { width: 100%; max-height: 560px; object-fit: cover; background: #f3f4f6; }
.news-article-body { padding: 40px 54px 54px; }
.news-article-body p { margin: 0 0 22px; color: #374151; font-size: 16px; line-height: 2; }
.news-article-body p:last-child { margin-bottom: 0; }
.news-related { margin-top: 44px; }
.news-related h2 { margin: 0 0 20px; font-size: 24px; }
.news-related-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.news-related-list a { border-left: 3px solid var(--gold); padding: 15px 18px; background: #fff; }
.news-related-list strong, .news-related-list time { display: block; }
.news-related-list strong { line-height: 1.5; }
.news-related-list time { margin-top: 6px; color: var(--muted); font-size: 12px; }

.process { background: var(--soft); }
.process-grid { grid-template-columns: repeat(4, 1fr); }
.process-grid article { position: relative; border-radius: 16px; padding: 28px; background: #fff; box-shadow: 0 8px 18px rgb(31 41 55 / 7%); }
.process-grid b { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 18px; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-2)); }
.process-grid h3 { margin: 0 0 10px; }
.process-grid p { margin: 0; color: var(--muted); line-height: 1.7; }

.outlet-grid { grid-template-columns: repeat(4, 1fr); }
.outlet-grid article, .service-grid article { border-radius: 16px; padding: 24px; background: #fff; box-shadow: 0 8px 20px rgb(31 41 55 / 10%); }
.outlet-grid h3, .service-grid h3 { margin: 0 0 10px; color: var(--red); }
.outlet-grid p, .service-grid p { margin: 0 0 12px; color: var(--muted); }
.outlet-grid a, .service-grid a, .service-grid button { color: var(--red); font-weight: 800; }
.service-grid button { border: 0; padding: 0; background: transparent; cursor: pointer; }
.service-grid button:hover { color: var(--gold); }
.services { background: var(--soft); }
.service-grid { grid-template-columns: repeat(3, 1fr); }

.cta { padding: 72px 0; color: #fff; text-align: center; background: linear-gradient(135deg, var(--red), var(--red-2), var(--red-3)); }
.cta h2 { margin: 0 auto 18px; max-width: 900px; font-size: clamp(28px, 4vw, 40px); }
.cta p { margin: 0 0 28px; color: rgb(255 255 255 / 88%); font-size: 18px; }
.cta small { display: block; margin-top: 28px; color: rgb(255 255 255 / 75%); }

.footer { padding: 48px 0; color: rgb(255 255 255 / 76%); background: #250909; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 36px; }
.footer h3, .footer h4 { margin: 0 0 14px; color: #fff; }
.footer h3 { color: var(--gold-2); font-size: 24px; }
.footer p { max-width: 420px; margin: 0; line-height: 1.7; }
.footer a { display: block; margin: 9px 0; }
.footer a:hover { color: var(--gold-2); }

.float-actions { position: fixed; right: 24px; bottom: 92px; z-index: 40; display: flex; flex-direction: column; gap: 12px; }
.float-actions a { position: relative; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; color: #fff; background: var(--red); box-shadow: 0 10px 24px rgb(0 0 0 / 20%); transition: transform .2s; }
.float-actions a:first-child { color: var(--red); background: var(--gold); }
.float-actions a:hover { transform: scale(1.08); }
.float-actions span { position: absolute; right: 68px; top: 50%; transform: translateY(-50%); border-radius: 6px; padding: 6px 10px; color: #fff; background: #111827; opacity: 0; white-space: nowrap; pointer-events: none; transition: opacity .2s; }
.float-actions a:hover span { opacity: 1; }
.mobile-bar { display: none; }

.category-page { min-height: 100vh; background: #f9fafb; }
.category-hero {
  padding: 36px 0 30px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-2) 58%, var(--red-3));
}
.breadcrumb { margin: 0 0 16px; color: rgb(255 255 255 / 76%); font-size: 14px; }
.category-hero h1 { margin: 0 0 12px; font-size: clamp(32px, 5vw, 48px); line-height: 1.1; font-weight: 900; }
.category-hero p:last-child { max-width: 720px; margin: 0; color: rgb(255 255 255 / 88%); line-height: 1.7; }
.category-shell { padding: 32px 0 64px; }
.category-layout { display: flex; align-items: flex-start; gap: 24px; }
.filter-sidebar { position: sticky; top: 96px; flex: 0 0 256px; border-radius: 16px; padding: 24px; background: #fff; box-shadow: 0 1px 3px rgb(0 0 0 / 8%); }
.filter-title { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.filter-title h2 { margin: 0; font-size: 18px; }
.filter-title span { color: var(--red); }
.filter-group + .filter-group { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.filter-group h3 { margin: 0 0 14px; color: var(--ink); font-size: 15px; }
.filter-group button, .filter-group a { display: block; width: 100%; border: 0; border-radius: 8px; padding: 10px 12px; color: var(--muted); background: transparent; text-align: left; transition: background .2s, color .2s; }
.filter-group button:hover, .filter-group button.active, .filter-group a:hover, .filter-group a.active { color: var(--red); background: rgb(139 0 0 / 8%); font-weight: 800; }
.category-main { flex: 1; min-width: 0; }
.listing-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 24px; border-radius: 16px; padding: 20px 24px; background: #fff; box-shadow: 0 1px 3px rgb(0 0 0 / 8%); }
.listing-head h2 { margin: 0 0 4px; font-size: 24px; }
.listing-head p { margin: 0; color: var(--muted); font-size: 14px; }
.listing-tools { display: flex; align-items: center; gap: 12px; }
.listing-tools select { height: 38px; border: 1px solid var(--line); border-radius: 8px; padding: 0 12px; color: var(--ink); background: #fff; outline-color: var(--red); }
.view-toggle { display: flex; gap: 4px; border-radius: 8px; padding: 4px; background: #f3f4f6; }
.view-toggle button { width: 34px; height: 30px; border: 0; border-radius: 6px; color: #9ca3af; background: transparent; }
.view-toggle button.active, .view-toggle button:hover { color: #fff; background: var(--red); }
.category-products { grid-template-columns: repeat(3, 1fr); }
.category-products.list-view { grid-template-columns: 1fr; }
.category-products.list-view .category-product { display: grid; grid-template-columns: 220px 1fr; }
.category-products.list-view .category-product img { height: 100%; aspect-ratio: auto; }
.product-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 !important; }
.product-actions a { color: var(--red); background: transparent; padding: 0; text-align: left; }
.product-actions a:hover { color: var(--gold); background: transparent; }
.product-actions button { border: 0; border-radius: 999px; padding: 10px 16px; color: #fff; background: var(--red); font-weight: 800; }
.product-actions button:hover { background: var(--gold); color: var(--red); }
.consult-dialog { width: min(520px, calc(100% - 32px)); border: 0; border-radius: 8px; padding: 34px; color: var(--ink); background: #fff; box-shadow: 0 24px 64px rgb(0 0 0 / 28%); }
.consult-dialog::backdrop { background: rgb(17 24 39 / 56%); }
.consult-dialog h2 { margin: 8px 36px 10px 0; color: var(--red); font-size: 24px; }
.consult-dialog > p:not(.consult-eyebrow) { margin: 0; color: var(--muted); line-height: 1.7; }
.consult-eyebrow { margin: 0; color: var(--gold); font-size: 13px; font-weight: 800; }
.consult-close { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border: 0; border-radius: 50%; color: var(--muted); background: #f3f4f6; font-size: 24px; line-height: 1; }
.consult-actions { display: flex; gap: 12px; margin-top: 26px; }
.consult-actions .btn { flex: 1; min-height: 48px; padding: 0 18px; font-size: 15px; }
.btn.outline-dark { border: 1px solid var(--red); color: var(--red); background: #fff; }

.product-detail-page { min-height: 100vh; background: var(--soft); }
.product-detail-shell { padding: 34px 0 72px; }
.product-breadcrumb { margin: 0 0 22px; color: var(--muted); font-size: 14px; }
.product-breadcrumb a:hover { color: var(--red); }
.product-detail-main { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr); gap: 48px; align-items: start; padding: 36px; background: #fff; }
.product-detail-image { width: 100%; aspect-ratio: 1; object-fit: cover; background: #f3f4f6; }
.product-detail-info { padding: 8px 0; }
.product-brand { margin: 0 0 10px; color: var(--gold); font-size: 14px; font-weight: 800; }
.product-detail-info h1 { margin: 0 0 22px; font-size: 34px; line-height: 1.35; }
.product-detail-price { margin: 0 0 12px; color: var(--red); font-size: 34px; font-weight: 900; }
.product-detail-moq { margin: 0 0 26px; color: var(--muted); }
.product-detail-range .product-detail-price { white-space: nowrap; }
.product-detail-description { border-top: 1px solid var(--line); padding-top: 24px; color: #4b5563; line-height: 1.8; white-space: pre-line; }
.product-detail-actions { display: flex; gap: 12px; margin-top: 30px; }
.product-detail-actions .btn { min-height: 50px; padding: 0 24px; font-size: 16px; }
.product-detail-actions button.btn { border: 0; cursor: pointer; }
.product-detail-sections { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 24px; background: var(--line); border: 1px solid var(--line); }
.product-detail-sections article { min-height: 180px; padding: 28px; background: #fff; }
.product-detail-sections h2 { margin: 0 0 14px; color: var(--red); font-size: 18px; }
.product-detail-sections p { margin: 0; color: var(--muted); line-height: 1.8; white-space: pre-line; }
.product-long-detail { margin-top: 48px; }
.product-long-detail h2 { margin: 0 0 22px; font-size: 24px; }
.product-long-detail img { display: block; width: min(100%, 1000px); height: auto; margin: 0 auto; background: #fff; }
.related-products { margin-top: 48px; }
.related-products h2 { margin: 0 0 22px; font-size: 24px; }
.related-products .product-grid { grid-template-columns: repeat(3, 1fr); }
.related-products .product-card div { padding: 18px; }
.related-products .product-card h3 { margin-bottom: 10px; }
.product-not-found { min-height: 70vh; display: grid; place-items: center; padding: 40px 20px; text-align: center; }
.product-not-found h1 { color: var(--red); }
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 32px; }
.pagination button { border: 1px solid var(--line); border-radius: 8px; padding: 9px 15px; color: var(--ink); background: #fff; }
.pagination button.active, .pagination button:hover { border-color: var(--red); color: #fff; background: var(--red); }
.empty-state { grid-column: 1 / -1; border-radius: 16px; padding: 56px 24px; color: var(--muted); background: #fff; text-align: center; }

@media (max-width: 1100px) {
  .nav-links, .nav-tools { display: none; }
  .menu-button { display: block; }
  .nav-links.open { position: absolute; left: 0; right: 0; top: 64px; display: grid; gap: 0; padding: 12px 16px 18px; background: var(--red); box-shadow: 0 16px 20px rgb(0 0 0 / 12%); }
  .nav-links.open a { padding: 11px 0; border-top: 1px solid rgb(255 255 255 / 10%); }
}

@media (max-width: 1100px) {
  .quick-grid, .category-grid, .brand-grid, .process-grid, .outlet-grid, .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid, .festival-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .news-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-layout { flex-direction: column; }
  .filter-sidebar { position: static; width: 100%; flex-basis: auto; }
  .category-products { grid-template-columns: repeat(2, 1fr); }
  .product-detail-main { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 24px, 1280px); }
  .hero { min-height: 560px; }
  .hero-content { padding: 90px 0 72px; }
  .hero h1 { font-size: 42px; }
  .hero p { font-size: 17px; }
  .btn { width: 100%; min-height: 52px; font-size: 16px; }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stats strong { font-size: 28px; }
  .quick-grid, .festival-grid, .category-grid, .product-grid, .brand-grid, .promise-grid, .process-grid, .outlet-grid, .service-grid, .footer-grid { grid-template-columns: 1fr; }
  .news-columns { grid-template-columns: 1fr; gap: 36px; }
  .quick-card { min-height: 156px; }
  .festival-card { min-height: 260px; padding: 40px 24px 32px; }
  .product-toolbar { align-items: flex-start; flex-direction: column; }
  .listing-head { align-items: flex-start; flex-direction: column; }
  .listing-tools { width: 100%; justify-content: space-between; }
  .category-products, .category-products.list-view { grid-template-columns: 1fr; }
  .category-products.list-view .category-product { grid-template-columns: 1fr; }
  .consult-actions, .product-detail-actions { flex-direction: column; }
  .consult-actions .btn, .product-detail-actions .btn { width: 100%; }
  .product-card .product-price-range { align-items: flex-start; flex-direction: column; }
  .product-detail-main { grid-template-columns: 1fr; padding: 20px; }
  .product-detail-info h1 { font-size: 28px; }
  .product-detail-sections, .related-products .product-grid { grid-template-columns: 1fr; }
  .news-detail-shell { width: min(100% - 24px, 920px); padding-top: 26px; }
  .news-list-shell { width: min(100% - 24px, 920px); padding-top: 26px; }
  .news-list-item { grid-template-columns: 1fr; gap: 14px; }
  .news-list-item img { width: 100%; height: auto; aspect-ratio: 8 / 5; }
  .news-article-header, .news-article-body { padding: 26px 22px; }
  .news-article h1 { font-size: 28px; }
  .news-related-list { grid-template-columns: 1fr; }
  .promise-panel { padding: 28px 20px; }
  .float-actions { display: none; }
  .mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); background: #fff; box-shadow: 0 -8px 24px rgb(0 0 0 / 12%); }
  .mobile-bar a { padding: 14px; text-align: center; font-weight: 800; color: var(--red); }
  .mobile-bar a + a { color: #fff; background: var(--red); }
  body { padding-bottom: 50px; }
}
