:root {
  --ink: #19352a;
  --green: #173f31;
  --green-2: #245845;
  --green-3: #dfe9e1;
  --cream: #f7f4ec;
  --paper: #fffdf8;
  --sand: #e9dfce;
  --gold: #b47a3f;
  --gold-dark: #8e582e;
  --text: #25352e;
  --muted: #6c766f;
  --line: #dedfd8;
  --white: #fff;
  --shadow: 0 24px 70px rgba(20, 55, 42, 0.12);
  --serif: "Noto Serif SC", "Songti SC", "SimSun", serif;
  --sans: "Microsoft YaHei", "PingFang SC", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: var(--paper); font-family: var(--sans); line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.dialog-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 999; top: 10px; left: 10px; padding: 10px 16px; transform: translateY(-160%); background: var(--white); color: var(--green); }
.skip-link:focus { transform: none; }

.site-header { position: fixed; z-index: 50; inset: 0 0 auto; height: 88px; color: var(--green); background: rgba(255,253,248,.92); border-bottom: 1px solid transparent; transition: height .3s, box-shadow .3s, border-color .3s; backdrop-filter: blur(12px); }
.site-header.scrolled, .solid-header { height: 76px; border-color: rgba(23,63,49,.09); box-shadow: 0 8px 30px rgba(20,55,42,.07); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 36px; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 11px; color: var(--green); }
.brand-symbol { display: grid; place-items: center; width: 43px; height: 43px; border: 1px solid rgba(23,63,49,.28); border-radius: 50%; }
.brand-symbol svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.brand-symbol img { width: 31px; height: 31px; object-fit: contain; border-radius: 50%; }
.brand strong { display: block; font-family: var(--serif); font-size: 19px; letter-spacing: .12em; line-height: 1.15; }
.brand small { display: block; margin-top: 2px; color: var(--gold-dark); font-size: 8px; font-weight: 700; letter-spacing: .24em; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 35px; margin-inline: auto; }
.main-nav a { position: relative; font-size: 14px; font-weight: 600; white-space: nowrap; }
.main-nav a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: -11px; height: 2px; background: var(--gold); transition: left .25s, right .25s; }
.main-nav a:hover::after, .main-nav a.active::after { left: 0; right: 0; }
.header-action { display: inline-flex; align-items: center; gap: 18px; padding: 10px 18px; border: 1px solid rgba(23,63,49,.25); font-size: 13px; font-weight: 700; transition: .25s; }
.header-action:hover { color: var(--white); background: var(--green); border-color: var(--green); }
.menu-toggle { display: none; position: relative; z-index: 2; flex: 0 0 42px; width: 42px; height: 42px; margin-left: auto; padding: 8px 9px; border: 0; color: var(--green); background: transparent; }
.menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: currentColor; transition: .25s; }
.menu-toggle::before { content: ""; position: absolute; top: 20px; left: 9px; width: 24px; height: 2px; background: currentColor; box-shadow: 0 -7px currentColor, 0 7px currentColor; }

