/* ============================================================
   DUNSHOP – Full Redesign CSS  v1.0.5
   Tech-retail aesthetic – Royal Blue / Dark / White
   ============================================================ */

/* ─────────────────────────────────────────────
   TOKENS
───────────────────────────────────────────── */
:root {
  --ds-blue:    #4169E1;
  --ds-blue-dk: #2a4fc0;
  --ds-dark:    #0d0d14;
  --ds-mid:     #1a1a2e;
  --ds-accent:  #FFD700;
  --ds-white:   #ffffff;
  --ds-grey:    #f5f6fa;
  --ds-grey2:   #e8eaf0;
  --ds-text:    #1a1a2e;
  --ds-muted:   #6b7280;
  --ds-radius:  10px;
  --ds-shadow:  0 4px 24px rgba(0,0,0,0.08);
  --ds-max:     1280px;
  --gbl-primary-color:   #4169E1;
  --gbl-secondary-color: #2a4fc0;
}

/* ─────────────────────────────────────────────
   RESET / BASE
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background: #fff; color: var(--ds-text); margin: 0; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

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

/* ─────────────────────────────────────────────
   HEADER
───────────────────────────────────────────── */
#masthead {
  background: var(--ds-white) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10) !important;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1000;
}
#masthead.ds-sticky {
  position: fixed;
  top: 0; left: 0; right: 0;
  animation: ds-slideDown 0.3s ease;
  box-shadow: 0 4px 20px rgba(65,105,225,0.15) !important;
}
@keyframes ds-slideDown {
  from { transform: translateY(-100%); opacity:0; }
  to   { transform: translateY(0);    opacity:1; }
}
/* top bar – dark strip */
.top-bar-menu {
  background: var(--ds-mid) !important;
  color: #ccc;
  font-size: 12px;
}
.top-bar-menu a { color: #ccc !important; }
.top-bar-menu a:hover { color: var(--ds-accent) !important; }

/* Main nav bar */
.main-menu-wrap, .burger-banner {
  background: #fff !important;
  border-bottom: 3px solid var(--ds-blue) !important;
}
.site-header .header-wrapper .site-branding img {
  max-height: 52px !important;
  width: auto;
}
/* Nav links */
.site-header .header-left ul li a {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: var(--ds-text) !important;
  transition: color 0.2s;
  padding: 6px 14px;
}
.site-header .header-left ul li a:hover,
.site-header .header-left ul li.current-menu-item > a {
  color: var(--ds-blue) !important;
}
/* Woocommerce bar */
.woocommerce-bar { background: var(--ds-blue) !important; }
.woocommerce-bar * { color: #fff !important; }
.woocommerce-bar .product-search-form input {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  border-radius: 6px;
}
.woocommerce-bar .product-search-form input::placeholder { color: rgba(255,255,255,0.7); }

/* Cart icon count badge */
.header-cart-icon .cart-count,
.cart-wrap .count {
  background: var(--ds-accent) !important;
  color: #000 !important;
}

/* ─────────────────────────────────────────────
   BUTTONS (global)
───────────────────────────────────────────── */
.ds-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.22s ease;
  text-decoration: none;
}
.ds-btn--primary {
  background: var(--ds-blue);
  color: #fff;
  border-color: var(--ds-blue);
}
.ds-btn--primary:hover {
  background: var(--ds-blue-dk);
  border-color: var(--ds-blue-dk);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(65,105,225,0.35);
}
.ds-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.ds-btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* WooCommerce native buttons → royal blue */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button.alt,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce #payment #place_order {
  background-color: var(--ds-blue) !important;
  color: #fff !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
  border: none !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce .button.alt:hover {
  background-color: var(--ds-blue-dk) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────────
   HERO BANNER
───────────────────────────────────────────── */
.ds-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ds-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.ds-hero:hover .ds-hero__bg { transform: scale(1); }
.ds-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg,
    rgba(13,13,20,0.88) 0%,
    rgba(13,13,20,0.55) 55%,
    rgba(13,13,20,0.15) 100%);
}
.ds-hero__content {
  position: relative; z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 70px 20px;
}
.ds-hero__text { max-width: 600px; }
.ds-hero__eyebrow {
  display: inline-block;
  background: var(--ds-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.ds-hero__heading {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.ds-hero__heading span { color: var(--ds-accent); }
.ds-hero__sub {
  color: rgba(255,255,255,0.85);
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 480px;
}
.ds-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.ds-hero__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-self: flex-end;
}
.ds-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 10px 16px;
  color: #fff;
  font-size: 13px;
  line-height: 1.3;
}
.ds-badge__icon { font-size: 22px; }
.ds-badge small { color: rgba(255,255,255,0.65); font-size: 11px; display: block; }

/* ─────────────────────────────────────────────
   TRUST BAR
───────────────────────────────────────────── */
.ds-trustbar {
  background: var(--ds-mid);
  color: #fff;
  padding: 14px 0;
}
.ds-trustbar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 10px;
}
.ds-trustbar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}
.ds-trustbar__item span { font-size: 18px; }

