:root {
  --red: #b92216;
  --orange: #e64a19;
  --orange-2: #ff6f3c;
  --cream: #fff7f1;
  --white: #ffffff;
  --dark: #24140f;
  --muted: #6f5e58;
  --line: rgba(185, 34, 22, 0.16);
  --shadow: 0 22px 70px rgba(82, 28, 15, 0.15);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
  background: linear-gradient(180deg, #fff 0%, var(--cream) 60%, #fff 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }
.shell { width: min(var(--max), calc(100% - 36px)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 10px; background: var(--dark); color: #fff; padding: 10px; z-index: 99; }
.skip-link:focus { left: 10px; }
.announcement { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; padding: 9px 18px; background: var(--red); color: #fff; font-size: 0.92rem; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.92); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 78px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; }
.brand img { filter: drop-shadow(0 8px 18px rgba(230,74,25,.22)); }
.brand span { display: grid; line-height: 1.15; }
.brand small { color: var(--muted); font-weight: 650; }
.menu { display: flex; align-items: center; gap: 22px; color: #4b332c; font-weight: 750; }
.menu a:hover { color: var(--orange); }
.menu-toggle { display: none; background: var(--cream); color: var(--red); border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px; font-weight: 800; }
.cart-button { border: 0; background: var(--orange); color: #fff; display: inline-flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 999px; font-weight: 900; cursor: pointer; box-shadow: 0 12px 24px rgba(230,74,25,.22); }
.cart-button strong { background: #fff; color: var(--red); min-width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; }
.hero { display: grid; grid-template-columns: 1.06fr .94fr; gap: 42px; align-items: center; padding: 74px 0 58px; }
.eyebrow { color: var(--orange); font-weight: 950; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; margin: 0 0 10px; }
h1, h2, h3 { line-height: 1.08; margin: 0; }
h1 { font-size: clamp(2.7rem, 6vw, 5.4rem); letter-spacing: -0.065em; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); letter-spacing: -0.045em; }
h3 { font-size: 1.22rem; letter-spacing: -0.015em; }
.hero-text { font-size: 1.2rem; color: var(--muted); max-width: 670px; }
.hero-actions, .checkout-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.button { border: 0; border-radius: 999px; padding: 13px 20px; display: inline-flex; justify-content: center; align-items: center; gap: 8px; cursor: pointer; font-weight: 900; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: #fff; box-shadow: 0 14px 28px rgba(230,74,25,.25); }
.button-ghost { background: #fff; color: var(--red); border: 1px solid var(--line); }
.button-dark { background: var(--dark); color: #fff; }
.button-small { padding: 9px 14px; background: var(--orange); color: #fff; }
.button-danger { background: #8f1d16; color: #fff; }
.hero-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.hero-meta span, .pill { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; color: var(--red); font-weight: 850; }
.hero-card { background: linear-gradient(145deg, #fff, #fff2e8); border: 1px solid var(--line); border-radius: 34px; padding: 28px; min-height: 520px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.hero-card::before { content: ""; position: absolute; width: 290px; height: 290px; border-radius: 50%; right: -80px; top: -70px; background: radial-gradient(circle, rgba(255,111,60,.28), transparent 68%); }
.hero-card-top { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.rating { color: var(--orange); letter-spacing: 2px; }
.hero-basket { position: relative; min-height: 320px; margin: 24px 0; }
.basket-item { position: absolute; display: grid; place-items: center; min-width: 132px; min-height: 92px; padding: 16px; border-radius: 28px; background: linear-gradient(135deg, var(--orange), var(--red)); color: #fff; font-weight: 950; box-shadow: 0 18px 45px rgba(185,34,22,.22); transform: rotate(-8deg); }
.item-one { left: 10px; top: 18px; }
.item-two { right: 28px; top: 72px; transform: rotate(7deg); background: linear-gradient(135deg, #ff9800, #e65100); }
.item-three { left: 86px; bottom: 36px; transform: rotate(5deg); }
.item-four { right: 16px; bottom: 10px; transform: rotate(-8deg); background: linear-gradient(135deg, #7cb342, #2e7d32); }
.strip { background: var(--red); color: #fff; }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.strip-grid div { padding: 22px; border-left: 1px solid rgba(255,255,255,.16); }
.strip-grid strong, .strip-grid span { display: block; }
.strip-grid span { color: rgba(255,255,255,.76); }
.section { padding: 78px 0; }
.section-heading { display: flex; justify-content: space-between; gap: 28px; align-items: flex-end; margin-bottom: 30px; }
.section-heading p { color: var(--muted); max-width: 720px; }
.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.category-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: 0 14px 34px rgba(82,28,15,.07); transition: transform .2s ease, box-shadow .2s ease; }
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.category-icon { width: 46px; height: 46px; display: grid; place-items: center; background: var(--cream); color: var(--orange); border-radius: 16px; font-weight: 950; margin-bottom: 18px; }
.category-card p { color: var(--muted); margin: 9px 0 0; }
.shop-section { background: #fff; border-block: 1px solid var(--line); }
.shop-tools { background: var(--cream); border: 1px solid var(--line); border-radius: 24px; padding: 18px; margin-bottom: 24px; }
.search-box { display: grid; gap: 8px; font-weight: 900; color: var(--red); }
.search-box input, .checkout-form input, .checkout-form textarea, .admin-form input, .admin-form textarea, .admin-form select { width: 100%; border: 1px solid rgba(185,34,22,.22); border-radius: 14px; padding: 12px 14px; background: #fff; outline: none; }
.search-box input:focus, .checkout-form input:focus, .checkout-form textarea:focus, .admin-form input:focus, .admin-form textarea:focus, .admin-form select:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(230,74,25,.12); }
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.filter-chip { border: 1px solid var(--line); background: #fff; color: var(--red); border-radius: 999px; padding: 9px 12px; font-weight: 850; cursor: pointer; }
.filter-chip.is-active { background: var(--orange); color: #fff; border-color: var(--orange); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 32px rgba(82,28,15,.08); display: flex; flex-direction: column; }
.product-art { min-height: 180px; background: var(--cream); display: block; overflow: hidden; }
.product-art img, .product-detail-art img { width: 100%; height: 100%; object-fit: contain; background: #fff; padding: 10px; }
.product-art-pattern { min-height: 180px; width: 100%; height: 100%; }
.product-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-body p { color: var(--muted); margin: 0; }
.product-category { color: var(--orange); font-weight: 900; font-size: .79rem; text-transform: uppercase; letter-spacing: .08em; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.price { color: var(--red); font-size: 1.1rem; }
.price small { color: var(--muted); font-size: .75rem; font-weight: 700; }
.no-results, .empty-cart { background: var(--cream); border-radius: 18px; padding: 18px; color: var(--muted); }
.feature-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: stretch; }
.feature-panel, .feature-list > div, .contact-card, .content-page { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: 0 14px 34px rgba(82,28,15,.07); }
.feature-panel p, .feature-list p { color: var(--muted); }
.feature-list { display: grid; gap: 16px; }
.feature-list span { color: var(--orange); font-weight: 950; }
.contact-section { background: linear-gradient(135deg, var(--red), var(--orange)); color: #fff; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: start; }
.contact-section .eyebrow, .contact-section p { color: rgba(255,255,255,.86); }
.contact-card { color: var(--dark); }
.contact-card dl { display: grid; gap: 16px; margin: 0; }
.contact-card div { display: grid; grid-template-columns: 130px 1fr; gap: 20px; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
dt { color: var(--muted); font-weight: 850; }
dd { margin: 0; font-weight: 850; }
.site-footer { background: #1f120e; color: #fff; padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .9fr; gap: 28px; }
.footer-grid p, .footer-grid span, .footer-grid a, .footer-brand small { color: rgba(255,255,255,.68); }
.footer-grid > div { display: grid; align-content: start; gap: 10px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); margin-top: 30px; padding-top: 20px; color: rgba(255,255,255,.68); }
.cart-panel { position: fixed; inset: 0; pointer-events: none; z-index: 50; }
.cart-panel.is-open { pointer-events: auto; }
.cart-backdrop { position: absolute; inset: 0; background: rgba(35,16,10,.52); opacity: 0; transition: opacity .2s ease; }
.cart-panel.is-open .cart-backdrop { opacity: 1; }
.cart-drawer { position: absolute; top: 0; right: 0; height: 100vh; height: 100dvh; max-height: 100vh; max-height: 100dvh; width: min(440px, 100%); background: #fff; padding: 24px; transform: translateX(100%); transition: transform .24s ease; display: flex; flex-direction: column; gap: 18px; box-shadow: -20px 0 50px rgba(0,0,0,.18); overflow-y: auto; overflow-x: hidden; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; box-sizing: border-box; }
.cart-panel.is-open .cart-drawer { transform: translateX(0); }
.cart-head { display: flex; justify-content: space-between; align-items: center; }
.icon-button { width: 42px; height: 42px; border-radius: 50%; border: 0; background: var(--cream); color: var(--red); font-size: 1.8rem; cursor: pointer; }
.cart-items { display: grid; gap: 12px; max-height: 45vh; overflow-y: auto; overflow-x: hidden; padding-right: 6px; -webkit-overflow-scrolling: touch; }
.cart-line { display: flex; justify-content: space-between; gap: 12px; padding: 12px; border: 1px solid var(--line); border-radius: 16px; }
.cart-line span { display: block; color: var(--muted); font-size: .86rem; }
.qty-controls { display: inline-flex; align-items: center; gap: 8px; }
.qty-controls button { width: 28px; height: 28px; border: 0; border-radius: 50%; background: var(--orange); color: #fff; font-weight: 900; cursor: pointer; }
.cart-summary { background: var(--cream); border-radius: 18px; padding: 16px; }
.cart-summary div { display: flex; justify-content: space-between; font-size: 1.1rem; }
.cart-summary small { color: var(--muted); }
.checkout-form { display: grid; gap: 12px; }
.checkout-form label, .admin-form label { display: grid; gap: 7px; font-weight: 850; color: var(--red); }
.product-page .back-link { color: var(--orange); font-weight: 900; display: inline-block; margin-bottom: 18px; }
.product-detail-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; align-items: stretch; }
.product-detail-art { min-height: 470px; border-radius: 34px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--cream); }
.product-detail-copy { background: #fff; border: 1px solid var(--line); border-radius: 34px; padding: 34px; box-shadow: 0 14px 34px rgba(82,28,15,.07); }
.product-lead { font-size: 1.18rem; color: var(--muted); }
.rich-text { color: #3b2822; white-space: normal; }
.rich-text p { margin: 0 0 1rem; }
.product-purchase { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin: 24px 0 10px; }
.big-price { font-size: 1.8rem; }
.content-page { max-width: 850px; }

/* Admin */
.admin-body { background: #fff7f1; }
.admin-layout { min-height: 100vh; display: grid; grid-template-columns: 270px 1fr; }
.admin-sidebar { background: #20100b; color: #fff; padding: 24px; position: sticky; top: 0; min-height: 100vh; }
.admin-sidebar .brand { margin-bottom: 28px; }
.admin-sidebar nav { display: grid; gap: 8px; }
.admin-sidebar nav a { color: rgba(255,255,255,.78); padding: 10px 12px; border-radius: 12px; font-weight: 850; }
.admin-sidebar nav a:hover, .admin-sidebar nav a.is-active { background: rgba(255,255,255,.12); color: #fff; }
.admin-main { padding: 28px; }
.admin-topbar { display: flex; justify-content: space-between; gap: 18px; align-items: center; margin-bottom: 24px; }
.admin-topbar h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
.admin-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 22px; box-shadow: 0 14px 34px rgba(82,28,15,.07); }
.admin-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 22px; }
.stat strong { display: block; font-size: 2.1rem; color: var(--orange); line-height: 1; }
.stat span { color: var(--muted); font-weight: 850; }
.admin-actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 14px 0 0; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 12px 10px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.admin-table th { color: var(--red); font-size: .84rem; text-transform: uppercase; letter-spacing: .08em; }
.admin-table img { width: 54px; height: 54px; object-fit: cover; border-radius: 12px; background: var(--cream); }
.badge { display: inline-flex; border-radius: 999px; padding: 4px 9px; font-size: .78rem; font-weight: 900; background: var(--cream); color: var(--red); }
.badge.green { background: #e8f5e9; color: #2e7d32; }
.badge.grey { background: #f2f0ee; color: #6f5e58; }
.admin-form { display: grid; gap: 16px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-grid .wide, .admin-form .wide { grid-column: 1 / -1; }
.check-row { display: flex !important; flex-direction: row; align-items: center; gap: 10px !important; color: var(--dark) !important; }
.check-row input { width: auto !important; }
.flash { padding: 12px 14px; border-radius: 14px; margin-bottom: 16px; font-weight: 850; }
.flash.success { background: #e8f5e9; color: #205b24; }
.flash.error { background: #ffebee; color: #8f1d16; }
.login-shell { min-height: 100vh; display: grid; place-items: center; padding: 26px; }
.login-card { width: min(460px, 100%); }
.help-text { color: var(--muted); font-size: .92rem; }
.code-block { background: #22120d; color: #fff; border-radius: 18px; padding: 18px; overflow: auto; }

@media (max-width: 980px) {
  .hero, .feature-split, .contact-grid, .product-detail-grid { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; min-height: auto; }
  .admin-sidebar nav { grid-template-columns: repeat(2, 1fr); }
  .admin-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav { flex-wrap: wrap; }
  .menu-toggle { display: inline-flex; }
  .menu { display: none; width: 100%; flex-direction: column; align-items: flex-start; background: #fff; border: 1px solid var(--line); padding: 16px; border-radius: 18px; }
  .menu.is-open { display: flex; }
  .cart-button { margin-left: auto; }
  .hero { padding-top: 42px; }
  .category-grid, .product-grid, .strip-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .section-heading, .footer-bottom, .contact-card div, .admin-topbar { display: grid; grid-template-columns: 1fr; }
  .admin-sidebar nav, .admin-grid { grid-template-columns: 1fr; }
  .admin-main { padding: 18px; }
  h1 { font-size: clamp(2.4rem, 15vw, 4rem); }
}

/* Subcategories, checkout and orders */
.sub-filter-row { border-top: 1px dashed var(--line); padding-top: 14px; }
.sub-chip { background: #fff8f1; }
.subcategory-panel { margin-top: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: 0 14px 34px rgba(82,28,15,.07); }
.subcategory-panel h3 { margin-bottom: 14px; }
.subcategory-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.subcategory-list a { border: 1px solid var(--line); border-radius: 18px; padding: 14px; background: var(--cream); display: grid; gap: 4px; }
.subcategory-list a strong { color: var(--red); }
.subcategory-list a span { color: var(--muted); font-size: .88rem; font-weight: 750; }
.payment-choice { display: grid; gap: 10px; margin-top: 8px; }
.payment-choice label { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: #fff; cursor: pointer; }
.payment-choice input { width: auto; margin-top: 5px; }
.payment-choice small { color: var(--muted); display: block; margin-top: 2px; }
.checkout-alert { border-radius: 14px; padding: 12px 14px; background: #fff1eb; color: var(--red); border: 1px solid var(--line); font-weight: 750; }
.checkout-alert.success { background: #eef8ef; color: #246b2a; border-color: rgba(36,107,42,.22); }
.collection-notice { margin-top: 16px; background: #fff7e0; border: 1px solid rgba(230, 125, 0, .22); color: #704200; padding: 14px 16px; border-radius: 16px; font-weight: 750; }
.order-status-box { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.order-status-box p { margin: 0; background: var(--cream); border: 1px solid var(--line); border-radius: 16px; padding: 14px; }
.public-order-table { background: #fff; }
.order-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 16px; }
.order-detail-grid > div { background: var(--cream); border: 1px solid var(--line); border-radius: 18px; padding: 16px; }
@media (max-width: 900px) {
  .subcategory-list { grid-template-columns: repeat(2, 1fr); }
  .order-status-box, .order-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .subcategory-list { grid-template-columns: 1fr; }
}

/* Golden crown logo, daily popular products, and dedicated listing pages */
.brand img { width: 52px; height: 52px; object-fit: contain; }
.footer-brand img { width: 46px; height: 46px; object-fit: contain; }
.popular-today-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 24px 0 18px; }
.popular-tile { background: #fff; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; box-shadow: 0 14px 34px rgba(82,28,15,.08); display: grid; grid-template-rows: 170px auto; transition: transform .2s ease, box-shadow .2s ease; }
.popular-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.popular-image { display: block; background: var(--cream); overflow: hidden; }
.popular-image img { width: 100%; height: 100%; object-fit: contain; padding: 10px; background: #fff; }
.popular-image .product-art-pattern { min-height: 170px; }
.popular-copy { display: grid; gap: 4px; padding: 12px 14px 14px; }
.popular-copy strong { color: var(--red); line-height: 1.2; }
.popular-copy small, .daily-note { color: var(--muted); font-weight: 750; }
.daily-note { position: relative; z-index: 1; display: block; margin-top: 8px; }
.page-hero { padding: 72px 0 34px; }
.page-hero h1 { max-width: 880px; }
.page-hero p:not(.eyebrow) { color: var(--muted); font-size: 1.16rem; max-width: 820px; }
.listing-section { padding-top: 42px; }
.listing-layout { display: grid; grid-template-columns: 300px 1fr; gap: 26px; align-items: start; }
.listing-filter { position: sticky; top: 98px; margin-bottom: 0; }
.filter-head { margin-bottom: 16px; }
.filter-head h2 { font-size: 1.45rem; letter-spacing: -0.02em; }
.filter-label { display: block; margin-top: 18px; color: var(--red); font-weight: 950; }
.filter-column { display: grid; grid-template-columns: 1fr; gap: 8px; align-items: start; }
.filter-column .filter-chip { width: 100%; text-align: left; border-radius: 14px; }
.empty-filter-note { color: var(--muted); font-size: .9rem; background: #fff; border: 1px dashed var(--line); border-radius: 14px; padding: 10px 12px; }
.listing-results { min-width: 0; }
.listing-heading { margin-bottom: 20px; }
.listing-results .product-grid { grid-template-columns: repeat(3, 1fr); }
.category-overview { padding-bottom: 34px; }

@media (max-width: 1020px) {
  .listing-layout { grid-template-columns: 1fr; }
  .listing-filter { position: static; }
  .filter-column { grid-template-columns: repeat(2, 1fr); }
  .listing-results .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .popular-today-grid { grid-template-columns: 1fr; }
  .popular-tile { grid-template-rows: 150px auto; }
  .filter-column, .listing-results .product-grid { grid-template-columns: 1fr; }
  .page-hero { padding-top: 44px; }
}

/* Billing address fields in checkout */
.billing-fieldset { border: 1px solid var(--line); border-radius: 18px; padding: 14px; margin: 8px 0 4px; background: #fffaf5; display: grid; gap: 10px; }
.billing-fieldset legend { padding: 0 8px; color: var(--red); font-weight: 950; }
.billing-fieldset label { margin: 0; }

/* Related products and customer mailing updates */
.related-products-section { padding-top: 10px; }
.related-product-grid { grid-template-columns: repeat(4, 1fr); }
.marketing-opt-in { background: #fffaf5; border: 1px solid var(--line); border-radius: 16px; padding: 12px; align-items: flex-start; }
.marketing-opt-in span { color: var(--dark); font-weight: 750; }
.poa { display: inline-block; color: var(--red); }
@media (max-width: 980px) { .related-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .related-product-grid { grid-template-columns: 1fr; } }