/* =========================================================
   WOOCOMMERCE SHOP PAGE — CSS-only Redesign
   Sensible Appliance Repair
   =========================================================
*/


@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,600&display=swap');

:root {
  --shop-navy: #0f1f3a;
  --shop-navy-deep: #0a1526;
  --shop-navy-soft: #1c3a63;
  --shop-gold: #f2b134;
  --shop-gold-dark: #d99a1f;
  --shop-ivory: #f6f2ea;
  --shop-ivory-line: #e4ddcd;
  --shop-text: #4b5568;
  --shop-serif: 'Playfair Display', Georgia, serif;
  --shop-heading-font: 'Poppins', Arial, sans-serif;
  --shop-body-font: 'Inter', Arial, sans-serif;
}

/* ---- Page wrapper ---- */

body.woocommerce-page #primary.content-area,
body.woocommerce-page.archive #primary.content-area {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  margin: 0 auto !important;
}
body.woocommerce-page #secondary.widget-area,
body.woocommerce-page .widget-area {
  display: none !important;
}
#primary.content-area { background: #ffffff; }
#main.site-main {
  padding: 1.5rem 1.5rem 4rem; font-family: var(--shop-body-font); color: var(--shop-text);
  max-width: 1320px; margin: 0 auto;
}

/* ---- Breadcrumb ---- */
nav.woocommerce-breadcrumb {
  display: block; font-family: var(--shop-heading-font); font-size: 0.82rem;
  color: var(--shop-text); margin: 0 0 1.5rem; padding: 0;
}
nav.woocommerce-breadcrumb a { color: var(--shop-navy-soft); font-weight: 600; text-decoration: none; }
nav.woocommerce-breadcrumb a:hover { color: var(--shop-gold-dark); }

/* ---- Page header / "Shop" title banner ---- */
header.woocommerce-products-header {
  background: var(--shop-ivory); border: 1px solid var(--shop-ivory-line); border-radius: 12px;
  padding: 2.5rem 2rem; margin: 0 0 2rem; text-align: center;
}
h1.woocommerce-products-header__title.page-title {
  font-family: var(--shop-serif); color: var(--shop-navy); font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.6rem); margin: 0; line-height: 1.15;
}

/* ---- Notices (kept minimal in case a cart/stock notice ever appears) ---- */
.woocommerce-notices-wrapper:not(:empty) { margin: 0 0 1.5rem; }
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error {
  font-family: var(--shop-body-font); border-radius: 8px; padding: 1rem 1.25rem;
  border-left: 4px solid var(--shop-gold); background: var(--shop-ivory); color: var(--shop-navy);
  list-style: none;
}
.woocommerce-notices-wrapper .woocommerce-error { border-left-color: #c0392b; }

/* ---- Result count + ordering row ---- */
p.woocommerce-result-count {
  font-family: var(--shop-body-font); font-size: 0.9rem; color: var(--shop-text); margin: 0 0 1rem;
}
form.woocommerce-ordering {
  margin: 0 0 2rem;
}
form.woocommerce-ordering select.orderby {
  font-family: var(--shop-heading-font); font-size: 0.88rem; font-weight: 600; color: var(--shop-navy);
  background-color: #ffffff;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f1f3a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 16px;
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  border: 1px solid var(--shop-ivory-line); border-radius: 6px;
  padding: 0.65rem 2.25rem 0.65rem 1rem; cursor: pointer;
}
form.woocommerce-ordering select.orderby:focus {
  outline: none; border-color: var(--shop-gold); box-shadow: 0 0 0 3px rgba(242,177,52,0.2);
}

/* On result-count + ordering row: put them side by side on wider
   screens without touching any element outside this template */
@media (min-width: 621px) {
  p.woocommerce-result-count { float: left; margin-bottom: 2rem; }
  form.woocommerce-ordering { float: right; margin-bottom: 2rem; }
  .woocommerce-products-header + .woocommerce-notices-wrapper + p.woocommerce-result-count,
  p.woocommerce-result-count { clear: none; }
}
@media (min-width: 621px) {
  /* clearfix so the product grid below doesn't ride up against the floated row */
  ul.products { clear: both; }
}

/* ---- Product grid ---- */
/* Forcing a real CSS grid (with !important where the theme's own
   "columns-3" float/width rules might otherwise win) so the layout
   is reliable and fully responsive regardless of what the active
   theme normally does with WooCommerce's column classes. */
ul.products.columns-3 {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.75rem !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
ul.products.columns-3 li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--shop-ivory-line);
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
ul.products.columns-3 li.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 36px rgba(15,31,58,0.1);
}

