/*
Theme Name: ByDaash – Storefront Child
Theme URI: https://bydaash.shop/
Description: A custom Storefront child theme for bydaash.shop (kitchen appliances), with homepage, shop archive and single product layouts.
Author: ByDaash
Author URI: https://bydaash.shop/
Template: storefront
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bydash
WC requires at least: 7.0
WC tested up to: 11.1
*/

/* =====================================================================
   1. TOKENS & RESET
   ===================================================================== */
:root {
  --dash-red: #ea0029;
  --dash-red-dark: #c70023;
  --dash-dark: #062a30;
  --dash-body: rgba(6, 42, 48, 0.76);
  --dash-muted: rgba(6, 42, 48, 0.6);
  --dash-mint: #d3ece8;
  --dash-mint-soft: #e7f5f2;
  --dash-gray: #f3f3f3;
  --dash-border: #e5e5eb;
  --dash-white: #ffffff;
  --font: "Figtree", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --page-w: 1100px;
  --radius-pill: 30px;
  --header-h: 100px;
  --ann-h: 40px;
  --shadow-panel: 0 12px 32px rgba(6, 42, 48, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--dash-body);
  background: var(--dash-white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--dash-red); }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--font); color: var(--dash-dark); }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
p { margin: 0 0 1em; }

.page-width { max-width: var(--page-w); margin: 0 auto; padding: 0 20px; }

.dash-h2 {
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--dash-dark);
  line-height: 1.12;
}

/* Buttons */
.btn,
.dash-btn,
button.button.alt,
.single_add_to_cart_button.button.alt,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--dash-red);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.btn:hover,
.dash-btn:hover,
button.button.alt:hover,
.single_add_to_cart_button.button.alt:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--dash-red-dark);
  color: #fff;
}
.btn--mint { background: var(--dash-mint); color: var(--dash-dark); }
.btn--mint:hover { background: #c2e4de; color: var(--dash-dark); }
.btn--white { background: #fff; color: var(--dash-dark); }
.btn--white:hover { background: var(--dash-gray); color: var(--dash-dark); }

/* =====================================================================
   2. ANNOUNCEMENT BAR — sticky, stays pinned to the very top
   ===================================================================== */
.dash-announcement {
  position: sticky;
  top: 0;
  z-index: 70;
  height: var(--ann-h);
  background: var(--dash-gray);
  color: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px;
}
.dash-announcement p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #121212;
}
.dash-announcement a { text-decoration: underline; }

/* =====================================================================
   3. HEADER — sticky just below the announcement bar
   ===================================================================== */
.dash-header-wrap {
  position: sticky;
  top: var(--ann-h);
  background: #fff;
  border-bottom: 1px solid rgba(6, 42, 48, 0.08);
  z-index: 60;
}
.dash-header {
  display: flex;
  align-items: center;
  gap: 28px;
  height: var(--header-h);
}
.dash-logo { flex: 0 0 auto; display: inline-flex; align-items: center; }
.dash-logo img { width: 92px; height: auto; }

.dash-nav { flex: 1 1 auto; }
.dash-nav > ul {
  display: flex;
  align-items: center;
  gap: 6px;
}
.dash-nav > ul > li { position: relative; }
.dash-nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 12px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dash-dark);
  white-space: nowrap;
}
.dash-nav > ul > li > a:hover { color: var(--dash-red); }
.dash-nav .caret {
  width: 10px; height: 10px;
  transition: transform .2s ease;
}
.dash-nav li.has-mega:hover .caret,
.dash-nav li.has-mega:focus-within .caret { transform: rotate(180deg); }

/* Mega menu */
.dash-mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: #fff;
  border-bottom: 1px solid rgba(6, 42, 48, 0.08);
  box-shadow: var(--shadow-panel);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, visibility .18s ease;
  z-index: 70;
}
.dash-nav li.has-mega:hover .dash-mega,
.dash-nav li.has-mega:focus-within .dash-mega {
  opacity: 1;
  visibility: visible;
}
.dash-mega__inner {
  max-width: var(--page-w);
  margin: 0 auto;
  padding: 20px;
  display: flex;
  gap: 8px;
}
/* Featured style: image cards */
.dash-mega--cards .dash-mega__inner { justify-content: center; gap: 40px; }
.dash-mega__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 6px;
  text-align: center;
}
.dash-mega__card .ph {
  width: 100px; height: 100px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--dash-gray);
}
.dash-mega__card .ph img { width: 100%; height: 100%; object-fit: cover; }
.dash-mega__card .lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--dash-dark);
}
.dash-mega__card:hover .lbl { color: var(--dash-red); text-decoration: underline; }
/* Shop style: link columns */
.dash-mega--links .dash-mega__inner { gap: 56px; padding: 28px 20px; }
.dash-mega__col { min-width: 170px; }
.dash-mega__col h4 {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dash-dark);
  margin-bottom: 14px;
}
.dash-mega__col ul li { margin-bottom: 10px; }
.dash-mega__col ul a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dash-body);
}
.dash-mega__col ul a:hover { color: var(--dash-red); text-decoration: underline; }
.dash-mega__feature { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.dash-mega__feature .ph {
  width: 140px; height: 140px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--dash-gray);
}
.dash-mega__feature .ph img { width: 100%; height: 100%; object-fit: cover; }
.dash-mega__feature .lbl { font-size: 13px; font-weight: 600; color: var(--dash-dark); }

