:root {
  --shima-green: #07944f;
  --shima-green-2: #087e45;
  --shima-green-dark: #075c35;
  --shima-green-soft: #edf8f1;
  --shima-page: #f8fbfa;
  --shima-card: #ffffff;
  --shima-text: #111827;
  --shima-muted: #667085;
  --shima-border: #e3ebe7;
  --shima-border-strong: #d5e2dc;
  --shima-radius: 18px;
  --shima-shadow: 0 10px 34px rgba(15, 23, 42, .045);
  --shima-max: 1440px;
}

html { scroll-behavior: smooth; }
html body.shima-storefront-ui-active {
  margin: 0 !important;
  padding: 0;
  background: var(--shima-page) !important;
  color: var(--shima-text) !important;
  direction: rtl !important;
}
body.shima-storefront-ui-active,
body.shima-storefront-ui-active *,
body.shima-storefront-ui-active *::before,
body.shima-storefront-ui-active *::after { box-sizing: border-box; }
body.shima-storefront-ui-active svg {
  width: 1.35em;
  height: 1.35em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body.shima-storefront-ui-active img { max-width: 100%; height: auto; }
body.shima-storefront-ui-active a { color: inherit; text-decoration: none; }
body.shima-storefront-ui-active button,
body.shima-storefront-ui-active input,
body.shima-storefront-ui-active select,
body.shima-storefront-ui-active textarea { font: inherit; }
body.shima-storefront-ui-active .shima-site-shell {
  min-height: 100vh;
  overflow-x: clip;
  background: linear-gradient(180deg, #fff 0, var(--shima-page) 190px);
}
.shima-container { width: min(var(--shima-max), calc(100% - 64px)); margin-inline: auto; }
.shima-main { padding: 16px 0 36px; }

/* ========================= Header ========================= */
.shima-header {
  position: sticky;
  top: 0;
  z-index: 4000;
  isolation: isolate;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--shima-border);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.shima-header-inner {
  min-height: 74px;
  display: grid;
  grid-template-areas: "logo nav search actions";
  grid-template-columns: 212px minmax(360px, 1fr) minmax(220px, 300px) auto;
  align-items: center;
  gap: 22px;
}
.shima-logo { grid-area: logo; display: flex; align-items: center; width: 205px; min-width: 0; }
.shima-logo img { display: block; width: 100%; height: auto; }
.shima-main-nav {
  grid-area: nav;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 1.8vw, 30px);
  white-space: nowrap;
  font-size: 14px;
  font-weight: 850;
}
.shima-main-nav a {
  position: relative;
  min-height: 74px;
  display: inline-flex;
  align-items: center;
  color: #1f2937;
  transition: color .15s ease;
}
.shima-main-nav a:hover,
.shima-main-nav a.is-active { color: var(--shima-green); }
.shima-main-nav a.is-active::after {
  content: "";
  position: absolute;
  right: 18%;
  left: 18%;
  bottom: 11px;
  height: 2px;
  border-radius: 99px;
  background: var(--shima-green);
}
.shima-search {
  grid-area: search;
  width: min(100%, 242px);
  justify-self: start;
  height: 40px;
  display: flex;
  align-items: center;
  border: 1px solid var(--shima-border-strong);
  border-radius: 14px;
  background: #f8faf9;
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.shima-search:focus-within { border-color: #98c8aa; box-shadow: 0 0 0 3px rgba(7,148,79,.08); }
.shima-search input {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--shima-text);
  padding: 0 12px;
  font-size: 12.5px;
  font-weight: 600;
}
.shima-search input::placeholder { color: #8a94a3; font-size: 12.5px; font-weight: 500; }
.shima-search button {
  flex: 0 0 40px;
  height: 100%;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #0f172a;
  cursor: pointer;
}
.shima-search button svg { width: 19px; height: 19px; }
.shima-header-actions { grid-area: actions; display: flex; align-items: center; gap: 10px; }
.shima-cart-link {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #111827;
}
.shima-cart-link svg { width: 25px; height: 25px; }
.shima-cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  background: var(--shima-green);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  border: 2px solid #fff;
}
.shima-account-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid var(--shima-border);
  border-radius: 14px;
  background: #fff;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}
.shima-account-link svg { width: 19px; height: 19px; }
.shima-mobile-menu-toggle { display: none; }
.shima-mobile-drawer { display: none; }
.shima-drawer-backdrop { display: none; }

/* ========================= Shared buttons ========================= */
.shima-btn {
  min-height: 47px;
  padding: 0 22px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.shima-btn svg { width: 18px; height: 18px; }
.shima-btn-primary {
  color: #fff !important;
  background: linear-gradient(135deg, #07944f 0%, #068847 100%);
  border-color: #07944f;
  box-shadow: 0 9px 20px rgba(7,148,79,.14);
}
.shima-btn-primary:hover { background: #087e45; transform: translateY(-1px); box-shadow: 0 12px 24px rgba(7,148,79,.18); }
.shima-btn-secondary { border: 1.5px solid var(--shima-green); background: #fff; color: var(--shima-green); }
.shima-btn-secondary:hover { background: #f5fbf7; transform: translateY(-1px); }
.shima-btn-white { background: #fff; color: var(--shima-green); border: 0; box-shadow: 0 12px 28px rgba(8,120,63,.14); }
.shima-btn-white:hover { background: #f8fffb; transform: translateY(-1px); }
.shima-btn-white svg, .shima-btn-secondary svg { transform: rotate(180deg); }
.shima-btn-block { width: 100%; min-height: 42px; }

/* ========================= Home hero ========================= */
.shima-hero {
  min-height: 360px;
  display: grid;
  grid-template-columns: 252px minmax(400px, 1.05fr) minmax(360px, .9fr);
  grid-template-areas: "side art copy";
  overflow: hidden;
  border: 1px solid #d9e8de;
  border-radius: 24px;
  background: linear-gradient(135deg, #edf7f0 0%, #dbeee0 100%);
  box-shadow: var(--shima-shadow);
}
.shima-hero-side {
  grid-area: side;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  border-left: 1px solid rgba(7, 148, 79, .08);
  background: rgba(255,255,255,.08);
}
.shima-hero-side-item {
  padding: 24px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(7, 148, 79, .08);
  direction: rtl;
}
.shima-hero-side-item:last-child { border-bottom: 0; }
.shima-hero-side-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--shima-green);
  box-shadow: 0 10px 24px rgba(7,148,79,.08);
}
.shima-hero-side-icon svg { width: 28px; height: 28px; }
.shima-hero-side-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
}
.shima-hero-side-copy strong {
  color: #0f172a;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 950;
}
.shima-hero-side-copy small {
  margin-top: 3px;
  color: #5b6d63;
  font-size: 12px;
  line-height: 1.8;
}
.shima-hero-copy {
  grid-area: copy;
  align-self: center;
  padding: 32px 36px 32px 28px;
  direction: rtl;
  text-align: right;
}
.shima-eyebrow { display: none; }
.shima-hero-copy h1 {
  margin: 0 0 12px;
  color: #076239;
  font-size: clamp(36px, 3.3vw, 58px);
  line-height: 1.28;
  font-weight: 950;
  letter-spacing: -.03em;
}
.shima-hero-copy p {
  margin: 0;
  color: #405149;
  font-size: 16px;
  line-height: 2;
  font-weight: 600;
}
.shima-hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.shima-hero-actions .shima-btn {
  min-width: 190px;
  min-height: 54px;
  padding-inline: 22px;
  font-size: 16px;
}
.shima-hero-actions .shima-btn svg { transform: rotate(180deg); }
.shima-hero-signature {
  margin-top: 18px;
  color: #0d6b40;
  font-size: 26px;
  font-style: italic;
  font-weight: 700;
  opacity: .92;
}
.shima-hero-dots { display: none; }
.shima-hero-art {
  grid-area: art;
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
.shima-hero-art img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.shima-trust-strip {
  min-height: 92px;
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border: 1px solid var(--shima-border);
  border-radius: 18px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 5px 22px rgba(15,23,42,.025);
}
.shima-trust-strip > div {
  min-height: 74px;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--shima-green);
  border-left: 1px solid var(--shima-border);
}
.shima-trust-strip > div:last-child { border-left: 0; }
.shima-trust-strip svg { width: 32px; height: 32px; flex: 0 0 auto; }
.shima-trust-strip span { min-width: 0; display: flex; flex-direction: column; color: var(--shima-text); }
.shima-trust-strip strong { font-size: 15px; line-height: 1.7; font-weight: 900; }
.shima-trust-strip small { margin-top: 2px; color: var(--shima-muted); font-size: 11.5px; line-height: 1.7; }

/* ========================= Sections / category cards ========================= */
.shima-section { margin-top: 22px; }
.shima-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 11px;
}
.shima-section-head h2 { margin: 0; color: #111827; font-size: 19px; line-height: 1.7; font-weight: 950; }
.shima-section-head a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--shima-green);
  font-size: 11.5px;
  font-weight: 850;
  white-space: nowrap;
}
.shima-section-head a svg { width: 14px; height: 14px; transform: rotate(180deg); }
.shima-category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.shima-category-card {
  position: relative;
  min-height: 112px;
  display: grid;
  grid-template-columns: minmax(88px, .72fr) 1.35fr;
  align-items: center;
  overflow: hidden;
  padding: 11px 16px;
  border: 1px solid var(--shima-border);
  border-radius: 15px;
  box-shadow: 0 4px 18px rgba(15,23,42,.022);
  isolation: isolate;
}
.shima-category-tone-1 { background: linear-gradient(135deg,#fff 0,#f8eaea 100%); }
.shima-category-tone-2 { background: linear-gradient(135deg,#fff 0,#eaf4fb 100%); }
.shima-category-tone-3 { background: linear-gradient(135deg,#fff 0,#edf7f1 100%); }
.shima-category-tone-4 { background: linear-gradient(135deg,#fff 0,#f7f0e7 100%); }
.shima-category-name {
  grid-column: 1;
  position: relative;
  z-index: 3;
  align-self: center;
  color: #151c28;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 950;
}
.shima-category-media {
  grid-column: 2;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shima-category-media img {
  width: 100%;
  height: 86px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .18s ease;
}
.shima-category-card:hover .shima-category-media img { transform: scale(1.045); }
.shima-category-arrow {
  position: absolute;
  z-index: 4;
  left: 12px;
  bottom: 11px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #374151;
}
.shima-category-arrow svg { width: 14px; height: 14px; transform: rotate(180deg); }

/* ========================= Product cards ========================= */
.shima-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.shima-product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--shima-border);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 5px 22px rgba(15,23,42,.03);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.shima-product-card:hover { transform: translateY(-2px); border-color: #cfe0d7; box-shadow: 0 12px 28px rgba(15,23,42,.055); }
.shima-product-image {
  position: relative;
  aspect-ratio: 1.55 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
  overflow: hidden;
  background: linear-gradient(180deg, #fcfdfd, #f8faf9);
}
.shima-product-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .18s ease; }
.shima-product-card:hover .shima-product-image img { transform: scale(1.035); }
.shima-stock-pill {
  position: absolute;
  z-index: 3;
  top: 9px;
  right: 9px;
  padding: 5px 9px;
  border-radius: 99px;
  background: #fff1f2;
  color: #be123c;
  font-size: 9px;
  font-weight: 900;
}
.shima-product-card-body { display: flex; flex: 1; flex-direction: column; padding: 11px; }
.shima-product-card h3,
.shima-product-card h2 {
  margin: 0 0 6px;
  min-height: 45px;
  color: #111827;
  font-size: 12.5px;
  line-height: 1.8;
  font-weight: 850;
}
.shima-product-price {
  margin-bottom: 9px;
  color: var(--shima-green);
  font-size: 11px;
  line-height: 1.7;
  font-weight: 850;
}
.shima-product-price span { color: var(--shima-green); }
.shima-product-price strong { font-weight: 950; }
.shima-product-price small { color: var(--shima-green); font-size: 10px; font-weight: 850; }
.shima-product-card .shima-btn { margin-top: auto; }
.shima-product-card .shima-btn svg { width: 17px; height: 17px; }

/* ========================= Order steps ========================= */
.shima-order-steps {
  margin-top: 16px;
  padding: 18px 26px;
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
  gap: 22px;
  border: 1px solid #dbe9e1;
  border-radius: 18px;
  background: linear-gradient(135deg, #eef9f3 0%, #f6fbf8 100%);
}
.shima-order-steps-title h2 { margin: 0; color: #0a5638; font-size: 17px; line-height: 1.6; font-weight: 950; }
.shima-order-steps-title p { margin: 6px 0 0; color: #64748b; font-size: 12px; line-height: 1.9; font-weight: 500; }
.shima-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.shima-steps-grid > div {
  position: relative;
  min-height: 78px;
  display: grid;
  grid-template-columns: 42px 40px 1fr;
  align-items: center;
  gap: 12px;
}
.shima-steps-grid > div:not(:last-child)::after {
  content: "←";
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--shima-green);
  font-size: 22px;
  font-weight: 900;
}
.shima-step-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d3eedb;
  color: #0b633c;
  font-size: 16px;
  font-weight: 950;
}
.shima-steps-grid svg { width: 34px; height: 34px; color: var(--shima-green); }
.shima-step-copy { display: flex; flex-direction: column; min-width: 0; }
.shima-step-copy strong { color: #0f172a; font-size: 15px; line-height: 1.8; font-weight: 900; }
.shima-step-copy small { margin-top: 2px; color: #64748b; font-size: 11px; line-height: 1.85; font-weight: 500; }

/* ========================= Breadcrumb ========================= */
.shima-breadcrumbs {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7b8794;
  font-size: 11px;
  overflow: hidden;
}
.shima-breadcrumbs strong { min-width: 0; color: #475569; font-size: 13.5px; font-weight: 800; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ========================= Product detail ========================= */
.shima-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  direction: ltr;
}
.shima-product-gallery,
.shima-product-summary { direction: rtl; border: 1px solid var(--shima-border); border-radius: 18px; background: #fff; box-shadow: var(--shima-shadow); }
.shima-product-gallery { padding: 14px; }
.shima-product-main-image {
  min-height: 430px;
  height: min(47vw, 530px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(180deg, #fdfefe, #f7faf9);
}
.shima-product-main-image img { width: 100%; height: 100%; object-fit: contain; transition: opacity .15s ease; }
.shima-product-thumbs { display: flex; gap: 10px; margin-top: 14px; overflow-x: auto; padding-bottom: 2px; scrollbar-width: thin; }
.shima-product-thumb {
  flex: 0 0 124px;
  height: 94px;
  padding: 7px;
  border: 1px solid var(--shima-border);
  border-radius: 14px;
  background: #f6f8f7;
  cursor: pointer;
}
.shima-product-thumb.is-active { border: 2px solid var(--shima-green); }
.shima-product-thumb img { width: 100%; height: 100%; object-fit: contain; }
.shima-product-summary { padding: 28px 30px 26px; }
.shima-product-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.shima-badge {
  min-height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 900;
}
.shima-badge svg { width: 16px; height: 16px; }
.shima-badge-success { color: #078a4b; background: #e9f8ef; }
.shima-badge-primary { color: #fff; background: var(--shima-green); }
.shima-product-summary h1 { margin: 0 0 14px; color: #0f172a; font-size: clamp(31px, 2.45vw, 42px); line-height: 1.38; font-weight: 950; letter-spacing: -.022em; }
.shima-summary-price { margin-bottom: 8px; color: var(--shima-green); font-size: 20px; font-weight: 900; display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px; }
.shima-summary-price strong { font-size: 31px; font-weight: 950; line-height: 1.2; }
.shima-summary-price small { color: #475467; font-size: 14px; font-weight: 800; }
.shima-min-order { color: #334155; font-size: 16px; font-weight: 750; }
.shima-short-description { margin: 16px 0 14px; color: #5b6678; font-size: 16px; line-height: 2.05; }
.shima-short-description p { margin: 0; }

/* WooCommerce add-to-cart normalization */
.shima-add-to-cart-wrap { margin-top: 12px; }
.shima-add-to-cart-wrap .product_meta,
.shima-add-to-cart-wrap .woocommerce-variation-description,
.shima-add-to-cart-wrap .reset_variations { display: none !important; }
.shima-add-to-cart-wrap form.cart { margin: 0 !important; }
.shima-add-to-cart-wrap table.variations { width: 100% !important; margin: 0 !important; border-collapse: collapse !important; }
.shima-add-to-cart-wrap table.variations td,
.shima-add-to-cart-wrap table.variations th { padding: 0 !important; border: 0 !important; }
.shima-native-variation-row {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}
.shima-variation-group { margin: 13px 0 0; display: grid; grid-template-columns: 76px 1fr; align-items: start; gap: 12px; }
.shima-variation-title { padding-top: 10px; color: #111827; font-size: 16px; font-weight: 950; }
.shima-variation-options { display: flex; flex-wrap: wrap; gap: 7px; }
.shima-variation-option {
  min-width: 82px;
  min-height: 48px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--shima-border-strong);
  border-radius: 10px;
  background: #fff;
  color: #334155;
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
  transition: border-color .14s ease, background .14s ease, color .14s ease;
}
.shima-variation-option.is-selected { border: 2px solid var(--shima-green); background: #fbfffc; color: #0a623b; }
.shima-variation-option.is-disabled { opacity: .38; cursor: not-allowed; text-decoration: line-through; }
.shima-color-dot { width: 18px; height: 18px; border: 1px solid rgba(15,23,42,.12); border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(255,255,255,.35); flex-shrink: 0; }
.shima-add-to-cart-wrap .single_variation_wrap { margin-top: 12px; }
.shima-add-to-cart-wrap .woocommerce-variation-price { margin: 0 0 9px; color: var(--shima-green); font-weight: 900; }
.shima-add-to-cart-wrap .woocommerce-variation-availability { display: none; }
.shima-add-to-cart-wrap .woocommerce-variation-add-to-cart,
.shima-add-to-cart-wrap form.cart:not(.variations_form) {
  display: grid !important;
  grid-template-columns: 70px minmax(160px, 174px) auto minmax(240px, 1fr);
  gap: 12px;
  align-items: center;
}
.shima-qty-label { color: #111827; font-size: 16px; font-weight: 950; }
.shima-qty-unit { color: #475467; font-size: 15px; font-weight: 850; }
.shima-qty-stepper {
  width: 170px;
  min-height: 48px;
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--shima-border-strong);
  border-radius: 10px;
  background: #fff;
}
.shima-qty-stepper button { width: 46px; height: 48px; border: 0; background: #f1f5f4; color: #0f172a; font-size: 24px; cursor: pointer; }
.shima-qty-stepper input.qty {
  width: 100% !important;
  min-height: 48px;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  background: #fff !important;
  text-align: center !important;
  font-weight: 900;
  -moz-appearance: textfield;
}
.shima-qty-stepper input.qty::-webkit-outer-spin-button,
.shima-qty-stepper input.qty::-webkit-inner-spin-button { margin: 0; -webkit-appearance: none; }
.shima-add-to-cart-wrap .single_add_to_cart_button {
  min-height: 50px !important;
  padding: 0 28px !important;
  border: 0 !important;
  border-radius: 11px !important;
  background: linear-gradient(135deg, var(--shima-green), #078747) !important;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(7,148,79,.15) !important;
  cursor: pointer !important;
  font-size: 16px !important;
  font-weight: 950 !important;
}
.shima-add-to-cart-wrap .single_add_to_cart_button.disabled { opacity: .45 !important; cursor: not-allowed !important; }

.shima-product-assurance {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, #f1faf5, #eef8f2);
}
.shima-product-assurance > div {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-left: 1px solid #dbeee2;
  color: var(--shima-green);
}
.shima-product-assurance > div:last-child { border-left: 0; }
.shima-product-assurance svg { width: 27px; height: 27px; }
.shima-product-assurance span { display: flex; flex-direction: column; color: var(--shima-text); }
.shima-product-assurance strong { font-size: 14px; font-weight: 900; }
.shima-product-assurance small { margin-top: 2px; color: #64748b; font-size: 11.5px; }

.shima-product-details { margin-top: 16px; display: grid; grid-template-columns: 1.25fr 1fr; gap: 16px; }
.shima-detail-block { min-width: 0; padding: 24px 26px; border: 1px solid var(--shima-border); border-radius: 16px; background: #fff; }
.shima-detail-block h2 { margin: 0 0 14px; color: #111827; font-size: 20px; font-weight: 950; }
.shima-rich-text { color: #475467; font-size: 15px; line-height: 2.15; }
.shima-rich-text p:first-child { margin-top: 0; }
.shima-spec-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.shima-spec-list li { display: flex; align-items: flex-start; gap: 10px; color: #334155; font-size: 15px; line-height: 2; font-weight: 700; }
.shima-spec-dot { width: 8px; height: 8px; margin-top: 11px; border-radius: 50%; flex: 0 0 auto; background: var(--shima-green); box-shadow: 0 0 0 3px rgba(7,148,79,.10); }

.shima-related { margin-top: 15px; }
.shima-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.shima-related-card {
  min-height: 92px;
  padding: 8px 11px;
  display: grid;
  grid-template-columns: 105px 1fr;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--shima-border);
  border-radius: 14px;
  background: #fff;
}
.shima-related-card img { width: 112px; height: 70px; object-fit: contain; }
.shima-related-card span { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.shima-related-card strong { font-size: 13.5px; line-height: 1.8; }
.shima-related-card small { color: var(--shima-green); font-size: 12.5px; font-weight: 900; }

/* ========================= Archive ========================= */
.shima-archive-head {
  min-height: 128px;
  padding: 24px 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--shima-border);
  border-radius: 17px;
  background: linear-gradient(135deg, #eef8f2, #fff);
}
.shima-archive-head h1 { margin: 5px 0 3px; color: #0b5436; font-size: clamp(26px, 3vw, 38px); font-weight: 950; }
.shima-archive-head p { margin: 0; color: #64748b; font-size: 12.5px; }
.shima-archive-ordering select {
  min-width: 210px;
  height: 43px;
  padding: 0 12px;
  border: 1px solid var(--shima-border-strong);
  border-radius: 11px;
  background: #fff;
  color: #334155;
  outline: 0;
}
.shima-category-chips { margin-top: 11px; display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
.shima-category-chips a { flex: 0 0 auto; min-height: 37px; padding: 0 12px; display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--shima-border); border-radius: 99px; background: #fff; font-size: 10.5px; font-weight: 850; }
.shima-category-chips a:hover { border-color: #acd5bb; color: var(--shima-green); }
.shima-category-chips span { min-width: 21px; height: 21px; padding: 0 5px; display: grid; place-items: center; border-radius: 99px; background: var(--shima-green-soft); color: var(--shima-green); font-size: 8.5px; }
.shima-archive-products { margin-top: 17px; }
.shima-archive-meta { min-height: 29px; color: #64748b; font-size: 10.5px; }
.shima-archive-meta .woocommerce-result-count { margin: 0 !important; float: none !important; }
.shima-pagination { margin-top: 21px; display: flex; justify-content: center; }
.shima-pagination .page-numbers { display: flex !important; gap: 6px; border: 0 !important; }
.shima-pagination .page-numbers li { border: 0 !important; }
.shima-pagination .page-numbers a,
.shima-pagination .page-numbers span { min-width: 38px; height: 38px; padding: 0 10px !important; display: grid !important; place-items: center; border: 1px solid var(--shima-border) !important; border-radius: 9px; background: #fff; color: #475569; }
.shima-pagination .page-numbers .current { border-color: var(--shima-green) !important; background: var(--shima-green) !important; color: #fff !important; }
.shima-empty-products { padding: 42px 18px; border: 1px dashed var(--shima-border-strong); border-radius: 14px; background: #fff; color: #64748b; text-align: center; }

.shima-home-cta {
  margin-top: 18px;
  min-height: 102px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0e9b4f 0%, #08783f 100%);
  color: #fff;
  box-shadow: 0 18px 36px rgba(8,120,63,.18);
}
.shima-home-cta-copy { min-width: 0; }
.shima-home-cta-copy h2 { margin: 0 0 6px; color: #fff; font-size: 18px; font-weight: 950; }
.shima-home-cta-copy p { margin: 0; color: rgba(255,255,255,.92); font-size: 14px; line-height: 1.9; }

/* ========================= Footer ========================= */
.shima-footer { margin-top: 24px; border-top: 1px solid var(--shima-border); background: #fff; }
.shima-footer-inner {
  min-height: 150px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1.15fr 1fr .95fr .9fr;
  align-items: start;
  gap: 32px;
}
.shima-footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.shima-footer-logo img { width: 230px; display: block; }
.shima-footer-brand p { margin: 0; color: #334155; font-size: 15px; line-height: 1.9; font-weight: 700; }
.shima-footer-contact,
.shima-footer-links,
.shima-footer-social { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; color: #475467; font-size: 14px; }
.shima-footer-contact > strong,
.shima-footer-links > strong,
.shima-footer-social > strong { margin-bottom: 4px; color: #0f172a; font-size: 18px; font-weight: 950; }
.shima-footer-contact a,
.shima-footer-address {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #334155;
}
.shima-footer-contact a { direction: ltr; }
.shima-footer-contact a svg,
.shima-footer-address svg { width: 17px; height: 17px; color: var(--shima-green); flex: 0 0 auto; }
.shima-footer-links a { color: #475467; font-weight: 700; }
.shima-footer-links a:hover { color: var(--shima-green); }
.shima-social-row { display: flex; align-items: center; gap: 10px; }
.shima-social-button { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid #dbe9e1; border-radius: 50%; background: #f3faf6; color: var(--shima-green); }
.shima-social-button svg { width: 20px; height: 20px; }
.shima-footer-social small { margin-top: 6px; color: #475467; font-size: 13px; line-height: 1.9; font-weight: 700; }
.shima-footer-copy { min-height: 48px; display: flex; align-items: center; justify-content: center; border-top: 1px solid #edf2ef; color: #667085; font-size: 13px; font-weight: 600; }
.shima-mobile-bottom-nav { display: none; }

/* ========================= Woo notices ========================= */
.shima-storefront .woocommerce-message,
.shima-storefront .woocommerce-info,
.shima-storefront .woocommerce-error {
  width: min(var(--shima-max), calc(100% - 64px));
  margin: 9px auto !important;
  padding: 11px 15px !important;
  border: 1px solid var(--shima-border) !important;
  border-radius: 12px !important;
  background: #fff !important;
  color: var(--shima-text) !important;
  box-shadow: none !important;
}

/* ========================= Responsive ========================= */
@media (max-width: 1280px) {
  .shima-container { width: min(var(--shima-max), calc(100% - 40px)); }
  .shima-header-inner { grid-template-columns: 185px minmax(320px, 1fr) minmax(210px, 270px) auto; gap: 14px; }
  .shima-logo { width: 185px; }
  .shima-main-nav { gap: 18px; font-size: 13px; }
  .shima-account-link span { display: none; }
  .shima-account-link { width: 42px; padding: 0; justify-content: center; }
  .shima-hero { grid-template-columns: 220px minmax(360px, 1fr) minmax(320px, .92fr); min-height: 330px; }
  .shima-hero-side-item { padding: 18px 16px; }
  .shima-hero-copy { padding: 24px 24px 24px 20px; }
  .shima-hero-copy h1 { font-size: 44px; }
  .shima-hero-copy p { font-size: 15px; }
  .shima-order-steps { grid-template-columns: 245px 1fr; }
}

@media (max-width: 1040px) {
  .shima-header-inner {
    min-height: 68px;
    grid-template-areas: "logo nav actions" "search search search";
    grid-template-columns: 180px 1fr auto;
    gap: 8px 16px;
    padding: 8px 0 10px;
  }
  .shima-logo { width: 174px; }
  .shima-search { width: min(100%, 280px); }
  .shima-main-nav { justify-content: flex-start; gap: 18px; }
  .shima-main-nav a { min-height: 48px; }
  .shima-main-nav a.is-active::after { bottom: 2px; }
  .shima-hero { grid-template-columns: 1fr 1fr; grid-template-areas: "art copy" "side side"; min-height: 0; }
  .shima-hero-side { grid-template-columns: repeat(3, 1fr); grid-template-rows: none; border-left: 0; border-top: 1px solid rgba(7, 148, 79, .08); }
  .shima-hero-side-item { min-height: 112px; padding: 17px 14px; border-bottom: 0; border-left: 1px solid rgba(7, 148, 79, .08); }
  .shima-hero-side-item:last-child { border-left: 0; }
  .shima-hero-copy { padding: 26px 24px 22px; }
  .shima-hero-copy h1 { font-size: 36px; }
  .shima-hero-signature { font-size: 22px; }
  .shima-category-grid,
  .shima-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shima-category-card { min-height: 118px; }
  .shima-order-steps { grid-template-columns: 1fr; gap: 8px; }
  .shima-order-steps-title { display: flex; align-items: baseline; gap: 10px; }
  .shima-order-steps-title p { margin: 0; }
  .shima-product-hero { grid-template-columns: 1fr; }
  .shima-product-gallery { order: 1; }
  .shima-product-summary { order: 2; }
  .shima-product-main-image { height: min(72vw, 570px); }
  .shima-home-cta { padding: 18px 20px; }
  .shima-footer-inner { grid-template-columns: 1.2fr 1fr 1fr; }
  .shima-footer-social { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body.shima-storefront-ui-active { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
  .shima-container { width: calc(100% - 20px); }
  .shima-main { padding-top: 10px; padding-bottom: 26px; }

  .shima-header { position: sticky; }
  .shima-header-inner {
    min-height: 0;
    grid-template-areas: "menu logo actions" "search search search";
    grid-template-columns: 42px 1fr auto;
    gap: 8px 10px;
    padding: 9px 0 10px;
  }
  .shima-mobile-menu-toggle {
    grid-area: menu;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: #111827;
    cursor: pointer;
  }
  .shima-mobile-menu-toggle svg { width: 27px; height: 27px; }
  .shima-logo { grid-area: logo; justify-self: center; width: min(175px, 48vw); }
  .shima-main-nav { display: none; }
  .shima-header-actions { justify-self: end; gap: 4px; }
  .shima-account-link,
  .shima-cart-link {
    width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
    justify-content: center;
    border: 1px solid var(--shima-border);
    border-radius: 50%;
    background: #fff;
  }
  .shima-account-link span { display: none; }
  .shima-search { height: 44px; border-radius: 13px; }
  .shima-search input { font-size: 12px; }

  .shima-mobile-drawer {
    position: fixed;
    z-index: 5100;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(82vw, 330px);
    padding: 17px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #fff;
    box-shadow: -20px 0 50px rgba(15,23,42,.16);
    transform: translateX(105%);
    transition: transform .18s ease;
  }
  .shima-mobile-drawer[hidden] { display: none !important; }
  .shima-mobile-drawer.is-open { transform: translateX(0); }
  .shima-mobile-drawer-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid var(--shima-border); }
  .shima-mobile-drawer-head img { width: 158px; }
  .shima-mobile-menu-close { width: 38px; height: 38px; display: grid; place-items: center; border: 0; border-radius: 50%; background: #f4f7f5; cursor: pointer; }
  .shima-mobile-drawer > a { min-height: 46px; display: flex; align-items: center; padding: 0 10px; border-bottom: 1px solid #f0f3f1; font-size: 13px; font-weight: 800; }
  .shima-drawer-backdrop {
    position: fixed;
    z-index: 5050;
    inset: 0;
    border: 0;
    background: rgba(15,23,42,.28);
  }
  .shima-drawer-backdrop:not([hidden]) { display: block; }

  .shima-hero {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "art" "side";
    min-height: 0;
    border-radius: 16px;
  }
  .shima-hero-copy { padding: 24px 20px 15px; text-align: right; }
  .shima-hero-copy h1 { font-size: clamp(28px, 8.6vw, 38px); line-height: 1.4; }
  .shima-hero-copy p { font-size: 12.5px; line-height: 1.95; }
  .shima-hero-actions { margin-top: 16px; gap: 10px; }
  .shima-hero-actions .shima-btn { width: calc(50% - 5px); min-width: 0; min-height: 45px; font-size: 12px; padding-inline: 12px; }
  .shima-hero-signature { margin-top: 14px; font-size: 18px; }
  .shima-hero-art { min-height: 220px; }
  .shima-hero-art img { min-height: 220px; object-fit: cover; object-position: 53% center; }
  .shima-hero-side { grid-template-columns: 1fr; grid-template-rows: repeat(3, auto); border-top: 1px solid rgba(7, 148, 79, .08); }
  .shima-hero-side-item { min-height: 0; padding: 15px 16px; border-left: 0; border-bottom: 1px solid rgba(7,148,79,.08); }
  .shima-hero-side-item:last-child { border-bottom: 0; }
  .shima-hero-side-icon { width: 46px; height: 46px; }
  .shima-hero-side-icon svg { width: 24px; height: 24px; }
  .shima-hero-side-copy strong { font-size: 13px; }
  .shima-hero-side-copy small { font-size: 10px; }

  .shima-trust-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); min-height: 0; margin-top: 10px; gap: 8px; border: 0; background: transparent; box-shadow: none; }
  .shima-trust-strip > div {
    min-height: 112px;
    padding: 12px 7px;
    flex-direction: column;
    gap: 7px;
    border: 1px solid var(--shima-border) !important;
    border-radius: 14px;
    background: #fff;
    text-align: center;
  }
  .shima-trust-strip svg { width: 29px; height: 29px; }
  .shima-trust-strip strong { font-size: 11px; }
  .shima-trust-strip small { font-size: 9px; line-height: 1.6; }

  .shima-section { margin-top: 18px; }
  .shima-section-head { margin-bottom: 9px; }
  .shima-section-head h2 { font-size: 16px; }
  .shima-section-head a { font-size: 10px; }

  .shima-category-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-inline: -1px;
    padding: 1px 1px 6px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .shima-category-grid::-webkit-scrollbar { display: none; }
  .shima-category-card { flex: 0 0 168px; min-height: 128px; grid-template-columns: 1fr; grid-template-rows: 79px auto; padding: 8px 10px 10px; border-radius: 13px; scroll-snap-align: start; }
  .shima-category-media { grid-column: 1; grid-row: 1; height: 79px; }
  .shima-category-media img { height: 79px; }
  .shima-category-name { grid-column: 1; grid-row: 2; justify-self: start; font-size: 12px; }
  .shima-category-arrow { width: 27px; height: 27px; left: 9px; bottom: 8px; }

  .shima-product-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 1px 1px 7px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .shima-product-grid::-webkit-scrollbar { display: none; }
  .shima-product-card { flex: 0 0 min(72vw, 260px); border-radius: 13px; scroll-snap-align: start; }
  .shima-product-card h3,
  .shima-product-card h2 { font-size: 11.5px; min-height: 41px; }
  .shima-product-price { font-size: 10px; }
  .shima-btn-block { min-height: 40px; font-size: 11px; }

  .shima-order-steps { margin-top: 12px; padding: 16px 12px; gap: 12px; border-radius: 14px; }
  .shima-order-steps-title { display: block; }
  .shima-order-steps-title h2 { font-size: 15px; line-height: 1.7; }
  .shima-order-steps-title p { margin-top: 4px; font-size: 10.5px; line-height: 1.8; }
  .shima-steps-grid { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 3px; scrollbar-width: none; }
  .shima-steps-grid::-webkit-scrollbar { display: none; }
  .shima-steps-grid > div { flex: 0 0 228px; min-height: 82px; grid-template-columns: 32px 34px 1fr; padding: 9px 10px; border-radius: 12px; background: rgba(255,255,255,.62); }
  .shima-steps-grid > div::after { display: none; }
  .shima-step-number { width: 30px; height: 30px; font-size: 13px; }
  .shima-steps-grid svg { width: 30px; height: 30px; }
  .shima-step-copy strong { font-size: 12.5px; }
  .shima-step-copy small { font-size: 10px; line-height: 1.7; }
  .shima-home-cta { flex-direction: column; align-items: stretch; padding: 16px 14px; border-radius: 14px; }
  .shima-home-cta-copy h2 { font-size: 16px; }
  .shima-home-cta-copy p { font-size: 12px; }
  .shima-home-cta .shima-btn { width: 100%; min-height: 44px; justify-content: center; }

  .shima-product-hero { gap: 9px; }
  .shima-product-gallery,
  .shima-product-summary { border-radius: 14px; }
  .shima-product-gallery { padding: 10px; }
  .shima-product-main-image { min-height: 300px; height: min(92vw, 440px); }
  .shima-product-thumb { flex-basis: 90px; height: 69px; }
  .shima-product-summary { padding: 20px 16px 18px; }
  .shima-product-summary h1 { font-size: 27px; line-height: 1.45; }
  .shima-summary-price { font-size: 16px; }
  .shima-summary-price strong { font-size: 25px; }
  .shima-short-description { margin-top: 14px; font-size: 13.5px; }
  .shima-variation-group { grid-template-columns: 1fr; gap: 6px; }
  .shima-variation-title { padding: 0; font-size: 15px; }
  .shima-variation-options { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 7px; }
  .shima-variation-option { min-width: 0; padding: 0 6px; font-size: 12px; min-height: 40px; }
  .shima-add-to-cart-wrap .woocommerce-variation-add-to-cart,
  .shima-add-to-cart-wrap form.cart:not(.variations_form) { grid-template-columns: 56px 1fr auto; }
  .shima-add-to-cart-wrap .single_add_to_cart_button { grid-column: 1 / -1; width: 100%; min-height: 49px !important; }
  .shima-qty-stepper { width: 100%; }
  .shima-product-assurance { grid-template-columns: repeat(3, 1fr); }
  .shima-product-assurance > div { min-height: 58px; padding: 5px; flex-direction: column; gap: 2px; text-align: center; }
  .shima-product-assurance svg { width: 22px; height: 22px; }
  .shima-product-assurance strong { font-size: 10.5px; }
  .shima-product-assurance small { display: none; }
  .shima-product-details { grid-template-columns: 1fr; gap: 9px; }
  .shima-detail-block { padding: 18px; }
  .shima-related-grid { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
  .shima-related-card { flex: 0 0 265px; grid-template-columns: 88px 1fr; }
  .shima-related-card img { width: 88px; }

  .shima-archive-head { min-height: 0; padding: 19px 15px; align-items: stretch; flex-direction: column; gap: 13px; border-radius: 14px; }
  .shima-archive-head h1 { font-size: 26px; }
  .shima-archive-ordering select { width: 100%; min-width: 0; }

  .shima-footer { margin-top: 16px; }
  .shima-mobile-drawer > a { font-size: 14px; }
  .shima-footer-inner { grid-template-columns: 1fr 1fr; gap: 20px 14px; padding: 22px 0; }
  .shima-footer-brand { align-items: center; grid-column: 1 / -1; text-align: center; }
  .shima-footer-logo img { width: 190px; }
  .shima-footer-contact,
  .shima-footer-links,
  .shima-footer-social { align-items: center; text-align: center; }
  .shima-footer-social { grid-column: 1 / -1; flex-direction: column; }
  .shima-social-row { justify-content: center; }
  .shima-footer-copy { padding: 10px 14px; text-align: center; font-size: 12.5px; }

  .shima-mobile-bottom-nav {
    position: fixed;
    z-index: 3000;
    right: 0;
    left: 0;
    bottom: 0;
    min-height: 62px;
    padding-bottom: env(safe-area-inset-bottom);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255,255,255,.97);
    border-top: 1px solid var(--shima-border);
    box-shadow: 0 -10px 28px rgba(15,23,42,.07);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
  .shima-mobile-bottom-nav a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; color: #475569; font-size: 8.5px; font-weight: 800; }
  .shima-mobile-bottom-nav svg { width: 20px; height: 20px; }

  .shima-storefront .woocommerce-message,
  .shima-storefront .woocommerce-info,
  .shima-storefront .woocommerce-error { width: calc(100% - 20px); }
}

@media (max-width: 520px) {
  .shima-header-inner { grid-template-columns: 40px 1fr auto; }
  .shima-logo { width: min(155px, 45vw); }
  .shima-header-actions { gap: 3px; }
  .shima-account-link,
  .shima-cart-link { width: 38px; height: 38px; min-height: 38px; }
  .shima-cart-count { min-width: 18px; height: 18px; font-size: 9px; }

  .shima-hero { grid-template-rows: auto 196px; }
  .shima-hero-copy { padding: 21px 17px 12px; }
  .shima-hero-copy h1 { font-size: 29px; }
  .shima-hero-copy p { font-size: 11.5px; }
  .shima-hero-art,
  .shima-hero-art img { min-height: 196px; }

  .shima-trust-strip > div { min-height: 102px; padding-inline: 5px; }
  .shima-trust-strip strong { font-size: 10px; }
  .shima-trust-strip small { font-size: 8.5px; }

  .shima-section-head { align-items: flex-end; }
  .shima-section-head h2 { font-size: 15px; }
  .shima-category-card { flex-basis: 155px; }
  .shima-product-card { flex-basis: min(76vw, 245px); }

  .shima-product-main-image { min-height: 270px; }
  .shima-variation-options { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .shima-product-assurance > div { min-height: 55px; }

  .shima-footer-inner { grid-template-columns: 1fr; }
  .shima-footer-contact,
  .shima-footer-links { align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}

@media (max-width: 760px) { body.shima-menu-open { overflow: hidden !important; } }
