/* =========================================================================
   Williamsburg SeaBlue — rebuilt stylesheet.
   Clean semantic selectors; values extracted from the live Linden site via
   getComputedStyle census (see DESIGN-TOKENS.md).
   Breakpoints (Elementor model): desktop ≥1025, tablet ≤1024, mobile ≤767.
   ========================================================================= */

:root {
  --blue: #1e6fb0;          /* primary */
  --navy: #123a5a;          /* headings / footer bg */
  --deep: #0b3a75;          /* phone number */
  --body: #333333;
  --sub: #33475a;           /* hero subhead */
  --bg-section: #f8f9fc;
  --bg-card: #fcfcfd;
  --bg-search: #f6f9fc;
  --line-search: #d7e3ee;
  --icon-bg: #e8f4fc;
  --link-light: #bfe0f2;    /* footer links */
  --link-default: #cc3366;  /* Hello Elementor default link */
  --font-head: "Poppins", Sans-serif;
  --font-sys: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --shadow-tile: 0px 6px 16px 0px rgba(18, 58, 90, 0.2);
  --shadow-card: 0px 6px 18px 0px rgba(18, 58, 90, 0.15);
  --shadow-panel: 0px 12px 34px 0px rgba(18, 58, 90, 0.15);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sys);
  font-size: 16px;
  line-height: 1.5;
  color: var(--body);
  background: #fff;
}
img { max-width: 100%; height: auto; border: 0; }
a { color: var(--link-default); text-decoration: none; }
p { margin: 0 0 0.9rem; } /* rem like the theme — em drifted on non-16px text (footer) */
/* kill inline-image baseline gaps under image widgets (source uses Elementor blocks) */
.sec-header-img, .cat-tile, .about-panel a, .cta-banner, .archive-banner { line-height: 0; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); color: var(--navy); margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

.skip-link { color: var(--link-default); }
.skip-link:focus { background-color: #eee; color: #333; clip: auto; clip-path: none; display: block;
  font-size: 1rem; height: auto; width: auto; left: 5px; top: 5px; line-height: normal;
  padding: 12px 24px; text-decoration: none; z-index: 100000; position: fixed; }

.screen-reader-text { border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }

/* =====================================================================
   HEADER — fixed container + an identical hidden clone that holds space.
   No hamburger at any width: the menus shrink and wrap (like the source).
   ===================================================================== */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: #fff; box-shadow: rgba(18, 58, 90, 0.08) 0px 2px 14px 0px;
  display: flex; flex-direction: column;
  transition: background .3s, border .3s, box-shadow .3s, transform .4s; }
.site-header.is-spacer { position: static; visibility: hidden; transition: none; pointer-events: none; }