/* ─────────────────────────────────────────────
   SECTION LAYOUT
───────────────────────────────────────────── */
.ds-section {
  padding: 60px 0;
  background: var(--ds-white);
}
.ds-section--dark {
  background: var(--ds-grey);
}
.ds-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.ds-section__title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: var(--ds-text);
  margin: 0;
  position: relative;
}
.ds-section__title::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: var(--ds-blue);
  border-radius: 2px;
  margin-top: 8px;
}
.ds-section__link {
  color: var(--ds-blue);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}
.ds-section__link:hover { text-decoration: underline; }

/* ─────────────────────────────────────────────
   CATEGORY CARDS
───────────────────────────────────────────── */
.ds-cats__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.ds-cat-card {
  border-radius: var(--ds-radius);
  overflow: hidden;
  background: var(--ds-grey);
  box-shadow: var(--ds-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.ds-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(65,105,225,0.18);
}
.ds-cat-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.ds-cat-card:hover .ds-cat-card__img { transform: scale(1.05); }
.ds-cat-card__body {
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ds-white);
  border-top: 2px solid var(--ds-grey2);
}
.ds-cat-card:hover .ds-cat-card__body { border-top-color: var(--ds-blue); }
.ds-cat-card__icon { font-size: 20px; }
.ds-cat-card__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ds-text);
  line-height: 1.2;
}

/* ─────────────────────────────────────────────
   PRODUCT CARDS
───────────────────────────────────────────── */
.ds-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ds-product-card {
  background: var(--ds-white);
  border-radius: var(--ds-radius);
  box-shadow: var(--ds-shadow);
  border: 1px solid var(--ds-grey2);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.ds-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(65,105,225,0.16);
  border-color: var(--ds-blue);
}
.ds-product-card__img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--ds-grey);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ds-product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.4s ease;
}
.ds-product-card:hover .ds-product-card__img-wrap img { transform: scale(1.07); }
.ds-product-card__hover {
  position: absolute; inset: 0;
  background: rgba(65,105,225,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.ds-product-card:hover .ds-product-card__hover { opacity: 1; }
.ds-product-card__quick {
  background: var(--ds-blue);
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.ds-badge-sale {
  position: absolute;
  top: 10px; left: 10px;
  background: #e53935;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 12px;
  z-index: 1;
  letter-spacing: 0.5px;
}
.ds-badge-new {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--ds-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 12px;
  z-index: 1;
}
.ds-product-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.ds-product-card__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ds-text);
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ds-product-card__title a { color: inherit; }
.ds-product-card__title a:hover { color: var(--ds-blue); }
.ds-product-card__price {
  font-size: 16px;
  font-weight: 800;
  color: var(--ds-blue);
  margin-top: auto;
}
.ds-product-card__price .woocommerce-Price-amount { color: var(--ds-blue); }
.ds-product-card__price del .woocommerce-Price-amount { color: var(--ds-muted); font-size: 12px; }
.ds-product-card__price ins { text-decoration: none; }
.ds-product-card__btn {
  display: block;
  text-align: center;
  background: var(--ds-blue);
  color: #fff;
  border-radius: 6px;
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  margin-top: 4px;
}
.ds-product-card__btn:hover {
  background: var(--ds-blue-dk);
  color: #fff;
  transform: translateY(-1px);
}

/* WooCommerce native product loop – style override */
.woocommerce ul.products li.product {
  background: var(--ds-white);
  border-radius: var(--ds-radius);
  border: 1px solid var(--ds-grey2);
  box-shadow: var(--ds-shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s !important;
  padding: 0 !important;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-5px) scale(1) !important;
  box-shadow: 0 12px 36px rgba(65,105,225,0.16) !important;
  border-color: var(--ds-blue) !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__link img {
  padding: 14px;
  object-fit: contain;
  background: var(--ds-grey);
}
.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 10px 14px 0 !important;
  color: var(--ds-text) !important;
}
.woocommerce ul.products li.product .price {
  color: var(--ds-blue) !important;
  font-weight: 800 !important;
  font-size: 16px !important;
  padding: 4px 14px !important;
  display: block;
}
.woocommerce ul.products li.product .price del {
  color: var(--ds-muted) !important;
  font-size: 12px !important;
}
.woocommerce ul.products li.product .button {
  margin: 0 14px 14px !important;
  width: calc(100% - 28px) !important;
  text-align: center !important;
  border-radius: 6px !important;
}
/* Sale ribbon */
.woocommerce ul.products li.product .onsale {
  background: #e53935 !important;
  border-radius: 12px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  min-height: auto !important;
  min-width: auto !important;
  padding: 3px 10px !important;
  line-height: 1.8 !important;
  top: 10px !important;
  left: 10px !important;
  right: auto !important;
}

/* ─────────────────────────────────────────────
   PROMO BANNER
───────────────────────────────────────────── */
.ds-promo-banner { padding: 0 0 60px; }
.ds-promo-banner__inner {
  border-radius: 14px;
  overflow: hidden;
  min-height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding: 50px 60px;
}
.ds-promo-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,13,20,0.80) 0%, rgba(13,13,20,0.30) 70%, transparent 100%);
}
.ds-promo-banner__text { position: relative; z-index: 1; color: #fff; }
.ds-promo-banner__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ds-accent);
  margin: 0 0 8px;
}
.ds-promo-banner__text h3 { font-size: 28px; font-weight: 800; margin: 0 0 8px; }
.ds-promo-banner__text p { margin: 0 0 20px; opacity: 0.85; }