/* Header icons */
.dash-header-icons {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.dash-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 0; background: transparent;
  color: var(--dash-dark);
  cursor: pointer;
}
.dash-icon-btn:hover { color: var(--dash-red); }
.dash-icon-btn svg { width: 22px; height: 22px; }
.dash-cart-count {
  position: absolute;
  top: 4px; right: 2px;
  min-width: 17px; height: 17px;
  padding: 0 4px;
  border-radius: 9px;
  background: var(--dash-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dash-cart-count:empty { display: none; }
.dash-burger { display: none; }

/* Search panel */
.dash-search-panel {
  display: none;
  border-top: 1px solid rgba(6, 42, 48, 0.08);
  background: #fff;
  padding: 18px 0;
}
.dash-search-panel.is-open { display: block; }
.dash-search-form {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
  border: 1.5px solid var(--dash-dark);
  border-radius: var(--radius-pill);
  padding: 4px 8px 4px 20px;
}
.dash-search-form input[type="search"] {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 15px;
  color: var(--dash-dark);
}
.dash-search-form button {
  border: 0;
  background: var(--dash-mint);
  color: var(--dash-dark);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

/* Mobile drawer */
.dash-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(360px, 88vw);
  background: #fff;
  z-index: 120;
  transform: translateX(-102%);
  transition: transform .25s ease;
  padding: 24px;
  overflow-y: auto;
}
.dash-drawer.is-open { transform: translateX(0); }
.dash-drawer__overlay {
  position: fixed; inset: 0;
  background: rgba(6, 42, 48, 0.4);
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease;
}
.dash-drawer__overlay.is-open { opacity: 1; visibility: visible; }
.dash-drawer__close { position: absolute; top: 14px; right: 14px; }
.dash-drawer nav ul li { border-bottom: 1px solid var(--dash-border); }
.dash-drawer nav a {
  display: block;
  padding: 14px 4px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dash-dark);
}
.dash-drawer nav a:hover { color: var(--dash-red); }

/* =====================================================================
   4. FOOTER
   ===================================================================== */
.dash-footer {
  border-top: 1px solid var(--dash-border);
  margin-top: 70px;
  background: #fff;
}
.dash-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 48px 20px 20px;
}
.dash-footer__col h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dash-dark);
  margin-bottom: 18px;
}
.dash-footer__col ul li { margin-bottom: 13px; }
.dash-footer__col a,
.dash-footer__col li span {
  font-size: 15px;
  color: var(--dash-body);
}
.dash-footer__col a:hover { color: var(--dash-red); }
.dash-footer__col .u { text-decoration: underline; }
.dash-footer__contact p { margin: 0 0 13px; font-size: 15px; color: var(--dash-body); }

.dash-footer__news {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: 12px 20px 46px;
}
.dash-footer__news h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--dash-dark);
}
.dash-news-form {
  position: relative;
  width: 355px;
  max-width: 100%;
}
.dash-news-form input[type="email"] {
  width: 100%;
  height: 46px;
  border: 1.5px solid var(--dash-dark);
  border-radius: var(--radius-pill);
  padding: 0 52px 0 20px;
  font-size: 15px;
  color: var(--dash-dark);
  background: #fff;
  outline: none;
}
.dash-news-form input[type="email"]::placeholder { color: rgba(6, 42, 48, 0.55); }
.dash-news-form button {
  position: absolute;
  right: 6px; top: 6px;
  width: 34px; height: 34px;
  border: 0; border-radius: 50%;
  background: transparent;
  color: var(--dash-dark);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.dash-news-form button:hover { color: var(--dash-red); }
.dash-news-form button svg { width: 20px; height: 20px; }
.dash-news-msg { font-size: 13px; color: var(--dash-red); margin-top: 8px; min-height: 16px; }
.dash-social {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 6px;
}
.dash-social a { color: var(--dash-dark); display: inline-flex; }
.dash-social a:hover { color: var(--dash-red); }
.dash-social svg { width: 20px; height: 20px; }

.dash-footer__bottom {
  border-top: 1px solid var(--dash-border);
  padding: 18px 0 26px;
}
.dash-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  font-size: 12.5px;
  color: var(--dash-muted);
}
.dash-footer__bottom-inner a { color: var(--dash-muted); }
.dash-footer__bottom-inner a:hover { color: var(--dash-red); }
.dash-footer__bottom-inner .dot { opacity: .55; }

/* =====================================================================
   5. HOME – HERO
   ===================================================================== */
.dash-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.dash-hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease, visibility .5s ease;
}
.dash-hero__slide.is-active { opacity: 1; visibility: visible; position: relative; }
.dash-hero__slide .bg { position: absolute; inset: 0; z-index: 0; }
.dash-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--page-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.dash-hero__copy { max-width: 560px; }
.dash-hero__copy h1,
.dash-hero__copy .hero-title {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 800;
  line-height: 1.04;
  text-transform: none;
  color: var(--dash-red);
  margin-bottom: 14px;
}
.dash-hero__copy .hero-sub {
  font-size: 18px;
  font-weight: 600;
  color: var(--dash-dark);
  margin-bottom: 26px;
}
.dash-hero__media {
  position: relative;
  flex: 0 1 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dash-hero__media img { max-height: 470px; width: auto; max-width: 100%; }
.dash-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.dash-hero__dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(6, 42, 48, 0.25);
  cursor: pointer;
  padding: 0;
}
.dash-hero__dots button.is-active { background: var(--dash-dark); }

/* =====================================================================
   6. HOME – BEST SELLERS
   ===================================================================== */