.hdr-top { display: flex; justify-content: space-between; align-items: center; column-gap: 18px;
  padding: 8px 48px; background: #fff; position: relative; z-index: 999; }
.hdr-logo { flex: 0 1 auto; }
/* height pinned so row heights match the source regardless of logo aspect ratio;
   block display kills the inline baseline gap that inflated the row */
.hdr-logo a { display: block; line-height: 0; }
.hdr-logo img { height: 74px; width: auto; max-width: 100%; display: block; }
@media (min-width: 1441px) { .hdr-logo img { height: 76px; } } /* source row is 92 at 1920 */
.hdr-right { display: flex; justify-content: flex-end; align-items: center; column-gap: 24px;
  padding: 10px; flex: 1 1 100%; min-width: 0; }

.hdr-nav ul { display: flex; justify-content: center; flex-wrap: nowrap; margin: 0; padding: 0;
  list-style: none; position: relative; z-index: 2; }
.hdr-nav li { display: flex; position: relative; }
a.nav-item { font-family: var(--font-head); font-size: 15px; line-height: 20px; font-weight: 600;
  color: var(--navy); padding: 13px 10px; display: flex; align-items: center; white-space: nowrap;
  position: relative; transition: .4s; }
a.nav-item:hover, a.nav-item:focus, a.nav-item.active { color: var(--blue); }
a.nav-item::after, a.cat-item::after { content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 3px; background: #3f444b; z-index: 2; opacity: 0;
  transition: .3s cubic-bezier(.58,.3,.005,1); }
a.nav-item:hover::after, a.nav-item.active::after,
a.cat-item:hover::after, a.cat-item.active::after { opacity: 1; }

.hdr-search-wrap { position: relative; }
.ls-hsearch { display: flex; align-items: center; border: 1.5px solid var(--line-search); border-radius: 999px;
  overflow: hidden; background: var(--bg-search); height: 40px; min-width: 200px; max-width: 250px; }
.ls-hsearch input[type=search] { border: 0; background: transparent; padding: 8px 4px 8px 15px;
  font-family: var(--font-head); font-size: 13.5px; line-height: 1.5; color: var(--navy); outline: none;
  width: 100%; border-radius: 3px; }
.ls-hsearch input[type=search]::placeholder { color: #7d93a8; }
.ls-hsearch button { border: 0; background: transparent; padding: 0 13px; cursor: pointer; color: var(--blue);
  display: flex; align-items: center; height: 100%; }

/* live search suggestions panel (appended to body by JS) */
.lsas-panel { position: fixed; z-index: 99999; background: #fff; border: 1px solid var(--line-search);
  border-radius: 14px; box-shadow: 0 12px 34px rgba(11,58,117,.18); font-family: var(--font-head);
  display: none; overflow: hidden; }
.lsas-panel.is-open { display: block; }
.lsas-list { max-height: min(60vh, 420px); overflow-y: auto; padding: 6px; margin: 0; list-style: none; }
.lsas-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 10px;
  text-decoration: none; color: var(--navy); }
.lsas-item:hover, .lsas-item.is-active { background: var(--icon-bg); }
.lsas-item img { width: 44px; height: 44px; border-radius: 8px; background: var(--bg-search); object-fit: cover; flex: 0 0 auto; }
.lsas-name { font-size: 13.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lsas-name mark { background: transparent; color: var(--blue); font-weight: 700; }
.lsas-price { font-size: 12px; color: #5f7a91; }
.lsas-msg { padding: 14px 16px; font-size: 13px; color: #5f7a91; }
.lsas-all { display: block; padding: 11px 16px; font-size: 12.5px; font-weight: 700; color: var(--blue);
  border-top: 1px solid #eef4f9; background: #fbfdff; text-decoration: none; }
.lsas-all:hover { background: var(--icon-bg); }

.ls-order { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); line-height: 1.15; }
.ls-order .lstxt { display: flex; flex-direction: column; }
.ls-order .lst1 { font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--blue); }
.ls-order .lst2 { font-size: 15px; font-weight: 700; color: var(--deep); white-space: nowrap; }
.ls-order .lsic { display: flex; gap: 7px; }
.ls-order .lsic a { width: 34px; height: 34px; border-radius: 50%; background: var(--icon-bg);
  display: flex; align-items: center; justify-content: center; color: var(--blue); transition: background .2s; }
.ls-order .lsic a:hover { background: var(--blue); color: #fff; }

.hdr-cart { color: var(--blue); display: inline-block; position: relative; transition: .3s; }
.hdr-cart svg { height: 22px; width: auto; fill: currentColor; display: block; }
.lsb-cart-count-wrap { position: relative; display: inline-block; }
.lsb-cart-count-badge { position: absolute; top: -6px; right: -10px; background: #c0392b; color: #fff;
  border-radius: 50%; font-size: 11px; line-height: 1; min-width: 16px; height: 16px;
  display: flex; align-items: center; justify-content: center; padding: 2px; font-weight: 600;
  font-family: var(--font-sys); }
.lsb-cart-count-badge.lsb-hide { display: none; }

/* --- category bar (row 2) --- */
.hdr-cats { background: var(--blue); min-height: 47px; padding: 0 30px;
  display: flex; justify-content: center; align-items: center; position: relative; z-index: 999; }
.hdr-cats ul.menu { display: flex; justify-content: center; flex-wrap: nowrap; margin: 0; padding: 0;
  list-style: none; position: relative; z-index: 2; }
.hdr-cats li { position: relative; display: flex; }
a.cat-item { font-family: var(--font-head); font-size: 15px; line-height: 20px; font-weight: 600;
  color: #fff; padding: 13px 19px; display: flex; align-items: center; white-space: nowrap;
  position: relative; transition: .4s; }
a.cat-item:hover, a.cat-item:focus { color: #dceffc; }
.hdr-cats .sub-arrow { display: flex; align-items: center; line-height: 1; padding: 10px 0 10px 10px;
  margin-top: -10px; margin-bottom: -10px; }
.hdr-cats .sub-arrow svg { width: 1em; height: 1em; fill: currentColor; }

/* dropdown submenu — instant toggle like SmartMenus */
.hdr-cats ul.sub-menu { position: absolute; top: 100%; left: 0; width: 12em; font-size: 13px;
  margin: 0; padding: 0; border: 0; list-style: none; background: #fff;
  border-radius: 0 0 10px 10px; box-shadow: 0 10px 26px rgba(18, 58, 90, 0.16);
  display: none; z-index: 1000; }
.hdr-cats li:hover > ul.sub-menu, .hdr-cats li:focus-within > ul.sub-menu,
.hdr-cats li.is-tap-open > ul.sub-menu { display: block; }
.hdr-cats ul.sub-menu li { display: block; }
a.elementor-sub-item { font-family: var(--font-sys); font-size: 13px; line-height: 20px; font-weight: 400;
  color: var(--navy); display: flex; align-items: center; padding: 13px 20px;
  border-inline-start: 8px solid transparent; text-decoration: none; }
a.elementor-sub-item:hover, a.elementor-sub-item:focus { background-color: #3f444b; color: var(--blue); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { display: flex; flex-direction: column; position: relative; min-height: 78vh;
  padding: 0 24px; cursor: pointer;
  background-image: url('/assets/uploads/2026/07/Linden-SeaBlue-Hero-Background-Clean.jpg');
  background-size: cover; background-position: center right; background-repeat: no-repeat; }
.hero::before { content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(90deg, rgba(255,255,255,0.94) 18%, rgba(255,255,255,0) 62%); }
.hero .inner { position: relative; width: 100%; max-width: 1140px; margin: 0 auto; padding: 48px 0;
  display: flex; flex-direction: column; justify-content: center; gap: 20px; flex: 1; }
.hero .hero-logo { margin-bottom: 6px; }
.hero .hero-logo img { width: 190px; height: auto; }
.hero .eyebrow { font-family: var(--font-head); font-size: 15px; line-height: 1; font-weight: 700;
  letter-spacing: 3px; color: var(--blue); }
.hero h1 { font-size: 54px; line-height: 1.12; font-weight: 700; color: var(--navy); width: 52%; max-width: 100%; }
.hero .sub { width: 44%; max-width: 100%; }
.hero .sub p { font-family: var(--font-head); font-size: 20px; line-height: 1.5; font-weight: 500; color: var(--sub); margin: 0 0 14.4px; }

/* =====================================================================
   HOME SECTIONS
   ===================================================================== */
.section { padding: 0 20px; }
.section .inner { max-width: min(100%, 1140px); margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.section.bg { background: var(--bg-section); }

.sec-cats .inner { padding: 44px 0 36px; gap: 12px; }
.sec-header-img { text-align: center; }
.sec-header-img img { width: 45%; }

.cat-tiles { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; margin-top: 16px; padding: 10px; width: 100%; }
.cat-tile { width: 31%; padding: 10px; text-align: center; }
.cat-tile img { border-radius: 18px; box-shadow: var(--shadow-tile); display: inline-block;
  transition-duration: .3s; transition-property: transform; transition-timing-function: ease-out; width: 100%; }
.cat-tile a:hover img, .cat-tile a:focus img, .cat-tile a:active img { transform: translateY(-8px); }

.sec-types .inner { padding: 74px 0 70px; gap: 10px; }
.type-board { background: var(--bg-card); border-radius: 22px; padding: 26px 18px; margin-top: 14px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; width: 100%; }
.type-tile { width: 23%; aspect-ratio: 1 / 1; border-radius: 18px; padding: 10px;
  background-color: var(--bg-card); background-size: cover; background-position: center; background-repeat: no-repeat;
  box-shadow: var(--shadow-card); transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column; }
.type-tile:hover { transform: translateY(-7px); box-shadow: 0 14px 30px rgba(18, 58, 90, 0.22); }

.sec-about { background: #fff; }
.sec-about .inner { padding: 48px 0; gap: 20px; }
.about-panel img { border-radius: 16px; box-shadow: var(--shadow-panel); width: 100%;
  aspect-ratio: 1672 / 941; object-fit: cover; object-position: center top; } /* SBF art is 3:2; crop to the source ratio, trimming its bottom contact strip (info repeats in the footer) */

.sec-why .inner { padding: 56px 0; gap: 26px; }
.lsw { background: var(--blue); padding: 46px 30px; border-radius: 18px;
  box-shadow: 0px 12px 34px 0px rgba(18, 58, 90, 0.16); width: fit-content; max-width: 100%; }
.lsw h2 { font-size: clamp(26px, 4vw, 36px); line-height: 1.2; font-weight: 700; color: #fff;
  margin: 0 0 36px; text-align: center; }
.lsw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 20px; max-width: 940px; margin: 0 auto; }
.lsw-card { text-align: center; }
.lsw-ic { height: 60px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.lsw-ic svg { width: 40px; height: 40px; stroke: #fff; }
.lsw-ic img { height: 60px; width: auto; }
.lsw-card h3 { font-size: 17px; line-height: 1.2; font-weight: 700; color: #fff; margin: 0 0 5px; }
.lsw-card p { font-family: var(--font-head); font-size: 13px; line-height: 1.5; font-weight: 400; color: rgba(255,255,255,0.85); margin: 0; }
@media (max-width: 800px) { .lsw-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .lsw-grid { grid-template-columns: 1fr; } }

.sec-cta .inner { padding: 70px 0; gap: 14px; }
.cta-banner img { width: 100%; }
.btn-primary { display: inline-block; background: var(--blue); color: #fff; font-family: var(--font-sys);
  font-size: 20px; line-height: 1; font-weight: 600; padding: 25px 50px; border-radius: 8px;
  text-align: center; transition: all .3s; }
.btn-primary:hover { color: #fff; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--navy); padding: 0 20px; }
.site-footer .inner { max-width: min(100%, 1140px); margin: 0 auto; padding: 56px 0 28px;
  display: flex; flex-direction: column; gap: 20px; }
.ftr-cols { display: flex; flex-wrap: wrap; gap: 30px; padding: 10px; }
.ftr-col { padding: 10px; display: flex; flex-direction: column; gap: 12px; }
.ftr-col.brand { width: 28%; }
.ftr-col.shop { width: 19%; }
.ftr-col.company { width: 17%; }
.ftr-col.contact { width: 26%; }
.ftr-logo img { width: 150px; height: auto; }
.ftr-text { font-family: var(--font-sys); font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.8); margin: 0 0 14.4px; }
.site-footer h4 { font-size: 17px; line-height: 1; font-weight: 600; color: #fff; }
.site-footer a { color: var(--link-light); text-decoration: none; }
.ftr-divider { padding: 18px 0; }
.ftr-divider-line { display: block; border-top: 1px solid rgba(255,255,255,0.18); width: 100%; }
.ftr-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px; padding: 10px; }

/* =====================================================================
   DELIVERY POPUP (ported from the source's own component)
   ===================================================================== */
.lsb-dp-overlay{position:fixed;inset:0;background:rgba(8,32,52,.55);display:none;align-items:center;justify-content:center;z-index:99999;padding:20px;}
.lsb-dp-overlay.is-open{display:flex;}
.lsb-dp-popup{position:relative;width:100%;max-width:460px;background:linear-gradient(180deg,#0b3350 0%,#124a72 100%);border-radius:14px;overflow:hidden;box-shadow:0 30px 60px rgba(6,24,40,.45);color:#eaf4fa;font-family:'Helvetica Neue',Arial,sans-serif;animation:lsb-dp-rise .45s cubic-bezier(.2,.8,.2,1);max-height:92vh;overflow-y:auto;}
@keyframes lsb-dp-rise{from{opacity:0;transform:translateY(18px) scale(.97);}to{opacity:1;transform:none;}}
.lsb-dp-close{position:absolute;top:12px;right:14px;width:30px;height:30px;border-radius:50%;border:none;background:rgba(255,255,255,.12);color:#eaf4fa;font-size:18px;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .2s ease;z-index:3;padding:0;}
.lsb-dp-close:hover{background:rgba(255,255,255,.25);}
.lsb-dp-top{position:relative;padding:30px 30px 18px;text-align:center;}
.lsb-dp-headline{font-size:30px;font-weight:800;letter-spacing:.5px;margin:0 0 6px;color:#fff;line-height:1.15;font-family:inherit;}
.lsb-dp-sub{font-size:14px;color:#cfe4f0;margin:0;font-weight:500;}
.lsb-dp-wave{display:block;width:100%;height:34px;margin-top:18px;}
.lsb-dp-body{background:#eaf4fa;padding:26px 30px 28px;color:#0b3350;}
.lsb-dp-body p{margin:0 0 16px;font-size:15px;line-height:1.55;color:#0b3350;}
.lsb-dp-steps{display:flex;flex-direction:column;gap:12px;margin:0 0 22px;}
.lsb-dp-step{display:flex;align-items:flex-start;gap:12px;background:#fff;border:1px solid #dbe9f1;border-radius:10px;padding:12px 14px;}
.lsb-dp-step-num{flex:0 0 auto;width:24px;height:24px;border-radius:50%;background:#2e7ba6;color:#fff;font-size:12px;font-weight:700;display:flex;align-items:center;justify-content:center;}
.lsb-dp-step-text{font-size:13.5px;line-height:1.45;color:#0b3350;}
.lsb-dp-step-text b{color:#124a72;}
.lsb-dp-cta{display:block;width:100%;text-align:center;background:#0b3350;color:#fff !important;font-weight:800;font-size:15px;letter-spacing:.3px;text-decoration:none;padding:13px 18px;border-radius:8px;border:none;cursor:pointer;transition:transform .15s ease,background .2s ease;}
.lsb-dp-cta:hover{background:#124a72;transform:translateY(-1px);color:#fff !important;}
.lsb-dp-later{display:block;width:100%;text-align:center;background:transparent;color:#124a72;font-weight:600;font-size:13.5px;padding:11px 18px 0;border:none;cursor:pointer;opacity:.8;transition:opacity .2s ease;font-family:inherit;}
.lsb-dp-later:hover{opacity:1;text-decoration:underline;}
@media(max-width:480px){.lsb-dp-top{padding:26px 22px 14px;}.lsb-dp-headline{font-size:25px;}.lsb-dp-body{padding:22px 22px 24px;}}

/* =====================================================================
   SHOP / CATEGORY ARCHIVE
   ===================================================================== */
.archive-banner img { width: 100%; display: block; }
.archive-content { padding: 0 20px; }
/* block flow (not flex): result-count/orderby float side by side like the source */
.archive-content .inner { max-width: min(100%, 1140px); margin: 0 auto; padding: 48px 0 64px; display: block; }
.woocommerce { width: 100%; }

.ls-shop-price-notice { margin: 0 0 20px; padding: 11px 16px; background: #f3fafd;
  border: 1px solid #d6ecf7; border-radius: 8px; font-size: 13.5px; line-height: 1.5;
  color: var(--navy); text-align: center; width: 100%; }
.ls-avg-label { font-size: 0.7em; font-weight: 600; color: var(--blue);
  text-transform: uppercase; letter-spacing: 0.04em; vertical-align: middle; }

.shop-toolbar { width: 100%; }
.woocommerce-result-count { float: left; margin: 0 0 16px; font-size: 16px; line-height: 1.5; color: var(--body); }
form.woocommerce-ordering { float: right; margin: 0 0 16px; }
select.orderby { font-size: 16px; color: #000; background: #fff; border: 1px solid #666;
  border-radius: 3px; padding: 8px 16px; transition: all .3s; display: block; }

ul.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px 20px;
  margin: 0; padding: 0; list-style: none; clear: both; width: 100%; align-items: stretch; }
li.product { display: flex; flex-direction: column; height: 100%; position: relative; }
li.product a { text-decoration: none; }
li.product > a.woocommerce-LoopProduct-link { display: flex; flex-direction: column; color: var(--link-default); }
li.product > a.woocommerce-LoopProduct-link:hover { color: #333366; }
li.product img { width: 100%; height: auto; margin: 0 0 16px; display: block; }
h2.woocommerce-loop-product__title { color: var(--deep); font-size: 19px; line-height: 1.35;
  font-family: var(--font-sys); font-weight: 500; padding: 0.5em 0; margin: 0; text-align: start; }
li.product span.price { display: block; margin: 0 0 12px; font-size: 13.712px; line-height: 1.5; color: #958e09; }
li.product span.price .amount, li.product span.price .woocommerce-Price-currencySymbol {
  color: var(--blue); font-weight: 600; font-size: 16px; line-height: 1.5; }
li.product .ls-avg-label { color: #6b7280; }
.ls-perlb { display: block; margin: 2px 0 0; font-size: 14.5px; font-weight: 600; color: var(--navy); line-height: 1.5; }

li.product .button { background-color: var(--blue); color: #fff; border: 0; border-radius: 8px;
  align-self: center; width: auto; display: inline-block; padding: 9px 26px; margin-top: auto;
  font-size: 16px; line-height: 1; font-weight: 700; text-align: center; }
li.product .button:hover { background-color: #17588f; color: #fff; }
li.product .button.out-of-stock-label { background: #9db3c4; cursor: not-allowed; }
li.product .added_to_cart { align-self: center; margin-top: 8px; font-size: 14px; color: var(--link-default); }

nav.woocommerce-pagination { margin-top: 40px; text-align: center; width: 100%; }
nav.woocommerce-pagination ul.page-numbers { display: inline-block; margin: 1px; padding: 0;
  border: 1px solid #cfc8d8; border-right: none; list-style: none; }
nav.woocommerce-pagination li { float: left; display: block; overflow: hidden; border-right: 1px solid #cfc8d8; }
nav.woocommerce-pagination .page-numbers { display: block; padding: 8px; min-width: 24px;
  font-size: 16px; line-height: 1; text-align: center; color: var(--link-default); text-decoration: none; }
nav.woocommerce-pagination a.page-numbers:hover { color: #816f98; background: #e9e6ed; }
nav.woocommerce-pagination span.page-numbers.current { color: #816f98; background: #e9e6ed; }
nav.woocommerce-pagination span.page-numbers.dots { color: var(--body); }

/* =====================================================================
   SINGLE PRODUCT
   ===================================================================== */
main.site-main { width: 100%; margin-inline: auto; max-width: 1140px; }
@media (max-width: 1199px) { main.site-main { max-width: 800px; } }
@media (max-width: 991px)  { main.site-main { max-width: 600px; } }
@media (max-width: 767px)  { main.site-main { max-width: 500px; } }
@media (max-width: 575px)  { main.site-main { max-width: none; padding-inline: 10px; } }

.woocommerce-breadcrumb { font-size: 0.92em; line-height: 1.5; color: #767676; margin: 0 0 1em; }
.woocommerce-breadcrumb a { color: #767676; }

.woocommerce-message, .woocommerce-info, .woocommerce-error { padding: 1em 2em 1em 3.5em; margin: 0 0 2em;
  position: relative; background-color: #f6f5f8; color: #515151; border-top: 3px solid #8fae1b;
  list-style: none; word-wrap: break-word; }
.woocommerce-message::before { content: "✓"; color: #8fae1b; position: absolute; top: 1em; left: 1.5em; font-weight: 700; }
.woocommerce-info { border-top-color: #1e85be; }
.woocommerce-error { border-top-color: #b81c23; }
.woocommerce-message .button { float: right; background: #e9e6ed; color: #515151; padding: 8px 14px;
  border-radius: 3px; font-weight: 700; font-size: 14px; }
.woocommerce-message .button:hover { background: #dcd7e2; }

div[id^="product-"] { position: relative; }
div[id^="product-"]::after { content: ""; display: table; clear: both; }
.woocommerce-product-gallery { float: left; width: 48%; margin: 0 0 32px; position: relative; opacity: 1;
  transition: opacity .25s ease-in-out; }
.woocommerce-product-gallery__image { position: relative; overflow: hidden; }
.woocommerce-product-gallery img.wp-post-image { display: block; width: 100%; height: auto; cursor: pointer; }
.woocommerce-product-gallery__image .zoomImg { position: absolute; top: 0; left: 0; opacity: 0; max-width: none;
  border: none; pointer-events: none; transition: opacity .12s; }
.woocommerce-product-gallery__trigger { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px;
  background: #fff; border-radius: 100%; z-index: 99; cursor: pointer; text-indent: -9999px; overflow: hidden; display: block; }
.woocommerce-product-gallery__trigger::before { content: ""; display: block; width: 10px; height: 10px;
  border: 2px solid #000; border-radius: 100%; position: absolute; left: 9px; top: 9px; box-sizing: content-box; }
.woocommerce-product-gallery__trigger::after { content: ""; display: block; width: 2px; height: 8px;
  background: #000; border-radius: 6px; position: absolute; left: 22px; top: 19px; transform: rotate(-45deg); box-sizing: content-box; }

.summary.entry-summary { float: right; width: 48%; margin: 0 0 32px; }
h1.product_title { font-family: var(--font-sys); font-size: 40px; line-height: 1.2; font-weight: 500;
  color: var(--body); margin: 0 0 16px; }
.summary p.price { font-size: 20px; line-height: 1.5; font-weight: 400; color: #958e09; margin: 0 0 14.4px; }
.summary p.price .amount, .summary p.price .woocommerce-Price-currencySymbol { color: #958e09; }
.summary p.price .ls-perlb { font-size: 14.5px; }
.ls-illustration-note { font-size: 12px; line-height: 1.5; font-style: italic; color: #6b7280; margin: 8px 0 0; }
.woocommerce-product-details__short-description p { font-size: 16px; line-height: 1.5; color: var(--body); margin: 0 0 14.4px; }

form.cart { margin: 0 0 32px; }
.ls-item-note-wrap { margin: 0 0 14px; }
.ls-item-note-wrap label { display: block; font-size: 13.5px; line-height: 1; font-weight: 600; color: var(--navy); margin: 0 0 5px; }
.ls-item-note-wrap label span { font-weight: 400; color: #6b7280; }
.ls-item-note-wrap textarea { width: 100%; max-width: 420px; padding: 9px 12px; border: 1px solid var(--line-search);
  border-radius: 8px; background: #fbfdff; color: var(--navy); font-size: 13.5px; line-height: 1.5; transition: .3s; }
form.cart::after { content: ""; display: table; clear: both; }
form.cart .quantity { float: left; margin: 0 4px 0 0; }
form.cart .qty { width: 58px; padding: 8px 16px; border: 1px solid #666; border-radius: 3px; background: #fff;
  color: #000; font-size: 16px; line-height: 1.5; text-align: center; transition: .3s; }
button.single_add_to_cart_button { font-size: 16px; line-height: 1; font-weight: 700; color: #fff;
  background: #7f54b3; padding: 0.618em 1em; border: 0; border-radius: 3px; transition: .3s;
  -webkit-font-smoothing: antialiased; display: block; }
button.single_add_to_cart_button:hover { background: #7249a4; color: #fff; }
.stock.out-of-stock { color: #b81c23; font-weight: 600; }

section.related.products > h2 { font-family: var(--font-sys); font-size: 32px; line-height: 1.2; font-weight: 500;
  color: var(--body); margin: 8px 0 16px; text-align: start; }
ul.products.related-grid { display: block; clear: both; margin: 0 0 16px; }
ul.products.related-grid::after { content: ""; display: table; clear: both; }
ul.products.related-grid li.product { float: left; width: 22.05%; margin: 0 3.8% 3em 0; }
ul.products.related-grid li.product:nth-child(4n) { margin-right: 0; }
@media (max-width: 768px) {
  /* smallscreen sheet: gallery + summary stack, related goes 2-up */
  .woocommerce-product-gallery, .summary.entry-summary { float: none; width: 100%; }
  ul.products.related-grid li.product { width: 48%; margin: 0 0 3em; clear: both; }
  ul.products.related-grid li.product:nth-child(2n) { float: right; clear: none; }
}

.ls-lightbox { position: fixed; inset: 0; z-index: 100000; background: rgba(6, 20, 33, 0.92);
  display: flex; align-items: center; justify-content: center; padding: 30px; }
.ls-lightbox[hidden] { display: none; }
.ls-lightbox img { max-width: 100%; max-height: 100%; }
.ls-lightbox-close { position: absolute; top: 16px; right: 22px; background: none; border: 0; color: #fff;
  font-size: 40px; line-height: 1; cursor: pointer; }

/* =====================================================================
   CART (WooCommerce Blocks look)
   ===================================================================== */
.cart-scaffold, .checkout-scaffold { max-width: 1140px; margin: 0 auto; font-family: var(--font-sys); }
@media (max-width: 1199px) { .cart-scaffold, .checkout-scaffold { max-width: 800px; } }
@media (max-width: 991px)  { .cart-scaffold, .checkout-scaffold { max-width: 600px; } }
@media (max-width: 575px)  { .cart-scaffold, .checkout-scaffold { max-width: none; padding: 0 10px; } }

.wp-block-woocommerce-cart.alignwide { margin: 0 -80px; max-width: 100%; display: flow-root; }
@media (max-width: 600px) { .wp-block-woocommerce-cart.alignwide { margin: 0; } } /* live-site off-screen bug fixed deliberately at phone widths */
img[src*="woocommerce-placeholder"] { border: 1px solid #f2f2f2; }
.wp-block-woocommerce-cart-order-summary-block { margin-bottom: 16px; border-bottom: 1px solid rgba(51,51,51,0.2); }

/* empty state */
.wc-block-cart__empty-cart__title { font-family: var(--font-sys); font-size: 16px; line-height: 1.2;
  font-weight: 500; color: var(--body); text-align: center; margin: 8px 0 16px; }
.empty-cart-icon { display: block; width: 5em; height: 5em; margin: 0 auto 2em; background-color: currentColor;
  -webkit-mask-position: center; mask-position: center; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: 5em; mask-size: 5em; }
hr.is-style-dots { background: none; border: none; height: auto; margin: 8px 0; color: #808080; text-align: center; }
hr.is-style-dots::before { color: currentColor; content: "···"; font-family: serif; font-size: 1.5em;
  letter-spacing: 2em; padding-left: 2em; line-height: 1; }
h2.new-in-store { font-family: var(--font-sys); font-size: 32px; line-height: 1.2; font-weight: 500;
  color: var(--body); text-align: center; margin: 8px 0 16px; }

ul.wc-block-grid__products { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px 20px;
  margin: 0; padding: 0; list-style: none; align-items: stretch; }
@media (max-width: 1024px) { ul.wc-block-grid__products { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 600px) { ul.wc-block-grid__products { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
li.wc-block-grid__product { display: flex; flex-direction: column; text-align: center; position: relative;
  font-size: 12px; line-height: 1.5; border-left: 8px solid transparent; border-right: 8px solid transparent;
  border-bottom: 16px solid transparent; list-style: none; }
.wc-block-grid__product-link { color: var(--link-default); text-decoration: none; }
.wc-block-grid__product-image { margin: 0 0 12px; }
.wc-block-grid__product-image img { width: 100%; height: auto; }
.wc-block-grid__product-title { font-size: 19px; line-height: 1.35; font-weight: 700; color: var(--deep); margin: 0 0 12px; }
.wc-block-grid__product-price { margin: 0 auto 12px; }
.wc-block-grid__product-price .amount, .wc-block-grid__product-price .woocommerce-Price-currencySymbol {
  font-size: 16px; line-height: 1.5; font-weight: 600; color: var(--blue); }
.wc-block-grid__product-add-to-cart { margin-top: auto; display: flex; justify-content: center; margin-bottom: 12px; }
.wc-block-grid__product-add-to-cart .wp-block-button__link { font-size: 12px; line-height: 1.5; color: #fff;
  background: var(--blue); padding: 9px 26px; border-radius: 8px; text-decoration: none; }
.wc-block-grid__product-add-to-cart .wp-block-button__link:hover { background: #17588f; color: #fff; }

/* filled state */
.wc-block-components-sidebar-layout { display: flex; flex-direction: row; margin-bottom: 48px; }
.wc-block-components-main.wc-block-cart__main { width: 65%; padding-right: 4.53%; }
.wc-block-components-sidebar { width: 35%; padding-left: 2.26%; }

table.wc-block-cart-items { width: 100%; border-spacing: 0; border-collapse: collapse;
  border-bottom: 1px solid rgba(51,51,51,0.2); font-size: 14.4px; line-height: 1.5; }
.wc-block-cart-items__header th { font-size: 13px; line-height: 1.5; font-weight: 500; text-transform: uppercase;
  color: var(--body); border-top: 1px solid rgba(128,128,128,0.5); padding: 8px 16px 12px 0;
  white-space: nowrap; vertical-align: top; text-align: left; font-family: var(--font-sys); }
th.wc-block-cart-items__header-image { width: 80px; }
th.wc-block-cart-items__header-total { width: 100px; text-align: right; padding: 8px 0 12px; }
.wc-block-cart-items__row td { border-top: 1px solid rgba(51,51,51,0.2); padding: 20px 0; vertical-align: top; }
td.wc-block-cart-item__image { padding: 20px 16px 20px 0; width: 80px; }
td.wc-block-cart-item__image img { width: 100%; height: auto; display: block; }
.wc-block-cart-item__wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
a.wc-block-components-product-name { font-size: 13px; line-height: 1.4; font-weight: 500; color: var(--link-default);
  text-decoration: underline; max-width: max-content; }
.wc-block-cart-item__prices { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--body); }
.wc-block-components-product-metadata p { font-size: 11.375px; line-height: 1.4; color: var(--body); margin: 0; }
.wc-block-cart-item__quantity { display: flex; align-items: center; gap: 12px; }
.wc-block-components-quantity-selector { display: flex; border: 1px solid rgba(51,51,51,0.3); border-radius: 4px;
  overflow: hidden; position: relative; width: 107px; }
.wc-block-components-quantity-selector button { min-width: 30px; height: 33px; font-size: 0.9em; color: var(--body);
  background: transparent; border: 0; opacity: 0.6; text-align: center; }
.wc-block-components-quantity-selector button:hover:not(:disabled) { opacity: 1; }
.wc-block-components-quantity-selector button:disabled { cursor: default; }
.wc-block-components-quantity-selector button:focus { box-shadow: inset 0 0 1px 1px currentColor; outline: none; }
.wc-block-components-quantity-selector input { flex: 1 1 auto; min-width: 40px; width: 45px; font-size: 13px;
  line-height: 1; text-align: center; color: var(--body); background: transparent; border: 0; padding: 8px 4px;
  appearance: textfield; -moz-appearance: textfield; }
.wc-block-components-quantity-selector input::-webkit-outer-spin-button,
.wc-block-components-quantity-selector input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.wc-block-components-quantity-selector input:focus { box-shadow: inset 0 0 1px 1px currentColor; outline: none; }
button.wc-block-cart-item__remove-link { width: 24px; height: 24px; background: transparent; border: 0;
  color: var(--body); padding: 0; cursor: pointer; }
td.wc-block-cart-item__total { text-align: right; font-size: 13px; }

h2.wc-block-cart__totals-title { font-family: var(--font-sys); font-size: 13px; line-height: 1.4; font-weight: 500;
  text-transform: uppercase; color: var(--body); padding: 8px 16px 10px 0; margin: 0; }
.wc-block-components-totals-wrapper { padding: 16px 0; border-top: 1px solid rgba(51,51,51,0.2); }
.wc-block-components-panel__button { font-size: 13px; color: var(--body); padding-right: 32px; position: relative; cursor: pointer; }
.wc-block-components-panel__button svg { position: absolute; right: 0; top: 50%; transform: translateY(-12px); }
.wc-coupon-note { font-size: 12px; color: #5f7a91; margin: 10px 0 0; }
.wc-block-components-totals-item { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.wc-block-components-totals-item__label { font-size: 20px; line-height: 1.4; font-weight: 500; color: var(--body); flex-grow: 1; }
.wc-block-components-totals-item__value { font-size: 20px; line-height: 1.4; font-weight: 500; color: var(--body); }
.wc-block-components-totals-item__description { width: 100%; }
.wc-block-components-totals-item__description p { font-size: 11.375px; margin: 0; color: var(--body); }
.wc-block-cart__submit { margin: 0 0 16px; }
a.wc-block-components-button.contained { display: inline-flex; justify-content: center; align-items: center;
  min-height: 48px; width: 100%; background: #32373c; color: #fff; font-size: 16px; line-height: 1.5;
  font-weight: 400; text-decoration: underline; padding: 0.792em 1.458em; border: 0; border-radius: 0;
  transition: box-shadow .1s linear; cursor: pointer; }
a.wc-block-components-button.contained:focus { box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #0675c4; outline: 3px solid transparent; }

@media (max-width: 768px) {
  .wc-block-components-sidebar-layout { flex-direction: column; margin-bottom: 16px; }
  .wc-block-components-main.wc-block-cart__main, .wc-block-components-sidebar { width: 100%; padding: 0; }
  .wc-block-cart-items thead { display: none; }
  .wc-block-cart-items__row { display: grid; grid-template-columns: 80px 1fr auto; column-gap: 16px; padding: 16px 0; }
  .wc-block-cart-items__row { border-top: 1px solid rgba(51,51,51,0.2); }
  .wc-block-cart-items__row td { border-top: 0; padding: 0; }
  td.wc-block-cart-item__image { padding-right: 16px; }
  h2.wc-block-cart__totals-title { display: none; }
  .wc-block-cart__sidebar { margin: 24px 0 0; } /* cart only — was hitting the checkout sidebar too */
}

/* =====================================================================
   CHECKOUT (WooCommerce Blocks look)
   ===================================================================== */
h1.checkout-title { font-family: var(--font-sys); font-size: 40px; line-height: 1.2; font-weight: 500;
  color: var(--body); margin: 8px 0 16px; }
.wp-block-woocommerce-checkout { padding-top: 24px; } /* outer wrapper only — both divs carry .wc-block-checkout */
.wc-block-components-sidebar-layout.wc-block-checkout { display: flex; margin-bottom: 16px; position: relative; }
.wc-block-checkout__main { width: 65%; padding-right: 4.5283%; }
.wc-block-checkout__sidebar { width: 35%; padding-left: 2.2641%; position: sticky; top: 24px; align-self: flex-start; }

fieldset.wc-block-components-checkout-step { margin: 0 0 24px; border: 0; padding: 0; min-width: 0; }
.step-heading { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
h2.wc-block-components-checkout-step__title { font-family: var(--font-sys); font-size: 20px; line-height: 1.4;
  font-weight: 500; color: var(--body); margin: 0 12px 0 0; }
.wc-guest-notice { font-size: 13px; line-height: 1.4; color: var(--body); margin: 4px 0 0; }
.wc-login-prompt-wrap { align-self: flex-end; margin-top: -24px; }
.wc-block-checkout__login-prompt { font-size: 13px; line-height: 1.4; font-weight: 400; color: var(--body); text-decoration: underline; }
.wc-billing-form { margin-top: 12px; }

/* floating-label inputs */
.wc-block-components-text-input { position: relative; margin-top: 12px; }
.wc-address-form .wc-block-components-text-input:first-child { margin-top: 0; }
.wc-block-components-text-input input { height: 50px; padding: 16px 12px; background: #fff;
  border: 1px solid rgba(43,45,47,0.8); border-radius: 4px; font-size: 16px; line-height: 25px;
  color: #2b2d2f; width: 100%; box-sizing: border-box; transition: .3s; font-family: var(--font-sys); }
.wc-block-components-text-input label { position: absolute; left: 10px; top: 25px; transform: translateY(-50%);
  font-size: 16px; line-height: 22px; color: var(--body); cursor: text; max-width: calc(100% - 24px);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: all .2s ease;
  transform-origin: top left; pointer-events: none; }
.wc-block-components-text-input input:focus { border-width: 1.5px; border-color: #2b2d2f; outline: none; }
.wc-block-components-text-input.is-active input { padding: 24px 9px 8px; }
.wc-block-components-text-input.is-active label { top: 6px; transform: scale(.82); }
.wc-block-components-text-input.has-error input { border-color: #cc1818; }
.wc-block-components-text-input.has-error label { color: #cc1818; }
.wc-block-components-validation-error { color: #cc1818; font-size: 13px; line-height: 1.4; padding: 8px 0 0; }

.wc-address-form { display: flex; flex-flow: row wrap; justify-content: space-between; gap: 0 12px; }
.wc-address-form > * { width: 100%; }
.wc-address-form > .is-half { width: calc(50% - 6px); }
.wc-address-form > :first-child { margin-top: 0; }
.wc-address2-toggle { font-size: 13px; line-height: 1.4; color: var(--body); cursor: pointer; margin-top: 12px;
  flex: 1 0 100%; } /* full row so City doesn't pair with it */
[data-field="shipping-address_1"] { margin-top: 16px; }
.wc-address-search-icon { position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  color: #444; pointer-events: none; }

.wc-blocks-components-select { position: relative; background: #fff; border-radius: 4px; margin-top: 12px; }
.wc-blocks-components-select select { height: 50px; padding: 16px 40px 0 9px; border: 1px solid rgba(43,45,47,0.8);
  border-radius: 4px; font-size: 16px; line-height: 25px; color: #2b2d2f; appearance: none; -webkit-appearance: none;
  width: 100%; transition: .3s; background: transparent; font-family: var(--font-sys); }
.wc-blocks-components-select > label { position: absolute; left: 10px; top: 6px; font-size: 13px;
  line-height: 1.4; color: var(--body); z-index: 1; }
.wc-blocks-components-select svg { position: absolute; right: 12px; top: 50%; transform: translateY(-12px); pointer-events: none; }
.wc-blocks-components-select.is-half { width: calc(50% - 6px); }

.wc-block-components-checkbox { display: flex; align-items: flex-start; position: relative; }
#order-notes { margin: 0 0 24px; }
.wc-billing-toggle { margin-top: 16px; }
.wc-block-components-checkbox label { display: inline-flex; gap: 12px; line-height: 20px; cursor: pointer; align-items: flex-start; }
.wc-block-components-checkbox input[type=checkbox] { appearance: none; -webkit-appearance: none; width: 20px; height: 20px;
  min-width: 20px; background: #fff; border: 1px solid rgba(0,0,0,0.48); border-radius: 4px; margin: 0;
  cursor: pointer; position: relative; }
.wc-block-components-checkbox input[type=checkbox]:checked::after { content: ""; position: absolute; left: 3px; top: 1px;
  width: 15px; height: 15px; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 20"><path fill="black" d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>') no-repeat center / contain; }
.wc-block-components-checkbox input[type=checkbox]:focus { outline: 1.5px solid rgba(0,0,0,0.8); outline-offset: 1.5px; }
.wc-checkbox-label { font-size: 12px; line-height: 1.4; color: #1e1e1e; }
.wc-checkbox-label a { color: var(--link-default); }

.wc-no-address-msg { font-size: 13px; line-height: 1.4; color: rgba(51,51,51,0.66); background: rgba(51,51,51,0.04);
  padding: 24px; border-radius: 4px; text-align: center; margin: 0; }

/* shipping-rate radio tiles */
.wc-shipping-rates { position: relative; border: 1px solid rgba(51,51,51,0.2); border-radius: 4px; }
label.wc-radio-rate { display: flex; align-items: center; padding: 16px 16px 16px 48px; cursor: pointer;
  position: relative; border-top: 1px solid rgba(51,51,51,0.2); font-size: 13px; color: var(--body); }
label.wc-radio-rate:first-child { border-top: 0; }
label.wc-radio-rate input { position: absolute; left: 16px; top: 50%; transform: translateY(-45%);
  appearance: none; -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: #fff;
  border: 1px solid rgba(0,0,0,0.48); margin: 0; cursor: pointer; }
label.wc-radio-rate input:checked { border: 1px solid rgba(0,0,0,0.8); background: radial-gradient(circle, #000 0 5px, #fff 5.5px); }
label.wc-radio-rate.is-checked { border-radius: 4px; box-shadow: inset 0 0 0 1.5px currentColor; }
.wc-rate-name { flex: 1; }
.wc-rate-price { flex: 0 0 50%; text-align: right; }

#lsb-delivery-note { margin: 10px 0 0; padding: 12px 14px; background: #FFF6DE; border: 1.5px solid #E7C567;
  border-radius: 8px; font-size: .95em; line-height: 1.55; color: #4a3f1d; }
#lsb-delivery-note strong { display: block; margin-bottom: 2px; }
#lsb-delivery-note a { font-weight: 700; white-space: nowrap; color: inherit; }

/* order deadline link + tooltip */
.lsb-od-wrap { margin: 5px 0 0; line-height: 1.3; }
.lsb-od-link { display: inline-block; font-size: 12.5px; font-weight: 600; color: var(--navy);
  text-decoration: none; cursor: help; padding: 1px 0; }
.lsb-od-text { border-bottom: 1px dotted currentColor; }
.lsb-od-link::after { content: "i"; display: inline-block; width: 14px; height: 14px; border-radius: 50%;
  background: currentColor; color: #fff; font: italic 700 10px/14px Georgia, serif; text-align: center;
  margin-left: 6px; vertical-align: 1px; }
.lsb-od-link:hover, .lsb-od-link:focus { color: #1c6ea4; }
.lsb-od-tip { position: fixed; z-index: 999999; max-width: 300px; padding: 12px 13px 10px; background: #fff;
  color: var(--navy); border: 1px solid #dbe6ee; border-radius: 9px; box-shadow: 0 14px 34px rgba(15,23,42,.18);
  font-size: 13px; line-height: 1.4; }
.lsb-od-arrow { position: absolute; top: -6px; left: 50%; width: 11px; height: 11px; background: #fff;
  border-left: 1px solid #dbe6ee; border-top: 1px solid #dbe6ee; transform: translateX(-50%) rotate(45deg); }
.lsb-od-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.lsb-od-table th { padding: 6px 9px; background: var(--navy); color: #fff; font-size: 10.5px; font-weight: 700;
  letter-spacing: .4px; text-transform: uppercase; text-align: left; }
.lsb-od-table td { padding: 6px 9px; border-bottom: 1px solid #eef3f7; white-space: nowrap; }
.lsb-od-table tr:last-child td { border-bottom: 0; }
.lsb-od-table tbody tr:nth-child(even) td { background: #f6fafc; }
.lsb-od-time { font-weight: 700; }
.lsb-od-note { margin: 9px 0 0; color: #6b7280; font-size: 11.5px; line-height: 1.35; }

/* combine delivery */
.lsb-combine-wrap { flex-wrap: wrap; display: flex; margin-top: 16px; }
.lsb-cb-hint { display: block; flex: 1 0 100%; font-size: 12.5px; color: #6b7280; margin: 6px 0 0;
  padding-left: 28px; line-height: 1.4; }
.lsb-hiw-link { font-size: 12.5px; font-weight: 600; color: var(--navy); text-decoration: underline; cursor: pointer; margin-left: 6px; }
.lsb-hiw-link:hover, .lsb-hiw-link:focus { color: #1c6ea4; }
.lsb-ca-error { font-size: 12.5px; color: #cc1818; margin: 4px 0 0; }
.wc-block-components-text-input.lsb-ca-invalid input { border-color: #cc1818; box-shadow: 0 0 0 1px #cc1818; }

/* how it works modal (from source) */
.lsb-hiw-overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:999999;display:none;align-items:center;justify-content:center;background:rgba(15,23,42,.55);padding:16px}
.lsb-hiw-overlay.is-open{display:flex}
.lsb-hiw-box{position:relative;box-sizing:border-box;background:#fff;color:#123A5A;border-radius:10px;width:100%;max-width:540px;max-height:85vh;overflow:auto;padding:28px 26px 22px;text-align:left;box-shadow:0 20px 50px rgba(0,0,0,.28)}
.lsb-hiw-close{position:absolute;top:6px;right:10px;border:0;background:none;font-size:28px;line-height:1;color:#6B7280;cursor:pointer;padding:4px 8px}
.lsb-hiw-title{margin:0 0 16px;font-size:19px;line-height:1.3;color:#123A5A;font-family:var(--font-sys);font-weight:600}
.lsb-hiw-list{margin:0 0 18px;padding:0 0 0 22px;font-size:14.5px;line-height:1.5}
.lsb-hiw-list li{margin:0 0 13px}
.lsb-hiw-list strong{display:block;margin-bottom:2px}
.lsb-hiw-done{background:#123A5A;color:#fff;border:0;border-radius:6px;padding:10px 20px;font-size:14px;cursor:pointer}
@media(max-width:480px){.lsb-hiw-box{padding:24px 18px 18px}.lsb-hiw-title{font-size:17px}}

/* payment accordion */
.wc-payment-accordion { border-radius: 4px; box-shadow: inset 0 0 0 1.5px #333; }
.wc-radio-option { display: flex; align-items: center; padding: 16px 16px 16px 48px; position: relative;
  font-size: 13px; color: var(--body); cursor: default; }
.wc-radio-dot { position: absolute; left: 16px; top: 50%; transform: translateY(-45%); width: 20px; height: 20px;
  border-radius: 50%; border: 1px solid rgba(0,0,0,0.8); background: radial-gradient(circle, #000 0 5px, #fff 5.5px); }
.wc-payment-content { padding: 0 16px 16px; }
.wc-offline-note { font-size: 13.5px; line-height: 1.55; color: var(--navy); background: #f3fafd;
  border-left: 3px solid var(--blue); border-radius: 6px; padding: 11px 15px; margin: 0; }

/* terms + actions */
.wc-block-checkout__terms--with-separator { border-top: 1px solid rgba(51,51,51,0.2); padding-top: 24px; margin: 0 0 24px; }
.wc-block-checkout__actions { margin-bottom: 36px; }
.wc-actions-row { display: flex; justify-content: flex-end; align-items: center; gap: 8px; }
.wc-place-order-button { width: 100%; background: transparent; color: var(--link-default);
  border: 1px solid var(--link-default); border-radius: 3px; padding: 18px 30px; font-size: 16px;
  line-height: 1.4; font-weight: 400; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: box-shadow .1s linear; font-family: var(--font-sys); }
.wc-place-order-button:hover, .wc-place-order-button:focus { background: var(--link-default); color: #fff; }
.wc-place-order-button:disabled { opacity: .6; cursor: default; }

/* sidebar summary */
.wc-summary-card { border: 1px solid rgba(51,51,51,0.2); border-radius: 5px; padding: 0 16px; }
.wc-summary-title-lg { font-size: 20px; line-height: 1.4; font-weight: 500; margin: 16px 0 8px; color: var(--body); }
.wc-order-summary-item { display: flex; padding: 8px 0 16px; }
.wc-order-summary-item__image { position: relative; width: 48px; flex: 0 0 48px; margin-top: 8px; }
.wc-order-summary-item__image img { width: 48px; height: auto; display: block; }
.wc-block-components-order-summary-item__quantity { position: absolute; top: 0; right: 0;
  transform: translate(10px, -10px); width: 20px; height: 20px; background: #333; color: #fff;
  border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 11.375px; z-index: 1; }
.wc-order-summary-item__desc { padding: 4px 12px 0 24px; display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.wc-order-summary-item__desc h3 { font-family: var(--font-sys); font-size: 13px; line-height: 1.4; font-weight: 500;
  color: var(--body); margin: 0; }
.wc-item-unit { font-size: 13px; color: var(--body); }
.wc-item-meta { font-size: 11.375px; line-height: 1.4; color: var(--body); margin: 0; }
.wc-order-summary-item__total { margin-left: auto; text-align: right; padding-top: 4px; font-size: 13px; }
.wc-summary-row { display: flex; align-items: center; gap: 4px; justify-content: space-between;
  font-size: 13px; color: var(--body); }
.wc-block-components-totals-wrapper .wc-summary-row + .wc-summary-row { padding-top: 20px; }
.wc-item-meta p { margin: 0; font-size: inherit; line-height: inherit; }
.wc-summary-row.is-total, .wc-summary-row.is-total span { font-size: 20px; line-height: 1.4; font-weight: 500; }
.wc-shipping-placeholder { font-size: 11.375px; }
.wc-summary-total { border-top: 1px solid rgba(51,51,51,0.2); }
.wc-summary-card .wc-block-components-totals-wrapper:first-of-type { border-top: 1px solid rgba(51,51,51,0.2); }

.wc-summary-accordion { display: none; }
.lsb-second-place-order { margin-top: 15px; }
.lsb-second-place-order-btn { display: block; width: 100%; background: #1a1a2e; color: #fff; font-weight: 700;
  text-decoration: underline; text-align: center; padding: 16px 24px; border: none; border-radius: 0;
  font-size: 16px; line-height: 1.4; cursor: pointer; font-family: var(--font-sys); }
.lsb-second-place-order-btn:hover { background: #33334d; }
.lsb-second-place-order-btn[aria-busy="true"] span { visibility: hidden; }
.lsb-second-place-order-btn[aria-busy="true"]::after { content: ""; display: inline-block; width: 1.25em; height: 1.25em;
  border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%;
  animation: lsb-spin .8s linear infinite; position: absolute; margin-left: -0.625em; }
@keyframes lsb-spin { to { transform: rotate(360deg); } }

.wc-mobile-summary { display: none; }

@media (max-width: 899px) {
  .wc-block-components-sidebar-layout.wc-block-checkout { flex-direction: column; }
  .wc-block-checkout__main, .wc-block-checkout__sidebar { width: 100%; padding: 0; position: static; }
  .wc-block-checkout__sidebar { order: -1; margin-bottom: 24px; }
  .wc-summary-accordion { display: flex; align-items: center; justify-content: space-between; gap: 8px;
    margin-top: 16px; padding: 20px 0; border-top: 1px solid rgba(51,51,51,0.2); border-bottom: 1px solid rgba(51,51,51,0.2);
    cursor: pointer; position: relative; }
  .wc-summary-accordion svg { position: static; transform: none; }
  .wc-summary-title { font-size: 20px; line-height: 1.4; font-weight: 500; margin: 0; color: var(--body); }
  .wc-summary-price { font-size: 13px; }
  .wc-summary-card.is-sidebar { display: none; }
  .wc-summary-card.is-sidebar.is-open { display: block; border: 0; padding: 0 0 8px; }
  .wc-summary-card.is-sidebar.is-open .wc-summary-title-lg { display: none; }
  .wc-mobile-summary { display: block; padding-bottom: 36px; }
  .wc-mobile-summary h2 { font-family: var(--font-sys); font-size: 20px; line-height: 1.4; font-weight: 500;
    color: var(--body); margin: 0 0 16px; }
  .wc-block-checkout__terms--with-separator { border-top: 0; padding-top: 0; }
}
@media (max-width: 479px) {
  .wc-address-form > .is-half, .wc-blocks-components-select.is-half { width: 100%; }
  .wc-actions-row { flex-direction: column-reverse; justify-content: center; align-items: center; gap: 16px; }
  .wc-place-order-button { width: 100%; }
}

/* order received */
.order-received { font-family: var(--font-sys); padding-bottom: 60px; }
.woocommerce-thankyou-order-received { font-size: 20px; color: var(--navy); font-weight: 600; }
.wc-order-overview { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 30px;
  border: 1px solid rgba(51,51,51,0.2); border-radius: 5px; padding: 16px; font-size: 14px; }
.wc-order-received-table { width: 100%; max-width: 560px; border-collapse: collapse; margin: 20px 0; }
.wc-order-received-table td { padding: 8px 10px; border-bottom: 1px solid rgba(51,51,51,0.12); font-size: 14px; }

/* =====================================================================
   ABOUT + CONTACT (two-column split pages)
   ===================================================================== */
.sec-split .inner { flex-direction: row; align-items: center; gap: 46px; padding: 72px 0; }
.contact-sec .inner { align-items: flex-start; padding: 72px 0 80px; }
.split-left { width: 52%; padding: 10px; display: flex; flex-direction: column; gap: 16px; }
.contact-left { width: 44%; padding: 10px; display: flex; flex-direction: column; gap: 14px; }
.split-right { width: 48%; padding: 10px; display: flex; flex-direction: column; gap: 20px; }
.eyebrow-sm { font-family: var(--font-sys); font-size: 14px; font-weight: 700; line-height: 1; letter-spacing: 2px; color: var(--blue); }
.split-h1 { font-family: var(--font-head); font-size: 44px; font-weight: 700; line-height: 1; color: var(--navy); margin: 0; }
.split-text { font-family: var(--font-sys); font-size: 17px; line-height: 1.7; color: #5b7488; }
.contact-left .split-text { line-height: 1.5; }
.split-text p { margin: 0 0 14.4px; }
.btn-split { display: inline-block; background: var(--blue); color: #fff; font-family: var(--font-sys);
  font-size: 16px; font-weight: 600; line-height: 1; padding: 15px 30px; border-radius: 8px;
  text-align: center; transition: all .3s; }
.btn-split:hover { color: #fff; }
.split-img { border-radius: 16px; box-shadow: 0px 16px 40px 0px rgba(18, 58, 90, 0.2); width: 100%; height: auto; }

.icon-list { list-style: none; margin: 0; padding: 0; }
.icon-list li { display: flex; align-items: center; }
.icon-list li:not(:last-child) { padding-bottom: 7px; }
.icon-list li:not(:first-child) { margin-top: 7px; }
.icon-list a { display: flex; align-items: center; width: 100%; color: var(--link-default); }
.il-icon { display: flex; }
.il-icon svg { margin-right: 4.5px; transition: fill .3s; }
.il-text { padding-left: 5px; font-size: 16px; line-height: 1.5; color: var(--navy); font-family: var(--font-sys); transition: color .3s; }

.contact-card { width: 56%; background: #fff; border: 1px solid #e2ecf4; border-radius: 18px;
  box-shadow: 0px 18px 44px 0px rgba(18, 58, 90, 0.12); padding: 30px; display: flex;
  flex-direction: column; gap: 8px; position: relative; }
.contact-card h3 { font-family: var(--font-head); font-size: 22px; font-weight: 600; line-height: 1; color: var(--navy); margin: 0; }
.cf-row { display: flex; flex-wrap: wrap; margin: 0 -5px -10px; }
.cf-group { padding: 0 5px; margin-bottom: 10px; width: 100%; display: flex; flex-wrap: wrap; align-items: center; }
.cf-group.half { width: 50%; }
.cf-group label { font-family: var(--font-sys); font-size: 16px; font-weight: 400; line-height: 1;
  color: var(--body); cursor: pointer; width: 100%; }
.cf-group label::after { content: "*"; color: red; padding-inline-start: .2em; }
.cf-group input, .cf-group textarea { background: #fff; border: 1px solid #69727d; border-radius: 4px;
  font-family: var(--font-sys); font-size: 16px; line-height: 1.4; font-weight: 400; color: #1f2124;
  padding: 6px 16px; min-height: 47px; width: 100%; flex-basis: 100%; max-width: 100%;
  transition: .3s; margin-top: 0; }
.cf-group textarea { min-height: 103px; }
.cf-group input::placeholder, .cf-group textarea::placeholder { color: inherit; opacity: .6; }
.cf-group input:focus, .cf-group textarea:focus { border-color: #333; box-shadow: inset 0 0 0 1px rgba(0,0,0,.1); outline: 0; }
.cf-submit { width: 100%; flex-basis: 100%; background: var(--blue); color: #fff; border: none;
  border-radius: 3px; padding: 0 24px; min-height: 40px; text-align: center; cursor: pointer;
  transition: .3s; font-family: var(--font-sys); font-size: 15px; line-height: 1; font-weight: 400; }
.cf-result { font-size: 14px; margin: 10px 0 0; color: #217a3c; }
.cf-result.is-error { color: #b3261e; }

/* =====================================================================
   DELIVERY AREA
   ===================================================================== */
.da-title { font-family: var(--font-sys); font-size: 40px; line-height: 1.2; font-weight: 500;
  color: var(--body); margin: 8px auto 16px; max-width: 1140px; }
.da-scaffold .page-header, .privacy-scaffold .page-header { padding: 0 20px; }
.da-inner { padding: 10px 0; gap: 20px; }
.lsb-da { max-width: 900px; margin: 0 auto; width: 100%; font-family: 'Helvetica Neue', Arial, sans-serif; color: #0b3350; }
.lsb-da-h { font-family: inherit; font-size: 28px; line-height: 1.2; font-weight: 800; color: #0b3350; margin: 0 0 8px; }
.lsb-da-intro { font-size: 15px; line-height: 1.55; color: #40606f; margin: 0 0 18px; }
.lsb-da-form { display: flex; gap: 10px; align-items: stretch; flex-wrap: wrap; }
.lsb-da-field { position: relative; flex: 1 1 260px; }
.lsb-da-input { width: 100%; height: 48px; box-sizing: border-box; font-family: inherit; font-size: 16px;
  line-height: 1.5; color: #0b3350; background: #fff; padding: 8px 16px; border: 1px solid #666;
  border-radius: 3px; transition: .3s; }
.lsb-da-input:focus { outline: none; border-color: #2e7ba6; box-shadow: 0 0 0 3px rgba(46,123,166,.18); }
.lsb-da-go { flex: 0 0 auto; height: 48px; padding: 0 26px; font-family: inherit; font-size: 15px;
  line-height: 1.5; font-weight: 800; letter-spacing: .3px; color: #fff; background: #0b3350; border: none;
  border-radius: 8px; cursor: pointer; transition: background .2s ease; white-space: nowrap; }
.lsb-da-go:hover { background: #124a72; }
.lsb-da-error { display: none; margin: 8px 0 0; font-size: 13.5px; color: #b3261e; }
.lsb-da-error.is-on { display: block; }
.lsb-da-result { display: none; margin: 18px 0 0; }
.lsb-da-result.is-on { display: block; }
.lsb-da-card { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; border-radius: 10px;
  border: 1px solid #dbe9f1; background: #fff; }
.lsb-da-card.is-yes { border-color: #bfe0c9; background: #f2fbf5; }
.lsb-da-card.is-no { border-color: #f0d2ce; background: #fdf5f4; }
.lsb-da-dot { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: #fff; font-size: 16px; font-weight: 700; line-height: 1; flex: 0 0 auto; }
.lsb-da-card.is-yes .lsb-da-dot { background: #2e8b57; }
.lsb-da-card.is-no .lsb-da-dot { background: #c0564b; }
.lsb-da-title { margin: 0; font-size: 17px; font-weight: 800; }
.lsb-da-sub { margin: 4px 0 0; font-size: 15px; color: #40606f; line-height: 1.5; }
.lsb-da-free { color: #217a3c; font-weight: 700; }
.lsb-da-map { height: 440px; margin: 20px 0 0; border-radius: 12px; overflow: hidden;
  border: 1px solid #dbe9f1; background: #eaf4fa; }
.lsb-da-legend { display: flex; flex-wrap: wrap; gap: 12px; margin: 12px 0 0; font-size: 12.5px;
  line-height: 1.5; color: #40606f; align-items: center; }
.lsb-da-legend span { display: inline-flex; align-items: center; gap: 6px; }
.lsb-da-legend i { width: 13px; height: 13px; border-radius: 3px; display: inline-block; }
.lsb-da-sugg { position: absolute; z-index: 40; top: 52px; left: 0; right: 0; margin: 0; padding: 4px;
  list-style: none; background: #fff; border: 1px solid #dbe9f1; border-radius: 8px;
  box-shadow: 0 12px 28px rgba(11,51,80,.14); max-height: 260px; overflow-y: auto; }
.lsb-da-sugg li { padding: 10px 12px; font-size: 14px; cursor: pointer; border-radius: 6px; color: #0b3350; }
.lsb-da-sugg li:hover, .lsb-da-sugg li.is-active { background: #eaf4fa; }
.da-combine h5 { font-family: var(--font-sys); font-size: 20px; line-height: 1.2; font-weight: 500;
  color: var(--body); margin: 8px 0 16px; text-align: center; }
.lsb-hiw-trigger { font-size: 20px; font-weight: 600; color: var(--navy); cursor: pointer; text-decoration: none; }
.lsb-hiw-trigger:hover, .lsb-hiw-trigger:focus { color: #1c6ea4; }
@media (max-width: 600px) {
  .lsb-da-h { font-size: 23px; }
  .lsb-da-go { width: 100%; }
  .lsb-da-map { height: 340px; }
}

/* =====================================================================
   TERMS + PRIVACY
   ===================================================================== */
.terms-wrap { max-width: 820px; margin: 0 auto; padding: 48px 22px; line-height: 1.7; color: var(--navy);
  font-family: var(--font-head); font-size: 16px; }
.terms-wrap h1 { font-size: 40px; line-height: 1.2; font-weight: 500; color: inherit; margin: 8px 0 16px; }
.terms-wrap h2 { font-size: 32px; line-height: 1.2; font-weight: 500; color: inherit; margin: 8px 0 16px; }
.terms-wrap p { margin: 0 0 14.4px; }
.terms-wrap ul { margin: 0; padding: 0 0 0 40px; }
.terms-wrap a { color: var(--link-default); text-decoration: none; }
.terms-wrap strong { font-weight: 700; }

.privacy-scaffold { font-family: var(--font-sys); }
.privacy-content { max-width: 1140px; margin: 0 auto; padding: 0; font-size: 16px; line-height: 1.5; color: var(--body); }
@media (max-width: 575px) { .privacy-content { padding-inline: 10px; } }
.privacy-content h1, .privacy-content h2 { font-family: var(--font-sys); color: var(--body); font-weight: 500; margin: 8px 0 16px; }
.privacy-content h2 { font-size: 32px; line-height: 1.2; }
.privacy-content h3 { font-family: var(--font-sys); color: var(--body); font-weight: 500; font-size: 28px; line-height: 1.2; margin: 8px 0 16px; }
.privacy-content p { margin: 0 0 14.4px; }
.privacy-content ul { margin: 0; padding: 0 0 0 40px; }
.privacy-content a { color: var(--link-default); text-decoration: underline; }
.privacy-content figure { margin: 0 0 16px; overflow-x: auto; }
.privacy-content table { border-collapse: collapse; table-layout: fixed; width: 100%;
  font-size: 14.4px; line-height: 1.5; margin: 0 0 15px; word-break: break-word; }
.privacy-content thead { border-bottom: 3px solid var(--body); }
.privacy-content th { border: 1px solid rgba(128,128,128,0.5); padding: 7.2px; font-weight: 700; text-align: center; }
.privacy-content td { border: 1px solid var(--body); padding: 7.2px; text-align: left; }
.privacy-content tbody tr:nth-child(odd) { background: rgba(128,128,128,0.07); }
@media (max-width: 1199px) { .privacy-content, .da-title { max-width: 800px; } }
@media (max-width: 991px) { .privacy-content, .da-title { max-width: 600px; } }

/* =====================================================================
   RESPONSIVE — tablet ≤1024
   ===================================================================== */
@media (max-width: 1024px) {
  .section .inner, .site-footer .inner { max-width: 1024px; }
  /* header wraps: logo alone on line 1, everything else centered below */
  .hdr-top { flex-wrap: wrap; row-gap: 6px; }
  .hdr-logo img { height: 82px; }
  .hdr-right { width: 100%; flex: 1 1 100%; flex-wrap: wrap; justify-content: center; row-gap: 8px; }
  a.nav-item { font-size: 13px; padding-left: 7px; padding-right: 7px; }
  a.cat-item { font-size: 13px; padding-left: 9px; padding-right: 9px; }
  .hdr-nav ul, .hdr-cats ul.menu { flex-wrap: wrap; justify-content: center; }
  .hero { min-height: 58vh;
    background-image: url('/assets/uploads/2026/07/Linden-SeaBlue-Hero-Background-Clean-1024x683.jpg'); }
  .hero .inner { max-width: 1024px; }
  .hero h1 { font-size: 42px; width: 70%; }
  .hero .sub { width: 65%; }
  .sec-header-img img { width: 68%; }
  .cat-tile { width: 47%; }
  .type-tile { width: 30%; }
  .archive-content .inner { max-width: 1024px; }
  ul.products { grid-template-columns: repeat(3, 1fr); }
  /* footer: brand + contact full width, shop/company side by side */
  .ftr-col.brand { width: 100%; }
  .ftr-col.shop { width: 30%; }
  .ftr-col.company { width: 30%; }
  .ftr-col.contact { width: 100%; }
}

/* =====================================================================
   RESPONSIVE — mobile ≤767
   ===================================================================== */
@media (max-width: 767px) {
  .section .inner, .site-footer .inner { max-width: 767px; }
  .hdr-top { padding: 8px 14px; }
  .hdr-right { column-gap: 14px; } /* row-gap stays 8px (tablet rule) — 14px made ROW1 12px too tall */
  .hdr-logo img { height: 62px; width: auto; }
  a.nav-item { font-size: 12px; padding: 13px 5px; }
  .hdr-search-wrap { flex: 1 1 100%; }
  .ls-hsearch { min-width: 0; max-width: 100%; height: 36px; }
  .ls-order .lst2 { font-size: 13px; }
  .ls-order .lsic a { width: 30px; height: 30px; }
  .hdr-cats { padding: 2px 14px; }
  a.cat-item { font-size: 11.5px; padding: 13px 6px; }
  .hero { min-height: 540px;
    background-image: url('/assets/uploads/2026/07/Linden-SeaBlue-Hero-Background-Clean-768x512.jpg'); }
  .hero::before { background-image: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 52%, rgba(255,255,255,0.4) 100%); }
  .hero .inner { max-width: 767px; }
  .hero .hero-logo img { width: 150px; }
  .hero .eyebrow { font-size: 13px; }
  .hero h1 { font-size: 31px; width: 100%; }
  .hero .sub { width: 100%; }
  .hero .sub p { font-size: 17px; }
  .sec-header-img img { width: 92%; }
  .cat-tile { width: 100%; }
  .type-tile { width: 45%; }
  .ftr-cols { flex-wrap: wrap; }
  .ftr-col.brand, .ftr-col.shop, .ftr-col.company, .ftr-col.contact { width: 100%; }
  .ftr-bottom { flex-direction: column; align-items: flex-start; }
  .archive-content .inner { max-width: 767px; }
  ul.products { grid-template-columns: repeat(2, 1fr); }
  .woocommerce-result-count { float: none; display: block; }
  form.woocommerce-ordering { float: right; }
  /* about + contact stack */
  .sec-split .inner { flex-wrap: wrap; }
  .split-left, .split-right, .contact-left, .contact-card { width: 100%; }
  .split-h1 { font-size: 30px; }
  .contact-sec .split-h1 { font-size: 30px; }
}
@media (max-width: 479px) {
  .cf-group.half { width: 100%; }
}