/* ─────────────────────────────────────────────
   BRANDS
───────────────────────────────────────────── */
.ds-brands { background: var(--ds-grey); }
.ds-brands__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.ds-brand {
  background: #fff;
  border-radius: 10px;
  padding: 16px 28px;
  box-shadow: var(--ds-shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--ds-grey2);
}
.ds-brand:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(65,105,225,0.14);
}
.ds-brand img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: grayscale(40%);
  transition: filter 0.2s;
}
.ds-brand:hover img { filter: grayscale(0%); }

/* ─────────────────────────────────────────────
   NEWSLETTER
───────────────────────────────────────────── */
.ds-newsletter {
  background: linear-gradient(135deg, var(--ds-mid) 0%, var(--ds-blue) 100%);
  padding: 60px 0;
}
.ds-newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.ds-newsletter__text h3 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
}
.ds-newsletter__text p { color: rgba(255,255,255,0.8); margin: 0; }
.ds-newsletter__form {
  display: flex;
  gap: 12px;
  flex: 1;
  max-width: 480px;
}
.ds-newsletter__input {
  flex: 1;
  padding: 13px 18px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
  outline: none;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
#colophon.site-footer {
  background: var(--ds-dark) !important;
  color: #ccc;
}
.site-footer .footer-overlay { background: none !important; }
.site-footer .footer-top {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 50px 0;
}
.site-footer .footer-top .widget-title {
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px !important;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ds-blue);
  width: fit-content;
}
.site-footer a {
  color: #9ca3af !important;
  transition: color 0.2s;
}
.site-footer a:hover { color: var(--ds-accent) !important; }
.site-footer .footer-bottom {
  background: rgba(0,0,0,0.4);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.site-footer .footer-bottom .copy-right { color: #9ca3af; font-size: 13px; }
.site-footer .footer-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
/* Social icons */
.site-footer .social-links a,
.site-footer .best-shop-social-links a {
  background: rgba(255,255,255,0.08) !important;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s !important;
}
.site-footer .social-links a:hover,
.site-footer .best-shop-social-links a:hover {
  background: var(--ds-blue) !important;
  color: #fff !important;
}
/* Widget list items */
.site-footer .widget ul li {
  border: none !important;
  padding: 4px 0 !important;
  font-size: 13px;
  color: #9ca3af;
}
.site-footer .widget ul li::before { content: '› '; color: var(--ds-blue); }
/* Woo product cats in footer */
.site-footer .product-categories li { list-style: none; }

/* ─────────────────────────────────────────────
   SINGLE PRODUCT PAGE
───────────────────────────────────────────── */
.single-product div.product .product_title {
  font-size: clamp(22px, 3vw, 32px) !important;
  font-weight: 800 !important;
  color: var(--ds-text) !important;
}
.single-product div.product .price {
  font-size: 26px !important;
  font-weight: 800 !important;
  color: var(--ds-blue) !important;
}
.single-product div.product .price del {
  color: var(--ds-muted) !important;
  font-size: 16px !important;
}
.single-product div.product .single_add_to_cart_button {
  background: var(--ds-blue) !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  padding: 16px 36px !important;
  letter-spacing: 0.5px;
}
.single-product div.product .single_add_to_cart_button:hover {
  background: var(--ds-blue-dk) !important;
}
.single-product div.product .woocommerce-product-gallery {
  border-radius: var(--ds-radius);
  overflow: hidden;
  border: 1px solid var(--ds-grey2);
}
/* Product tabs */
.woocommerce-tabs .tabs li.active a { color: var(--ds-blue) !important; border-bottom: 2px solid var(--ds-blue) !important; }
.woocommerce-tabs .tabs li a:hover { color: var(--ds-blue) !important; }

/* ─────────────────────────────────────────────
   CART & CHECKOUT
───────────────────────────────────────────── */
.woocommerce-cart table.cart th,
.woocommerce-cart table.cart td { vertical-align: middle; }
.woocommerce-cart .cart_totals h2,
.woocommerce-checkout h3 { color: var(--ds-blue) !important; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  border-radius: 6px !important;
  border: 1px solid var(--ds-grey2) !important;
  transition: border-color 0.2s;
}
.woocommerce form .form-row input.input-text:focus {
  border-color: var(--ds-blue) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(65,105,225,0.12);
}

/* ─────────────────────────────────────────────
   SHOP PAGE IMPROVEMENTS
───────────────────────────────────────────── */
.woocommerce-ordering select {
  border: 1px solid var(--ds-grey2);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--ds-text);
}
.woocommerce-ordering select:focus { border-color: var(--ds-blue); outline: none; }
.woocommerce-result-count { color: var(--ds-muted); font-size: 13px; }
/* Pagination */
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  border-radius: 6px !important;
  font-weight: 600;
  color: var(--ds-text) !important;
  border: 1px solid var(--ds-grey2) !important;
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--ds-blue) !important;
  color: #fff !important;
  border-color: var(--ds-blue) !important;
}