.dash-section { padding: 56px 0; }
.dash-section--mint { background: var(--dash-mint-soft); }
.dash-bs__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.dash-bs__arrows { display: flex; gap: 12px; }
.dash-arrow-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--dash-dark);
  background: #fff;
  color: var(--dash-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, opacity .15s ease;
}
.dash-arrow-btn:hover { background: var(--dash-dark); color: #fff; }
.dash-arrow-btn[disabled] { opacity: .35; pointer-events: none; }
.dash-arrow-btn svg { width: 18px; height: 18px; }

.dash-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.dash-carousel::-webkit-scrollbar { display: none; }
.dash-bs__foot { text-align: center; margin-top: 34px; }

/* =====================================================================
   7. PRODUCT CARD (shared: home carousel + shop grid)
   ===================================================================== */
.dash-card {
  position: relative;
  flex: 0 0 auto;
  width: 212px;
  text-align: center;
}
.dash-card__imgwrap {
  position: relative;
  background: #fff;
  border-radius: 4px;
  margin-bottom: 12px;
}
.dash-card__imgwrap a { display: block; }
.dash-card__imgwrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.dash-card__badge {
  position: absolute;
  left: 6px; bottom: -8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #16233f;
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 2;
}
.dash-card__badge .star-ico { color: #ffd23f; font-size: 12px; }
.dash-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dash-dark);
  line-height: 1.3;
  margin: 10px 0 6px;
  min-height: 40px;
}
.dash-card__title a:hover { color: var(--dash-red); }
.dash-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--dash-red);
}
.dash-stars svg { width: 15px; height: 15px; }
.dash-stars .count {
  font-size: 12.5px;
  color: var(--dash-muted);
  margin-left: 6px;
}
.dash-card__price {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dash-dark);
}
.dash-card__price del { color: var(--dash-muted); font-weight: 500; margin-right: 6px; }
.dash-card__price ins { text-decoration: none; }
.dash-card__quick {
  position: absolute;
  right: 6px;
  bottom: 92px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--dash-dark);
  background: #fff;
  color: var(--dash-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.dash-card__quick:hover { background: var(--dash-dark); color: #fff; }
.dash-card__quick svg { width: 16px; height: 16px; }

/* =====================================================================
   8. HOME – BANNERS (Cup Noodles / Disney / Collect)
   ===================================================================== */
.dash-banners {
  background: var(--dash-mint-soft);
  padding: 30px 0 40px;
}
.dash-banners .stack { display: flex; flex-direction: column; gap: 26px; }
.dash-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  min-height: 415px;
}
.dash-banner__media { position: relative; overflow: hidden; }
.dash-banner__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.dash-banner__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 56px;
}
.dash-banner__copy .dash-h2 { margin-bottom: 16px; }
.dash-banner__copy p {
  font-size: 16.5px;
  color: var(--dash-body);
  max-width: 540px;
}
.dash-banner__copy .btn { align-self: flex-start; margin-top: 10px; }

/* Collect them all */
.dash-collect {
  background: #fff;
  border: 1px solid var(--dash-border);
  border-radius: 14px;
  padding: 40px;
  margin-top: 4px;
}
.dash-collect__top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 34px;
}
.dash-collect__top .media { border-radius: 10px; overflow: hidden; }
.dash-collect__top .media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/9; }
.dash-collect__minis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.dash-collect__minis .dash-card { width: auto; }

/* =====================================================================
   9. HOME – SHOP BY CATEGORY
   ===================================================================== */
.dash-cats__head { text-align: center; margin-bottom: 30px; }
.dash-cats__wrap { position: relative; }
.dash-cats {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3 * 24px) / 4);
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.dash-cats::-webkit-scrollbar { display: none; }
.dash-cat {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 316 / 415;
  background: var(--dash-gray);
  display: block;
}
.dash-cat img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.dash-cat:hover img { transform: scale(1.04); }
.dash-cat .band {
  position: relative;
  z-index: 2;
  background: var(--dash-red);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 12px 20px;
  display: block;
}
.dash-cats__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  border: 0;
  background: transparent;
  color: var(--dash-dark);
  cursor: pointer;
  padding: 8px;
}
.dash-cats__arrow:hover { color: var(--dash-red); }
.dash-cats__arrow svg { width: 30px; height: 30px; }
.dash-cats__arrow.prev { left: -46px; }
.dash-cats__arrow.next { right: -46px; }
.dash-cats__foot { text-align: center; margin-top: 34px; }

/* =====================================================================
   10. SHOP ARCHIVE
   ===================================================================== */
.dash-breadcrumbs {
  padding: 18px 0 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dash-muted);
}
.dash-breadcrumbs a { color: var(--dash-muted); }
.dash-breadcrumbs a:hover { color: var(--dash-red); }
.dash-breadcrumbs .sep { margin: 0 6px; }
.woocommerce-products-header { text-align: center; padding: 18px 0 26px; }
.woocommerce-products-header__title {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dash-dark);
}
.dash-shop-toolbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0 22px;
  font-size: 14.5px;
  color: var(--dash-dark);
}
.dash-shop-toolbar .filters {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.dash-shop-toolbar .filters .flabel { font-weight: 500; margin-right: 6px; color: var(--dash-muted); }
.dash-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: var(--dash-dark);
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 10px;
}
.dash-filter-btn:hover { color: var(--dash-red); }
.dash-filter-btn svg { width: 11px; height: 11px; }
.dash-shop-toolbar .sort { display: flex; align-items: center; gap: 10px; }
.dash-shop-toolbar .sort select {
  border: 0;
  background: transparent;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--dash-dark);
  cursor: pointer;
  outline: none;
}
.dash-shop-toolbar .count { color: var(--dash-muted); font-size: 14px; }

ul.dash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 28px;
}
ul.dash-grid .dash-card { width: auto; }
.dash-card__quick { bottom: 4px; }

.dash-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 44px 0 8px;
  font-size: 15px;
}
.dash-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 6px;
  text-align: center;
  color: var(--dash-dark);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