/* ---- Card link (image + title [+ price for simple products]) ---- */
ul.products.columns-3 li.product a.woocommerce-LoopProduct-link {
  display: flex; flex-direction: column; flex: 1;
  text-decoration: none; color: inherit; padding: 0 0 1.25rem;
}
ul.products.columns-3 li.product img.wp-post-image {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block;
  background: var(--shop-ivory); margin: 0 0 1.1rem;
}
ul.products.columns-3 li.product h2.woocommerce-loop-product__title {
  font-family: var(--shop-heading-font); color: var(--shop-navy); font-weight: 700;
  font-size: 1rem; line-height: 1.4; margin: 0 1.25rem 0.5rem;
}
ul.products.columns-3 li.product span.price {
  margin: 0 1.25rem; font-family: var(--shop-heading-font); font-weight: 700;
  font-size: 1.05rem; color: var(--shop-gold-dark);
}
ul.products.columns-3 li.product span.price .woocommerce-Price-currencySymbol {
  font-size: 0.9em;
}

/* ---- Add to cart / Select options button ---- */
ul.products.columns-3 li.product a.add_to_cart_button,
ul.products.columns-3 li.product a.button {
  display: block; text-align: center; text-decoration: none;
  font-family: var(--shop-heading-font); font-weight: 700; font-size: 0.9rem;
  color: var(--shop-navy); background: var(--shop-gold);
  margin: 0 1.25rem 1.25rem; padding: 0.75rem 1rem; border-radius: 5px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
ul.products.columns-3 li.product a.add_to_cart_button:hover,
ul.products.columns-3 li.product a.button:hover {
  background: var(--shop-gold-dark); transform: translateY(-2px);
}
/* If a card has no <span class="price"> (as with the variable
   product above, until its variation prices are set), the button
   still lands at the bottom of the card thanks to the flex column
   + flex:1 on the link above. */

/* Hide WooCommerce's own screen-reader-only helper text visually
   (it's meant to be invisible either way — this just guarantees it
   regardless of theme, scoped only to this exact class inside the
   product loop, not the site-wide utility class). */
ul.products.columns-3 li.product .screen-reader-text {
  position: absolute !important; width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important; overflow: hidden !important;
  clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  ul.products.columns-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 620px) {
  header.woocommerce-products-header { padding: 2rem 1.25rem; }
  p.woocommerce-result-count,
  form.woocommerce-ordering {
    float: none; display: block; width: 100%; margin-bottom: 1rem;
  }
  form.woocommerce-ordering select.orderby { width: 100%; }
  ul.products.columns-3 {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
}



/* =========================================================
   WOOCOMMERCE SINGLE PRODUCT PAGE — CSS-only Redesign (v2)
   Sensible Appliance Repair
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,600&display=swap');

:root {
  --pp-navy: #0f1f3a;
  --pp-navy-deep: #0a1526;
  --pp-navy-soft: #1c3a63;
  --pp-gold: #f2b134;
  --pp-gold-dark: #d99a1f;
  --pp-ivory: #f6f2ea;
  --pp-ivory-line: #e4ddcd;
  --pp-text: #4b5568;
  --pp-serif: 'Playfair Display', Georgia, serif;
  --pp-heading-font: 'Poppins', Arial, sans-serif;
  --pp-body-font: 'Inter', Arial, sans-serif;
}

/* ---- Page wrapper — full width + soft ivory backdrop so the
   white product card has something to pop against ---- */
body.woocommerce-page #primary.content-area,
body.woocommerce-page.single-product #primary.content-area {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  margin: 0 auto !important;
  background: var(--pp-ivory) !important;
}
body.woocommerce-page #secondary.widget-area,
body.woocommerce-page .widget-area {
  display: none !important;
}
#main.site-main {
  padding: 2rem 1.5rem 4.5rem !important;
  font-family: var(--pp-body-font) !important;
  color: var(--pp-text) !important;
  max-width: 1320px !important;
  margin: 0 auto !important;
}

/* ---- Breadcrumb ---- */
nav.woocommerce-breadcrumb {
  display: block !important; font-family: var(--pp-heading-font) !important; font-size: 0.82rem !important;
  color: var(--pp-text) !important; margin: 0 0 1.5rem !important; padding: 0 !important;
}
nav.woocommerce-breadcrumb a { color: var(--pp-navy-soft) !important; font-weight: 600 !important; text-decoration: none !important; }
nav.woocommerce-breadcrumb a:hover { color: var(--pp-gold-dark) !important; }

