@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root { --ink: #17212b; --muted: #6c7b87; --paper: #f6f8f7; --surface: #fff; --line: #dfe7e3; --brand: #0d7069; --brand-dark: #09554f; --accent: #e9a23b; --danger: #c33b42; }
* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: 'DM Sans', Arial, sans-serif; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.site-header { position: sticky; z-index: 10; top: 0; background: rgba(255,255,255,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.site-header__inner { max-width: 1240px; min-height: 76px; margin: auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: 'Playfair Display', Georgia, serif; font-size: 1.35rem; font-weight: 700; letter-spacing: -.03em; }
.brand-mark { display: grid; width: 31px; height: 31px; place-items: center; color: #fff; background: var(--brand); border-radius: 9px 9px 9px 2px; font: 700 17px/1 Arial; }
.primary-nav { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 7px; font-size: .91rem; font-weight: 600; }
.primary-nav a, .primary-nav button { border: 0; background: transparent; color: #4f5d67; padding: 8px 10px; border-radius: 7px; }
.primary-nav a:hover, .primary-nav button:hover { color: var(--brand); background: #edf7f5; }
.primary-nav .nav-cta { color: white; background: var(--brand); padding: 9px 14px; }
.primary-nav .nav-cta:hover { color: white; background: var(--brand-dark); }
.site-main { max-width: 1240px; min-height: calc(100vh - 76px); margin: auto; padding: 44px 24px 64px; }
.status-message { margin: 0 0 24px; padding: 14px 18px; color: #17643d; background: #e9f8ed; border: 1px solid #bfe6c9; border-radius: 10px; }

h1, h2, h3 { line-height: 1.18; color: var(--ink); } h1 { font-family: 'Playfair Display', Georgia, serif; letter-spacing: -.035em; } h2 { letter-spacing: -.025em; }
.hero { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(260px,.65fr); gap: 30px; align-items: stretch; padding: 46px; margin-bottom: 42px; overflow: hidden; color: #fff; background: linear-gradient(130deg, #123c3b, #0d7069); border-radius: 20px; box-shadow: 0 20px 45px rgba(13,112,105,.16); }
.hero h1 { max-width: 600px; margin: 10px 0 14px; color: #fff; font-size: clamp(2.25rem, 4vw, 4rem); }.hero p { max-width: 520px; margin: 0; color: #d9efeb; font-size: 1.08rem; }.eyebrow { margin: 0; color: #aee3d9; font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }.hero-orb { align-self: center; justify-self: end; width: 180px; height: 180px; border: 24px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: inset 0 0 0 16px rgba(233,162,59,.8); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin: 0 0 18px; }.section-heading h2 { margin: 0; font-size: 1.45rem; }.section-heading p { margin: 0; color: var(--muted); }
.category-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 43px; }.category-pill { padding: 10px 15px; color: #235a56; background: #fff; border: 1px solid var(--line); border-radius: 99px; font-size: .9rem; font-weight: 600; transition: .18s ease; }.category-pill:hover { color: #fff; background: var(--brand); border-color: var(--brand); transform: translateY(-2px); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }.product-card { display: block; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 4px 15px rgba(26,48,46,.04); transition: transform .2s, box-shadow .2s; }.product-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(26,48,46,.11); }.product-card__image { aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; color: #91a09e; background: #edf4f1; }.product-card__image img { width: 100%; height: 100%; object-fit: cover; }.product-card__body { padding: 15px; }.product-card__name { margin: 0 0 6px; font-weight: 700; }.product-card__price { margin: 0; color: var(--brand); font-weight: 700; }.product-card__was { color: #93a09f; font-size: .78rem; font-weight: 400; text-decoration: line-through; }

.page-heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 25px; }.page-heading h1 { margin: 0; font-size: 2.2rem; }.page-heading p { margin: 5px 0 0; color: var(--muted); }.button, .page-heading > a, form button { display: inline-flex; justify-content: center; align-items: center; padding: 10px 15px; color: #fff; background: var(--brand); border: 1px solid var(--brand); border-radius: 8px; font-size: .9rem; font-weight: 700; transition: .18s ease; }.button:hover, .page-heading > a:hover, form button:hover { background: var(--brand-dark); border-color: var(--brand-dark); }.button--soft { color: var(--brand); background: #e8f4f2; border-color: #cae4e0; }
.surface { background: var(--surface); border: 1px solid var(--line); border-radius: 13px; box-shadow: 0 4px 18px rgba(24,48,44,.04); }.dashboard-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: 27px; }.stat-card { padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }.stat-card p:first-child { margin: 0 0 8px; color: var(--muted); font-size: .84rem; font-weight: 600; }.stat-card p:last-child { margin: 0; font-size: 1.65rem; font-weight: 700; letter-spacing: -.04em; }.admin-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }.admin-actions a { padding: 10px 14px; color: #315c59; background: #fff; border: 1px solid var(--line); border-radius: 8px; font-size: .9rem; font-weight: 700; }.admin-actions a:first-child { color: #fff; background: var(--brand); border-color: var(--brand); }.list-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 20px; border-bottom: 1px solid var(--line); }.list-row:last-child { border-bottom: 0; }.list-row:hover { background: #f8fbfa; }
.form-inline { display: flex; flex-wrap: wrap; gap: 12px; padding: 18px; margin-bottom: 24px; }.form-inline input { flex: 1 1 220px; }.form-inline select { flex: 0 1 220px; } input, select, textarea { padding: 10px 12px; color: var(--ink); background: #fff; border: 1px solid #cfdad6; border-radius: 8px; outline: 0; } input:focus, select:focus, textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(13,112,105,.12); }
.product-search { align-items: center; }.search-status { min-height: 1.5em; margin: -13px 0 17px; color: var(--muted); font-size: .88rem; }.empty-results { grid-column: 1 / -1; margin: 10px 0; color: var(--muted); }

@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }.dashboard-grid { grid-template-columns: repeat(2,1fr); }.hero { grid-template-columns: 1fr; }.hero-orb { display: none; } }
@media (max-width: 600px) { .site-header__inner { min-height: 68px; padding: 0 16px; }.primary-nav { gap: 0; }.primary-nav a, .primary-nav button { padding: 6px 7px; }.site-main { padding: 30px 16px 48px; }.hero { padding: 30px 24px; border-radius: 14px; }.product-grid { gap: 12px; }.dashboard-grid { grid-template-columns: 1fr 1fr; gap: 10px; }.stat-card { padding: 15px; }.page-heading { align-items: flex-start; flex-direction: column; }.list-row { align-items: flex-start; flex-direction: column; gap: 8px; } }

/* Original grocery-marketplace treatment. */
:root { --brand: #227a43; --brand-dark: #155d31; --accent: #ffbd19; --ink: #1c2b20; --paper: #fbfaf5; --line: #e7eadf; }
.announcement-bar { color: #efffe6; background: #1b5d33; font-size: .76rem; font-weight: 600; }.announcement-bar__inner { display: flex; justify-content: space-between; max-width: 1240px; margin: auto; padding: 7px 24px; }
.site-header { position: relative; }.site-header__inner { min-height: 82px; }.brand-mark { color: #214826; background: var(--accent); border-radius: 50% 50% 50% 4px; }.header-search { display: flex; flex: 1; max-width: 480px; overflow: hidden; border: 1px solid #d5ded1; border-radius: 8px; background: #f8fbf6; }.header-search input { width: 100%; padding: 10px 14px; border: 0; background: transparent; box-shadow: none; }.header-search button { margin: 4px; padding: 0 15px; color: #fff; background: var(--brand); border: 0; border-radius: 6px; font-size: .8rem; font-weight: 700; }.department-nav { border-top: 1px solid #eef0e9; }.department-nav__inner { display: flex; max-width: 1240px; margin: auto; overflow-x: auto; padding: 0 24px; }.department-nav a { flex: 0 0 auto; padding: 12px 15px; color: #496052; font-size: .84rem; font-weight: 600; }.department-nav a:hover { color: var(--brand); }.department-nav .department-nav__all { color: #fff; background: var(--brand); }
.fresh-hero { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; min-height: 385px; overflow: hidden; margin-bottom: 24px; border-radius: 18px; background: linear-gradient(115deg, #e5f4ce 0%, #d8f0c4 58%, #f9d55f 100%); }.fresh-hero__copy { z-index: 1; align-self: center; padding: 52px; }.fresh-hero h1 { max-width: 540px; margin: 9px 0 16px; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.4rem, 4.8vw, 4.6rem); color: #234428; }.fresh-hero h1 em { color: #e57f14; font-style: normal; }.fresh-hero p:not(.eyebrow) { max-width: 460px; color: #4e6651; font-size: 1.05rem; }.fresh-hero .eyebrow { color: #367043; }.fresh-hero__button { display: inline-flex; gap: 22px; align-items: center; margin-top: 24px; padding: 13px 19px; color: #fff; background: var(--brand); border-radius: 7px; font-weight: 700; }.fresh-hero__button span { font-size: 1.2rem; }.fresh-hero__art { position: relative; display: grid; grid-template-columns: 1fr 1fr; place-items: center; align-content: center; padding: 35px 70px 35px 20px; transform: rotate(-5deg); }.fresh-hero__art::before { position: absolute; width: 280px; height: 280px; border: 16px solid rgba(255,255,255,.46); border-radius: 50%; content: ''; }.fresh-hero__art span { z-index: 1; padding: 12px; font-size: clamp(3rem, 6vw, 5.2rem); filter: drop-shadow(0 13px 7px rgba(54,83,37,.18)); }
.service-strip { display: grid; grid-template-columns: repeat(3,1fr); margin: 0 0 48px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }.service-strip > div { display: flex; align-items: center; gap: 12px; padding: 18px 22px; border-right: 1px solid var(--line); }.service-strip > div:last-child { border: 0; }.service-strip b { display: grid; width: 34px; height: 34px; place-items: center; color: #fff; background: var(--brand); border-radius: 50%; }.service-strip span { color: #768178; font-size: .78rem; }.service-strip strong { display: block; color: var(--ink); font-size: .88rem; }
.category-section { margin-bottom: 40px; }.section-heading { margin-bottom: 20px; }.text-link { color: var(--brand); font-size: .9rem; font-weight: 700; }.category-tiles { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; }.category-tile { display: flex; flex-direction: column; min-height: 154px; padding: 18px; color: #294333; background: #fff; border: 1px solid var(--line); border-radius: 12px; font-weight: 700; transition: .2s ease; }.category-tile:hover { transform: translateY(-4px); color: var(--brand); box-shadow: 0 13px 25px rgba(32,75,43,.1); }.category-tile__icon { margin-bottom: auto; font-size: 2.35rem; }.category-tile small { margin-top: 4px; color: #7c8c81; font-size: .73rem; font-weight: 500; }.offer-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 0 0 46px; }.offer-card { min-height: 190px; padding: 30px; overflow: hidden; border-radius: 14px; }.offer-card p { margin: 0 0 5px; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }.offer-card h3 { max-width: 230px; margin: 0 0 8px; font-family: 'Playfair Display', Georgia, serif; font-size: 1.7rem; }.offer-card span { font-size: .9rem; }.offer-card--citrus { color: #24523a; background: radial-gradient(circle at 85% 50%, #ffcb35 0 14%, transparent 14.5%), radial-gradient(circle at 73% 30%, #f5a824 0 10%, transparent 10.5%), #e8f8d8; }.offer-card--berry { color: #fff; background: radial-gradient(circle at 83% 30%, #f2a6b3 0 11%, transparent 11.5%), radial-gradient(circle at 74% 65%, #e86f88 0 14%, transparent 14.5%), #6d3155; }
@media (max-width: 900px) { .header-search { order: 3; flex-basis: 100%; max-width: none; margin-bottom: 12px; }.site-header__inner { flex-wrap: wrap; padding-top: 12px; }.fresh-hero { grid-template-columns: 1fr; }.fresh-hero__art { display: none; }.category-tiles { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 600px) { .announcement-bar__inner { padding: 7px 16px; }.announcement-bar__inner span:last-child { display: none; }.department-nav__inner { padding: 0 16px; }.fresh-hero__copy { padding: 37px 25px; }.fresh-hero { min-height: 330px; }.service-strip { grid-template-columns: 1fr; }.service-strip > div { border-right: 0; border-bottom: 1px solid var(--line); }.category-tiles { grid-template-columns: repeat(2,1fr); }.category-tile { min-height: 132px; }.offer-row { grid-template-columns: 1fr; gap: 12px; }.offer-card { min-height: 165px; } }

/* Wholesale-market storefront refresh: purposeful blue, yellow and clean white. */
:root { --brand: #0050aa; --brand-dark: #003a7e; --accent: #ffd200; --ink: #172b4d; --paper: #f5f7fa; --line: #dce3ec; --surface: #fff; }
body { font-family: 'DM Sans', Arial, sans-serif; background: var(--paper); }
.announcement-bar { background: #003b7a; color: #fff; }
.announcement-bar__inner { max-width: 1380px; padding: 8px 32px; font-size: .74rem; letter-spacing: .01em; }
.site-header { background: #fff; border: 0; box-shadow: 0 2px 11px rgba(21, 45, 83, .11); }
.site-header__inner { max-width: 1380px; min-height: 88px; padding: 0 32px; gap: 32px; }
.brand { min-width: max-content; color: #0050aa; font-family: 'DM Sans', Arial, sans-serif; font-size: 1.55rem; font-weight: 800; letter-spacing: -.055em; text-transform: uppercase; }
.brand-mark { width: 31px; height: 31px; gap: 3px; padding: 6px; background: var(--accent); border-radius: 2px; transform: skew(-8deg); }
.brand-mark i { display: block; flex: 1; height: 100%; background: #0050aa; transform: skew(8deg); }
.header-search { max-width: 570px; border: 1px solid #aab8c9; border-radius: 3px; background: #fff; }
.header-search input { min-width: 0; padding: 13px 15px; color: var(--ink); }
.header-search button { display: flex; align-items: center; gap: 5px; margin: 0; padding: 0 17px; color: #003b7a; background: var(--accent); border-radius: 0; font-size: 1.3rem; }
.header-search button span { font-size: .76rem; text-transform: uppercase; }
.primary-nav { flex-wrap: nowrap; gap: 3px; }
.primary-nav a, .primary-nav button { color: #18365e; border-radius: 0; font-size: .77rem; }
.primary-nav .header-action { display: grid; min-width: 48px; padding: 8px 6px; place-items: center; text-align: center; }
.primary-nav .header-action b { height: 18px; color: var(--brand); font-size: 1rem; line-height: 1; }
.primary-nav .header-action span { margin-top: 3px; }
.primary-nav a:hover, .primary-nav button:hover { color: var(--brand); background: #edf5ff; }
.primary-nav .nav-cta { background: var(--brand); border-radius: 3px; }
.department-nav { border-top: 1px solid #e3e8ef; background: #fff; }
.department-nav__inner { max-width: 1380px; padding: 0 32px; }
.department-nav a { padding: 14px 17px; color: #253e60; font-size: .81rem; }
.department-nav .department-nav__all { background: var(--brand); color: #fff; font-weight: 700; }
.site-main { max-width: 1380px; padding: 25px 32px 70px; }
.fresh-hero { min-height: 372px; margin-bottom: 22px; border-radius: 0; background: linear-gradient(105deg, #004a9f 0 52%, #075cad 52% 100%); box-shadow: none; }
.fresh-hero::after { position: absolute; inset: 0; background: radial-gradient(circle at 87% 67%, rgba(255,210,0,.9) 0 8%, transparent 8.3%), radial-gradient(circle at 68% 22%, rgba(255,255,255,.12) 0 15%, transparent 15.4%); content: ''; }
.fresh-hero__copy { padding: 48px 55px; }
.fresh-hero .eyebrow { color: var(--accent); font-size: .79rem; letter-spacing: .12em; }
.fresh-hero h1 { color: #fff; font-family: 'DM Sans', Arial, sans-serif; font-size: clamp(2.5rem, 5.1vw, 4.7rem); font-weight: 800; letter-spacing: -.075em; line-height: .94; }
.fresh-hero h1 em { color: var(--accent); }
.fresh-hero p:not(.eyebrow) { color: #dceaff; max-width: 410px; }
.fresh-hero__button { padding: 13px 19px; color: #16365e; background: var(--accent); border-radius: 2px; text-transform: uppercase; font-size: .83rem; }
.fresh-hero__art { z-index: 1; display: flex; align-items: center; justify-content: center; padding: 0; transform: none; }
.fresh-hero__art::before { width: 255px; height: 255px; border: 22px solid rgba(255,255,255,.12); }
.hero-sale { display: grid; width: 165px; height: 165px; place-content: center; color: #003b7a; background: var(--accent); border-radius: 50%; text-align: center; font-size: 1rem; font-weight: 800; line-height: 1.02; transform: rotate(-10deg); box-shadow: 10px 12px 0 rgba(0,52,112,.18); }
.hero-sale b { font-size: 1.85rem; }
.hero-cart { position: absolute; margin: 135px 0 0 195px; color: #fff; font-size: 4.1rem; filter: drop-shadow(0 7px 4px rgba(0,38,86,.22)); }
.service-strip { margin-bottom: 44px; border: 0; border-radius: 0; box-shadow: 0 2px 7px rgba(21,45,83,.08); }
.service-strip > div { padding: 18px 27px; }
.service-strip b { width: 38px; height: 38px; color: #003b7a; background: #ffe987; border-radius: 0; font-size: 1.05rem; }
.service-strip strong { color: #173968; }.service-strip span { color: #60738d; }
.section-heading { border-bottom: 2px solid #e1e6ed; padding-bottom: 12px; margin-bottom: 18px; }
.section-heading h2 { color: #123d73; font-size: 1.65rem; font-weight: 800; }.section-heading .eyebrow { color: #55718f; }
.text-link { color: var(--brand); }
.category-section { margin-bottom: 42px; }
.category-tiles { gap: 12px; }
.category-tile { min-height: 145px; padding: 16px; color: #16365e; border-radius: 0; border-color: #e0e6ed; box-shadow: 0 1px 3px rgba(21,45,83,.04); }
.category-tile:hover { color: var(--brand); border-color: #a9cbed; box-shadow: 0 7px 17px rgba(0,80,170,.12); }
.category-tile__icon { font-size: 2.15rem; }.category-tile small { color: #75879b; }
.offer-row { gap: 16px; margin-bottom: 45px; }
.offer-card { min-height: 190px; border-radius: 0; }.offer-card h3 { font-family: 'DM Sans', Arial, sans-serif; font-weight: 800; line-height: 1.04; }
.offer-card--citrus { color: #fff; background: radial-gradient(circle at 86% 48%, #ffd200 0 14%, transparent 14.4%), radial-gradient(circle at 72% 80%, #ffec78 0 9%, transparent 9.4%), #0050aa; }
.offer-card--berry { color: #16365e; background: radial-gradient(circle at 84% 35%, #0050aa 0 12%, transparent 12.4%), radial-gradient(circle at 70% 75%, #176bc0 0 17%, transparent 17.4%), #ffd200; }
.product-grid { gap: 15px; }.product-card { border-radius: 0; border-color: #e0e6ed; box-shadow: 0 1px 3px rgba(21,45,83,.06); }.product-card:hover { box-shadow: 0 9px 20px rgba(0,59,122,.14); }
.product-card__image { position: relative; background: #fff; border-bottom: 1px solid #edf0f3; }.product-card__offer { position: absolute; top: 10px; left: 0; z-index: 1; padding: 4px 10px; color: #173968; background: var(--accent); font-size: .69rem; font-weight: 800; text-transform: uppercase; }
.product-card__body { padding: 14px; }.product-card__category { margin: 0 0 4px; color: #718197; font-size: .7rem; font-weight: 700; text-transform: uppercase; }.product-card__name { min-height: 2.9em; color: #233b5f; font-size: .91rem; }.product-card__price { color: #0050aa; font-size: 1.04rem; }.product-card__was { color: #77899c; }.product-card__from { margin-right: 3px; color: #77899c; font-size: .72rem; font-weight: 600; text-transform: uppercase; }
@media (max-width: 900px) { .site-header__inner { padding: 12px 24px; }.department-nav__inner, .site-main { padding-left: 24px; padding-right: 24px; }.fresh-hero__art { display: flex; }.hero-cart { display: none; } }
@media (max-width: 600px) { .announcement-bar__inner { padding: 8px 16px; }.site-header__inner { min-height: 70px; padding: 9px 16px; gap: 10px; }.brand { font-size: 1.18rem; }.brand-mark { width: 25px; height: 25px; }.primary-nav { margin-left: auto; }.primary-nav .header-action span { display: none; }.primary-nav .header-action { min-width: 29px; padding: 7px 3px; }.header-search { order: 3; flex-basis: 100%; margin-bottom: 2px; }.department-nav__inner, .site-main { padding-left: 16px; padding-right: 16px; }.department-nav a { padding: 11px 13px; }.fresh-hero { min-height: 337px; }.fresh-hero__copy { padding: 37px 26px; }.fresh-hero__art { display: none; }.section-heading h2 { font-size: 1.35rem; }.section-heading .text-link { font-size: .78rem; }.product-card__body { padding: 11px; } }

/* Product detail page */
.product-breadcrumbs { display: flex; align-items: center; gap: 8px; overflow: hidden; margin: 2px 0 22px; color: #617590; font-size: .78rem; white-space: nowrap; }.product-breadcrumbs a:hover { color: var(--brand); text-decoration: underline; }.product-breadcrumbs__current { overflow: hidden; color: #34516f; font-weight: 600; text-overflow: ellipsis; }
.product-detail { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(330px, .96fr); gap: 44px; padding: 30px; background: #fff; border: 1px solid #e0e6ed; box-shadow: 0 1px 4px rgba(21,45,83,.07); }.product-gallery { display: grid; grid-template-columns: 82px minmax(0, 1fr); gap: 16px; min-width: 0; }.product-gallery__thumbnails { display: flex; flex-direction: column; gap: 10px; }.product-gallery__thumbnail { display: grid; width: 78px; height: 78px; padding: 5px; place-items: center; overflow: hidden; background: #fff; border: 1px solid #dce4ed; border-radius: 0; }.product-gallery__thumbnail:hover, .product-gallery__thumbnail.is-active { border: 2px solid #0050aa; }.product-gallery__thumbnail img { width: 100%; height: 100%; object-fit: contain; }.product-gallery__thumbnail--empty { color: #8998a8; font-size: .7rem; text-align: center; }.product-gallery__main { position: relative; display: grid; min-height: 445px; place-items: center; overflow: hidden; background: #fff; }.product-gallery__main img { max-width: 100%; max-height: 445px; object-fit: contain; }.product-gallery__placeholder { color: #8798aa; font-size: .9rem; }.product-detail__badge { position: absolute; z-index: 1; top: 0; left: 0; padding: 6px 11px; color: #143965; background: #ffd200; font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.product-info { padding: 7px 4px 2px 0; }.product-info__department { color: #0050aa; font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }.product-info h1 { margin: 7px 0 6px; color: #173968; font-family: 'DM Sans', Arial, sans-serif; font-size: clamp(1.75rem, 2.9vw, 2.42rem); font-weight: 800; letter-spacing: -.05em; }.product-info__sku { margin: 0; color: #77899e; font-size: .78rem; }.product-info__rule { height: 1px; margin: 21px 0; background: #e1e7ed; }.product-price-block { display: flex; flex-wrap: wrap; align-items: baseline; gap: 9px 12px; padding: 17px 18px; background: #f4f8fc; border-left: 4px solid #0050aa; }.product-price-block__label { display: block; flex-basis: 100%; color: #627994; font-size: .72rem; font-weight: 700; text-transform: uppercase; }.product-price-block__amount { margin: -4px 0 0; color: #004a9f; font-size: 1.8rem; font-weight: 800; letter-spacing: -.045em; }.product-price-block__was { color: #75889c; font-size: .82rem; text-decoration: line-through; }.product-price-block__saving { padding: 3px 7px; color: #174776; background: #ffe980; font-size: .7rem; font-weight: 800; }.product-fulfilment { display: flex; align-items: center; gap: 10px; padding: 19px 2px; border-bottom: 1px solid #e1e7ed; }.product-fulfilment__icon { display: grid; width: 25px; height: 25px; place-items: center; color: #fff; background: #198754; border-radius: 50%; font-size: .78rem; }.product-fulfilment strong, .product-fulfilment small { display: block; }.product-fulfilment strong { color: #244365; font-size: .87rem; }.product-fulfilment small { color: #718399; font-size: .75rem; }
.product-variant-picker { display: flex; flex-wrap: wrap; gap: 16px 24px; padding: 16px 2px; border-bottom: 1px solid #e1e7ed; }.product-variant-picker__label { display: block; margin-bottom: 9px; color: #3d5674; font-size: .8rem; font-weight: 700; }.product-variant-picker__options { display: flex; flex-wrap: wrap; gap: 8px; }.product-variant-picker__group select { min-width: 140px; padding: 9px 12px; color: #233b5f; font-size: .85rem; }.variant-pill { position: relative; }.variant-pill input { position: absolute; opacity: 0; }.variant-pill span { display: inline-flex; padding: 8px 14px; color: #34516f; background: #fff; border: 1px solid #b9c6d5; border-radius: 999px; font-size: .82rem; font-weight: 600; cursor: pointer; }.variant-pill input:checked + span { color: #fff; background: #0050aa; border-color: #0050aa; }.variant-pill--disabled span { color: #a7b3c2; background: #f4f6f8; text-decoration: line-through; cursor: not-allowed; }
.product-description-accordion { border-bottom: 1px solid #e1e7ed; }.product-description-accordion summary { display: flex; align-items: center; justify-content: space-between; padding: 16px 1px; color: #294a70; cursor: pointer; font-size: .86rem; font-weight: 800; list-style: none; }.product-description-accordion summary::-webkit-details-marker { display: none; }.product-description-accordion summary span { color: #0050aa; font-size: 1.1rem; transition: transform .18s ease; }.product-description-accordion:not([open]) summary span { transform: rotate(-90deg); }.product-description-accordion p { margin: -2px 0 16px; color: #627691; font-size: .84rem; line-height: 1.65; }.product-purchase { margin-top: 20px; }.product-purchase > label { display: block; margin-bottom: 8px; color: #3d5674; font-size: .8rem; font-weight: 700; }.product-purchase__controls { display: flex; gap: 12px; }.quantity-control { display: flex; height: 48px; border: 1px solid #b9c6d5; }.quantity-control button { width: 40px; padding: 0; color: #0050aa; background: #fff; border: 0; font-size: 1.25rem; }.quantity-control button:hover { background: #edf5ff; }.quantity-control input { width: 43px; padding: 0; border: 0; border-radius: 0; text-align: center; font-weight: 700; appearance: textfield; }.quantity-control input::-webkit-inner-spin-button { appearance: none; }.product-purchase__button { display: inline-flex; flex: 1; align-items: center; justify-content: center; gap: 11px; min-height: 48px; padding: 10px 19px; color: #15375f; background: #ffd200; border: 1px solid #ffd200; border-radius: 0; font-size: .86rem; font-weight: 800; text-transform: uppercase; }.product-purchase__button:hover { background: #f0c500; border-color: #f0c500; }.product-purchase__login { margin-top: 20px; }.product-assurances { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 24px; }.product-assurances > div { display: flex; gap: 8px; align-items: flex-start; color: #60738d; font-size: .71rem; }.product-assurances b { font-size: 1rem; }.product-assurances strong { display: block; color: #2d4a6d; font-size: .75rem; }
.product-description { margin-top: 25px; padding: 26px 30px; background: #fff; border: 1px solid #e0e6ed; }.product-description h2 { margin: 0; color: #173968; font-size: 1.35rem; font-weight: 800; }.product-description__content { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(250px, .75fr); gap: 42px; margin-top: 16px; color: #576e89; font-size: .9rem; }.product-description__content p { margin: 0; }.product-description dl { margin: 0; }.product-description dl div { display: flex; justify-content: space-between; gap: 18px; padding: 8px 0; border-bottom: 1px solid #edf0f3; }.product-description dt { color: #708299; }.product-description dd { margin: 0; color: #314d70; font-weight: 700; text-align: right; }.related-products { margin-top: 45px; }
@media (max-width: 850px) { .product-detail { grid-template-columns: 1fr; gap: 25px; }.product-info { padding: 0; }.product-gallery__main { min-height: 360px; }.product-gallery__main img { max-height: 360px; } }

.subcategory-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: -6px 0 22px; }
.subcategory-chip { padding: 7px 14px; color: #34516f; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: .8rem; font-weight: 600; }
.subcategory-chip:hover { color: var(--brand); border-color: var(--brand); }
.subcategory-chip--all { color: #fff; background: var(--brand); border-color: var(--brand); }
.subcategory-chip--all:hover { color: #fff; }

/* Admin console header */
.admin-header .site-header__inner { gap: 24px; }
.admin-badge { padding: 3px 9px; color: var(--brand); background: #eef4fb; border: 1px solid #d5e2f0; border-radius: 4px; font-size: .62rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.admin-nav { flex: 1; justify-content: flex-start; gap: 4px; }
.admin-nav a { padding: 9px 13px; color: #4c5c72; font-weight: 700; border-radius: 6px; }
.admin-nav a:hover { color: var(--brand); background: #eef4fb; }
.admin-nav a.is-active { color: var(--brand); background: #eef4fb; }
.admin-nav-account { display: flex; align-items: center; gap: 6px; }
.admin-nav-account a, .admin-nav-account button { padding: 8px 12px; color: #4c5c72; background: transparent; border: 0; border-radius: 6px; font-size: .85rem; font-weight: 700; }
.admin-nav-account a:hover, .admin-nav-account button:hover { color: var(--brand); background: #eef4fb; }
@media (max-width: 900px) { .admin-header .site-header__inner { flex-wrap: wrap; } .admin-nav { order: 3; flex-basis: 100%; overflow-x: auto; } }
@media (max-width: 600px) { .product-breadcrumbs { margin-bottom: 14px; }.product-detail { padding: 18px; }.product-gallery { grid-template-columns: 55px minmax(0, 1fr); gap: 10px; }.product-gallery__thumbnail { width: 53px; height: 53px; }.product-gallery__main { min-height: 290px; }.product-gallery__main img { max-height: 290px; }.product-info h1 { font-size: 1.7rem; }.product-price-block { padding: 14px; }.product-purchase__controls { gap: 8px; }.product-purchase__button { padding: 10px; font-size: .75rem; }.product-assurances { grid-template-columns: 1fr; }.product-description { padding: 21px; }.product-description__content { grid-template-columns: 1fr; gap: 19px; } }