.dash-pagination .page-numbers.current {
  border-bottom-color: var(--dash-dark);
  font-weight: 700;
  cursor: default;
}
.dash-pagination a.page-numbers:hover { color: var(--dash-red); border-bottom-color: var(--dash-red); }
.dash-pagination .page-numbers.dots { border-bottom-color: transparent; cursor: default; color: var(--dash-muted); padding: 0 2px; }
.dash-pagination .page-numbers.next,
.dash-pagination .page-numbers.prev { font-size: 18px; line-height: 1; padding: 0 4px; }
.dash-pagination ul { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; gap: 10px; }
.dash-pagination li { border: 0 !important; }
.woocommerce-pagination ul, .woocommerce-pagination ul li { border: 0 !important; }
.woocommerce-result-count { display: none !important; }

/* =====================================================================
   11. SINGLE PRODUCT
   ===================================================================== */
.dash-single {
  display: grid;
  grid-template-columns: 550px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
  padding: 8px 0 30px;
}
.dash-gallery { position: sticky; top: 120px; }
.dash-gallery__main {
  border: 1px solid var(--dash-border);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.dash-gallery__main img { width: 100%; aspect-ratio: 1/1; object-fit: contain; mix-blend-mode: multiply; }
.dash-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.dash-gallery__thumbs button {
  border: 1px solid var(--dash-border);
  border-radius: 6px;
  background: #fff;
  padding: 4px;
  cursor: pointer;
}
.dash-gallery__thumbs button.is-active { border-color: var(--dash-dark); }
.dash-gallery__thumbs img { aspect-ratio: 1/1; object-fit: contain; mix-blend-mode: multiply; width: 100%; }

.dash-buy { max-width: 450px; }
.dash-buy .caption {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--dash-dark);
  margin-bottom: 8px;
}
.dash-buy h1.product_title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dash-dark);
  line-height: 1.1;
  margin-bottom: 12px;
}
.dash-buy__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 13.5px;
  color: var(--dash-muted);
}
.dash-buy__rating a { text-decoration: underline; color: var(--dash-muted); }
.dash-buy__price { margin-bottom: 20px; font-size: 18px; color: var(--dash-dark); font-weight: 600; }
.dash-buy__price .from {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--dash-muted);
}
.dash-buy__price del { color: var(--dash-muted); font-weight: 500; margin-right: 8px; }
.dash-buy__swatches { margin-bottom: 20px; }
.dash-buy__swatches .swl {
  font-size: 13.5px;
  color: var(--dash-muted);
  margin-bottom: 10px;
}
.dash-buy__swatches .swl strong { color: var(--dash-dark); font-weight: 600; }
.dash-swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.dash-swatch {
  min-width: 44px;
  height: 30px;
  padding: 0 12px;
  border-radius: 16px;
  border: 1.5px solid var(--dash-border);
  background: #fff;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dash-dark);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dash-swatch.is-active { border-color: var(--dash-dark); box-shadow: inset 0 0 0 1px var(--dash-dark); }
.dash-buy__qty { margin-bottom: 18px; }
.dash-buy__qty label { display: block; font-size: 13.5px; color: var(--dash-muted); margin-bottom: 8px; }
.dash-qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--dash-dark);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.dash-qty button {
  width: 42px; height: 42px;
  border: 0; background: transparent;
  font-size: 18px; font-weight: 600;
  color: var(--dash-dark);
  cursor: pointer;
}
.dash-qty button:hover { background: var(--dash-gray); }
.dash-qty input {
  width: 46px;
  border: 0;
  text-align: center;
  font-weight: 600;
  color: var(--dash-dark);
  outline: none;
  -moz-appearance: textfield;
}
.dash-qty input::-webkit-inner-spin-button, .dash-qty input::-webkit-outer-spin-button { -webkit-appearance: none; }
.dash-buy form.cart .single_add_to_cart_button { width: 100%; padding: 18px 36px; margin-top: 2px; }
.dash-buy__morepay { text-align: center; font-size: 13.5px; margin-top: 12px; color: var(--dash-muted); }
.dash-buy__morepay a { text-decoration: underline; color: var(--dash-muted); }
.dash-buy__desc { margin-top: 24px; font-size: 14.5px; }
.dash-accordions { margin-top: 22px; border-top: 1px solid var(--dash-border); }
.dash-acc {
  border-bottom: 1px solid var(--dash-border);
}
.dash-acc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 2px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--dash-dark);
}
.dash-acc summary::-webkit-details-marker { display: none; }
.dash-acc summary svg { width: 12px; height: 12px; transition: transform .2s ease; }
.dash-acc[open] summary svg { transform: rotate(180deg); }
.dash-acc .acc-body {
  padding: 2px 2px 18px;
  font-size: 14px;
  color: var(--dash-body);
}
.dash-acc .acc-body ul { list-style: disc; padding-left: 18px; margin-bottom: 10px; }
.dash-acc .acc-body table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.dash-acc .acc-body td { padding: 8px 4px; border-bottom: 1px solid var(--dash-border); }
.dash-acc .acc-body td:first-child { font-weight: 700; color: var(--dash-dark); width: 42%; }
.dash-buy__sku { margin-top: 18px; font-size: 13px; color: var(--dash-muted); }
.dash-buy__share { margin-top: 8px; font-size: 13px; }
.dash-buy__share a { text-decoration: underline; color: var(--dash-muted); }
.dash-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 26px;
}
.dash-trust .item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dash-dark);
}
.dash-trust svg { width: 22px; height: 22px; color: var(--dash-dark); }

/* Features multicolumn */
.dash-features { padding: 20px 0 40px; }
.dash-features h2 { text-align: center; margin-bottom: 30px; }
.dash-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}
.dash-feature {
  border: 1px solid var(--dash-border);
  border-radius: 10px;
  padding: 26px 22px;
  text-align: center;
  background: #fff;
}
.dash-feature img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  mix-blend-mode: multiply;
  margin-bottom: 18px;
}
.dash-feature h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; color: var(--dash-dark); }
.dash-feature p { font-size: 14px; color: var(--dash-body); margin: 0; }

