/* Store front — colors come from the admin (Appearance) as --gold / --black / --soft */
:root {
  --gold: #e0a84a;
  --black: #0f1115;
  --soft: #fbf4f1;
  --ink: #1b1d22;
  --gray: #6d6f76;
  --line: #ececef;
  --bg2: #f7f7f8;
  --red: #e0413a;
  --green: #1f9d55;
  --shadow: 0 8px 26px rgba(20, 20, 30, .07);
  --font: 'Tajawal', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --serif: 'Playfair Display', Georgia, serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body, main { overflow-x: clip; }
body { font-family: var(--font); color: var(--ink); background: #fff; line-height: 1.6; font-size: 15px; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 16px; }
.container.narrow { max-width: 780px; }
.muted { color: var(--gray); }
.small { font-size: 13px; }
.center { text-align: center; }
.ic { flex-shrink: 0; }
.hp { position: absolute !important; width: 1px; height: 1px; opacity: 0; overflow: hidden; clip-path: inset(50%); pointer-events: none; }
[hidden] { display: none !important; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 20px; border-radius: 8px; font-weight: 700; font-size: 14px; border: 1px solid transparent; transition: .2s; white-space: nowrap; }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover:not(:disabled) { filter: brightness(1.35); }
.btn-gold { background: var(--gold); color: #1d1405; }
.btn-gold:hover:not(:disabled) { filter: brightness(.93); }
.btn-light { background: #fff; border-color: var(--line); color: var(--ink); }
.btn-light:hover { border-color: var(--ink); }
.btn-lg { padding: 13px 30px; font-size: 16px; border-radius: 30px; }
.btn-pill { border-radius: 30px; padding: 9px 26px; }
.btn-block { width: 100%; }
.icon-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; color: var(--ink); transition: .2s; }
.icon-btn:hover { background: var(--bg2); }
.badge { position: absolute; top: 2px; left: 0; min-width: 19px; height: 19px; padding: 0 5px; border-radius: 10px; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; }

/* ---------- Topbar ---------- */
.topbar { background: var(--black); color: #eee; font-size: 13.5px; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 40px; }
.tb-item { display: inline-flex; align-items: center; gap: 8px; }
.tb-item .ic { color: var(--gold); }

/* ---------- Header ---------- */
.site-header { background: #fff; position: sticky; top: 0; z-index: 50; box-shadow: 0 1px 0 var(--line); }
.header-main { display: flex; align-items: center; gap: 28px; min-height: 84px; }
.logo { display: flex; align-items: center; gap: 10px; color: var(--black); flex-shrink: 0; }
.logo img { height: 74px; width: auto; }
.logo-icon { width: 46px; height: 46px; color: var(--gold); }
.logo-words { display: flex; flex-direction: column; line-height: 1; direction: ltr; }
.logo-text { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--black); letter-spacing: .3px; }
.logo-text em { font-style: normal; color: var(--gold); }
.logo-tag { font-size: 11px; color: var(--gold); margin-top: 5px; letter-spacing: .5px; }
.search-box { flex: 1; max-width: 480px; margin: 0 auto; display: flex; align-items: center; background: var(--bg2); border: 1px solid var(--line); border-radius: 28px; overflow: hidden; }
.search-box input { flex: 1; border: 0; background: transparent; padding: 12px 20px; outline: none; font-size: 14px; min-width: 0; }
.search-box button { background: var(--black); color: #fff; width: 54px; height: 46px; display: flex; align-items: center; justify-content: center; border-radius: 28px; flex-shrink: 0; }
.header-actions { display: flex; align-items: center; gap: 4px; }
.nav-row { border-top: 1px solid var(--line); }
.main-nav { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-height: 54px; }
.nav-link { display: inline-flex; align-items: center; gap: 5px; font-weight: 700; font-size: 14.5px; padding: 8px 14px; border-radius: 22px; white-space: nowrap; transition: .2s; }
.nav-link:hover { color: var(--gold); }
.nav-link.active { background: var(--black); color: var(--gold); padding: 9px 30px; }
.flame { color: #f05a28; display: inline-flex; }
.has-drop { position: relative; }
.dropdown { position: absolute; top: calc(100% + 6px); right: 0; background: #fff; min-width: 210px; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .2s; z-index: 5; }
.dropdown a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 14px; }
.dropdown a:hover { background: var(--soft); color: var(--gold); }
.dropdown .drop-all { border-top: 1px solid var(--line); margin-top: 4px; font-weight: 700; }
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown { opacity: 1; visibility: visible; transform: none; }
.nav-head, .only-mobile, .main-nav > a.only-mobile, .menu-toggle, .search-toggle { display: none; }
.nav-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, .45); z-index: 90; opacity: 0; visibility: hidden; transition: .25s; }
.nav-overlay.show { opacity: 1; visibility: visible; }
.nav-open .site-header { z-index: 95; }

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 30px); background: var(--black); color: #fff; padding: 12px 22px; border-radius: 10px; font-weight: 500; z-index: 200; opacity: 0; visibility: hidden; transition: .3s; max-width: calc(100% - 32px); text-align: center; }
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.toast.error { background: var(--red); }
.toast a { color: var(--gold); text-decoration: underline; margin-inline-start: 8px; }

/* ---------- Hero ---------- */
.hero { position: relative; height: 470px; overflow: hidden; background: var(--black); }
.slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .8s, visibility .8s; display: flex; align-items: center; background: radial-gradient(circle at 30% 40%, #2a2016, var(--black) 70%); }
.slide.active { opacity: 1; visibility: visible; }
.slide-img { position: absolute; top: 0; bottom: 0; right: 0; width: 64%; background-size: cover; background-position: center; }
.slide-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--black) 0%, rgba(0,0,0,.55) 22%, rgba(0,0,0,0) 48%); }
/* Text block sits on the left like the design (flex-end = left in RTL); the photo is on the right */
.slide-content { position: relative; color: #fff; display: flex; flex-direction: column; align-items: flex-end; }
.slide-box { width: 480px; max-width: 100%; display: flex; flex-direction: column; align-items: flex-start; }
.slide-box .slide-kicker, .slide-box h1, .slide-box p { align-self: stretch; }
.slide-kicker { display: block; font-size: 17px; color: #eee; margin-bottom: 8px; letter-spacing: .5px; }
.slide h1 { font-size: 54px; font-weight: 800; line-height: 1.25; margin-bottom: 18px; }
.slide h1 span { display: block; color: var(--gold); }
.slide p { font-size: 17px; color: #e9e9e9; margin-bottom: 26px; line-height: 1.8; }
.slide.active .slide-box > * { animation: rise .8s both; }
.slide.active .slide-box > *:nth-child(2) { animation-delay: .1s; }
.slide.active .slide-box > *:nth-child(3) { animation-delay: .2s; }
.slide.active .slide-box > *:nth-child(4) { animation-delay: .3s; }
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.hero-controls { position: absolute; left: 0; right: 0; bottom: 36px; display: flex; gap: 12px; justify-content: flex-end; z-index: 3; pointer-events: none; }
.hero-nav { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.85); color: #fff; display: flex; align-items: center; justify-content: center; transition: .2s; pointer-events: auto; }
.hero-nav:hover { background: rgba(255,255,255,.15); }
.hero-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.hero-dots button { width: 9px; height: 9px; border-radius: 5px; background: rgba(255,255,255,.4); transition: .25s; }
.hero-dots button.active { width: 24px; background: #fff; }

/* ---------- Category strip ---------- */
.cats-section { padding-top: 26px; }
.cat-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(118px, 1fr)); gap: 16px; }
.cat-tile { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.cat-thumb { width: 100%; aspect-ratio: 11 / 8; background: var(--soft); border-radius: 12px; display: flex; align-items: center; justify-content: center; overflow: hidden; color: var(--gold); transition: .3s; }
.cat-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.cat-tile:hover .cat-thumb { box-shadow: var(--shadow); }
.cat-tile:hover .cat-thumb img { transform: scale(1.06); }
.cat-tile strong { font-size: 15.5px; margin-top: 6px; }
.cat-more { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--gray); }
.cat-tile:hover .cat-more { color: var(--gold); }

/* ---------- Sections ---------- */
.section { padding: 24px 0; }
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.section-head h2 { font-size: 24px; font-weight: 800; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.section-head h2 small { font-size: 14px; font-weight: 500; color: var(--gray); display: inline-flex; gap: 6px; align-items: center; }
.sh-icon { color: var(--gold); display: inline-flex; }
.see-all { white-space: nowrap; flex-shrink: 0; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; }
.see-all:hover { color: var(--gold); }

/* ---------- Product cards ---------- */
.products-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.products-grid.grid-4 { grid-template-columns: repeat(4, 1fr); }
.products-grid.grid-6 { grid-template-columns: repeat(6, 1fr); }
.product-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: .25s; }
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.p-img { position: relative; display: block; aspect-ratio: 1 / .88; background: var(--bg2); overflow: hidden; }
.p-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.product-card:hover .p-img img { transform: scale(1.05); }
.wish-btn { position: absolute; top: 10px; right: 10px; z-index: 2; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: #fff; color: #333; box-shadow: 0 2px 8px rgba(0,0,0,.08); transition: .2s; }
.wish-btn:hover { color: var(--red); }
.wish-btn.active, .wish-btn-lg.active { color: var(--red); }
.wish-btn.active svg, .wish-btn-lg.active svg { fill: currentColor; }
.p-badge { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--red); color: #fff; font-size: 11.5px; font-weight: 700; padding: 3px 9px; border-radius: 6px; }
.p-badge.sale { background: var(--gold); color: #1d1405; }
.p-badge.out { background: #777; }
.p-info { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.p-name { font-size: 15px; font-weight: 500; line-height: 1.45; }
.p-name:hover { color: var(--gold); }
.p-rating { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--gray); }
.stars { display: inline-flex; gap: 1px; color: var(--gold); vertical-align: middle; }
.star { fill: currentColor; }
.star.empty { fill: #dedede; }
.star.half { fill: url(#hs); }
.p-colors { display: flex; gap: 5px; margin: 2px 0; }
.dot { display: inline-block; width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(0,0,0,.15); box-shadow: inset 0 0 0 2px #fff; vertical-align: middle; }
.p-price { font-weight: 800; font-size: 18px; margin: 6px 0 10px; margin-top: auto; padding-top: 4px; }
.p-price del { font-size: 12.5px; color: #999; font-weight: 400; margin-inline-start: 6px; }
.btn-cart { padding: 10px; font-size: 13.5px; border-radius: 8px; }
.p-cat { font-size: 12px; color: var(--gold); }

/* ---------- Banners ---------- */
.banners { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.banners.one { grid-template-columns: 1fr; }
.banner { position: relative; display: flex; align-items: center; min-height: 170px; border-radius: 14px; overflow: hidden; padding: 24px 30px; box-shadow: var(--shadow); transition: transform .3s; }
.banner:hover { transform: translateY(-3px); }
.banner.dark { background: var(--black); color: #fff; }
.banner.light { background: linear-gradient(90deg, #fbe3e6, var(--soft)); color: var(--ink); }
.banner-img { position: absolute; top: 0; bottom: 0; left: 0; width: 55%; background-size: cover; background-position: center; }
.banner.dark .banner-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(270deg, var(--black), rgba(0,0,0,0) 45%); }
.banner.light .banner-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(270deg, #fbe7ea, rgba(255,255,255,0) 45%); }
.banner-text { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 6px; max-width: 55%; }
.banner-text strong { font-size: 27px; font-weight: 800; line-height: 1.3; }
.banner-text > span:not(.btn) { font-size: 17px; opacity: .9; }
.banner-text .btn { margin-top: 10px; }

/* ---------- Why us ---------- */
.why-box { background: var(--soft); border-radius: 16px; padding: 22px 20px 26px; }
.why-box h2 { text-align: center; font-size: 21px; font-weight: 800; margin-bottom: 18px; }
.why-grid { display: grid; grid-template-columns: repeat(var(--cols, 5), 1fr); }
.why-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; padding: 6px 12px; }
.why-item + .why-item { border-inline-start: 1px solid rgba(0,0,0,.08); }
.why-item .ic { color: var(--black); margin-bottom: 4px; }
.why-item strong { font-size: 15px; }
.why-item span { font-size: 13px; color: var(--gray); }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: #cfcfd3; margin-top: 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 34px; padding: 42px 16px 30px; }
.f-col { display: flex; flex-direction: column; gap: 9px; font-size: 14px; }
.f-col h4 { color: #fff; font-size: 16px; margin-bottom: 4px; }
.f-col a:hover { color: var(--gold); }
.f-logo { display: flex; align-items: center; gap: 10px; color: var(--gold); }
.f-logo img { height: 96px; width: auto; }
.f-logo span { font-family: var(--serif); font-size: 24px; color: #fff; line-height: 1; direction: ltr; display: flex; flex-direction: column; }
.f-logo small { font-family: var(--font); font-size: 10.5px; color: var(--gold); margin-top: 4px; }
.f-social { display: flex; gap: 10px; margin-top: 6px; flex-wrap: wrap; }
.f-social a { width: 36px; height: 36px; border: 1px solid #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.f-social a:hover { border-color: var(--gold); }
.news-form { display: flex; background: #fff; border-radius: 26px; overflow: hidden; margin-top: 4px; }
.news-form input { flex: 1; border: 0; padding: 12px 18px; outline: none; color: var(--ink); min-width: 0; }
.news-form button { background: var(--gold); color: var(--black); width: 50px; display: flex; align-items: center; justify-content: center; }
.f-phone { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; }
.pay-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.pay { background: #fff; color: var(--ink); border-radius: 6px; padding: 4px 10px; font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; gap: 5px; }
.footer-bottom { border-top: 1px solid #23252b; padding: 14px 0; font-size: 13px; color: #9a9ba1; }
.fb-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.fb-tag { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); }
.wa-float { position: fixed; bottom: 22px; left: 22px; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(0,0,0,.25); z-index: 60; }

/* ---------- Page head ---------- */
.page-head { background: var(--soft); padding: 26px 0; }
.page-head.slim { padding: 14px 0; }
.page-head h1 { font-size: 28px; font-weight: 800; }
.breadcrumb { font-size: 13px; color: var(--gray); margin-bottom: 4px; }
.breadcrumb a:hover { color: var(--gold); }
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.chip { padding: 6px 16px; border-radius: 20px; background: #fff; border: 1px solid var(--line); font-size: 14px; font-weight: 500; }
.chip.active, .chip:hover { background: var(--black); color: var(--gold); border-color: var(--black); }
.page-content p { margin-bottom: 16px; font-size: 16px; color: #3a3c42; line-height: 1.9; }
.page-content .owner { color: var(--ink); }

/* ---------- Shop ---------- */
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 28px; align-items: start; }
.filters { border: 1px solid var(--line); border-radius: 12px; padding: 18px; position: sticky; top: 160px; max-height: calc(100vh - 180px); overflow-y: auto; }
.filters-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-size: 16px; }
.filters form { display: flex; flex-direction: column; gap: 10px; }
.f-group { border-bottom: 1px solid var(--line); padding-bottom: 12px; display: flex; flex-direction: column; gap: 6px; }
.f-group h4 { font-size: 14px; margin-bottom: 2px; }
.f-group label { display: flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; }
.f-group label.sub { padding-inline-start: 22px; font-size: 13.5px; color: var(--gray); }
.f-group input[type=radio], .f-group input[type=checkbox] { accent-color: var(--black); width: 16px; height: 16px; }
.price-range { display: flex; gap: 8px; }
select, input[type=text], input[type=tel], input[type=number], input[type=email], input[type=search], input[type=password], textarea { width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px; background: #fff; outline: none; transition: border .2s; }
select:focus, input:focus, textarea:focus { border-color: var(--ink); }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.sort-form select { width: auto; }
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 28px; flex-wrap: wrap; }
.pagination a { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 8px; }
.pagination a.active { background: var(--black); color: #fff; border-color: var(--black); }
.empty-state { text-align: center; padding: 60px 16px; display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--gray); }
.empty-state h3 { color: var(--ink); font-size: 20px; }

/* ---------- Product page ---------- */
.product-layout { display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: start; }
.product-layout > * { min-width: 0; }
.gallery { position: sticky; top: 160px; }
.gallery-main { position: relative; border: 1px solid var(--line); border-radius: 14px; aspect-ratio: 1 / .9; overflow: hidden; background: var(--bg2); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery-thumbs button { width: 78px; height: 70px; border: 2px solid var(--line); border-radius: 10px; overflow: hidden; padding: 0; }
.gallery-thumbs button.active { border-color: var(--gold); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pi-cat { color: var(--gold); font-weight: 700; font-size: 14px; }
.product-info h1 { font-size: 30px; font-weight: 800; line-height: 1.3; margin: 4px 0 6px; }
.pi-rating { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--gray); }
.pi-rating b { color: var(--ink); }
.pi-price { font-size: 30px; font-weight: 800; margin: 12px 0 4px; }
.pi-price del { font-size: 17px; color: #999; font-weight: 400; }
.pi-stock { color: var(--green); font-weight: 500; font-size: 14px; }
.pi-stock.out { color: var(--red); }
.pi-form { margin: 20px 0; display: flex; flex-direction: column; gap: 14px; }
.pi-colors .lbl { display: block; margin-bottom: 8px; font-size: 14px; }
.swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch { position: relative; cursor: pointer; }
.swatch input { position: absolute; opacity: 0; pointer-events: none; }
.swatch span { display: block; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(0,0,0,.15); box-shadow: inset 0 0 0 3px #fff; outline: 2px solid transparent; outline-offset: 2px; transition: .15s; }
.swatch input:checked + span { outline-color: var(--black); }
.swatch input:focus-visible + span { outline-color: var(--gold); }
.pi-actions { display: flex; gap: 10px; align-items: center; }
.pi-actions .btn-lg { flex: 1; }
.wish-btn-lg { border: 1px solid var(--line); width: 50px; height: 50px; }
.qty { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 30px; overflow: hidden; height: 50px; }
.qty button { width: 38px; height: 100%; font-size: 20px; }
.qty button:hover { background: var(--bg2); }
.qty input { width: 44px; border: 0; text-align: center; padding: 0; -moz-appearance: textfield; }
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.qty-sm { height: 38px; }
.qty-sm button { width: 32px; }
.qty-sm input { width: 36px; }
.form-error { background: #fdecec; color: var(--red); padding: 10px 14px; border-radius: 8px; font-size: 14px; }
.pi-perks { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 16px; background: var(--soft); border-radius: 12px; }
.pi-perks li { display: flex; gap: 8px; align-items: center; font-size: 14px; }
.pi-perks .ic { color: var(--gold); }
.pi-desc { margin-top: 22px; }
.pi-desc h3 { font-size: 18px; margin-bottom: 6px; }
.pi-desc p { color: #444; line-height: 1.9; }

/* Reviews */
.reviews-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: start; }
.review { border-bottom: 1px solid var(--line); padding: 14px 0; }
.review-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 4px; }
.review p { color: #444; }
.review-form { position: relative; display: flex; flex-direction: column; gap: 12px; }
.review-form label { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 500; }
.star-input { position: relative; display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 2px; }
.star-input input { position: absolute; opacity: 0; pointer-events: none; }
.star-input label { color: #d6d6d6; cursor: pointer; transition: .15s; }
.star-input label svg { fill: currentColor; stroke: none; }
.star-input input:checked ~ label, .star-input label:hover, .star-input label:hover ~ label { color: var(--gold); }
.star-input input:focus-visible + label { outline: 2px solid var(--gold); border-radius: 4px; }

/* ---------- Cart & checkout ---------- */
.cart-layout, .checkout-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.cart-item { width: 100%; display: grid; grid-template-columns: 96px 1fr auto auto auto; align-items: center; gap: 18px; border: 1px solid var(--line); border-radius: 12px; padding: 12px 16px; }
.ci-img img { width: 96px; height: 86px; object-fit: cover; border-radius: 8px; }
.ci-info { display: flex; flex-direction: column; gap: 2px; }
.ci-name { font-weight: 700; }
.ci-color { font-size: 13px; color: var(--gray); display: inline-flex; gap: 6px; align-items: center; }
.ci-price { font-size: 14px; color: var(--gray); }
.ci-total { min-width: 100px; text-align: left; }
.ci-remove:hover { color: var(--red); }
.summary { border: 1px solid var(--line); border-radius: 14px; padding: 20px; position: sticky; top: 160px; display: flex; flex-direction: column; gap: 12px; }
.summary h3 { font-size: 18px; }
.sum-row { display: flex; justify-content: space-between; font-size: 15px; }
.sum-row.total { border-top: 1px solid var(--line); padding-top: 12px; font-size: 18px; }
.free-note { background: #fff8e8; color: #8a6414; padding: 9px 12px; border-radius: 8px; font-size: 13px; display: flex; align-items: center; gap: 6px; }
.free-note.ok { background: #e8f7ef; color: var(--green); }
.sum-item { display: grid; grid-template-columns: 60px 1fr auto; gap: 10px; align-items: center; font-size: 13px; border-bottom: 1px solid var(--line); padding-bottom: 10px; }
.sum-item img { width: 60px; height: 54px; object-fit: cover; border-radius: 8px; }
.sum-item div { display: flex; flex-direction: column; }
.card { border: 1px solid var(--line); border-radius: 14px; padding: 24px; background: #fff; }
.card + .card { margin-top: 18px; }
.checkout-form, .contact-form, .track-form { position: relative; display: flex; flex-direction: column; gap: 14px; }
.checkout-form h3 { font-size: 20px; }
.checkout-form label, .contact-form label, .track-form label { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 500; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.delivery-types { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dt { cursor: pointer; }
.dt input { position: absolute; opacity: 0; }
.dt span { display: flex; align-items: center; gap: 8px; border: 1.5px solid var(--line); border-radius: 10px; padding: 14px; font-size: 14px; flex-wrap: wrap; }
.dt b { margin-inline-start: auto; color: var(--gold); }
.dt input:checked + span { border-color: var(--black); background: var(--bg2); }
.gift-box { background: var(--soft); border-radius: 12px; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.gift-box h4 { display: flex; align-items: center; gap: 8px; font-size: 16px; }
.gift-box h4 .ic { color: var(--gold); }
.checkout-form label.check-line { flex-direction: row; align-items: center; gap: 10px; cursor: pointer; }
.check-line input { width: 18px; height: 18px; accent-color: var(--black); }
.check-line b { margin-inline-start: auto; color: var(--gold); }
.gift-msg { color: var(--gray); font-style: italic; }
.alert { padding: 12px 16px; border-radius: 8px; font-size: 14px; margin-bottom: 10px; }
.alert-error { background: #fdecec; color: #a61b1b; }
.alert-success { background: #e8f7ef; color: #13693a; }
.success-card { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.success-icon { width: 76px; height: 76px; border-radius: 50%; background: #e8f7ef; color: var(--green); display: flex; align-items: center; justify-content: center; }
.success-card h1 { font-size: 26px; }
.order-table { width: 100%; border-collapse: collapse; font-size: 14px; text-align: right; }
.order-table td { padding: 10px 8px; border-bottom: 1px solid var(--line); }
.order-table td:last-child { text-align: left; white-space: nowrap; }
.order-table td.gift-msg { text-align: right; white-space: normal; }
.order-table tr.total td { font-weight: 800; font-size: 16px; border-bottom: 0; }
.btn-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.status-pill { display: inline-block; font-size: 12px; padding: 3px 10px; border-radius: 20px; background: #eee; vertical-align: middle; margin-inline-start: 8px; }
.st-new { background: #e8f0fe; color: #1a56db; }
.st-confirmed { background: #fff4d6; color: #8a6414; }
.st-shipped { background: #efe8fe; color: #6b3fd4; }
.st-delivered { background: #e8f7ef; color: var(--green); }
.st-cancelled, .st-returned { background: #fdecec; color: var(--red); }
.steps { list-style: none; display: flex; margin: 20px 0; counter-reset: s; }
.steps li { flex: 1; text-align: center; font-size: 13px; color: var(--gray); position: relative; padding-top: 38px; }
.steps li::before { counter-increment: s; content: counter(s); position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 30px; height: 30px; border-radius: 50%; background: #eee; display: flex; align-items: center; justify-content: center; font-weight: 700; z-index: 1; }
.steps li + li::after { content: ''; position: absolute; top: 14px; right: 50%; width: 100%; height: 2px; background: #eee; }
.steps li.done { color: var(--ink); font-weight: 700; }
.steps li.done::before { background: var(--black); color: var(--gold); }
.steps li.done + li.done::after { background: var(--black); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 36px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.contact-info h2 { font-size: 24px; }
.ci-line { display: flex; gap: 10px; align-items: center; font-size: 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .products-grid, .products-grid.grid-6 { grid-template-columns: repeat(4, 1fr); }
  .nav-link { padding: 8px 10px; font-size: 14px; }
  .nav-link.active { padding: 8px 18px; }
}
@media (max-width: 1024px) {
  .menu-toggle, .search-toggle { display: inline-flex; }
  .header-main { min-height: 70px; gap: 10px; position: relative; }
  .logo { margin-inline-end: auto; }
  .logo-text { font-size: 24px; }
  .logo img { height: 58px; }
  .logo-icon { width: 38px; height: 38px; }
  .search-box { display: none; position: absolute; top: 100%; right: 0; left: 0; margin: 0; max-width: none; border-radius: 0; border: 0; border-bottom: 1px solid var(--line); padding: 10px 16px; background: #fff; z-index: 4; }
  .search-box.open { display: flex; }
  .search-box input { background: var(--bg2); border-radius: 0 24px 24px 0; }
  .search-box button { border-radius: 24px 0 0 24px; }
  .nav-row { border: 0; }
  .main-nav { position: fixed; top: 0; right: 0; bottom: 0; width: 300px; max-width: 85%; background: #fff; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; padding: 0 0 20px; z-index: 100; transform: translateX(100%); transition: transform .3s; overflow-y: auto; min-height: 0; }
  .main-nav.open { transform: none; }
  .nav-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; border-bottom: 1px solid var(--line); }
  .nav-link, .nav-link.active { padding: 14px 18px; border-bottom: 1px solid var(--line); justify-content: space-between; width: 100%; border-radius: 0; }
  .nav-link.active { background: var(--soft); color: var(--ink); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 12px 8px; display: none; min-width: 0; background: var(--bg2); border-radius: 0; }
  .has-drop.open .dropdown { display: block; }
  .only-mobile, .main-nav > a.only-mobile { display: flex; }
  .hero { height: 420px; }
  .slide h1 { font-size: 40px; }
  .slide-img { width: 100%; }
  .slide-img::after { background: linear-gradient(0deg, rgba(0,0,0,.82), rgba(0,0,0,.55)); }
  .slide-content { align-items: flex-start; }
  .products-grid, .products-grid.grid-4, .products-grid.grid-6 { grid-template-columns: repeat(3, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: fixed; top: 0; bottom: 0; right: 0; width: 300px; max-width: 88%; max-height: none; z-index: 100; background: #fff; border-radius: 0; transform: translateX(100%); transition: transform .3s; }
  .filters.open { transform: none; }
  .product-layout, .cart-layout, .checkout-layout, .contact-layout, .reviews-layout { grid-template-columns: 1fr; }
  .gallery, .summary { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(3, 1fr); row-gap: 16px; }
  .why-item:nth-child(4) { border-inline-start: 0; }
}
@media (max-width: 768px) {
  .hide-sm { display: none !important; }
  .topbar-inner { justify-content: center; }
  .hero { height: 400px; }
  .slide h1 { font-size: 32px; }
  .slide p { font-size: 15px; }
  .hero-controls { display: none; }
  .cat-strip { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 30%; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
  .cat-strip::-webkit-scrollbar { display: none; }
  .products-grid, .products-grid.grid-4, .products-grid.grid-6 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .p-info { padding: 10px; }
  .p-name { font-size: 14px; }
  .banners { grid-template-columns: 1fr; }
  .banner { min-height: 150px; padding: 20px; }
  .banner-text strong { font-size: 22px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item:nth-child(3), .why-item:nth-child(5) { border-inline-start: 0; }
  .why-item:nth-child(4) { border-inline-start: 1px solid rgba(0,0,0,.08); }
  .cart-item { grid-template-columns: 76px 1fr auto; grid-template-areas: 'img info rm' 'img qty total'; gap: 8px 12px; }
  .ci-img { grid-area: img; } .ci-img img { width: 76px; height: 70px; }
  .ci-info { grid-area: info; } .qty-sm { grid-area: qty; justify-self: start; }
  .ci-total { grid-area: total; } .ci-remove { grid-area: rm; }
  .form-row, .delivery-types { grid-template-columns: 1fr; }
  .pi-perks { grid-template-columns: 1fr; }
  .pi-actions { flex-wrap: wrap; }
  .pi-actions .btn-lg { flex: 1 1 100%; order: 3; padding: 13px 16px; }
  .product-info h1 { font-size: 24px; }
  .page-head h1 { font-size: 22px; }
}
@media (max-width: 480px) {
  .logo-text { font-size: 21px; }
  .logo-tag { font-size: 9.5px; }
  .icon-btn { width: 40px; height: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cat-strip { grid-auto-columns: 38%; }
  .banner-text { max-width: 62%; }
  .card { padding: 18px; }
}

/* ==========================================================================
   WoodStyle — homepage additions
   ========================================================================== */

/* ---------- Hero ---------- */
/* The headline, the bullet line and the button need more room than the
   default 470px band. */
.hero { height: 560px; }
/* Desktop only: the base stylesheet makes .slide-img 100% wide on phones, and
   an unscoped width here would override that and leave a dark empty column. */
@media (min-width: 761px) {
  .slide-img { width: 78%; }
  .slide-img::after { background: linear-gradient(90deg, var(--black) 4%, rgba(0,0,0,.55) 28%, rgba(0,0,0,0) 54%); }
}
.slide-box { width: 560px; }
.slide-box h1 { font-size: 42px; line-height: 1.24; }
.slide-box h1 span { color: var(--gold); }
.slide-box .slide-kicker { font-size: 14.5px; }
.slide-box p { max-width: 460px; }
.hero-controls { bottom: 26px; }

/* The bullet line under the headline: "جودة عالية • خامات متينة • ..." */
.hero-pills { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; margin: 16px 0 24px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 600; color: rgba(255, 255, 255, .9);
}
.hero-pill svg { width: 17px; height: 17px; color: var(--gold); }
.hero-pill + .hero-pill::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); margin-inline-end: 7px; flex: none;
}

/* ---------- Section heads ---------- */
.section-head { flex-wrap: wrap; row-gap: 2px; }
.section-head h2 { order: 1; }
.section-head .see-all { order: 2; margin-inline-start: auto; }
.section-head .section-sub { order: 3; flex-basis: 100%; font-size: 14px; color: var(--gray); margin: -2px 0 0; }
.sh-kicker { display: block; font-size: 13px; font-weight: 600; color: var(--gold); margin-bottom: 2px; }

/* ---------- Category tiles: white card, photo on top, caption bar below ---------- */
/* Card-style tiles, so the phone gets a plain 2-3 column grid instead of the
   base stylesheet's horizontal scroller. */
.cat-strip { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); grid-auto-flow: row; overflow: visible; gap: 14px; }
.cats-section .cat-tile {
  gap: 0; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; text-align: start; transition: .25s;
}
.cats-section .cat-tile:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: rgba(0,0,0,.12); }
.cats-section .cat-thumb { aspect-ratio: 4 / 3; border-radius: 0; background: var(--soft); }
.cat-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  width: 100%; padding: 12px 13px;
}
.cat-name { display: inline-flex; align-items: center; gap: 8px; min-width: 0; }
.cat-name svg { color: var(--black); flex: none; }
.cat-name strong { font-size: 14.5px; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cat-go { color: var(--gold); display: inline-flex; flex: none; transition: transform .25s; }
.cats-section .cat-tile:hover .cat-go { transform: translateX(4px); }
.cats-section .cat-sub {
  display: block; width: 100%; padding: 0 13px 12px; margin-top: -4px;
  font-size: 12.5px; color: var(--gray);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ---------- The dark promo banner ---------- */
/* Layout, in reading order (RTL: right to left): the three points, the text
   block, then the photo on the far side. `order` keeps the markup in a
   sensible source order for screen readers. */
.promo {
  position: relative; display: grid; grid-template-columns: auto 1fr 1.05fr;
  background: var(--black); color: #fff; border-radius: 18px; overflow: hidden; min-height: 280px;
}
.promo-img {
  order: 3; position: relative; display: block;
  background-size: cover; background-position: center;
}
/* Fade the photo's inner edge into the dark panel. The photo always sits on
   the far side of the banner, so these are deliberately physical values. */
.promo-img::after {
  content: ''; position: absolute; inset: 0 0 0 auto; width: 38%; pointer-events: none;
  background: linear-gradient(to left, var(--black), rgba(18, 21, 22, .55) 55%, transparent);
}
.promo-body {
  order: 2; position: relative; z-index: 2; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; gap: 12px; padding: 34px 24px;
}
.promo-pill {
  display: inline-block; background: var(--gold); color: var(--black);
  border-radius: 20px; padding: 6px 20px; font-size: 13.5px; font-weight: 700;
}
.promo-body h2 { font-size: 27px; font-weight: 800; line-height: 1.35; margin: 0; }
.promo-body p { font-size: 14.5px; color: rgba(255, 255, 255, .72); margin: 0; max-width: 380px; }
.promo-body .btn { margin-top: 6px; }
.promo-points {
  order: 1; position: relative; z-index: 2; list-style: none; margin: 0;
  display: flex; flex-direction: column; justify-content: center; gap: 22px;
  padding: 34px 30px; border-inline-end: 1px solid rgba(255, 255, 255, .14);
}
.promo-points li { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; }
.pp-icon {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: rgba(214, 165, 106, .14); border: 1px solid rgba(214, 165, 106, .4); color: var(--gold);
}

/* ---------- Trust strip ---------- */
.why-box { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px 14px; }
.why-item {
  display: grid; grid-template-columns: auto 1fr; align-items: center;
  column-gap: 12px; text-align: start; padding: 6px 16px;
}
.why-item .ic { grid-row: 1 / 3; color: var(--black); margin: 0; }
.why-item strong { font-size: 15px; align-self: end; }
.why-item span { font-size: 12.5px; color: var(--gray); align-self: start; }

/* ---------- "Why choose us" — optional dark band ---------- */
.why-dark { background: var(--black); color: #fff; padding: 54px 0; position: relative; overflow: hidden; }
.why-dark::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 50% 0%, rgba(214, 165, 106, .13), transparent 70%);
}
.why-dark > .container { position: relative; }
.why-dark h2 { text-align: center; font-size: 26px; margin: 0 0 34px; }
.why-dark-grid { display: grid; grid-template-columns: repeat(var(--cols, 4), 1fr); gap: 26px; }
.wd-item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.wd-icon {
  width: 68px; height: 68px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(214, 165, 106, .55); background: rgba(214, 165, 106, .08); color: var(--gold); margin-bottom: 6px;
}
.wd-item strong { font-size: 16px; }
.wd-item > span:last-child { font-size: 13.5px; color: rgba(255, 255, 255, .62); }

/* ---------- Customer testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.testi {
  margin: 0; padding: 22px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; display: flex; flex-direction: column; gap: 12px; box-shadow: var(--shadow-sm, 0 1px 4px rgba(0,0,0,.05));
}
.testi-stars { display: flex; gap: 2px; color: #d8d8d8; }
.testi-stars .on { color: var(--gold); }
.testi-stars svg { fill: currentColor; }
.testi blockquote { margin: 0; font-size: 14.5px; line-height: 1.85; color: #3d3d3d; }
.testi figcaption { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--soft); color: var(--gold); font-weight: 800; font-size: 17px;
}
.testi-who { display: flex; flex-direction: column; line-height: 1.4; }
.testi-who strong { font-size: 14px; }
.testi-who span { font-size: 12px; color: var(--gray); }

/* ---------- Newsletter strip above the footer ---------- */
.news-strip { background: #1b1f20; color: #fff; margin-top: 34px; position: relative; overflow: hidden; }
.news-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(70% 160% at 20% 50%, rgba(214, 165, 106, .16), transparent 65%);
}
.news-inner {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; padding: 26px 16px;
}
.news-copy { display: flex; flex-direction: column; gap: 3px; }
.news-copy strong { font-size: 19px; font-weight: 800; }
.news-copy span { font-size: 13.5px; color: rgba(255, 255, 255, .62); }
.news-strip .news-form { margin: 0; flex: 1; min-width: 280px; max-width: 520px; }
.news-strip .news-form button { width: auto; gap: 7px; padding: 0 22px; font-weight: 700; white-space: nowrap; }

/* ---------- Footer contact column ---------- */
.f-line { display: inline-flex; align-items: center; gap: 8px; }
.f-line svg { color: var(--gold); flex: none; }
.f-contact .pay-badges { margin-top: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .promo { grid-template-columns: 1fr 1fr; }
  .promo-body { order: 1; }
  .promo-img { order: 2; }
  .promo-points {
    order: 3; grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; justify-content: center;
    border-inline-end: 0; border-top: 1px solid rgba(255, 255, 255, .14);
    gap: 14px 26px; padding: 20px 24px;
  }
}
@media (max-width: 900px) {
  .cat-strip { grid-template-columns: repeat(3, 1fr); }
  .hero { height: 520px; }
  .slide-box h1 { font-size: 31px; }
  .why-dark-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .why-dark { padding: 42px 0; }
  .why-dark h2 { font-size: 21px; margin-bottom: 26px; }
}
@media (max-width: 760px) {
  /* Fill the whole width and frame on the desk rather than the faded edge. */
  .slide-img { width: 100%; background-position: 56% center; background-size: cover; }
  .slide-img::after { background: linear-gradient(0deg, rgba(0,0,0,.86) 8%, rgba(0,0,0,.52) 55%, rgba(0,0,0,.34)); }
  .slide-box h1, .slide-box .slide-kicker { text-shadow: 0 2px 10px rgba(0,0,0,.75); }
  .why-grid { grid-template-columns: repeat(2, 1fr); row-gap: 16px; }
  .why-item { padding: 6px 10px; }
  .why-item strong { font-size: 14px; }
  .why-item:nth-child(odd) { border-inline-start: 0; }
  .promo { grid-template-columns: 1fr; min-height: 0; }
  .promo-img { order: 1; height: 190px; }
  .promo-body { order: 2; }
  .promo-img::after { inset: auto 0 0 0; width: auto; height: 45%; background: linear-gradient(to top, var(--black), transparent); }
  .promo-body { padding: 22px 20px 26px; }
  .promo-body h2 { font-size: 22px; }
  .news-inner { flex-direction: column; align-items: stretch; text-align: center; padding: 22px 16px; }
  .news-strip .news-form { max-width: none; min-width: 0; }
}
@media (max-width: 560px) {
  .hero { height: 470px; }
  .slide-box h1 { font-size: 26px; }
  .hero-pills { gap: 4px 10px; margin: 13px 0 18px; }
  .hero-pill { font-size: 12.5px; }
  /* The dots read as stray bullets once the line wraps. */
  .hero-pill + .hero-pill::before { display: none; }
  .cat-strip { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-bar { padding: 10px; }
  .cat-name strong { font-size: 13.5px; }
  .cats-section .cat-sub { padding: 0 10px 10px; font-size: 11.5px; }
  .wd-icon { width: 56px; height: 56px; }
  .wd-item strong { font-size: 14.5px; }
  .promo-points { gap: 12px; padding: 18px 16px; }
  .promo-points li { font-size: 13px; }
  .pp-icon { width: 34px; height: 34px; }
  .news-copy strong { font-size: 17px; }
}
