:root {
  --dm-primary: #c72125;
  --dm-primary-soft: #fdecea;
  --dm-highlight: #fcc904;
  --dm-hot: #c72125;
  --dm-text: #111111;
  --dm-muted: #6b7280;
  --dm-border: #eeeeee;
  --dm-bg: #ffffff;
  --dm-bg-soft: #ffffff;
  --dm-dark: #111827;
  --dm-font: "Mulish", system-ui, sans-serif;
  --dm-container: 1280px;
  --dm-radius: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--dm-font) !important;
  color: var(--dm-text);
  background: var(--dm-bg);
  font-size: 15px;
  line-height: 1.6;
}

body.ast-inherit-site-logo-transparent .main-header-bar,
#masthead,
.ast-primary-header-bar,
.ast-mobile-header-wrap,
.ast-above-header-bar,
.ast-below-header-bar,
.site-header,
header.site-header,
.site-footer,
footer.site-footer,
.ast-footer-overlay,
.ast-small-footer,
.ast-footer-overlay-wrap {
  display: none !important;
}

.dm-container {
  width: min(100% - 32px, var(--dm-container));
  margin-inline: auto;
}

/* Top bar */
.dm-topbar {
  background: #1e1e1e;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}
.dm-topbar a { color: #fff; text-decoration: none; }
.dm-topbar a:hover { opacity: .85; }
.dm-topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 34px;
  flex-wrap: wrap;
}
.dm-topbar__left,
.dm-topbar__right {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.dm-topbar__tagline {
  color: rgba(255,255,255,.92);
  font-weight: 500;
  letter-spacing: .01em;
}

/* Header */
.dm-header {
  background: #fff;
  border-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 var(--dm-border);
}
.dm-header__row {
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
}

.dm-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  max-width: 300px;
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.dm-logo__img {
  display: block;
  width: auto;
  max-width: 280px;
  height: 64px;
  object-fit: contain;
  object-position: center center;
}

/* Search bar — Doctor Mobile style */
.dm-search {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--dm-primary);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.dm-search__cats {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  border-right: 1px solid #e5e7eb;
  background: #fff;
}
.dm-search__cats select {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23333' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E")
    no-repeat right 12px center;
  padding: 0 28px 0 14px;
  min-width: 140px;
  max-width: 170px;
  height: 100%;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  outline: none;
}
.dm-search input[type="search"] {
  flex: 1;
  border: 0;
  min-width: 0;
  padding: 0 14px;
  font: inherit;
  font-size: 14px;
  outline: none;
  background: transparent;
  color: #111;
}
.dm-search input[type="search"]::placeholder {
  color: #9ca3af;
}
.dm-search button {
  border: 0;
  background: var(--dm-primary);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 0 22px;
  cursor: pointer;
  white-space: nowrap;
}
.dm-search button:hover {
  filter: brightness(0.95);
}

/* Help / Account / Cart meta blocks */
.dm-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.dm-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.dm-meta__icon {
  position: relative;
  display: grid;
  place-items: center;
  color: #222;
  flex-shrink: 0;
}
.dm-meta__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.15;
}
.dm-meta__text small {
  color: #888;
  font-size: 12px;
  font-weight: 500;
}
.dm-meta__text strong {
  color: #222;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}
.dm-meta:first-child .dm-meta__text strong {
  color: var(--dm-primary);
}
.dm-cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--dm-hot);
  color: #fff;
  border-radius: 999px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
  font-style: normal;
  line-height: 1;
}

/* legacy action classes unused */
.dm-action { display: none; }