/* Additional images strip */
.dash-extraimgs { padding: 10px 0 30px; }
.dash-extraimgs .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dash-extraimgs .row img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--dash-border);
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* Reviews placeholder */
.dash-reviews { padding: 30px 0 10px; border-top: 1px solid var(--dash-border); }
.dash-reviews__head { display: flex; align-items: center; gap: 18px; margin-bottom: 24px; }
.dash-reviews__head h2 { font-size: clamp(22px, 2.6vw, 30px); }
.dash-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dash-review {
  border: 1px solid var(--dash-border);
  border-radius: 10px;
  padding: 20px;
}
.dash-review .meta { font-size: 13px; color: var(--dash-muted); margin-bottom: 6px; }
.dash-review .name { font-weight: 700; color: var(--dash-dark); font-size: 14px; margin-bottom: 8px; }
.dash-review p { font-size: 14px; margin: 0; }

/* Related products */
.dash-related { padding: 40px 0 10px; }
.dash-related h2 { margin-bottom: 26px; }

/* =====================================================================
   12. FLOATING WIDGETS & POPUP
   ===================================================================== */
.dash-offtab {
  position: fixed;
  left: 0;
  top: 45%;
  z-index: 80;
  background: #fff;
  border: 1px solid var(--dash-border);
  border-left: 0;
  border-radius: 0 12px 12px 0;
  padding: 18px 8px;
  writing-mode: vertical-rl;
  font-size: 13px;
  font-weight: 700;
  color: var(--dash-dark);
  box-shadow: 0 6px 18px rgba(6, 42, 48, 0.12);
}
.dash-offtab__x {
  position: absolute;
  top: -12px; right: -12px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  border: 2px solid #fff;
  writing-mode: horizontal-tb;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.dash-rewards {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dash-red);
  color: #fff;
  border-radius: 26px;
  padding: 13px 20px;
  font-size: 14.5px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(234, 0, 41, 0.35);
}
.dash-rewards svg { width: 20px; height: 20px; }

.dash-popup__overlay {
  position: fixed; inset: 0;
  background: rgba(6, 42, 48, 0.45);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.dash-popup__overlay.is-open { display: flex; }
.dash-popup {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: #fff;
  max-width: 780px;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.dash-popup__copy { padding: 44px 40px; text-align: center; }
.dash-popup__copy .script {
  font-size: 30px;
  font-weight: 700;
  font-style: italic;
  color: var(--dash-red);
  line-height: 1.1;
}
.dash-popup__copy .big {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--dash-red);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.dash-popup__copy p { font-size: 15px; color: var(--dash-dark); }
.dash-popup__copy p strong { font-weight: 800; }
.dash-popup__copy .red { color: var(--dash-red); font-weight: 700; }
.dash-popup__form input[type="email"] {
  width: 100%;
  height: 46px;
  border: 1.5px solid var(--dash-border);
  border-radius: 24px;
  padding: 0 18px;
  font-size: 14.5px;
  margin-bottom: 12px;
  outline: none;
}
.dash-popup__form .btn--mint { width: 100%; padding: 15px 20px; }
.dash-popup__no {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--dash-dark);
  background: none;
  border: 0;
  cursor: pointer;
}
.dash-popup__media { background: var(--dash-mint-soft); display: flex; align-items: center; justify-content: center; padding: 26px; }
.dash-popup__media img { max-height: 300px; }
.dash-popup__x {
  position: absolute;
  top: 14px; left: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--dash-red);
  color: var(--dash-red);
  background: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* =====================================================================
   13. WOOCOMMERCE NOTICES / FORMS / MINI RESETS
   ===================================================================== */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  border-top-color: var(--dash-red);
  background: #fff;
  color: var(--dash-dark);
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(6, 42, 48, .08);
  padding: 14px 20px !important;
  font-size: 14px;
}
.woocommerce-message::before, .woocommerce-info::before, .woocommerce-error::before { color: var(--dash-red); }
.select2-container .select2-selection--single {
  height: 44px;
  border: 1.5px solid var(--dash-border) !important;
  border-radius: 8px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 42px !important;
  color: var(--dash-dark) !important;
}
.woocommerce-notices-wrapper .woocommerce-message a.button,
.woocommerce-notices-wrapper .woocommerce-message .restore-item { text-transform: none; letter-spacing: 0; font-size: 13px; }

/* =====================================================================
   14. RESPONSIVE
   ===================================================================== */
@media (max-width: 1220px) {
  .dash-cats__arrow.prev { left: 4px; }
  .dash-cats__arrow.next { right: 4px; }
}
@media (max-width: 990px) {
  :root { --header-h: 72px; }
  .dash-nav { display: none; }
  .dash-burger { display: inline-flex; }
  .dash-single { grid-template-columns: 1fr; }
  .dash-gallery { position: static; }
  .dash-footer__cols { grid-template-columns: repeat(2, 1fr); }
  .dash-banner { grid-template-columns: 1fr; min-height: 0; }
  .dash-banner__media { min-height: 280px; }
  .dash-banner--flip .dash-banner__media { order: -1; }
  .dash-collect__top { grid-template-columns: 1fr; }
  .dash-collect__minis { grid-template-columns: repeat(2, 1fr); }
  .dash-cats { grid-auto-columns: calc((100% - 2 * 20px) / 3); }
  ul.dash-grid { grid-template-columns: repeat(3, 1fr); }
  .dash-features__grid { grid-template-columns: repeat(2, 1fr); }
  .dash-reviews__grid { grid-template-columns: 1fr; }
  .dash-popup { grid-template-columns: 1fr; }
  .dash-popup__media { display: none; }
}
@media (max-width: 640px) {
  ul.dash-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 14px; }
  .dash-hero { height: 440px; }
  .dash-hero__inner { flex-direction: column; justify-content: center; text-align: center; }
  .dash-hero__media { display: none; }
  .dash-cats { grid-auto-columns: calc((100% - 20px) / 2); }
  .dash-footer__cols { grid-template-columns: 1fr; }
  .dash-footer__news { flex-direction: column; align-items: flex-start; }
  .dash-card__quick { display: none; }
  .dash-features__grid { grid-template-columns: 1fr; }
  .dash-collect { padding: 24px 18px; }
}