.hero { position: relative; min-height: 780px; height: min(900px, 100vh); overflow: hidden; display: flex; align-items: center; color: var(--green); background: #e9dcc8; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(248,244,233,.98) 0%, rgba(248,244,233,.91) 34%, rgba(248,244,233,.26) 59%, rgba(248,244,233,.04) 100%); }
.hero-content { position: relative; z-index: 2; padding-top: 78px; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; color: var(--gold-dark); font-size: 13px; font-weight: 700; letter-spacing: .22em; }
.hero-eyebrow span { width: 35px; height: 1px; background: var(--gold); }
.hero h1 { margin: 0; max-width: 650px; color: var(--green); font-family: var(--serif); font-size: clamp(48px, 5.2vw, 76px); font-weight: 600; letter-spacing: .04em; line-height: 1.22; }
.hero-lead { max-width: 580px; margin: 28px 0 32px; color: #506158; font-size: 16px; line-height: 2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 26px; padding: 11px 24px; border: 1px solid transparent; font-size: 14px; font-weight: 700; transition: transform .25s, color .25s, background .25s, border-color .25s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--green); border-color: var(--green); box-shadow: 0 12px 28px rgba(23,63,49,.18); }
.button-primary:hover { background: var(--green-2); }
.button-ghost { color: var(--green); border-color: rgba(23,63,49,.35); background: rgba(255,255,255,.3); }
.play-dot { display: grid; place-items: center; width: 23px; height: 23px; color: var(--white); background: var(--gold); border-radius: 50%; font-size: 11px; }
.hero-metrics { display: flex; gap: 0; margin: 54px 0 0; }
.hero-metrics div { min-width: 150px; padding-right: 32px; margin-right: 32px; border-right: 1px solid rgba(23,63,49,.18); }
.hero-metrics div:last-child { border-right: 0; }
.hero-metrics dt { font-family: var(--serif); font-size: 33px; font-weight: 600; line-height: 1; }
.hero-metrics sup { margin-left: 2px; color: var(--gold-dark); font-family: var(--sans); font-size: 12px; }
.hero-metrics dd { margin: 9px 0 0; color: var(--muted); font-size: 12px; }
.scroll-cue { position: absolute; z-index: 2; right: 36px; bottom: 34px; display: flex; flex-direction: column; align-items: center; gap: 14px; color: var(--green); font-size: 9px; font-weight: 700; letter-spacing: .2em; writing-mode: vertical-rl; }
.scroll-cue i { width: 1px; height: 48px; background: linear-gradient(var(--green), transparent); }

.trust-bar { position: relative; z-index: 4; background: var(--green); color: var(--white); }
.trust-grid { min-height: 118px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-grid > div { display: flex; align-items: center; justify-content: center; gap: 15px; min-height: 54px; border-right: 1px solid rgba(255,255,255,.12); }
.trust-grid > div:last-child { border-right: 0; }
.trust-icon { display: grid; place-items: center; width: 41px; height: 41px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: #d8bd89; font-family: var(--serif); }
.trust-grid p { margin: 0; }
.trust-grid strong, .trust-grid small { display: block; }
.trust-grid strong { font-family: var(--serif); font-size: 15px; letter-spacing: .08em; }
.trust-grid small { margin-top: 2px; color: rgba(255,255,255,.58); font-size: 11px; }

.section { padding: 112px 0; }
.products-section { background: var(--paper); }
.products-page { background: var(--paper); }
.products-hero { padding: 158px 0 82px; background: radial-gradient(circle at 82% 18%, rgba(180,122,63,.18), transparent 31%), linear-gradient(135deg, #f7f4ec 0%, #fffdf8 52%, #e8efe9 100%); }
.products-hero-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(280px, .58fr); gap: 70px; align-items: center; }
.products-hero h1 { margin: 0; color: var(--green); font-family: var(--serif); font-size: clamp(44px, 5vw, 70px); font-weight: 600; line-height: 1.18; letter-spacing: .05em; }
.products-hero p:not(.section-kicker) { max-width: 660px; margin: 24px 0 0; color: var(--muted); font-size: 15px; line-height: 2; }
.products-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.products-hero-card { display: grid; grid-template-columns: 52px 1fr; gap: 0; padding: 30px; border: 1px solid rgba(23,63,49,.12); background: rgba(255,255,255,.68); box-shadow: var(--shadow); backdrop-filter: blur(8px); }
.products-hero-card span { display: grid; place-items: center; width: 36px; height: 36px; margin: 5px 0; color: var(--gold-dark); border: 1px solid rgba(180,122,63,.34); border-radius: 50%; font-family: Georgia, serif; font-size: 10px; font-weight: 700; }
.products-hero-card strong { display: flex; align-items: center; min-height: 46px; color: var(--green); border-bottom: 1px solid rgba(23,63,49,.1); font-family: var(--serif); font-size: 18px; font-weight: 600; letter-spacing: .08em; }
.products-hero-card strong:last-child { border-bottom: 0; }
.products-page-section { padding-top: 92px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 42px; }
.section-heading > p { width: 410px; margin: 0 0 5px; color: var(--muted); font-size: 14px; line-height: 1.9; }
.section-kicker { margin: 0 0 15px; color: var(--gold-dark); font-size: 11px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.section-kicker.light { color: #d8bd89; }
.section-heading h2, .story-copy h2, .guide-copy h2, .cta-inner h2, .detail-copy h1, .detail-video h2, .detail-back h2 { margin: 0; color: var(--green); font-family: var(--serif); font-size: clamp(32px, 3.4vw, 48px); font-weight: 600; line-height: 1.35; letter-spacing: .04em; }
.filter-row { display: flex; gap: 9px; margin-bottom: 32px; overflow-x: auto; scrollbar-width: none; }
.filter-row::-webkit-scrollbar { display: none; }
.filter-button { flex: 0 0 auto; min-width: 94px; padding: 10px 17px; border: 1px solid var(--line); color: var(--muted); background: transparent; font-size: 13px; transition: .25s; }
.filter-button:hover, .filter-button.active { color: var(--white); background: var(--green); border-color: var(--green); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product-card { overflow: hidden; background: var(--white); border: 1px solid #ebe8df; transition: transform .35s, box-shadow .35s; }
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.product-card.is-hidden { display: none; }
.product-image { position: relative; display: block; overflow: hidden; aspect-ratio: 1; background: #eee7db; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.product-card:hover .product-image img { transform: scale(1.035); }
.media-badge { position: absolute; right: 13px; bottom: 13px; display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; color: var(--white); background: rgba(23,63,49,.9); font-size: 10px; font-weight: 700; backdrop-filter: blur(6px); }
.media-badge svg { width: 14px; height: 14px; fill: currentColor; }
.product-card-body { padding: 23px 24px 25px; }
.product-category { margin: 0 0 8px !important; color: var(--gold-dark) !important; font-size: 10px !important; font-weight: 800; letter-spacing: .17em; }
.product-card h3 { margin: 0; color: var(--green); font-family: var(--serif); font-size: 22px; font-weight: 600; letter-spacing: .04em; }
.product-card h3 a:hover { color: var(--gold-dark); }
.product-card-body > p:not(.product-category) { min-height: 50px; margin: 10px 0 19px; color: var(--muted); font-size: 13px; line-height: 1.8; }
.product-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 17px; border-top: 1px solid #ebe8df; }
.text-link, .video-link, .light-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-size: 12px; font-weight: 800; }
.text-link:hover, .video-link:hover { color: var(--gold-dark); }
.video-link { padding: 0; border: 0; background: transparent; }
.empty-products { grid-column: 1 / -1; padding: 70px; text-align: center; border: 1px dashed var(--line); background: var(--cream); }
.noscript-note { padding: 15px; background: var(--cream); color: var(--muted); }

.story-section { overflow: hidden; padding: 112px 0; color: var(--white); background: var(--green); }
.story-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 88px; align-items: center; }
.story-visual { position: relative; padding: 0 25px 25px 0; }
.story-visual::before { content: ""; position: absolute; left: -60px; bottom: -60px; width: 230px; height: 230px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.story-visual img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 4.5; object-fit: cover; filter: saturate(.8); }
.story-stamp { position: absolute; z-index: 2; right: 0; bottom: 0; width: 145px; height: 145px; display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--green); background: #d4b982; border-radius: 50%; box-shadow: 0 10px 35px rgba(0,0,0,.18); }
.story-stamp strong { font-family: var(--serif); font-size: 43px; line-height: 1; }
.story-stamp span { font-size: 8px; font-weight: 800; line-height: 1.6; letter-spacing: .13em; }
.story-copy { padding-right: 30px; }
.story-copy h2 { color: var(--white); }
.story-copy > p:not(.section-kicker) { margin: 20px 0; color: rgba(255,255,255,.68); font-size: 14px; line-height: 2; }
.story-copy .story-lead { color: rgba(255,255,255,.9) !important; font-family: var(--serif); font-size: 18px !important; line-height: 1.9 !important; }
.light-link { margin-top: 9px; color: #dcc18d; font-size: 13px; }
.story-copy blockquote { margin: 36px 0 0; padding: 24px 0 0 24px; border-top: 1px solid rgba(255,255,255,.13); border-left: 2px solid #d1b275; color: rgba(255,255,255,.9); font-family: var(--serif); font-size: 16px; }
.story-copy cite { display: block; margin-top: 8px; color: rgba(255,255,255,.45); font-family: var(--sans); font-size: 10px; font-style: normal; letter-spacing: .12em; }

.quality-section { background: var(--cream); }
.section-heading.centered { display: block; max-width: 700px; margin: 0 auto 64px; text-align: center; }
.section-heading.centered > p:last-child { width: auto; margin: 17px auto 0; }
.quality-steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin: 0; padding: 0; list-style: none; }
.quality-steps::before { content: ""; position: absolute; top: 60px; left: 12%; right: 12%; height: 1px; background: #d4d4ca; }
.quality-steps li { position: relative; z-index: 1; text-align: center; }
.quality-steps li > span { position: absolute; top: 0; left: 50%; transform: translateX(34px); color: #baa37e; font-size: 9px; font-weight: 800; }
.quality-icon { width: 120px; height: 120px; display: grid; place-items: center; margin: 0 auto 22px; color: var(--green); background: var(--paper); border: 1px solid #d8d8cd; border-radius: 50%; box-shadow: 0 10px 28px rgba(23,63,49,.05); }
.quality-icon svg { width: 50px; height: 50px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.quality-steps h3 { margin: 0 0 10px; color: var(--green); font-family: var(--serif); font-size: 18px; }
.quality-steps p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.8; }
.cert-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 64px; padding-top: 30px; border-top: 1px solid #d8d8cd; }
.cert-row p { margin: 0 15px 0 0; color: var(--muted); font-size: 11px; }
.cert-row span { padding: 7px 13px; color: var(--green); border: 1px solid #cfd2c8; font-family: Georgia, serif; font-size: 11px; font-weight: 700; letter-spacing: .08em; }

.guide-section { padding: 112px 0; background: var(--paper); }
.guide-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); gap: 88px; align-items: center; }
.guide-card { position: relative; padding: 22px; background: var(--cream); box-shadow: var(--shadow); transform: rotate(-1.5deg); }
.guide-image { position: relative; overflow: hidden; aspect-ratio: 1.4; }
.guide-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 60%, rgba(12,35,26,.4)); }
.guide-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 56%; }
.guide-play { position: absolute; z-index: 2; top: 50%; left: 50%; width: 70px; height: 70px; display: grid; place-items: center; transform: translate(-50%,-50%); color: var(--green); background: rgba(255,255,255,.92); border-radius: 50%; }
.guide-play svg { width: 27px; fill: currentColor; }
.guide-card > div:last-child { display: flex; align-items: center; justify-content: space-between; padding: 18px 3px 2px; }
.guide-card span { color: var(--gold-dark); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.guide-card strong { color: var(--green); font-family: var(--serif); font-size: 18px; }
.guide-copy > p:not(.section-kicker) { margin: 20px 0 24px; color: var(--muted); font-size: 14px; line-height: 2; }
.guide-copy ul { margin: 0 0 30px; padding: 0; list-style: none; }
.guide-copy li { display: flex; align-items: center; gap: 15px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.guide-copy li span { color: var(--gold-dark); font-family: Georgia, serif; font-size: 11px; }
.button-dark { color: var(--white); background: var(--green); border-color: var(--green); }

.cta-section { padding: 70px 0; color: var(--white); background: #a36735; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-inner h2 { color: var(--white); font-size: clamp(28px, 3vw, 41px); }
.cta-inner > div > p:last-child { margin: 10px 0 0; color: rgba(255,255,255,.73); font-size: 13px; }
.cta-actions { display: flex; gap: 11px; }
.button-white { color: var(--green); background: var(--white); }
.button-outline-white { color: var(--white); border-color: rgba(255,255,255,.6); background: transparent; }

.site-footer { padding-top: 70px; color: rgba(255,255,255,.6); background: #102e24; }
.footer-main { display: grid; grid-template-columns: 1.7fr .7fr .7fr 1.2fr; gap: 55px; padding-bottom: 58px; }
.brand-light { color: var(--white); }
.brand-light small { color: #d8bd89; }
.footer-brand > p { max-width: 280px; margin: 22px 0 0; font-family: var(--serif); font-size: 14px; }
.footer-main h3 { margin: 3px 0 18px; color: var(--white); font-size: 13px; }
.footer-main > div:not(.footer-brand) a, .footer-main > div:not(.footer-brand) p { display: block; margin: 9px 0; font-size: 11px; }
.footer-main a:hover { color: var(--white); }
.footer-bottom { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.08); font-size: 10px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { margin-left: 22px; }
.footer-records { display: flex; align-items: center; justify-content: center; gap: 16px; flex: 1 1 280px; }
.footer-records:empty { display: none; }
.footer-records a { margin: 0; white-space: nowrap; }
.compact-footer { padding: 0; }

.video-dialog { width: min(900px, calc(100% - 36px)); padding: 0; border: 0; color: var(--text); background: var(--paper); box-shadow: 0 35px 110px rgba(5,22,16,.42); }
.video-dialog::backdrop { background: rgba(5,22,16,.8); backdrop-filter: blur(5px); }
.dialog-copy { padding: 25px 72px 20px 28px; }
.dialog-copy h2 { margin: 0; color: var(--green); font-family: var(--serif); font-size: 25px; }
.dialog-copy .section-kicker { margin-bottom: 4px; }
.dialog-close { position: absolute; z-index: 2; top: 19px; right: 20px; width: 39px; height: 39px; border: 1px solid var(--line); color: var(--green); background: transparent; font-size: 24px; line-height: 1; }
.video-dialog video { display: block; width: 100%; max-height: 65vh; background: #07130e; }

/* Product detail */
.detail-page { background: var(--cream); }
.breadcrumb { display: flex; gap: 10px; padding-top: 112px; color: var(--muted); font-size: 11px; }
.breadcrumb a:hover { color: var(--gold-dark); }
.product-detail { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr); gap: 80px; align-items: center; padding-top: 34px; padding-bottom: 100px; }
.detail-image { position: relative; padding: 25px; background: var(--white); box-shadow: var(--shadow); }
.detail-image img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.detail-image > span { position: absolute; top: 40px; left: 40px; padding: 8px 12px; color: var(--white); background: var(--green); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.detail-main-photo { background: var(--cream); }
.detail-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.detail-thumbs img { aspect-ratio: 1; padding: 4px; border: 1px solid #ebe8df; background: var(--cream); }
.detail-copy h1 { font-size: clamp(42px, 4.4vw, 62px); }
.detail-tagline { margin: 15px 0 28px; color: var(--gold-dark); font-family: var(--serif); font-size: 18px; }
.detail-description { color: var(--muted); font-size: 14px; line-height: 2; }
.detail-description p { margin: 0 0 14px; }
.detail-facts { margin: 28px 0 30px; border-top: 1px solid #d4d5cd; }
.detail-facts div { display: grid; grid-template-columns: 92px 1fr; gap: 15px; padding: 14px 0; border-bottom: 1px solid #d4d5cd; font-size: 12px; }
.detail-facts dt { color: var(--green); font-weight: 800; }
.detail-facts dd { margin: 0; color: var(--muted); }
.detail-actions { display: flex; align-items: center; gap: 28px; }
.share-button { padding: 0; border: 0; color: var(--green); background: transparent; font-size: 12px; font-weight: 800; }
.share-button:hover { color: var(--gold-dark); }
.share-feedback { min-height: 20px; margin: 10px 0 0; color: var(--gold-dark); font-size: 11px; }
.detail-video { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: center; padding: 95px max(24px, calc((100vw - 1180px)/2)); color: var(--white); background: var(--green); }
.extended-detail { padding: 100px 0; background: var(--white); }
.extended-detail .section-heading { margin-bottom: 34px; }
.extended-detail-copy { max-width: 820px; margin: 0 auto 45px; color: var(--muted); font-size: 14px; line-height: 2.15; text-align: center; }
.extended-detail-copy p { margin: 0 0 14px; }
.extended-detail-gallery { display: grid; grid-template-columns: 1fr; gap: 18px; }
.extended-detail-gallery img { width: 100%; background: var(--cream); object-fit: cover; }
.extended-detail-gallery img:only-child { grid-column: 1 / -1; max-width: 900px; margin: auto; }
.detail-video h2 { color: var(--white); }
.detail-video-copy > p:last-child, .empty-video > div > p:last-child { color: rgba(255,255,255,.66); }
.detail-video-player { padding: 14px; background: rgba(255,255,255,.08); }
.detail-video video { display: block; width: 100%; max-height: 540px; background: #081711; }
.empty-video { display: block; text-align: center; }
.empty-video > div { max-width: 660px; margin: auto; }
.detail-promise { padding: 48px 0; color: var(--green); background: var(--sand); }
.detail-promise .container { display: grid; grid-template-columns: repeat(3, 1fr); }
.detail-promise div > div { padding: 0 35px; text-align: center; border-right: 1px solid rgba(23,63,49,.14); }
.detail-promise div > div:last-child { border-right: 0; }
.detail-promise strong, .detail-promise span { display: block; }
.detail-promise strong { font-family: var(--serif); font-size: 18px; }
.detail-promise span { margin-top: 4px; color: var(--muted); font-size: 11px; }
.detail-back { padding: 90px 0; text-align: center; background: var(--paper); }
.detail-back .button { margin-top: 28px; }

/* Video teaching page */
.video-teach-section { background: var(--paper); }
.video-teach-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.video-teach-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid #ebe8df; background: var(--white); box-shadow: 0 18px 55px rgba(20,55,42,.08); }
.video-teach-player { position: relative; display: block; overflow: hidden; background: #07130e; }
.video-teach-player img, .video-teach-player video { display: block; width: 100%; aspect-ratio: 16 / 10; min-height: 0; object-fit: cover; }
.video-teach-link img { transition: transform .45s; }
.video-teach-link:hover img { transform: scale(1.04); }
.video-play-badge { position: absolute; left: 50%; top: 50%; display: grid; place-items: center; width: 62px; height: 62px; transform: translate(-50%,-50%); color: var(--green); background: rgba(255,255,255,.92); border-radius: 50%; box-shadow: 0 14px 38px rgba(5,22,16,.22); }
.video-play-badge svg { width: 28px; fill: currentColor; }
.video-teach-copy { display: flex; flex: 1; flex-direction: column; justify-content: space-between; padding: 24px; }
.video-teach-copy h3 { margin: 0; color: var(--green); font-family: var(--serif); font-size: 22px; font-weight: 600; }
.video-teach-copy h3 a:hover { color: var(--gold-dark); }
.video-teach-copy > p:not(.product-category) { margin: 14px 0 24px; color: var(--muted); font-size: 13px; line-height: 1.9; }
.video-teach-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid #ebe8df; }
.muted-link { color: var(--muted); }

/* Video watch detail */
.video-watch { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); gap: 46px; align-items: center; padding-top: 34px; padding-bottom: 96px; }
.video-watch-player { padding: 14px; background: #07130e; box-shadow: var(--shadow); }
.video-watch-player video { display: block; width: 100%; aspect-ratio: 16 / 9; max-height: 70vh; background: #07130e; }
.video-watch-copy { padding: 36px; background: var(--paper); border: 1px solid #e4ded2; box-shadow: 0 18px 55px rgba(20,55,42,.08); }
.video-watch-copy h1 { margin: 0; color: var(--green); font-family: var(--serif); font-size: clamp(34px, 3.8vw, 54px); font-weight: 600; line-height: 1.25; }
.video-watch-actions { margin-top: 28px; }

/* Admin */
.admin-page { min-height: 100vh; color: var(--text); background: #f1f2ee; }
.admin-shell { display: grid; grid-template-columns: 250px minmax(0, 1fr); min-height: 100vh; }
.admin-sidebar { position: sticky; top: 0; height: 100vh; padding: 30px 24px; color: rgba(255,255,255,.68); background: var(--green); }
.admin-sidebar .brand { color: var(--white); }
.admin-nav { display: grid; gap: 6px; margin-top: 48px; }
.admin-nav a, .admin-nav-item { width: 100%; display: flex; align-items: center; gap: 12px; padding: 11px 13px; border: 0; border-radius: 4px; color: inherit; background: transparent; font-size: 13px; text-align: left; }
.admin-nav a.active, .admin-nav a:hover, .admin-nav-item.active, .admin-nav-item:hover { color: var(--white); background: rgba(255,255,255,.1); }
.admin-nav i { width: 7px; height: 7px; border: 1px solid currentColor; border-radius: 50%; }
.admin-back { position: absolute; bottom: 30px; left: 24px; font-size: 12px; }
.admin-back-group { position: absolute; right: 24px; bottom: 28px; left: 24px; display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 11px; }
.admin-back-group button { padding: 0; border: 0; color: rgba(255,255,255,.58); background: transparent; font-size: 11px; }
.admin-back-group button:hover, .admin-back-group a:hover { color: var(--white); }
.admin-main { min-width: 0; padding: 34px 42px 60px; }
.admin-view { display: none; }
.admin-view.active { display: block; }
.admin-topbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.admin-topbar h1 { margin: 0; color: var(--green); font-family: var(--serif); font-size: 28px; }
.admin-topbar p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }
.admin-button { min-height: 42px; padding: 9px 17px; border: 1px solid var(--green); color: var(--white); background: var(--green); font-size: 12px; font-weight: 700; }
.admin-button.secondary { color: var(--green); background: transparent; }
.admin-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.admin-stat { padding: 21px 23px; background: var(--white); border: 1px solid #e1e3de; }
.admin-stat span { display: block; color: var(--muted); font-size: 11px; }
.admin-stat strong { display: block; margin-top: 5px; color: var(--green); font-family: var(--serif); font-size: 27px; }
.admin-panel { background: var(--white); border: 1px solid #e1e3de; }
.admin-panel-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid #e1e3de; }
.admin-panel-head h2 { margin: 0; color: var(--green); font-size: 15px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 14px 18px; border-bottom: 1px solid #ebece8; text-align: left; font-size: 12px; }
.admin-table th { color: var(--muted); background: #fafbf8; font-size: 10px; letter-spacing: .08em; }
.admin-product { display: flex; align-items: center; gap: 12px; }
.admin-product img { width: 50px; height: 50px; object-fit: cover; background: var(--cream); }
.admin-product strong, .admin-product span { display: block; }
.admin-product strong { color: var(--green); }
.admin-product span { color: var(--muted); font-size: 10px; }
.status-badge { display: inline-block; padding: 4px 8px; color: #20714d; background: #e5f4e9; font-size: 10px; }
.table-action { padding: 5px 8px; border: 0; color: var(--muted); background: transparent; font-size: 11px; }
.table-action.danger:hover { color: #a2362c; }
.admin-table td:last-child { white-space: nowrap; }
.admin-empty { padding: 60px 20px; text-align: center; color: var(--muted); }
.upload-dialog { width: min(850px, calc(100% - 30px)); max-height: 92vh; padding: 0; border: 0; color: var(--text); background: #f8f8f5; box-shadow: 0 30px 100px rgba(5,22,16,.35); }
.upload-dialog::backdrop { background: rgba(5,22,16,.68); }
.upload-head { position: sticky; z-index: 3; top: 0; display: flex; align-items: center; justify-content: space-between; padding: 20px 25px; border-bottom: 1px solid #dddeda; background: #f8f8f5; }
.upload-head h2 { margin: 0; color: var(--green); font-family: var(--serif); font-size: 21px; }
.upload-close { width: 35px; height: 35px; border: 1px solid #d6d8d2; background: transparent; font-size: 21px; }
.product-form { padding: 25px; }
.form-section { margin-bottom: 27px; }
.form-section h3 { margin: 0 0 15px; padding-bottom: 9px; color: var(--green); border-bottom: 1px solid #dddeda; font-size: 13px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.form-field { display: grid; gap: 6px; color: #4e5b55; font-size: 11px; font-weight: 700; }
.form-field.full { grid-column: 1 / -1; }
.form-field input, .form-field textarea, .form-field select { width: 100%; min-height: 42px; padding: 9px 11px; border: 1px solid #d6d8d2; color: var(--text); background: var(--white); border-radius: 0; outline: none; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--green); box-shadow: 0 0 0 2px rgba(23,63,49,.07); }
.form-field textarea { min-height: 100px; resize: vertical; }
.form-field small { color: #8a928d; font-size: 9px; font-weight: 400; }
.file-drop { position: relative; min-height: 120px; display: grid; place-items: center; padding: 20px; border: 1px dashed #b9c0ba; color: var(--muted); background: var(--white); text-align: center; }
.file-drop input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.file-drop strong { display: block; color: var(--green); font-size: 12px; }
.file-drop span { display: block; margin-top: 4px; font-size: 10px; }
.file-drop.has-file { border-color: var(--green); background: #f0f6f1; }
.form-check { display: flex; align-items: center; gap: 8px; font-size: 11px; }
.form-check input { width: 16px; height: 16px; accent-color: var(--green); }
.form-check.full { grid-column: 1 / -1; }
.form-actions { position: sticky; z-index: 2; bottom: -25px; display: flex; align-items: center; justify-content: flex-end; gap: 10px; margin: 12px -25px -25px; padding: 16px 25px; border-top: 1px solid #dddeda; background: #f8f8f5; }
.upload-progress { display: none; margin-right: auto; color: var(--muted); font-size: 11px; }
.upload-progress.active { display: block; }
.admin-toast { position: fixed; z-index: 200; right: 25px; bottom: 25px; max-width: 350px; padding: 13px 17px; color: var(--white); background: var(--green); box-shadow: 0 14px 42px rgba(5,22,16,.25); font-size: 12px; transform: translateY(20px); opacity: 0; pointer-events: none; transition: .25s; }
.admin-toast.show { transform: none; opacity: 1; }
.admin-toast.error { background: #8e382f; }
.qr-dialog { width: min(420px, calc(100% - 30px)); padding: 34px; border: 0; color: var(--text); background: var(--paper); box-shadow: 0 30px 100px rgba(5,22,16,.4); text-align: center; }
.qr-dialog::backdrop { background: rgba(5,22,16,.78); backdrop-filter: blur(5px); }
.qr-dialog h2 { margin: 0 40px 18px; color: var(--green); font-family: var(--serif); font-size: 23px; }
.qr-dialog > img { width: min(300px, 100%); aspect-ratio: 1; margin: 0 auto 14px; object-fit: contain; background: var(--white); border: 1px solid var(--line); }
.qr-dialog > p:not(.section-kicker) { margin: 8px 0 18px; color: var(--muted); font-size: 11px; }
.qr-dialog > small { display: block; color: var(--muted); font-size: 10px; }
.qr-dialog .dialog-close { top: 15px; right: 15px; }
.qr-empty-message[hidden], .wechat-qr-image[hidden] { display: none; }
.auth-page { min-height: 100vh; display: grid; place-items: center; padding: 28px; background: radial-gradient(circle at 80% 15%, rgba(180,122,63,.16), transparent 32%), var(--green); }
.auth-card { width: min(460px, 100%); padding: 38px 42px; background: var(--paper); box-shadow: 0 35px 100px rgba(2,18,12,.35); }
.auth-brand { margin-bottom: 38px; }
.auth-heading h1 { margin: 0; color: var(--green); font-family: var(--serif); font-size: 31px; }
.auth-heading > p:last-child { margin: 9px 0 24px; color: var(--muted); font-size: 12px; }
.auth-form { display: grid; gap: 16px; }
.auth-form label { display: grid; gap: 7px; color: var(--green); font-size: 11px; font-weight: 700; }
.auth-form input { width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid #ced3cd; color: var(--text); background: var(--white); outline: none; }
.auth-form input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(23,63,49,.08); }
.auth-error { min-height: 20px; margin: -4px 0; color: #a2362c; font-size: 11px; }
.auth-submit { width: 100%; min-height: 48px; }
.auth-home { display: block; margin-top: 24px; color: var(--muted); font-size: 11px; text-align: center; }
.settings-form { overflow: hidden; }
.detail-editor-section { padding: 18px; border: 1px solid #d4c3aa; background: #fbf7ef; }
.detail-editor-section h3 { color: var(--gold-dark); }
.settings-section { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 38px; padding: 30px; border-bottom: 1px solid #e1e3de; }
.settings-section-title { display: flex; align-items: flex-start; gap: 14px; }
.settings-section-title > span { display: grid; place-items: center; flex: 0 0 31px; width: 31px; height: 31px; color: var(--gold-dark); border: 1px solid #cfc4b4; border-radius: 50%; font-family: Georgia, serif; font-size: 10px; }
.settings-section-title h2 { margin: 2px 0 3px; color: var(--green); font-family: var(--serif); font-size: 16px; }
.settings-section-title p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.7; }
.settings-fields { margin: 0; }
.settings-image-field { position: relative; display: grid; grid-template-columns: 90px 1fr; gap: 16px; align-items: center; min-height: 104px; padding: 10px; border: 1px dashed #b9c0ba; background: #fbfcf9; }
.settings-image-field.wide { grid-template-columns: 170px 1fr; }
.settings-image-field img { width: 90px; height: 82px; object-fit: cover; background: var(--cream); }
.settings-image-field.wide img { width: 170px; }
.settings-image-field > span { position: relative; display: grid; gap: 4px; padding: 9px; }
.settings-image-field input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.settings-image-field strong { color: var(--green); font-size: 12px; }
.settings-image-field small { color: var(--muted); font-size: 9px; font-weight: 400; }
.settings-image-field.has-file { border-color: var(--green); background: #f0f6f1; }
.settings-savebar { position: sticky; z-index: 5; bottom: 0; display: flex; align-items: center; justify-content: flex-end; gap: 22px; padding: 18px 30px; background: rgba(248,248,245,.96); box-shadow: 0 -10px 25px rgba(23,63,49,.06); backdrop-filter: blur(8px); }
.settings-savebar span { margin-right: auto; color: var(--muted); font-size: 11px; }
.video-admin-panel .form-actions { position: static; grid-column: 1 / -1; margin: 0; padding: 0; border-top: 0; background: transparent; }
.video-current { display: grid; gap: 5px; padding: 14px; border: 1px solid #d9dcd5; background: #fbfcf9; color: var(--muted); font-size: 11px; }
.video-current strong { color: var(--green); font-size: 13px; }
.video-current span, .video-current a { display: block; }
.video-admin-list { display: grid; gap: 10px; }
.video-admin-card { display: grid; grid-template-columns: 58px minmax(0, 1fr) auto auto; align-items: center; gap: 12px; padding: 12px; border: 1px solid #e1e3de; background: #fbfcf9; }
.video-admin-card img { width: 58px; height: 58px; object-fit: cover; background: var(--cream); }
.video-admin-card strong, .video-admin-card span { display: block; }
.video-admin-card strong { color: var(--green); }
.video-admin-card span { color: var(--muted); font-size: 10px; }

.reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .main-nav { gap: 20px; }
  .header-action { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid, .guide-grid { gap: 48px; }
  .quality-steps { gap: 18px; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-main > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 34px, 680px); }
  .site-header, .site-header.scrolled, .solid-header { height: 70px; }
  .menu-toggle { display: block !important; }
  .menu-toggle > span:not(.sr-only) { visibility: hidden; }
  .main-nav { position: fixed; inset: 70px 0 auto; display: grid; gap: 0; padding: 18px 24px 28px; background: var(--paper); box-shadow: 0 18px 30px rgba(20,55,42,.12); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: .3s; }
  .main-nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .main-nav a::after { display: none; }
  .hero { min-height: 730px; height: 92vh; }
  .hero-image { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(248,244,233,.98), rgba(248,244,233,.84) 62%, rgba(248,244,233,.2)); }
  .hero h1 { font-size: clamp(42px, 9vw, 60px); }
  .hero-lead { max-width: 520px; }
  .scroll-cue { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); padding: 18px 0; }
  .trust-grid > div { border-bottom: 1px solid rgba(255,255,255,.1); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
  .section, .story-section, .guide-section { padding: 82px 0; }
  .products-hero { padding: 126px 0 66px; }
  .products-hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .products-hero-card { max-width: 520px; }
  .products-page-section { padding-top: 76px; }
  .section-heading { display: block; }
  .section-heading > p { width: auto; margin-top: 16px; }
  .story-grid, .guide-grid, .product-detail, .detail-video, .video-watch { grid-template-columns: 1fr; }
  .video-teach-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-visual { max-width: 560px; }
  .story-copy { padding-right: 0; }
  .quality-steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .quality-steps::before { display: none; }
  .cert-row { flex-wrap: wrap; }
  .cert-row p { width: 100%; text-align: center; }
  .cta-inner { display: block; }
  .cta-actions { margin-top: 28px; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-main > div:last-child { grid-column: auto; }
  .product-detail { gap: 42px; padding-bottom: 75px; }
  .detail-video { gap: 35px; }
  .extended-detail { padding: 75px 0; }
  .admin-shell { display: block; }
  .admin-sidebar { position: static; height: auto; padding: 18px; }
  .admin-sidebar .brand { display: inline-flex; }
  .admin-nav { display: inline-flex; margin: 0 0 0 40px; vertical-align: middle; }
  .admin-nav a, .admin-nav-item { width: auto; }
  .admin-back, .admin-back-group { position: static; float: right; margin-top: 11px; }
  .admin-main { padding: 28px 20px 50px; }
  .settings-section { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 580px) {
  .container { width: calc(100% - 28px); }
  .brand-symbol { width: 39px; height: 39px; }
  .brand strong { font-size: 17px; }
  .hero { min-height: 690px; }
  .hero-image { object-position: 68% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(248,244,233,.98), rgba(248,244,233,.9) 68%, rgba(248,244,233,.25)); }
  .hero-content { padding-top: 60px; }
  .hero-eyebrow { margin-bottom: 17px; font-size: 10px; }
  .hero h1 { font-size: 40px; }
  .hero-lead { margin: 20px 0 25px; font-size: 13px; line-height: 1.9; }
  .hero-actions .button { width: 100%; }
  .hero-metrics { margin-top: 35px; }
  .hero-metrics div { min-width: 0; flex: 1; padding-right: 10px; margin-right: 10px; }
  .hero-metrics dt { font-size: 25px; }
  .hero-metrics dd { font-size: 9px; }
  .trust-grid { width: 100%; }
  .trust-grid > div { justify-content: flex-start; padding: 8px 15px; }
  .trust-icon { width: 34px; height: 34px; }
  .trust-grid strong { font-size: 13px; }
  .trust-grid small { font-size: 9px; }
  .section, .story-section, .guide-section { padding: 66px 0; }
  .products-hero { padding: 112px 0 54px; }
  .products-hero h1 { font-size: 40px; }
  .products-hero p:not(.section-kicker) { font-size: 13px; line-height: 1.9; }
  .products-hero-actions .button { width: 100%; }
  .products-hero-card { grid-template-columns: 44px 1fr; padding: 20px; }
  .products-hero-card strong { font-size: 15px; }
  .section-heading h2, .story-copy h2, .guide-copy h2, .detail-video h2 { font-size: 31px; }
  .section-heading { margin-bottom: 30px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card-body > p:not(.product-category) { min-height: 0; }
  .story-grid { gap: 50px; }
  .story-stamp { width: 112px; height: 112px; }
  .story-stamp strong { font-size: 34px; }
  .story-stamp span { font-size: 6px; }
  .quality-steps { grid-template-columns: 1fr; }
  .quality-steps p { max-width: 270px; margin: auto; }
  .cert-row span { font-size: 9px; }
  .guide-grid { gap: 45px; }
  .guide-card { padding: 12px; }
  .guide-card strong { font-size: 14px; }
  .guide-play { width: 56px; height: 56px; }
  .cta-actions { flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-main > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 6px; }
  .footer-bottom a { margin: 0 18px 0 0; }
  .footer-records { justify-content: flex-start; flex: 0 1 auto; flex-wrap: wrap; gap: 6px 14px; }
  .breadcrumb { padding-top: 92px; overflow-x: auto; white-space: nowrap; }
  .product-detail { padding-top: 24px; }
  .detail-image { padding: 13px; }
  .detail-image > span { top: 23px; left: 23px; }
  .detail-thumbs { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .detail-copy h1 { font-size: 40px; }
  .detail-actions { align-items: flex-start; flex-direction: column; }
  .detail-video { padding-block: 65px; }
  .extended-detail-gallery { grid-template-columns: 1fr; }
  .video-teach-grid { grid-template-columns: 1fr; }
  .video-teach-player video { aspect-ratio: 16 / 9; }
  .video-teach-player img { aspect-ratio: 16 / 9; }
  .video-teach-copy { padding: 24px; }
  .video-teach-actions { align-items: flex-start; flex-direction: column; }
  .video-watch { gap: 26px; padding-top: 22px; padding-bottom: 70px; }
  .video-watch-player { padding: 8px; }
  .video-watch-copy { padding: 24px; }
  .video-watch-actions { align-items: flex-start; flex-direction: column; }
  .detail-promise .container { grid-template-columns: 1fr; }
  .detail-promise div > div { padding: 18px 0; border-right: 0; border-bottom: 1px solid rgba(23,63,49,.14); }
  .detail-promise div > div:last-child { border-bottom: 0; }
  .admin-sidebar .brand { display: flex; }
  .admin-nav { display: none; }
  .admin-back, .admin-back-group { position: absolute; right: 18px; bottom: auto; left: auto; top: 18px; }
  .admin-topbar { align-items: flex-start; flex-direction: column; }
  .admin-stats { grid-template-columns: 1fr; }
  .admin-panel { overflow-x: auto; }
  .admin-table { min-width: 680px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .settings-section { padding: 22px 17px; }
  .settings-image-field, .settings-image-field.wide { grid-template-columns: 92px 1fr; }
  .settings-image-field img, .settings-image-field.wide img { width: 92px; height: 82px; }
  .settings-savebar { align-items: stretch; flex-direction: column; gap: 10px; padding: 15px 17px; }
  .settings-savebar .admin-button { width: 100%; }
  .video-admin-card { grid-template-columns: 58px 1fr; }
  .video-admin-card .table-action { width: 100%; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