.dm-navstrip {
  background: #fff;
  color: #222;
  border-top: 1px solid var(--dm-border);
  border-bottom: 1px solid var(--dm-border);
}
.dm-navstrip__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
}
.dm-cats { position: relative; flex: 0 0 auto; }
.dm-cats__toggle {
  height: 100%;
  min-height: 50px;
  border: 0;
  background: transparent;
  color: #222;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
  padding: 0 14px 0 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.dm-cats__burger {
  width: 18px;
  height: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}
.dm-cats__burger::before,
.dm-cats__burger::after,
.dm-cats__burger {
  background: transparent;
}
.dm-cats__burger {
  box-shadow:
    inset 0 0 0 0 transparent,
    0 0 0 0 transparent;
  background:
    linear-gradient(#222, #222) 0 0 / 100% 2px no-repeat,
    linear-gradient(#222, #222) 0 6px / 100% 2px no-repeat,
    linear-gradient(#222, #222) 0 12px / 100% 2px no-repeat;
}
.dm-cats__chev {
  opacity: .7;
  margin-left: 2px;
}
.dm-cats__panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #fff;
  color: var(--dm-text);
  border: 1px solid var(--dm-border);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  z-index: 120;
}
.dm-cats__panel ul { list-style: none; margin: 0; padding: 8px 0; }
.dm-cats__panel a {
  display: block;
  padding: 10px 16px;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}
.dm-cats__panel a:hover { background: var(--dm-primary-soft); color: var(--dm-primary); }

.dm-primary-nav {
  flex: 1;
  display: flex;
  align-items: center;
  overflow-x: auto;
  min-width: 0;
}
.dm-primary-nav ul {
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.dm-primary-nav a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0;
  font-size: 14px;
  padding: 14px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dm-primary-nav a svg { opacity: .55; }
.dm-primary-nav a:hover { color: var(--dm-primary); }

.dm-deal-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dm-primary);
  color: #fff !important;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 16px 10px 18px;
  border-radius: 999px 6px 6px 999px;
  margin-left: auto;
  white-space: nowrap;
}
.dm-deal-btn span {
  background: #fff;
  color: var(--dm-primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 3px 7px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.3);
}
.dm-deal-btn:hover { filter: brightness(0.96); }

/* legacy action classes unused */
.dm-action { display: none; }

/* Homepage */
.dm-home { background: var(--dm-bg-soft); padding-bottom: 40px; }

.dm-site-content,
.dm-site-content__inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.dm-hero-row {
  width: min(100% - 32px, var(--dm-container));
  margin: 18px auto 24px;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 220px;
  gap: 14px;
  align-items: stretch;
}

.dm-hero-cats {
  background: #fff;
  border: 1px solid var(--dm-border);
  border-radius: 14px;
  padding: 14px 0 10px;
  display: flex;
  flex-direction: column;
}
.dm-hero-cats__title {
  display: block;
  padding: 4px 16px 12px;
  font-size: 14px;
  font-weight: 800;
  color: var(--dm-primary);
}
.dm-hero-cats ul {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.dm-hero-cats a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  color: var(--dm-text);
  text-decoration: none;
	font-weight: 600;
  font-size: 13px;
}
.dm-hero-cats a:hover { background: var(--dm-primary-soft); color: var(--dm-primary); }
.dm-hero-cats a span {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--dm-primary-soft);
  color: var(--dm-primary);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
}
.dm-hero-cats__all {
  margin: 8px 16px 6px;
  text-align: center;
  border: 1px solid var(--dm-border);
  border-radius: 999px;
  padding: 8px 10px !important;
  font-weight: 800 !important;
  color: var(--dm-primary) !important;
}

.dm-hero {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 340px;
  background: #0b1b33;
}
.dm-hero__slide {
  display: none;
  min-height: 340px;
  padding: 42px 48px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, color-mix(in srgb, var(--dm-hero-accent, #c72125) 70%, transparent), transparent 42%),
    linear-gradient(120deg, #1a0a0a, #4a1515 50%, var(--dm-hero-accent, #c72125));
}
.dm-hero__slide.is-active { display: grid; align-content: center; gap: 10px; }
.dm-hero__eyebrow {
  margin: 0;
  display: inline-flex;
  width: fit-content;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.dm-hero__slide h1 {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: .02em;
  max-width: 14ch;
  line-height: 1.1;
}
.dm-hero__slide p { margin: 0; max-width: 38ch; opacity: .92; font-weight: 500; }
.dm-hero__slide > a {
  display: inline-flex;
  margin-top: 8px;
  width: fit-content;
  background: var(--dm-highlight);
  color: #111;
  text-decoration: none;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 999px;
  letter-spacing: .04em;
}
.dm-hero__dots {
  position: absolute;
  left: 48px;
  bottom: 20px;
  display: flex;
  gap: 8px;
}
.dm-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
}
.dm-hero__dot.is-active { background: #fff; }

.dm-hero-side {
  display: grid;
  gap: 14px;
}
.dm-hero-side__card {
  border-radius: 14px;
  padding: 22px 18px;
  text-decoration: none;
  color: #fff;
  display: grid;
  align-content: end;
  gap: 4px;
  min-height: 160px;
}
.dm-hero-side__card span {
  width: fit-content;
  background: var(--dm-hot);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.dm-hero-side__card strong { font-size: 20px; font-weight: 800; }
.dm-hero-side__card em { font-style: normal; opacity: .9; font-size: 13px; font-weight: 600; }
.dm-hero-side__card--deal {
  background: linear-gradient(145deg, #7f1d1d, #dc2626 60%, #f59e0b);
}
.dm-hero-side__card--repair {
  background: linear-gradient(145deg, #0f172a, #c72125);
}

.dm-section { margin: 28px auto; width: min(100% - 32px, var(--dm-container)); }
.dm-section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  margin-bottom: 16px;
}
.dm-section__head h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .02em;
}
.dm-section__head a {
  color: var(--dm-primary);
  font-weight: 800;
  text-decoration: none;
  font-size: 13px;
}

.dm-cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.dm-cat-card {
  background: #fff;
  border: 1px solid var(--dm-border);
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, transform .2s;
}
.dm-cat-card:hover {
  border-color: var(--dm-primary);
  transform: translateY(-2px);
}
.dm-cat-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  border-radius: 14px;
  background: var(--dm-primary-soft);
  color: var(--dm-primary);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
}
.dm-cat-card strong { display: block; font-size: 13px; font-weight: 800; }

.dm-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.dm-brand-card {
  min-height: 110px;
  border-radius: 12px;
  padding: 22px;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: linear-gradient(145deg, #4a1515, var(--dm-primary));
  font-weight: 800;
}
.dm-brand-card span { opacity: .85; font-size: 12px; font-weight: 600; }
.dm-brand-card:nth-child(2) { background: linear-gradient(145deg, #1f2937, #374151); }
.dm-brand-card:nth-child(3) { background: linear-gradient(145deg, #7f1d1d, #b91c1c); }
.dm-brand-card:nth-child(4) { background: linear-gradient(145deg, #14532d, #15803d); }

.dm-products-wrap {
  background: #fff;
  border: 1px solid var(--dm-border);
  border-radius: 14px;
  padding: 18px;
}
.dm-products-wrap .products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.dm-products-wrap .products::before,
.dm-products-wrap .products::after {
  display: none !important;
  content: none !important;
}
.dm-products-wrap .product,
.dm-products-wrap ul.products li.product,
ul.products.columns-4 li.product {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  float: none !important;
  clear: none !important;
  background: #fff;
  border: 1px solid var(--dm-border);
  border-radius: 12px;
  padding: 12px;
  position: relative;
  transition: box-shadow .2s;
}
ul.products li.product:hover {
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
}
ul.products li.product img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: var(--dm-bg-soft);
}
ul.products li.product .woocommerce-loop-product__title {
  font-size: 14px !important;
  font-weight: 700 !important;
  margin: 10px 0 6px !important;
}
ul.products li.product .price {
  color: var(--dm-primary) !important;
  font-weight: 800 !important;
  font-size: 15px !important;
}
ul.products li.product .button,
ul.products li.product .added_to_cart {
  background: var(--dm-primary) !important;
  color: #fff !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
  letter-spacing: .04em;
  border: 0 !important;
  padding: 10px 14px !important;
}

.dm-installments {
  display: grid;
  gap: 2px;
  margin: 4px 0 10px;
  font-size: 11px;
  color: var(--dm-muted);
  line-height: 1.35;
}
.dm-installments em {
  font-style: normal;
  font-weight: 800;
  color: var(--dm-text);
  text-transform: uppercase;
}

.onsale {
  background: var(--dm-hot) !important;
  border-radius: 4px !important;
  font-weight: 800 !important;
}

/* Missing image placeholder */
ul.products li.product .woocommerce-loop-product__link {
  display: block;
  min-height: 160px;
  background:
    linear-gradient(180deg, #f3f4f6, #e5e7eb);
  border-radius: 8px;
}
.woocommerce img.woocommerce-placeholder,
.woocommerce-product-gallery img.woocommerce-placeholder {
  background: #eef2f7 !important;
}

/* Shop archive */
.woocommerce-products-header__title,
.ast-woo-shop-archive .page-title {
  font-weight: 800 !important;
  letter-spacing: .02em;
}
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 16px;
}
.woocommerce-ordering select {
  border: 1px solid var(--dm-border);
  border-radius: 8px;
  padding: 8px 12px;
  font-family: var(--dm-font);
}

/* Single product */
.single-product div.product .summary .price {
  color: var(--dm-primary) !important;
  font-weight: 800 !important;
  font-size: 24px !important;
}
.single-product .single_add_to_cart_button {
  background: var(--dm-primary) !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
  letter-spacing: .04em !important;
  padding: 14px 28px !important;
}
.single-product .dm-installments {
  font-size: 13px;
  margin: 8px 0 16px;
}

/* Content width for shop — aligned to 1410px site grid (see ipettah-match.css) */
.woocommerce-shop #content .ast-container,
.tax-product_cat #content .ast-container,
.single-product #content .ast-container {
  width: min(100%, var(--dm-container));
  max-width: 1410px;
  margin-inline: auto;
  padding: 24px 30px 48px !important;
  box-sizing: border-box;
}


/* Content pages */
.dm-page {
  width: min(100% - 32px, 920px);
  margin: 28px auto 56px;
  background: #fff;
  border: 1px solid var(--dm-border);
  border-radius: 14px;
  padding: 28px 32px;
}
.dm-page h1 { margin-top: 0; font-weight: 800; }
.dm-page h2, .dm-page h3 { font-weight: 800; }
.dm-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
}
.dm-steps article {
  background: var(--dm-primary-soft);
  border-radius: 12px;
  padding: 16px;
}
.dm-steps strong { display: block; margin-bottom: 6px; color: var(--dm-primary); }
.dm-locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
.dm-locations article {
  border: 1px solid var(--dm-border);
  border-radius: 12px;
  padding: 16px;
}

/* Footer */
.dm-trust {
  background: #fff;
  border-top: 1px solid var(--dm-border);
  border-bottom: 1px solid var(--dm-border);
  padding: 28px 0;
}
.dm-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dm-trust__item strong {
  display: block;
  font-weight: 800;
  margin-bottom: 4px;
}
.dm-trust__item span { color: var(--dm-muted); font-size: 13px; }

.dm-footer__main {
  background: #0f172a;
  color: #e5e7eb;
  padding: 40px 0 28px;
}
.dm-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 24px;
}
.dm-footer__brand { font-size: 18px; color: #fff; display: block; margin-bottom: 8px; }
.dm-footer a { color: #cbd5e1; text-decoration: none; }
.dm-footer a:hover { color: #fff; }
.dm-footer ul { list-style: none; margin: 10px 0 0; padding: 0; }
.dm-footer li { margin: 6px 0; }
.dm-footer__help a { color: var(--dm-highlight); font-weight: 800; font-size: 18px; }
.dm-footer__bar {
  background: #020617;
  color: #94a3b8;
  font-size: 13px;
  padding: 14px 0 70px;
}
.dm-footer__bar p { margin: 0; }

.dm-mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid var(--dm-border);
  z-index: 200;
  grid-template-columns: repeat(4, 1fr);
}
.dm-mobile-bar a {
  text-align: center;
  padding: 10px 6px;
  text-decoration: none;
  color: var(--dm-text);
  font-size: 12px;
  font-weight: 800;
}

/* Astra/Woo content spacing under custom header */
#content,
.site-content {
  padding-top: 0 !important;
}
.ast-container {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (max-width: 1100px) {
  .dm-hero-row {
    grid-template-columns: 1fr;
  }
  .dm-hero-cats { display: none; }
  .dm-hero-side {
    grid-template-columns: 1fr 1fr;
  }
  .dm-meta__text small { display: none; }
  .dm-search__cats select { min-width: 110px; max-width: 130px; padding-left: 10px; }
}

@media (max-width: 1024px) {
  .dm-header__row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .dm-header__actions {
    justify-content: space-between;
    width: 100%;
  }
  .dm-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .dm-brand-grid { grid-template-columns: repeat(2, 1fr); }
  .dm-products-wrap .products,
  ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .dm-trust__grid,
  .dm-footer__grid,
  .dm-steps,
  .dm-locations { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .dm-topbar__inner { justify-content: center; text-align: center; }
  .dm-topbar__tagline { font-size: 11px; }
  .dm-logo { max-width: 200px; }
  .dm-logo__img { max-width: 180px; height: 56px; }
  .dm-search__cats { display: none; }
  .dm-meta__text strong { font-size: 12px; }
  .dm-deal-btn { display: none; }
  .dm-primary-nav { display: none; }
  .dm-hero { min-height: 280px; }
  .dm-hero__slide { padding: 32px 22px; min-height: 280px; }
  .dm-hero__dots { left: 22px; }
  .dm-hero-side { grid-template-columns: 1fr; }
  .dm-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .dm-brand-grid,
  .dm-trust__grid,
  .dm-footer__grid,
  .dm-steps,
  .dm-locations { grid-template-columns: 1fr; }
  .dm-products-wrap .products,
  ul.products { grid-template-columns: 1fr 1fr !important; }
  .dm-mobile-bar { display: grid; }
}
/* ========== iPettah multi-store lookalike (USi) ========== */
:root {
  --ip-ink: #212529;
  --ip-muted: #8D979E;
  --ip-line: #E5E8EC;
  --ip-bg: #ffffff;
  --ip-accent: #c72125;
  --ip-accent-2: #a01b1f;
  --ip-logo-red: #c72125;
  --ip-warm: #c45c28;
  --ip-yellow: #ffe603;
  --ip-text: #515D66;
  --dm-container: 1410px;
  --dm-font: "Bai Jamjuree", Mulish, system-ui, sans-serif;
}

body.home,
body,
.site,
.site-content,
.dm-site-content,
.dm-site-content__inner,
.ast-container,
#content,
#page {
  background: #ffffff !important;
  font-family: var(--dm-font), Mulish, system-ui, sans-serif;
  color: var(--ip-text);
}

.ip-chrome .dm-topbar,
.ip-chrome .dm-header,
.ip-chrome .dm-navstrip { display: none !important; }

.ip-chrome .ip-logo,
.ip-chrome .dm-logo {
  background: transparent !important;
  border-radius: 0;
  padding: 0;
  max-width: 200px;
  box-shadow: none;
  line-height: 0;
}
.ip-chrome .dm-logo__img {
  max-width: 190px;
  height: 58px;
  width: auto;
  object-fit: contain;
  background: transparent !important;
  mix-blend-mode: normal;
}

.ip-topbar {
  background: #ffffff;
  color: #333;
  font-size: 13px;
  border-bottom: 1px solid var(--ip-line);
}
.ip-topbar a { color: #333; text-decoration: none; }
.ip-topbar a:hover { color: var(--ip-accent); }
.ip-topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 34px;
  flex-wrap: wrap;
}
.ip-topbar__right { display: flex; gap: 18px; flex-wrap: wrap; }

.ip-header { background: #fff; }
.ip-header__row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 24px;
  padding: 12px 0;
}
.ip-search {
  display: block;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  min-height: 0;
}
.ip-search input[type="search"],
.ip-search select {
  border: 0;
  outline: none;
  box-shadow: none;
  font: inherit;
  font-size: 14px;
  padding: 0 14px;
  background: #fff;
  color: #333;
  -webkit-tap-highlight-color: transparent;
}
.ip-search input[type="search"]:focus,
.ip-search select:focus {
  outline: none;
  box-shadow: none;
}
.ip-search select {
  border-right: 1px solid #e5e5e5;
  color: #555;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 28px;
}
.ip-search .ip-search__submit {
  border: 0;
  background: var(--ip-accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 0 22px;
  cursor: pointer;
  letter-spacing: .02em;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}
.ip-search .ip-search__submit:hover { filter: brightness(.95); }

.ip-chrome button:focus,
.ip-chrome a:focus,
.ip-chrome input:focus,
.ip-chrome select:focus {
  outline: none;
  box-shadow: none;
}

.ip-header__actions {
  display: flex;
  gap: 22px;
  align-items: center;
}
.ip-act {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ip-ink);
  position: relative;
}
.ip-act__icon {
  display: grid;
  place-items: center;
  color: #333;
  flex-shrink: 0;
}
.ip-act__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.ip-act__label { font-size: 11px; color: var(--ip-muted); font-weight: 500; }
.ip-act strong { font-size: 13px; font-weight: 800; color: #222; }
.ip-act__badge {
  position: absolute;
  top: -6px;
  left: 18px;
  background: var(--ip-accent);
  color: #fff;
  border-radius: 999px;
  min-width: 18px;
  height: 18px;
  font-size: 10px;
  font-weight: 800;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  z-index: 1;
}

.ip-nav {
  background: #ffffff;
  color: #111;
  border-top: 1px solid var(--ip-line);
  border-bottom: 1px solid var(--ip-line);
}
.ip-nav__inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  column-gap: calc(var(--header-item-mg, 15px) * 2);
  min-height: 48px;
}
.ip-browse { position: relative; z-index: 40; width: 270px; max-width: 100%; flex-shrink: 0; }
.ip-browse__btn,
button.ip-browse__btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #212529 !important;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  padding: 12px 20px !important;
  cursor: pointer;
  min-height: 48px;
  white-space: nowrap;
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  transition: color .2s ease;
}
/* Red top line — scales in when open (iPettah) */
.ip-browse__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-top: 2px solid #c72125;
  transform: scale(0, 1);
  transform-origin: center;
  transition: transform .2s ease;
  pointer-events: none;
}
.ip-browse.is-open .ip-browse__btn::before,
.ip-browse__btn[aria-expanded="true"]::before {
  transform: scale(1, 1);
}
/* Right divider */
.ip-browse__btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  border-left: 1px solid #E5E8EC;
  height: 19px;
  margin: auto 0;
  pointer-events: none;
}
.ip-browse__btn:hover,
.ip-browse__btn:focus,
.ip-browse__btn:focus-visible,
.ip-browse__btn:active,
.ip-browse.is-open .ip-browse__btn,
.ip-browse__btn[aria-expanded="true"],
button.ip-browse__btn:hover,
button.ip-browse__btn:focus,
button.ip-browse__btn:focus-visible,
button.ip-browse__btn:active,
.ip-browse.is-open button.ip-browse__btn,
button.ip-browse__btn[aria-expanded="true"] {
  background: transparent !important;
  color: #c72125 !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  width: 100% !important;
  height: auto !important;
}
.ip-browse__icon {
  display: inline-block;
  width: 18px;
  height: 14px;
  flex-shrink: 0;
  background:
    linear-gradient(currentColor, currentColor) 0 0/100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 6px/100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 12px/100% 2px no-repeat;
}
.ip-browse__panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 270px;
  background: #fff;
  color: #515D66;
  border: 0;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0,0,0,.08);
  z-index: 200;
  padding: 12px 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.ip-browse.is-open .ip-browse__panel,
.ip-browse__panel.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.ip-browse__panel ul { list-style: none; margin: 0; padding: 0; }
.ip-browse__panel li { position: relative; }
.ip-browse__panel li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  border-top: 1px solid #E5E8EC;
  pointer-events: none;
}
.ip-browse__panel a {
  display: block;
  padding: 10px 20px;
  color: #212529;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
  transition: color .15s ease, background-color .15s ease;
  position: relative;
  z-index: 1;
}
.ip-browse__panel a:hover,
.ip-browse__panel a:focus,
.ip-browse__panel a:focus-visible,
.ip-browse__panel a:active {
  outline: none !important;
  box-shadow: none !important;
  background: #c72125 !important;
  color: #ffffff !important;
}
.ip-browse__panel li:hover::after {
  display: none;
}

.ip-menu { flex: 1; overflow-x: auto; display: flex; align-items: stretch; }
.ip-menu ul {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  align-items: stretch;
}
.ip-menu a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ip-menu li.is-active a,
.ip-menu a:hover { color: var(--ip-accent); }
.ip-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  display: inline-block;
  margin-left: 2px;
}
.ip-promo {
  font-size: 12px;
  color: #444;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding-left: 8px;
}
.ip-promo__pct {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ip-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}
.ip-promo strong { color: var(--ip-accent); }

/* Home */
.ip-home { background: #ffffff; padding-bottom: 48px; }
.ip-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(260px, .9fr);
  gap: 16px;
  margin: 16px auto 8px;
  align-items: stretch;
}
.ip-hero__slider {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 380px;
  background: #c45c28;
}
.ip-hero__slide {
  display: none;
  min-height: 380px;
  padding: 48px 44px;
  color: #fff;
  position: relative;
  align-content: center;
}
.ip-hero__slide.is-active { display: grid; }
.ip-hero__copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  max-width: 340px;
  padding: 18px 20px 18px 0;
}
.ip-hero__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .95;
}
.ip-hero__slide h1 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  max-width: 11ch;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.ip-hero__slide p { margin: 0; font-size: 15px; opacity: .95; font-weight: 600; text-shadow: 0 1px 8px rgba(0,0,0,.25); }
.ip-hero__copy > a {
  margin-top: 12px;
  width: fit-content;
  background: #fff;
  color: #222;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  padding: 11px 18px;
  border-radius: 2px;
}

.ip-hero__slide--accessories {
  background:
    linear-gradient(90deg, rgba(60,25,10,.55) 0%, rgba(60,25,10,.2) 40%, transparent 65%),
    linear-gradient(115deg, #7a3a18 0%, #b45309 40%, #d97706 78%, #f59e0b 100%);
}
.ip-hero__slide--accessories::after {
  content: "";
  position: absolute;
  inset: 0 0 0 42%;
  background:
    radial-gradient(ellipse 120px 160px at 55% 70%, #166534 0 40%, transparent 41%),
    radial-gradient(ellipse 90px 90px at 70% 35%, #fbbf24 0 35%, transparent 36%),
    radial-gradient(ellipse 70px 70px at 85% 55%, #ef4444 0 40%, transparent 41%),
    radial-gradient(ellipse 50px 80px at 48% 45%, #fef3c7 0 40%, transparent 41%);
  opacity: .85;
  pointer-events: none;
}
.ip-hero__slide--accessories .ip-hero__eyebrow { color: #fde68a; }
.ip-hero__slide--kitchen {
  background: linear-gradient(120deg, #0f766e, #14b8a6 55%, #5eead4);
}
.ip-hero__slide--trending {
  background: linear-gradient(120deg, #7c1d1d, #c72125 55%, #fb923c);
}

.ip-hero__dots {
  position: absolute;
  left: 44px;
  bottom: 20px;
  display: flex;
  gap: 8px;
  z-index: 3;
}
.ip-hero__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.4);
  cursor: pointer;
}
.ip-hero__dots button.is-active { background: #fff; }

.ip-hero__side { display: grid; gap: 16px; grid-template-rows: 1fr 1fr; }
.ip-banner {
  border-radius: 8px;
  padding: 22px 24px;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: flex-end;
  min-height: 180px;
  position: relative;
  overflow: hidden;
}
.ip-banner__copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2px;
}
.ip-banner strong { font-size: 24px; font-weight: 800; line-height: 1.1; }
.ip-banner span { font-weight: 700; font-size: 15px; }
.ip-banner em { font-style: normal; font-size: 13px; opacity: .9; margin-top: 4px; }

.ip-banner--school {
  background:
    radial-gradient(circle at 85% 60%, rgba(255,255,255,.15), transparent 40%),
    linear-gradient(135deg, #8b4518 0%, #b45309 45%, #d97706 100%);
}
.ip-banner--school::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -20px;
  width: 140px;
  height: 140px;
  background:
    linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 16px;
  transform: rotate(12deg);
  opacity: .55;
}
.ip-banner--tools {
  background:
    radial-gradient(circle at 80% 40%, rgba(255,255,255,.12), transparent 45%),
    linear-gradient(135deg, #5c2a0a 0%, #9a3412 50%, #c2410c 100%);
}
.ip-banner--tools::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 10px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fdba74, #ea580c 60%, #7c2d12);
  opacity: .7;
}

.ip-section { margin: 28px auto; }
.ip-section__head,
.ip-deals__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  margin-bottom: 16px;
}
.ip-section__head h2,
.ip-deals__head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .01em;
}
.ip-section__head a,
.ip-deals__cta {
  color: var(--ip-accent);
  font-weight: 800;
  text-decoration: none;
  font-size: 13px;
}

.ip-cat-tiles {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px 10px;
  padding: 8px 0 4px;
}
.ip-cat-tile {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 8px 2px;
  text-decoration: none;
  color: inherit;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 8px;
  transition: transform .2s;
}
.ip-cat-tile:hover { transform: translateY(-3px); }
.ip-cat-tile__circle {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #f5f5f5;
  border: 1px solid #ececec;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 10px;
  box-sizing: border-box;
}
.ip-cat-tile__circle.has-img {
  padding: 12px;
  background: #f7f7f7;
}
.ip-cat-tile__circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ip-cat-tile__glyph {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff, #e5e5e5);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
}
.ip-cat-tile__circle--bathware { background: radial-gradient(circle at 40% 35%, #fff, #e0f2fe); }
.ip-cat-tile__circle--clocks-watches { background: radial-gradient(circle at 40% 35%, #fff, #fef3c7); }
.ip-cat-tile__circle--electronics { background: radial-gradient(circle at 40% 35%, #fff, #e0e7ff); }
.ip-cat-tile__circle--glassware-ceramics { background: radial-gradient(circle at 40% 35%, #fff, #fce7f3); }
.ip-cat-tile__circle--home-appliances { background: radial-gradient(circle at 40% 35%, #fff, #dcfce7); }
.ip-cat-tile__circle--kids-baby { background: radial-gradient(circle at 40% 35%, #fff, #ffedd5); }
.ip-cat-tile__circle--kitchenware { background: radial-gradient(circle at 40% 35%, #fff, #fee2e2); }
.ip-cat-tile__circle--online-trending {
  background: radial-gradient(circle at 50% 45%, #fff 0 28%, #fee2e2 29% 100%);
}
.ip-cat-tile__circle--online-trending .ip-cat-tile__glyph {
  width: 0;
  height: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 18px solid var(--ip-accent);
  margin-top: -4px;
}
.ip-cat-tile__circle--stationery { background: radial-gradient(circle at 40% 35%, #fff, #f3e8ff); }
.ip-cat-tile__circle--tools-gadgets { background: radial-gradient(circle at 40% 35%, #fff, #e2e8f0); }
.ip-cat-tile__circle--toys { background: radial-gradient(circle at 40% 35%, #fff, #fef9c3); }
.ip-cat-tile__count { display: block; color: var(--ip-muted); font-size: 12px; margin: 0; }
.ip-cat-tile strong { font-size: 13px; font-weight: 800; color: #222; }

.ip-deals {
  background: #fff;
  border: 0;
  border-radius: 0;
  padding: 8px 0 0;
}
.ip-deals__head p { margin: 6px 0 0; color: var(--ip-muted); font-size: 13px; }
.ip-deals__head strong { color: var(--ip-accent); }

.ip-products ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}
.ip-products--3 ul.products {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
.ip-products ul.products li.product {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  background: #fff;
  border: 1px solid var(--ip-line);
  border-radius: 4px;
  padding: 12px;
  text-align: left;
}
.ip-products .woocommerce-loop-product__title {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #222 !important;
}
.ip-products .price { color: var(--ip-accent) !important; font-weight: 800 !important; }
.ip-products .price del { color: #999 !important; font-weight: 500 !important; }
.ip-products .button {
  background: #333 !important;
  color: #fff !important;
  border-radius: 2px !important;
  font-weight: 700 !important;
}
.ip-home .dm-installments { display: none !important; }

.ip-payband { margin: 22px auto; }
.ip-payband__inner {
  background: #fff7ed;
  color: #111;
  border: 1px solid #fed7aa;
  text-align: center;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 18px;
  border-radius: 4px;
  font-size: 15px;
}

.ip-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--ip-line);
}
.ip-tabs a {
  text-decoration: none;
  color: #555;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: -1px;
}
.ip-tabs a.is-active,
.ip-tabs a:hover {
  background: transparent;
  border-bottom-color: var(--ip-accent);
  color: var(--ip-accent);
}

.ip-promo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px auto;
}
.ip-promo-card {
  border-radius: 4px;
  padding: 26px 24px;
  text-decoration: none;
  color: #fff;
  display: grid;
  gap: 4px;
  min-height: 150px;
  align-content: end;
  position: relative;
  overflow: hidden;
}
.ip-promo-card--stat {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6 55%, #93c5fd);
}
.ip-promo-card--home {
  background: linear-gradient(135deg, #9a3412, #c2410c 50%, #fb923c);
}
.ip-promo-card--toys {
  background: linear-gradient(135deg, #7c1d1d, #c72125 55%, #fb7185);
}
.ip-promo-card strong { font-size: 22px; font-weight: 800; }
.ip-promo-card span { font-weight: 700; }
.ip-promo-card em { font-style: normal; font-size: 13px; opacity: .9; }

.ip-trust {
  background: #fff;
  border-top: 1px solid var(--ip-line);
  border-bottom: 1px solid var(--ip-line);
  padding: 22px 0;
}
.ip-trust__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.ip-trust__grid strong { display: block; font-size: 12px; font-weight: 800; margin-bottom: 4px; }
.ip-trust__grid span { color: var(--ip-muted); font-size: 12px; }

.ip-footer__main {
  background: #ffffff;
  color: #333;
  padding: 40px 0 28px;
  border-top: 1px solid var(--ip-line);
}
.ip-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 24px;
}
.ip-footer__title {
  display: block;
  color: #111;
  margin-bottom: 12px;
  font-size: 14px;
  letter-spacing: .04em;
  font-weight: 800;
}
.ip-footer a { color: #444; text-decoration: none; }
.ip-footer a:hover { color: var(--ip-accent); }
.ip-footer ul { list-style: none; margin: 0; padding: 0; }
.ip-footer li { margin: 8px 0; }
.ip-footer__phones { display: grid; gap: 4px; font-size: 18px; font-weight: 800; }
.ip-footer__phones a { color: var(--ip-accent); }
.ip-newsletter { display: flex; gap: 8px; margin-top: 10px; }
.ip-newsletter input {
  flex: 1;
  border: 1px solid var(--ip-line);
  border-radius: 2px;
  padding: 10px 12px;
  background: #fff;
}
.ip-newsletter button {
  border: 0;
  background: var(--ip-accent);
  color: #fff;
  font-weight: 800;
  border-radius: 2px;
  padding: 10px 14px;
  cursor: pointer;
}
.ip-footer__bar {
  background: #fafafa;
  color: #666;
  padding: 14px 0 70px;
  font-size: 13px;
  border-top: 1px solid var(--ip-line);
}
.ip-footer__bar p { margin: 0; }

@media (max-width: 1200px) {
  .ip-cat-tiles { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .ip-promo { display: none; }
}
@media (max-width: 1100px) {
  .ip-hero { grid-template-columns: 1fr; }
  .ip-hero__side { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .ip-trust__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .ip-header__row { flex-wrap: wrap; }
  .ip-header__actions { justify-content: flex-end; }
  .ip-footer__grid { grid-template-columns: 1fr 1fr; }
  .ip-promo-row { grid-template-columns: 1fr; }
  .ip-products ul.products,
  .ip-products--3 ul.products { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .ip-cat-tiles { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .ip-cat-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ip-trust__grid,
  .ip-footer__grid { grid-template-columns: 1fr; }
  .ip-hero__side { grid-template-columns: 1fr; }
  .ip-search { grid-template-columns: 1fr auto; }
  .ip-search select { display: none; }
  .ip-menu { display: none; }
  .ip-act__text { display: none; }
}