/* ─────────────────────────────────────────────
   MOBILE STICKY ADD TO CART
───────────────────────────────────────────── */
@media (max-width: 768px) {
  .single-product .single_add_to_cart_button {
    position: sticky;
    bottom: 0;
    z-index: 99;
    border-radius: 0 !important;
    width: 100%;
    margin: 0 !important;
  }
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ds-cats__grid { grid-template-columns: repeat(3, 1fr); }
  .ds-products__grid { grid-template-columns: repeat(3, 1fr); }
  .ds-hero { min-height: 420px; }
  .ds-hero__badges { display: none; }
}
@media (max-width: 768px) {
  .ds-cats__grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .ds-products__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ds-hero { min-height: 340px; }
  .ds-hero__content { padding: 40px 20px; }
  .ds-promo-banner__inner { padding: 30px 24px; }
  .ds-newsletter__inner { flex-direction: column; }
  .ds-newsletter__form { max-width: 100%; width: 100%; }
  .ds-trustbar__inner { gap: 14px; }
  .ds-section { padding: 40px 0; }
}
@media (max-width: 480px) {
  .ds-cats__grid { grid-template-columns: repeat(2, 1fr); }
  .ds-products__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ds-hero__actions { flex-direction: column; gap: 10px; }
  .ds-hero__heading { font-size: 26px; }
}

/* ─────────────────────────────────────────────
   MISC THEME OVERRIDES
───────────────────────────────────────────── */
/* Disable old scale hover on WC list (we have our own) */
.woocommerce ul.products li:hover {
  transform: none !important;
}
/* Body offset when sticky header is active */
body.ds-has-sticky { padding-top: 120px; }
/* Preloader off */
.preloader-center { display: none !important; }
/* Breadcrumb */
.breadcrumb-wrapper { border-bottom: 1px solid var(--ds-grey2); padding: 10px 0; font-size: 13px; }
/* Links */
a:focus { outline: 2px solid var(--ds-blue); outline-offset: 2px; }
/* Hide default homepage WC output (replaced by our custom sections) */
.woocommerce.page-template-default .site-main > .woocommerce { display: none; }

/* Hide the WooCommerce shop grid that appears below the newsletter on the front page */
.home .site-main > .woocommerce,
.page-id-8 .site-main > .woocommerce,
.woocommerce-shop .site-main > .woocommerce > .woocommerce-notices-wrapper ~ *,
body.woocommerce .ds-newsletter ~ .site-main .woocommerce { display: none !important; }