/* ---- Notices ---- */
.woocommerce-notices-wrapper:not(:empty) { margin: 0 0 1.5rem !important; }
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error {
  font-family: var(--pp-body-font) !important; border-radius: 8px !important; padding: 1rem 1.25rem !important;
  border-left: 4px solid var(--pp-gold) !important; background: #ffffff !important; color: var(--pp-navy) !important;
  list-style: none !important;
}
.woocommerce-notices-wrapper .woocommerce-error { border-left-color: #c0392b !important; }

/* ---- Product card wrapper ---- */
/* Targeting div.product with its actual type/status/stock classes
   attached too, so this beats any theme rule keyed to the same
   element with fewer or different classes. */
div.product.type-product.status-publish {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 3rem !important;
  align-items: start !important;
  background: #ffffff !important;
  border: 1px solid var(--pp-ivory-line) !important;
  border-radius: 16px !important;
  padding: 2.5rem !important;
  margin: 0 0 3rem !important;
  box-shadow: 0 24px 48px rgba(15,31,58,0.08) !important;
}

/* ---- Gallery ---- */
.woocommerce-product-gallery.images {
  background: var(--pp-ivory) !important;
  border: 1px solid var(--pp-ivory-line) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  position: relative !important;
  width: 100% !important;
}
.woocommerce-product-gallery__wrapper { margin: 0 !important; width: 100% !important; }
.woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image { width: 100% !important; }
.woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image a {
  display: block !important; width: 100% !important; height: 100% !important;
}
.woocommerce-product-gallery__wrapper img.wp-post-image {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  min-height: 420px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 !important;
}
/* The zoom-trigger renders WordPress's plain 🔍 emoji image by
   default — turning it into a small white icon on a navy circle
   badge instead, using filters (no way to recolor a raster emoji
   image otherwise from CSS alone). */
.woocommerce-product-gallery__trigger {
  position: absolute !important; top: 1rem !important; right: 1rem !important; z-index: 2 !important;
  width: 38px !important; height: 38px !important; border-radius: 50% !important;
  background: var(--pp-navy) !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  box-shadow: 0 6px 14px rgba(15,31,58,0.25) !important;
  overflow: hidden !important; /* keeps any broken-image alt text from spilling out of the circle */
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger::before, .woocommerce div.product div.images .woocommerce-product-gallery__trigger::after{
	border: 2px solid #fff!important;
}

.woocommerce-product-gallery__trigger img {
  width: 16px !important; height: 16px !important; font-size: 0 !important; color: transparent !important;
  filter: grayscale(1) brightness(0) invert(1) !important;
}

/* ---- Summary column ---- */
.summary.entry-summary {
  padding: 0.5rem 0 !important;
}
h1.product_title.entry-title {
  font-family: var(--pp-serif) !important; color: var(--pp-navy) !important; font-weight: 800 !important;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem) !important; line-height: 1.2 !important; margin: 0 0 1rem !important;
  padding: 0 0 1rem !important; border-bottom: 3px solid var(--pp-gold) !important; display: inline-block !important;
}
.woocommerce div.product div.summary{
	width:auto!important;
}
.summary.entry-summary p.price {
  font-family: var(--pp-heading-font) !important; font-weight: 800 !important; color: var(--pp-navy) !important;
  font-size: 2.1rem !important; margin: 1.25rem 0 !important;
  background: rgba(242,177,52,0.14) !important; display: inline-block !important;
  padding: 0.5rem 1.1rem !important; border-radius: 8px !important;
}
.summary.entry-summary p.price .woocommerce-Price-amount { color: var(--pp-navy) !important; }
.summary.entry-summary p.price .woocommerce-Price-currencySymbol { font-size: 0.7em !important; }

/* Short description block (may contain a client-pasted image —
   see the note at the top of this file) */
.woocommerce-product-details__short-description {
  font-size: 0.95rem !important; line-height: 1.7 !important; color: var(--pp-text) !important; margin: 0 0 1.25rem !important;
}
.woocommerce-product-details__short-description img {
  max-width: 100% !important; height: auto !important; border-radius: 8px !important; border: 1px solid var(--pp-ivory-line) !important;
  margin: 0.5rem 0 !important;
}

/* Stock status pill */
p.stock {
  display: inline-block !important; font-family: var(--pp-heading-font) !important; font-weight: 700 !important; font-size: 0.8rem !important;
  letter-spacing: 0.02em !important; padding: 0.4rem 1rem !important; border-radius: 999px !important; margin: 0 0 1.75rem !important;
}
p.stock.in-stock { background: rgba(46,160,67,0.12) !important; color: #1e7e34 !important; }
p.stock.out-of-stock { background: rgba(192,57,43,0.12) !important; color: #c0392b !important; }

/* ---- Add-to-cart form ---- */
form.cart {
  display: flex !important; align-items: center !important; gap: 1rem !important; flex-wrap: wrap !important;
  margin: 0 0 1.75rem !important; padding: 1.5rem !important;
  background: var(--pp-ivory) !important; border: 1px solid var(--pp-ivory-line) !important; border-radius: 12px !important;
}
form.cart .quantity { margin: 0 !important; }
form.cart .quantity input.qty {
  width: 84px !important; height: 100% !important; font-family: var(--pp-body-font) !important; font-size: 1.05rem !important; text-align: center !important;
  padding: 0.95rem 0.5rem !important; border: 1px solid var(--pp-ivory-line) !important; border-radius: 6px !important; color: var(--pp-navy) !important;
  background: #ffffff !important;
}
form.cart .quantity input.qty:focus {
  outline: none !important; border-color: var(--pp-gold) !important; box-shadow: 0 0 0 3px rgba(242,177,52,0.25) !important;
}
button.single_add_to_cart_button.button.alt,
button.single_add_to_cart_button {
  font-family: var(--pp-heading-font) !important; font-weight: 700 !important; font-size: 1.05rem !important;
  background-color: var(--pp-gold) !important; background: var(--pp-gold) !important; color: var(--pp-navy) !important;
  border: none !important; cursor: pointer !important;
  padding: 1rem 2.5rem !important; border-radius: 6px !important; flex: 1 !important; min-width: 200px !important;
  box-shadow: 0 10px 22px rgba(242,177,52,0.35) !important;
  transition: background-color 0.2s ease, transform 0.2s ease !important;
}
button.single_add_to_cart_button.button.alt:hover,
button.single_add_to_cart_button:hover {
  background-color: var(--pp-gold-dark) !important; background: var(--pp-gold-dark) !important;
  color: var(--pp-navy) !important; transform: translateY(-2px) !important;
}
button.single_add_to_cart_button.button.alt:focus,
button.single_add_to_cart_button:focus {
  color: var(--pp-navy) !important; outline: none !important; box-shadow: 0 0 0 3px rgba(242,177,52,0.4) !important;
}

.product_meta {
  font-size: 0.85rem !important; color: var(--pp-text) !important; border-top: 1px solid var(--pp-ivory-line) !important; padding-top: 1rem !important;
}
.product_meta:empty { display: none !important; }

/* ---- Tabs (Description / Reviews) ---- */
.woocommerce-tabs.wc-tabs-wrapper {
  grid-column: 1 / -1 !important;
  margin: 1rem 0 0 !important;
  border-top: 1px solid var(--pp-ivory-line) !important;
  padding-top: 2rem !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li{
	background-color:transparent!important;
	border:none!important;
}
ul.tabs.wc-tabs {
  display: flex !important; gap: 2rem !important; list-style: none !important; margin: 0 !important; padding: 0 !important;
  border-bottom: 1px solid var(--pp-ivory-line) !important;
}
ul.tabs.wc-tabs li { margin: 0 !important; }
ul.tabs.wc-tabs li a {
  display: inline-block !important; padding: 0.9rem 0 !important; font-family: var(--pp-heading-font) !important; font-weight: 700 !important;
  font-size: 0.95rem !important; color: var(--pp-text) !important; text-decoration: none !important; border-bottom: 3px solid transparent !important;
  margin-bottom: -1px !important;
}
ul.tabs.wc-tabs li.active a,
ul.tabs.wc-tabs li a:hover {
  color: var(--pp-navy) !important; border-bottom-color: var(--pp-gold) !important;
}

.woocommerce-Tabs-panel {
  padding: 2rem 0 !important; font-size: 0.95rem !important; line-height: 1.75 !important; color: var(--pp-text) !important; max-width: 760px !important;
}
.woocommerce-Tabs-panel h2 {
  font-family: var(--pp-serif) !important; color: var(--pp-navy) !important; font-weight: 800 !important;
  font-size: clamp(1.3rem, 2.4vw, 1.6rem) !important; margin: 0 0 1.1rem !important;
}
.woocommerce-Tabs-panel img {
  max-width: 100% !important; height: auto !important; border-radius: 8px !important; border: 1px solid var(--pp-ivory-line) !important; margin: 0.5rem 0 !important;
}

/* Jetpack's "Related" block sometimes auto-appends inside the
   description tab, which looks out of place under a product
   description. OPTIONAL — uncomment to hide it here; the better
   fix is turning the module off in Jetpack settings (see note at
   top of file). */
/*
#jp-relatedposts.jp-relatedposts { display: none !important; }
*/

/* ---- Reviews tab ---- */
#reviews.woocommerce-Reviews { max-width: 760px !important; }
.woocommerce-Reviews-title {
  font-family: var(--pp-serif) !important; color: var(--pp-navy) !important; font-weight: 800 !important;
  font-size: clamp(1.3rem, 2.4vw, 1.6rem) !important; margin: 0 0 1rem !important;
}
p.woocommerce-noreviews { font-size: 0.95rem !important; color: var(--pp-text) !important; }

#respond.comment-respond { margin-top: 1.5rem !important; }
#reply-title.comment-reply-title {
  font-family: var(--pp-heading-font) !important; color: var(--pp-navy) !important; font-weight: 700 !important; font-size: 1.05rem !important;
  display: block !important; margin: 0 0 1.25rem !important;
}

.comment-form-rating label,
.comment-form-comment label {
  display: block !important; font-family: var(--pp-heading-font) !important; font-weight: 700 !important; font-size: 0.85rem !important;
  color: var(--pp-navy) !important; margin: 0 0 0.5rem !important;
}
.comment-form-rating .required,
.comment-form-comment .required { color: var(--pp-gold-dark) !important; }

/* Star rating widget — CSS-only stars in case WooCommerce's own
   star-rating sprite CSS isn't loaded on this theme. Keeps it
   simple (each star highlights on its own hover/focus) rather
   than attempting a cumulative right-to-left fill, which needs a
   reversed DOM order to do reliably in pure CSS and isn't worth
   the fragility for a rating widget this small. */
p.stars { margin: 0 0 1.25rem !important; }
p.stars span[role="group"] { display: inline-flex !important; gap: 0.25rem !important; }
p.stars a {
  display: inline-flex !important; align-items: center !important; justify-content: center !important;
  width: 28px !important; height: 28px !important; text-indent: -9999px !important; position: relative !important; color: transparent !important;
}
p.stars a::before {
  content: "\2605"; position: absolute !important; inset: 0 !important; text-indent: 0 !important; font-size: 1.4rem !important; line-height: 28px !important;
  text-align: center !important; color: var(--pp-ivory-line) !important;
}
p.stars a:hover::before,
p.stars a:focus::before,
p.stars a[aria-checked="true"]::before {
  color: var(--pp-gold) !important;
}

.comment-form-comment textarea#comment {
  width: 100% !important; max-width: 100% !important; font-family: var(--pp-body-font) !important; font-size: 1rem !important;
  padding: 0.85rem 1rem !important; border: 1px solid var(--pp-ivory-line) !important; border-radius: 8px !important; color: var(--pp-navy) !important;
  resize: vertical !important; background: #ffffff !important;
}
.comment-form-comment textarea#comment:focus {
  outline: none !important; border-color: var(--pp-gold) !important; box-shadow: 0 0 0 3px rgba(242,177,52,0.2) !important;
}

p.form-submit input#submit {
  font-family: var(--pp-heading-font) !important; font-weight: 700 !important; font-size: 0.95rem !important;
  background-color: var(--pp-gold) !important; background: var(--pp-gold) !important; color: var(--pp-navy) !important; border: none !important; cursor: pointer !important;
  padding: 0.9rem 2.25rem !important; border-radius: 6px !important; margin-top: 0.5rem !important;
  transition: background-color 0.2s ease, transform 0.2s ease !important;
}
p.form-submit input#submit:hover { background-color: var(--pp-gold-dark) !important; background: var(--pp-gold-dark) !important; transform: translateY(-2px) !important; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  div.product.type-product.status-publish {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding: 1.75rem !important;
  }
  .woocommerce-product-gallery__wrapper img.wp-post-image {
    min-height: 300px !important;
  }
}
@media (max-width: 620px) {
  #main.site-main { padding: 1.5rem 1rem 3rem !important; }
  div.product.type-product.status-publish { padding: 1.25rem !important; border-radius: 12px !important; }
  ul.tabs.wc-tabs { gap: 1.25rem !important; overflow-x: auto !important; }
  form.cart { flex-direction: column !important; align-items: stretch !important; }
  form.cart .quantity input.qty { width: 100% !important; }
  button.single_add_to_cart_button.button.alt,
  button.single_add_to_cart_button { width: 100% !important; text-align: center !important; min-width: 0 !important; }
}