/* ============================================================
 * Fixes patch — cart block grid, static pages, mobile polish
 * ============================================================ */

/* ---- Static page (page.php) ---- */
.dash-page { padding: 24px 0 56px; }
.dash-page__head { margin: 14px 0 24px; }
.dash-page__title { font-size: clamp(28px, 4vw, 40px); margin: 0 0 6px; color: #062a30; letter-spacing: -.01em; }
.dash-page__body { max-width: 760px; color: #444; line-height: 1.7; font-size: 16px; }
.dash-page__body h2, .dash-page__body h3 { color: #062a30; margin: 28px 0 12px; }
.dash-page__body a { color: #b51200; text-decoration: underline; text-underline-offset: 2px; }
.dash-page__body p { margin: 0 0 14px; }

/* ---- WC block cart: restyle the "New in store" product grid to match product cards ---- */
.wc-block-cart__empty-cart__title { text-align: center; }
.wp-block-woocommerce-product-new.wc-block-grid,
.wc-block-product-new { width: 100%; }
.wc-block-grid__products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.wc-block-grid__product {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
}
.wc-block-grid__product-link {
  display: block !important;
  text-decoration: none !important;
  color: inherit;
  padding: 0 0 12px;
}
.wc-block-grid__product-image { aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #f7f7f7; }
.wc-block-grid__product-image img { width: 100%; height: 100%; object-fit: cover; }
.wc-block-grid__product-title {
  font-size: 14px;
  font-weight: 500;
  color: #062a30;
  padding: 12px 14px 4px;
  line-height: 1.35;
  min-height: 2.7em;
}
.wc-block-grid__product-price { padding: 0 14px 12px; font-size: 14px; color: #062a30; }
.wc-block-grid__product-add-to-cart {
  margin: 0 14px 14px !important;
  display: block !important;
}
.wc-block-grid__product-add-to-cart .wp-block-button__link.add_to_cart_button {
  display: block;
  background: #062a30;
  color: #fff;
  border-radius: 999px;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  width: 100%;
  border: none;
  cursor: pointer;
}
.wc-block-grid__product-add-to-cart .wp-block-button__link.add_to_cart_button:hover { background: #b51200; }

/* Cart page "Your cart is currently empty" hero */
.wc-block-cart.is-empty .wc-block-cart__empty-cart__title { margin-top: 24px; }

/* ---- Mobile responsive polish (additional) ---- */
@media (max-width: 1024px) {
  .wc-block-grid__products { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}
@media (max-width: 768px) {
  .wc-block-grid__products { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 12px !important; }
  .wc-block-grid__product-title { font-size: 13px; padding: 10px 10px 4px; min-height: 2.6em; }
  .wc-block-grid__product-price { font-size: 13px; padding: 0 10px 10px; }
  .wc-block-grid__product-add-to-cart { margin: 0 10px 10px !important; }
  .wc-block-grid__product-add-to-cart .wp-block-button__link.add_to_cart_button { font-size: 12px; padding: 9px 12px; }
  .dash-page { padding: 16px 0 40px; }
  .dash-page__title { font-size: 26px; }
  .dash-page__body { font-size: 15px; }
}
@media (max-width: 480px) {
  .wc-block-grid__products { grid-template-columns: 1fr !important; }
}

/* ---- Cart: force full-width New-in-store grid (override narrow default) ---- */
.wp-block-woocommerce-product-new,
.wc-block-grid.wp-block-product-new {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}
.wp-block-woocommerce-product-new .wc-block-grid__products,
.wc-block-grid__products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  width: 100% !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  gap: 20px !important;
  list-style: none !important;
  padding: 0 !important;
}
.wc-block-grid__product {
  width: auto !important;
  max-width: none !important;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.wc-block-grid__product-image { aspect-ratio: 1 / 1; }
.wc-block-grid__product-title { white-space: normal; word-break: break-word; }

@media (max-width: 1024px) {
  .wp-block-woocommerce-product-new .wc-block-grid__products,
  .wc-block-grid__products { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}
@media (max-width: 768px) {
  .wp-block-woocommerce-product-new .wc-block-grid__products,
  .wc-block-grid__products { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 14px !important; }
}
@media (max-width: 480px) {
  .wp-block-woocommerce-product-new .wc-block-grid__products,
  .wc-block-grid__products { grid-template-columns: 1fr !important; }
}

/* Cart: center the empty cart hero and make it full width within page-width */
.wc-block-cart, .wp-block-woocommerce-cart {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
.wc-block-cart.is-empty > .wc-block-cart__empty-cart {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =====================================================================
   15. FAQ PAGE – chip accordion (mirrors bydash.com style)
   ===================================================================== */
.dash-faq { max-width: 880px; margin: 0 auto; }
.dash-faq__title {
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.005em;
  color: var(--dash-dark);
  margin: 8px 0 36px;
  text-transform: uppercase;
}
.dash-faq__group + .dash-faq__group { margin-top: 38px; }
.dash-faq__group-title {
  text-align: center;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dash-dark);
  margin: 0 0 16px;
}
.dash-faq details {
  background: var(--dash-gray);
  border-radius: 14px;
  margin: 0 0 12px;
  padding: 0;
  transition: background .15s ease;
}
.dash-faq details[open] { background: #ebebeb; }
.dash-faq details > summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--dash-dark);
}
.dash-faq details > summary::-webkit-details-marker { display: none; }
.dash-faq details > summary::before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23062a30' stroke-width='2'><circle cx='12' cy='12' r='10'/><path d='M8 12h8M12 8v8'/></svg>") center / 14px no-repeat;
}
.dash-faq details[open] > summary::before {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23062a30' stroke-width='2'><circle cx='12' cy='12' r='10'/><path d='M5 12h14'/></svg>") center / 14px no-repeat;
}
.dash-faq details > summary::after {
  content: "";
  margin-left: auto;
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23062a30' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>") center / 12px no-repeat;
  transition: transform .2s ease;
}
.dash-faq details[open] > summary::after { transform: rotate(180deg); }
.dash-faq details > .dash-faq__body {
  padding: 0 20px 18px 50px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--dash-body);
}
.dash-faq details > .dash-faq__body p { margin: 0 0 10px; }
.dash-faq details > .dash-faq__body p:last-child { margin-bottom: 0; }
.dash-faq details > .dash-faq__body ul { list-style: disc; padding-left: 20px; margin: 8px 0 12px; }
.dash-faq details > .dash-faq__body h4 {
  margin: 14px 0 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dash-dark);
}
.dash-faq details > .dash-faq__body a {
  color: var(--dash-red);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 640px) {
  .dash-faq details > summary { font-size: 14px; padding: 12px 16px; }
  .dash-faq details > .dash-faq__body { padding: 0 16px 14px 46px; font-size: 14px; }
}

/* =====================================================================
   16. CART PAGE – force horizontal layout (WC block-cart container
   query doesn't activate as expected; force desktop two-column)
   ================================================================= */
.dash-page .wp-block-woocommerce-cart.alignwide {
  max-width: 100% !important;
  width: 100% !important;
}
.dash-page .wp-block-woocommerce-cart.alignwide .wc-block-components-sidebar-layout.wc-block-cart {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 0 !important;
  margin: 0 !important;
}
.dash-page .wp-block-woocommerce-cart.alignwide .wc-block-cart__main {
  width: 65% !important;
  padding-right: 2.5% !important;
  box-sizing: border-box !important;
}
.dash-page .wp-block-woocommerce-cart.alignwide .wc-block-cart__sidebar {
  width: 35% !important;
  padding-left: 2.5% !important;
  box-sizing: border-box !important;
}
/* Mobile: stack */
@media (max-width: 760px) {
  .dash-page .wp-block-woocommerce-cart.alignwide .wc-block-cart__main,
  .dash-page .wp-block-woocommerce-cart.alignwide .wc-block-cart__sidebar {
    width: 100% !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
  }
  .dash-page .wp-block-woocommerce-cart.alignwide .wc-block-components-sidebar-layout.wc-block-cart {
    flex-direction: column !important;
    gap: 18px !important;
  }
  .dash-page .wp-block-woocommerce-cart.alignwide .wc-block-cart__sidebar {
    margin-top: 0 !important;
  }
}


/* Cart page: let the WC block-cart fill the page-width */
.dash-page__body { max-width: 100% !important; }
.dash-page__body > .wp-block-woocommerce-cart.alignwide { width: 100% !important; max-width: 100% !important; }


/* =====================================================================
   17. MOBILE DRAWER — mega sub menus (Featured / Shop)
   ================================================================= */
.dash-drawer__list { padding: 0; margin: 0; list-style: none; }
.dash-drawer__list > li {
  border-bottom: 1px solid var(--dash-border, #e7e7e7);
}
.dash-drawer__list > li > a,
.dash-drawer__list > li > .dash-drawer__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 4px;
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dash-dark, #062a30);
  text-align: left;
  cursor: pointer;
}
.dash-drawer__list > li > a:hover,
.dash-drawer__list > li > .dash-drawer__toggle:hover { color: var(--dash-red, #d61d1d); }
.dash-drawer__toggle svg {
  width: 12px;
  height: 12px;
  transition: transform 0.22s ease;
  flex-shrink: 0;
}
.dash-drawer__toggle.is-open svg { transform: rotate(180deg); }

.dash-drawer__sub {
  padding: 0 0 14px 14px;
  border-left: 1px solid var(--dash-border, #e7e7e7);
  margin-left: 4px;
}
.dash-drawer__sub[hidden] { display: none; }
.dash-drawer__sub ul { list-style: none; padding: 0; margin: 0; }
.dash-drawer__sub li { border-bottom: 1px dashed var(--dash-border, #ececec); }
.dash-drawer__sub li:last-child { border-bottom: 0; }
.dash-drawer__sub a {
  display: block;
  padding: 10px 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--dash-dark, #062a30);
}
.dash-drawer__sub a:hover { color: var(--dash-red, #d61d1d); }
.dash-drawer__sub-group { padding-top: 8px; }
.dash-drawer__sub-group h4 {
  margin: 12px 6px 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dash-dark, #062a30);
  opacity: 0.6;
}


/* =====================================================================
   18. MY ACCOUNT — login form + dashboard sidebar
   ================================================================= */
.dash-page .woocommerce {
  display: block;
}
/* dashboard layout (has MyAccount nav) → sidebar + content */
.dash-page .woocommerce:has(.woocommerce-MyAccount-navigation) {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}
/* Hide the default outer <h2>Login</h2> WC renders outside the login form
   (it precedes the form, follows notices-wrapper div — use :first-of-type) */
.dash-page .woocommerce > h2:first-of-type {
  display: none;
}
/* Center the login form on its own row */
.dash-page .woocommerce > .woocommerce-form-login.login {
  margin-left: auto;
  margin-right: auto;
}

/* ---- Login form (card) ---- */
.dash-page .woocommerce-form-login.login {
  max-width: 480px;
  margin: 12px auto 40px;
  padding: 36px 32px 28px;
  border: 1px solid var(--dash-border, #e7e7e7);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 22px rgba(6, 42, 48, .04);
}
.dash-page .woocommerce-form-login h2 {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--dash-dark, #062a30);
  text-align: center;
}
.dash-page .woocommerce-form-login .form-row { margin: 0 0 16px; }
.dash-page .woocommerce-form-login p.woocommerce-form-row { margin: 0 0 16px; }
.dash-page .woocommerce-form-login .form-row label,
.dash-page .woocommerce-form-login p.woocommerce-form-row label {
  display: block;
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dash-dark, #062a30);
}
.dash-page .woocommerce-form-login .form-row label .required { color: var(--dash-red, #d61d1d); margin-left: 2px; }
.dash-page .woocommerce-form-login .input-text,
.dash-page .woocommerce-form-login .woocommerce-Input {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--dash-dark, #062a30);
  background: #f7f7f7;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  box-sizing: border-box;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.dash-page .woocommerce-form-login .input-text:focus,
.dash-page .woocommerce-form-login .woocommerce-Input:focus {
  border-color: var(--dash-dark, #062a30);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(6, 42, 48, .12);
}

/* Remember me + submit row */
.dash-page .woocommerce-form-login .form-row:not(.woocommerce-form-row--wide):not(.form-row-wide) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.dash-page .woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--dash-dark, #062a30);
  cursor: pointer;
  user-select: none;
}
.dash-page .woocommerce-form-login__rememberme input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--dash-red, #d61d1d);
  cursor: pointer;
}
.dash-page .woocommerce-form-login .button.woocommerce-form-login__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--dash-red, #d61d1d);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}
.dash-page .woocommerce-form-login .button.woocommerce-form-login__submit:hover {
  background: #b81818;
}
.dash-page .woocommerce-form-login .woocommerce-LostPassword {
  margin: 18px 0 0;
  text-align: center;
}
.dash-page .woocommerce-form-login .woocommerce-LostPassword a {
  font-size: 13px;
  color: var(--dash-red, #d61d1d);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- Dashboard sidebar navigation ---- */
.dash-page .woocommerce-MyAccount-navigation {
  flex: 0 0 240px;
  width: 240px;
  background: #fff;
  border: 1px solid var(--dash-border, #e7e7e7);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(6, 42, 48, .04);
}
.dash-page .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dash-page .woocommerce-MyAccount-navigation li {
  border-bottom: 1px solid var(--dash-border, #ececec);
}
.dash-page .woocommerce-MyAccount-navigation li:last-child { border-bottom: 0; }
.dash-page .woocommerce-MyAccount-navigation a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--dash-dark, #062a30);
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
}
.dash-page .woocommerce-MyAccount-navigation a:hover {
  background: #f6f6f6;
  color: var(--dash-red, #d61d1d);
}
.dash-page .woocommerce-MyAccount-navigation li.is-active a {
  background: var(--dash-dark, #062a30);
  color: #fff;
}
.dash-page .woocommerce-MyAccount-navigation li.is-active a:hover {
  background: var(--dash-dark, #062a30);
  color: #fff;
}

/* ---- Dashboard content area ---- */
.dash-page .woocommerce-MyAccount-content {
  flex: 1 1 460px;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--dash-border, #e7e7e7);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 6px 22px rgba(6, 42, 48, .04);
}
.dash-page .woocommerce-MyAccount-content h2,
.dash-page .woocommerce-MyAccount-content h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--dash-dark, #062a30);
}
.dash-page .woocommerce-MyAccount-content p { line-height: 1.6; color: var(--dash-dark, #062a30); }
.dash-page .woocommerce-MyAccount-content a { color: var(--dash-red, #d61d1d); text-decoration: underline; }
.dash-page .woocommerce-MyAccount-content table { width: 100%; border-collapse: collapse; margin: 0 0 18px; }
.dash-page .woocommerce-MyAccount-content table th,
.dash-page .woocommerce-MyAccount-content table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--dash-border, #ececec);
  font-size: 14px;
}
.dash-page .woocommerce-MyAccount-content table th {
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--dash-dark, #062a30);
  background: #f7f7f7;
}
.dash-page .woocommerce-MyAccount-content .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--dash-dark, #062a30);
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  transition: background .18s ease;
}
.dash-page .woocommerce-MyAccount-content .button:hover {
  background: var(--dash-red, #d61d1d);
  color: #fff;
}

/* Address / form field groups inside dashboard */
.dash-page .woocommerce-MyAccount-content .form-row { margin: 0 0 14px; }
.dash-page .woocommerce-MyAccount-content .form-row label {
  display: block;
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dash-dark, #062a30);
}
.dash-page .woocommerce-MyAccount-content .form-row .input-text {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  background: #fafafa;
  box-sizing: border-box;
}
.dash-page .woocommerce-MyAccount-content .form-row .input-text:focus {
  border-color: var(--dash-dark, #062a30);
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(6, 42, 48, .12);
}

/* mobile: stack */
@media (max-width: 760px) {
  .dash-page .woocommerce-MyAccount-navigation {
    flex: 1 1 100%;
    width: 100%;
  }
  .dash-page .woocommerce-MyAccount-content {
    padding: 20px;
  }
}
