/* ==========================================================================
   Single product — Estelia
   File: estelia-child/assets/css/single-product.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   Default onsale flash — WooCommerce echoes this straight into div.product,
   absolutely positioned over the gallery. The sale status now shows as a
   pill in est-card__badges instead (inc/catalog-behaviour.php), next to
   Nyhet/Bestselger.
   -------------------------------------------------------------------------- */
body.woocommerce div.product > span.onsale{
  display: none;
}

/* --------------------------------------------------------------------------
   Price — black
   -------------------------------------------------------------------------- */
body.woocommerce div.product p.price,
body.woocommerce div.product span.price,
body.woocommerce div.product p.price bdi,
body.woocommerce div.product span.price bdi,
body.woocommerce div.product p.price ins,
body.woocommerce div.product .woocommerce-variation-price .price,
body.woocommerce div.product .woocommerce-variation-price bdi{
  color: var(--est-ink, #131313) !important;
  font-family: var(--est-font-body, "DM Sans", system-ui, sans-serif);
  font-size: clamp(1.375rem, 3vw, 1.625rem);
  font-weight: 500;
  text-decoration: none;
}

/* Clear break between the price and the variation options below it —
   WooCommerce/GP core reset p{margin} to 0 here, so this has no
   competing rule to out-specificity. */
body.woocommerce div.product p.price{
  margin-bottom: 2rem;
}

body.woocommerce div.product p.price del,
body.woocommerce div.product p.price del bdi,
body.woocommerce div.product .woocommerce-variation-price .price del,
body.woocommerce div.product .woocommerce-variation-price .price del bdi{
  color: var(--est-ink, #131313) !important;
  opacity: .5;
}

/* Sale price + discount badge inline: ins(sale) → badge → del(regular),
   regardless of source order, via flex so the est-price-discount span
   (appended by PHP for simple products, or by JS on variation change)
   always lands between them. */
body.woocommerce div.product p.price,
body.woocommerce div.product .woocommerce-variation-price .price{
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .5rem;
}

body.woocommerce div.product p.price del,
body.woocommerce div.product .woocommerce-variation-price .price del{
  order: 3;
  font-size: .8em;
}

body.woocommerce div.product p.price ins,
body.woocommerce div.product .woocommerce-variation-price .price ins{
  order: 1;
  text-decoration: none;
}

body.woocommerce div.product .est-price-discount{
  order: 2;
  align-self: center;
  font-size: .75rem;
}

/* Breadcrumb moved into the summary column, above badges/title (§
   inc/product-page.php); shared typography/color lives in global.css so it
   matches every other breadcrumb instance site-wide. */

/* --------------------------------------------------------------------------
   Title
   -------------------------------------------------------------------------- */
body.woocommerce div.product .product_title{
  font-family: var(--est-font-display, "Instrument Serif", Georgia, serif);
  font-weight: 400;
  letter-spacing: var(--est-tracking-display, -0.02em);
  color: var(--est-ink, #131313);
}

/* --------------------------------------------------------------------------
   Rating summary — explicit flex row, not WooCommerce's default float,
   so the stars and the review-count link never wrap onto separate lines.
   -------------------------------------------------------------------------- */
body.woocommerce div.product .woocommerce-product-rating{
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: .75rem 0 .75rem;
}

/* WooCommerce's own clearfix pseudo-elements (leftover from its float-based
   layout) become a real, invisible flex item once the parent is display:flex
   — that phantom item eats the gap, shoving the stars right. Kill them. */
body.woocommerce div.product .woocommerce-product-rating::before,
body.woocommerce div.product .woocommerce-product-rating::after{
  content: none;
  display: none;
}

body.woocommerce div.product .woocommerce-product-rating .star-rating{
  float: none;
  margin: 0 !important;
}

body.woocommerce div.product .woocommerce-product-rating .woocommerce-review-link{
  font-size: .8125rem;
  color: var(--est-ink-muted, #6A6A68);
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   Stock status — a colored dot instead of plain, easy-to-miss text
   -------------------------------------------------------------------------- */
body.woocommerce div.product .stock,
body.woocommerce div.product p.stock,
body.woocommerce div.product p.stock.in-stock,
body.woocommerce div.product .woocommerce-variation-availability p{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--est-ink, #131313) !important;
  font-family: var(--est-font-body, "DM Sans", system-ui, sans-serif);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .04em;
}

body.woocommerce div.product .stock::before,
body.woocommerce div.product p.stock::before,
body.woocommerce div.product .woocommerce-variation-availability p::before{
  content: "";
  flex: none;
  width: .625rem;
  height: .625rem;
  border-radius: 50%;
  background-color: #2E7D4F;
}

body.woocommerce div.product .stock.out-of-stock::before,
body.woocommerce div.product p.stock.out-of-stock::before{
  background-color: #B3392C;
}

body.woocommerce div.product .stock.available-on-backorder::before,
body.woocommerce div.product p.stock.available-on-backorder::before{
  background-color: #C58A1C;
}

/* Breathing room before the quantity/add-to-cart row — WooCommerce
   core sets no margin here at all, so this was a flat 0px gap. */
body.woocommerce div.product p.stock,
body.woocommerce div.product .woocommerce-variation-availability{
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   Variation table layout — each row (label + its swatches) stacks as a
   block on every viewport, not just mobile: mixing table-cell display
   with the th's own flex/block styling made the table layout algorithm
   insert unpredictable extra space between label and swatches, which
   read as "one huge gap after the label". Row-to-row spacing is now the
   single explicit tr margin below, not accidental cell padding.
   -------------------------------------------------------------------------- */
body.woocommerce div.product table.variations,
body.woocommerce div.product table.variations tbody,
body.woocommerce div.product table.variations tr,
body.woocommerce div.product table.variations th,
body.woocommerce div.product table.variations td{
  display: block;
  width: 100%;
  text-align: left;
}

/* !important: WooCommerce core's ".woocommerce div.product form.cart .variations"
   has more class-selectors than ours and otherwise wins the cascade,
   silently overriding this margin with its own 1em. */
body.woocommerce div.product table.variations{
  margin: 0 0 1.5rem !important;
  border: 0;
}

body.woocommerce div.product table.variations tr{
  margin-bottom: 1.5rem;
}

body.woocommerce div.product table.variations tr:last-child{
  margin-bottom: 0;
}

body.woocommerce div.product table.variations th.label{
  padding: 0 0 .5rem;
}

/* Color row: the static "FARGE" heading would duplicate the dynamic
   "FARGE: <name>" label single-product.js writes above the swatches
   (.est-swatch-label) — keep only one, visible line. The heading stays
   in the DOM for screen readers, just visually hidden. */
body.woocommerce div.product table.variations tr:has(.est-swatch-label) th.label{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
body.woocommerce div.product a.reset_variations[style*="hidden"]{
  display: none !important;
}
body.woocommerce div.product table.variations th.label label{
  font-family: var(--est-font-body, "DM Sans", system-ui, sans-serif);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--est-ink, #131313);
  margin: 0;
}

body.woocommerce div.product table.variations td.value{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem;
  padding: 0;
}

/* Swatches first, Clear link last */
body.woocommerce div.product table.variations td.value .est-swatches{
  order: 1;
}

body.woocommerce div.product table.variations td.value a.reset_variations{
  order: 2;
}

/* --------------------------------------------------------------------------
   Hide the native select — swatches replace it visually.
   The select stays in the DOM so Woo's variation logic keeps working.
   -------------------------------------------------------------------------- */
body.woocommerce div.product table.variations td.value select,
body.woocommerce div.product form.variations_form table.variations select{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  background: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* --------------------------------------------------------------------------
   Swatches
   -------------------------------------------------------------------------- */
body.woocommerce div.product .est-swatches{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 0;
  padding: 0;
}

body.woocommerce div.product .est-swatches .est-swatch{
  font-family: var(--est-font-body, "DM Sans", system-ui, sans-serif);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--est-ink, #131313);
  background: transparent;
  border: 1px solid var(--est-line, #D8D8D4);
  border-radius: var(--est-radius, 0);
  min-width: 3rem;
  padding: .8125rem .875rem;
  cursor: pointer;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  transition: border-color var(--est-dur, 400ms) var(--est-ease, cubic-bezier(.22,1,.36,1)),
              background-color var(--est-dur, 400ms) var(--est-ease, cubic-bezier(.22,1,.36,1)),
              color var(--est-dur, 400ms) var(--est-ease, cubic-bezier(.22,1,.36,1));
}

body.woocommerce div.product .est-swatches .est-swatch:hover{
  border-color: var(--est-ink, #131313);
}

body.woocommerce div.product .est-swatches .est-swatch.is-active{
  color: #FFFFFF;
  background: var(--est-ink, #131313);
  border-color: var(--est-ink, #131313);
}

body.woocommerce div.product .est-swatches .est-swatch.is-disabled,
body.woocommerce div.product .est-swatches .est-swatch:disabled{
  color: var(--est-ink, #131313);
  opacity: .3;
  cursor: not-allowed;
  text-decoration: line-through;
}

body.woocommerce div.product .est-swatches .est-swatch:focus-visible{
  outline: 2px solid var(--est-ink, #131313);
  outline-offset: 2px;
}

/* Color attribute: circular swatches instead of text pills. The dynamic
   "FARGE: <name>" label is the row's only visible heading now (the
   static th.label is hidden above) — style it identically to
   STØRRELSE's th.label so both rows read as the same kind of heading. */
body.woocommerce div.product table.variations td.value .est-swatch-label{
  order: 0;
  /* td.value's own flex gap (.75rem) already provides part of the space
     before the swatches; net it down to .5rem so it matches th.label's
     padding-bottom on the STØRRELSE row exactly. */
  margin: 0 0 -.25rem;
  font-family: var(--est-font-body, "DM Sans", system-ui, sans-serif);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--est-ink, #131313);
}

body.woocommerce div.product .est-swatches.est-swatches--color{
  gap: .625rem;
}

body.woocommerce div.product .est-swatches .est-swatch.est-swatch--color{
  min-width: 0;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--est-line, #D8D8D4);
  background-color: var(--est-swatch-color, #CCCCCC);
  text-indent: -9999px;
  overflow: hidden;
}

body.woocommerce div.product .est-swatches .est-swatch.est-swatch--color:hover{
  border-color: var(--est-ink, #131313);
}

body.woocommerce div.product .est-swatches .est-swatch.est-swatch--color.is-active{
  background-color: var(--est-swatch-color, #CCCCCC);
  border-color: var(--est-ink, #131313);
  box-shadow: 0 0 0 2px #FFFFFF inset, 0 0 0 3px var(--est-ink, #131313);
}

body.woocommerce div.product .est-swatches .est-swatch.est-swatch--color.is-disabled,
body.woocommerce div.product .est-swatches .est-swatch.est-swatch--color:disabled{
  opacity: .3;
  text-decoration: none;
}

/* Clear link */
body.woocommerce div.product a.reset_variations{
  font-family: var(--est-font-body, "DM Sans", system-ui, sans-serif);
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--est-ink, #131313);
  opacity: .6;
  margin: 0;
  text-decoration: underline;
}

body.woocommerce div.product a.reset_variations:hover{
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Add to cart button. --est-cart-ctrl-h is this button's own natural
   height (padding + line-height + border) reused by the quantity stepper
   and wishlist button below so all three line up exactly, instead of each
   sizing itself from its own content and drifting apart.
   -------------------------------------------------------------------------- */
body.woocommerce div.product form.cart{
  --est-cart-ctrl-h: calc(2rem + (.8125rem * 1.2) + 2px);
}

body.woocommerce div.product form.cart .button,
body.woocommerce div.product form.cart button.button,
body.woocommerce div.product form.cart button.single_add_to_cart_button,
body.woocommerce div.product form.cart button.button.alt{
  height: var(--est-cart-ctrl-h);
  font-family: var(--est-font-body, "DM Sans", system-ui, sans-serif);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--est-bg, #FFFFFF) !important;
  background-color: var(--est-accent, #4A1F45) !important;
  background-image: none;
  border: 1px solid var(--est-accent, #4A1F45);
  border-radius: var(--est-radius, 0);
  padding: 0 2rem;
  box-shadow: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background-color var(--est-dur, 400ms) var(--est-ease, cubic-bezier(.22,1,.36,1)),
              border-color var(--est-dur, 400ms) var(--est-ease, cubic-bezier(.22,1,.36,1)),
              color var(--est-dur, 400ms) var(--est-ease, cubic-bezier(.22,1,.36,1));
}

body.woocommerce div.product form.cart button.button:hover,
body.woocommerce div.product form.cart button.button.alt:hover{
  color: var(--est-bg, #FFFFFF) !important;
  background-color: var(--est-accent-dark, #341530) !important;
  border-color: var(--est-accent-dark, #341530);
}

body.woocommerce div.product form.cart button.button:focus-visible{
  outline: 2px solid var(--est-accent, #4A1F45);
  outline-offset: 2px;
}

body.woocommerce div.product form.cart button.button.disabled,
body.woocommerce div.product form.cart button.button.alt.disabled,
body.woocommerce div.product form.cart button.button.wc-variation-selection-needed,
body.woocommerce div.product form.cart button.button.disabled:hover,
body.woocommerce div.product form.cart button.button.alt.disabled:hover{
  color: var(--est-bg, #FFFFFF) !important;
  background-color: var(--est-accent, #4A1F45) !important;
  border-color: var(--est-accent, #4A1F45);
  opacity: .4;
  cursor: not-allowed;
}

/* --------------------------------------------------------------------------
   Quantity — bordered stepper box (± buttons added by single-product.js,
   native input stays the source of truth)
   -------------------------------------------------------------------------- */
body.woocommerce div.product form.cart .quantity{
  margin-right: .75rem;
}

body.woocommerce div.product form.cart .quantity.est-qty-enhanced{
  display: inline-flex;
  align-items: center;
  height: var(--est-cart-ctrl-h);
  border: 1px solid var(--est-ink, #131313);
  border-radius: var(--est-radius, 0);
  overflow: hidden;
  box-sizing: border-box;
}

body.woocommerce div.product form.cart .quantity input.qty,
body.woocommerce div.product form.cart input.input-text.qty{
  font-family: var(--est-font-body, "DM Sans", system-ui, sans-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--est-ink, #131313);
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0;
  box-shadow: none !important;
  outline: none;
  height: 100%;
  width: 3rem;
  min-height: 0;
  padding: 0 .25rem;
  text-align: center;
  appearance: textfield;
  -moz-appearance: textfield;
}

body.woocommerce div.product form.cart input.qty::-webkit-outer-spin-button,
body.woocommerce div.product form.cart input.qty::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}

body.woocommerce div.product form.cart input.qty:focus-visible{
  outline: 2px solid var(--est-ink, #131313);
  outline-offset: 2px;
}

body.woocommerce div.product form.cart .est-qty-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 2.75rem;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--est-ink, #131313);
  font-family: var(--est-font-body, "DM Sans", system-ui, sans-serif);
  font-size: 1.125rem;
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background-color var(--est-dur, 400ms) var(--est-ease, cubic-bezier(.22,1,.36,1));
}

body.woocommerce div.product form.cart .est-qty-btn:hover{
  background-color: var(--est-lavender, #F4F1F8);
}

body.woocommerce div.product form.cart .est-qty-btn:focus-visible{
  outline: 2px solid var(--est-ink, #131313);
  outline-offset: -2px;
}

/* --------------------------------------------------------------------------
   Wishlist — visual placeholder only. No plugin wired up yet: clicking
   does nothing (see inc/product-page.php). Bare heart icon, no border/box,
   sized to match the other controls' height so it stays vertically
   aligned with Add to cart.
   -------------------------------------------------------------------------- */
body.woocommerce div.product form.cart .est-wishlist-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: var(--est-cart-ctrl-h);
  height: var(--est-cart-ctrl-h);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--est-ink, #131313);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: color var(--est-dur, 400ms) var(--est-ease, cubic-bezier(.22,1,.36,1));
}

body.woocommerce div.product form.cart .est-wishlist-btn svg{
  width: 22px;
  height: 22px;
}

body.woocommerce div.product form.cart .est-wishlist-btn:hover{
  color: var(--est-accent, #4A1F45);
}

body.woocommerce div.product form.cart .est-wishlist-btn:focus-visible{
  outline: 2px solid var(--est-ink, #131313);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Payment trust icons — plain logos, not clickable. Real express-checkout
   buttons (Vipps/Stripe Payment Request/Link) are turned off for the
   product page via gateway settings, so this is the only payment mention
   left here.
   -------------------------------------------------------------------------- */
body.woocommerce div.product .est-pay-icons{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .625rem;
  margin-top: .75rem;
}

body.woocommerce div.product .est-pay-icons__label{
  font-family: var(--est-font-body, "DM Sans", system-ui, sans-serif);
  font-size: .75rem;
  color: var(--est-ink-muted, #6A6A68);
  white-space: nowrap;
}

body.woocommerce div.product .est-pay-icons__list{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.woocommerce div.product .est-pay-icons__list li{
  display: inline-flex;
  line-height: 0;
}

/* --------------------------------------------------------------------------
   Cart row alignment
   -------------------------------------------------------------------------- */
/* margin-bottom: WooCommerce core's own ".woocommerce div.product form.cart"
   sets 2em here; ours has one more element in the selector so it wins
   the cascade and can override it directly, no !important needed. */
body.woocommerce div.product form.cart{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
}

body.woocommerce div.product form.cart.variations_form{
  display: block;
}

body.woocommerce div.product form.cart .woocommerce-variation-add-to-cart{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
}

body.woocommerce div.product form.cart .button{
  float: none !important;
  vertical-align: middle;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 47.9375em){
  body.woocommerce div.product .est-swatches .est-swatch{
    min-width: 2.75rem;
    padding: .75rem;
  }

  body.woocommerce div.product form.cart button.button{
    flex: 1 1 auto;
    width: auto;
  }
}

/* --------------------------------------------------------------------------
   Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce){
  body.woocommerce div.product .est-swatches .est-swatch,
  body.woocommerce div.product form.cart button.button{
    transition: none;
  }
}
/* --------------------------------------------------------------------------
   Product tabs
   -------------------------------------------------------------------------- */
body.woocommerce div.product .woocommerce-tabs{
  margin-top: clamp(3rem, 8vw, 6.25rem);
}

body.woocommerce div.product .woocommerce-tabs ul.tabs{
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
  padding: 0 0 .875rem;
  border-bottom: 1px solid var(--est-line, #D8D8D4);
  list-style: none;
}

body.woocommerce div.product .woocommerce-tabs ul.tabs::before,
body.woocommerce div.product .woocommerce-tabs ul.tabs::after{
  content: none !important;
  display: none !important;
}

body.woocommerce div.product .woocommerce-tabs ul.tabs li{
  position: relative;
  margin: 0;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
body.woocommerce div.product .woocommerce-tabs ul.tabs li::after{
  content: none !important;
  display: none !important;
}

body.woocommerce div.product .woocommerce-tabs ul.tabs li a{
  display: block;
  font-family: var(--est-font-body, "DM Sans", system-ui, sans-serif);
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--est-ink, #131313);
  opacity: .55;
  padding: 0;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: opacity var(--est-dur, 400ms) var(--est-ease, cubic-bezier(.22,1,.36,1));
}

body.woocommerce div.product .woocommerce-tabs ul.tabs li a::after{
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: -.9375rem;
  width: 100%;
  height: 1px;
  background: var(--est-ink, #131313);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--est-dur, 400ms) var(--est-ease, cubic-bezier(.22,1,.36,1));
}

body.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover{
  opacity: .75;
}

body.woocommerce div.product .woocommerce-tabs ul.tabs li.active a{
  opacity: 1;
}

body.woocommerce div.product .woocommerce-tabs ul.tabs li.active a::after{
  transform: scaleX(1);
}

body.woocommerce div.product .woocommerce-tabs ul.tabs li a:focus-visible{
  outline: 2px solid var(--est-ink, #131313);
  outline-offset: 4px;
}

/* Panel */
body.woocommerce div.product .woocommerce-tabs .panel{
  margin: 0;
  padding: 0;
  font-family: var(--est-font-body, "DM Sans", system-ui, sans-serif);
  font-size: var(--est-step-0, 1rem);
  line-height: 1.7;
  color: var(--est-ink, #131313);
}

/* The panel heading repeats the tab name — hide it */
body.woocommerce div.product .woocommerce-tabs .panel > h2:first-child{
  display: none;
}

body.woocommerce div.product .woocommerce-tabs .panel p{
  margin: 0 0 1rem;
}

/* The site-wide "p{max-width:var(--est-measure)}" readability rule
   (global.css) is meant for long-form article copy — on the
   description tab it clips the text to a single narrow column inside
   an otherwise full-width panel. Individual review comments below are
   short and read fine at that measure, so this is scoped to the
   description tab only. */
body.woocommerce div.product .woocommerce-tabs #tab-description p{
  max-width: none;
}

/* Additional information table */
body.woocommerce div.product .woocommerce-tabs table.shop_attributes{
  width: 100%;
  border: 0;
  border-collapse: collapse;
}

body.woocommerce div.product .woocommerce-tabs table.shop_attributes tr{
  border-bottom: 1px solid var(--est-line, #D8D8D4);
}

body.woocommerce div.product .woocommerce-tabs table.shop_attributes th,
body.woocommerce div.product .woocommerce-tabs table.shop_attributes td{
  padding: .875rem 0;
  border: 0;
  background: transparent;
  font-style: normal;
  text-align: left;
  vertical-align: top;
}

body.woocommerce div.product .woocommerce-tabs table.shop_attributes th{
  width: 40%;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--est-ink, #131313);
}

body.woocommerce div.product .woocommerce-tabs table.shop_attributes td p{
  margin: 0;
  padding: 0;
}

@media (max-width: 47.9375em){
  body.woocommerce div.product .woocommerce-tabs ul.tabs{
    gap: 1.25rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  body.woocommerce div.product .woocommerce-tabs ul.tabs::-webkit-scrollbar{
    display: none;
  }

  body.woocommerce div.product .woocommerce-tabs ul.tabs li a{
    white-space: nowrap;
    font-size: .8125rem;
  }
}

@media (prefers-reduced-motion: reduce){
  body.woocommerce div.product .woocommerce-tabs ul.tabs li a,
  body.woocommerce div.product .woocommerce-tabs ul.tabs li a::after{
    transition: none;
  }
}
/* --------------------------------------------------------------------------
   Gallery — thumbnails left, main image right
   -------------------------------------------------------------------------- */
body.woocommerce div.product .woocommerce-product-gallery{
  --est-thumb-col-w: 5.5rem;
  display: grid;
  grid-template-columns: var(--est-thumb-col-w) minmax(0, 1fr);
  gap: clamp(.5rem, 1.5vw, 1rem);
  align-items: start;
  position: relative;
  width: 100%;
  float: none;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

body.woocommerce div.product .woocommerce-product-gallery__wrapper{
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}

body.woocommerce div.product .woocommerce-product-gallery__image img{
  width: 100%;
  height: auto;
  display: block;
}

/* Thumbnail column
   A percentage max-height here can't reliably resolve against this grid's
   auto-sized row (some engines size the row to fit the thumb list itself
   before applying the cap, so it never actually clips) — and taking the
   thumb column out of grid flow entirely (position:absolute) turned out to
   starve FlexSlider's own height measurement of the main image, since it
   was inadvertently relying on the thumb column's natural height to give
   the row something non-zero to size against on first paint. So the real
   pixel cap is set from JS instead (see syncThumbRailHeight() in
   single-product.js), which measures the actual rendered height of
   .woocommerce-product-gallery__wrapper and mirrors it here as an inline
   max-height — this rule is just the (harmless) no-JS fallback. */
body.woocommerce div.product .woocommerce-product-gallery ol.flex-control-thumbs{
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(.375rem, 1vw, .625rem);
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
}

body.woocommerce div.product .woocommerce-product-gallery ol.flex-control-thumbs::-webkit-scrollbar{
  display: none;
}

body.woocommerce div.product .woocommerce-product-gallery ol.flex-control-thumbs li{
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  list-style: none;
}

body.woocommerce div.product .woocommerce-product-gallery ol.flex-control-thumbs img{
  width: 100%;
  height: auto;
  display: block;
  opacity: .45;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-tap-highlight-color: transparent;
  transition: opacity var(--est-dur, 400ms) var(--est-ease, cubic-bezier(.22,1,.36,1)),
              border-color var(--est-dur, 400ms) var(--est-ease, cubic-bezier(.22,1,.36,1));
}

body.woocommerce div.product .woocommerce-product-gallery ol.flex-control-thumbs img:hover{
  opacity: .8;
}

body.woocommerce div.product .woocommerce-product-gallery ol.flex-control-thumbs img.flex-active{
  opacity: 1;
  border-color: var(--est-ink, #131313);
}

/* Zoom trigger sits over the main image */
body.woocommerce div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger{
  grid-column: 2;
  grid-row: 1;
  z-index: 2;
  top: .75rem;
  right: .75rem;
  border-radius: 0;
}

/* --------------------------------------------------------------------------
   Gallery — mobile: thumbs in a row underneath
   -------------------------------------------------------------------------- */
@media (max-width: 47.9375em){
  body.woocommerce div.product .woocommerce-product-gallery{
    grid-template-columns: minmax(0, 1fr);
    gap: .625rem;
  }

  body.woocommerce div.product .woocommerce-product-gallery__wrapper{
    grid-column: 1;
    grid-row: 1;
  }

  body.woocommerce div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger{
    grid-column: 1;
    grid-row: 1;
  }

  body.woocommerce div.product .woocommerce-product-gallery ol.flex-control-thumbs{
    grid-column: 1;
    grid-row: 2;
    flex-direction: row;
    overflow-x: auto;
    max-height: none;
  }

  body.woocommerce div.product .woocommerce-product-gallery ol.flex-control-thumbs li{
    flex: 0 0 4.5rem;
  }
}

@media (prefers-reduced-motion: reduce){
  body.woocommerce div.product .woocommerce-product-gallery ol.flex-control-thumbs img{
    transition: none;
  }
}
/* Guard: single product swatch button styling must not reach the loop */
body.single-product .related.products .est-swatches .est-swatch,
body.single-product .upsells.products .est-swatches .est-swatch{
  min-width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background-color: var(--est-swatch-color, #CCC) !important;
  text-indent: -9999px;
  overflow: hidden;
}

body.single-product .related.products .est-swatches .est-swatch.is-active,
body.single-product .upsells.products .est-swatches .est-swatch.is-active{
  color: transparent !important;
  background-color: var(--est-swatch-color, #CCC) !important;
}
/* ==========================================================================
   §11 Related products / Upsells — single product page
   ========================================================================== */

body.single-product .related.products,
body.single-product .upsells.products{
  clear: both;
  margin-block: clamp(3rem, 8vw, 6rem) 0;
  padding-block-start: clamp(2rem, 5vw, 3.5rem);
  border-top: 1px solid var(--est-line, #E2E2DF);
}

body.single-product .related.products > h2,
body.single-product .upsells.products > h2{
  font-family: var(--est-font-display, "Instrument Serif", Georgia, serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: var(--est-tracking-display, -0.02em);
  color: var(--est-ink, #131313);
  margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
  text-align: left;
}

/* Grid — 2 mobile, 3 tablet, 4 desktop */
body.single-product .related.products ul.products,
body.single-product .upsells.products ul.products{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(1rem, 4vw, 2.25rem);
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.single-product .related.products ul.products::before,
body.single-product .related.products ul.products::after,
body.single-product .upsells.products ul.products::before,
body.single-product .upsells.products ul.products::after{
  content: none !important;
}

body.single-product .related.products ul.products li.product,
body.single-product .upsells.products ul.products li.product{
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  clear: none !important;
  display: flex !important;
  flex-direction: column;
}

@media (min-width: 48em){
  body.single-product .related.products ul.products,
  body.single-product .upsells.products ul.products{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 75em){
  body.single-product .related.products ul.products,
  body.single-product .upsells.products ul.products{
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

/* Image + hover swap */
body.single-product .related.products li.product a .est-card__media,
body.single-product .upsells.products li.product a .est-card__media{
  position: relative !important;
  display: block !important;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3 / 4;
  margin: 0 0 var(--est-space-m, 1rem);
  background: var(--est-surface, #F1F1EF);
  border-radius: var(--est-radius, 0);
}

body.single-product .related.products li.product a .est-card__media img,
body.single-product .upsells.products li.product a .est-card__media img{
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  transition: opacity var(--est-dur, 400ms) var(--est-ease, cubic-bezier(.22,1,.36,1)),
              transform 600ms var(--est-ease, cubic-bezier(.22,1,.36,1));
}

body.single-product .related.products li.product a .est-card__media.has-hover img + img,
body.single-product .upsells.products li.product a .est-card__media.has-hover img + img{
  opacity: 0 !important;
  z-index: 2;
}

@media (hover: hover) and (pointer: fine){
  body.single-product .related.products li.product a .est-card__media.has-hover:hover img + img,
  body.single-product .upsells.products li.product a .est-card__media.has-hover:hover img + img{
    opacity: 1 !important;
  }
  body.single-product .related.products li.product a .est-card__media:hover img,
  body.single-product .upsells.products li.product a .est-card__media:hover img{
    transform: scale(1.03);
  }
}

body.single-product .related.products li.product a .est-card__media.has-hover:focus-within img + img,
body.single-product .upsells.products li.product a .est-card__media.has-hover:focus-within img + img{
  opacity: 1 !important;
}

/* Fallback when a card has no est-card__media wrapper */
body.single-product .related.products li.product a > img,
body.single-product .upsells.products li.product a > img{
  width: 100% !important;
  height: auto !important;
  display: block !important;
  margin: 0 0 var(--est-space-m, 1rem) !important;
  border-radius: var(--est-radius, 0);
}

/* Title */
body.single-product .related.products li.product .woocommerce-loop-product__title,
body.single-product .upsells.products li.product .woocommerce-loop-product__title{
  font-family: var(--est-font-display, "Instrument Serif", Georgia, serif);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: var(--est-tracking-display, -0.02em);
  color: var(--est-ink, #131313);
  margin: 0 0 .5rem;
  padding: 0;
}

/* Price */
body.single-product .related.products li.product .price,
body.single-product .related.products li.product .price bdi,
body.single-product .related.products li.product .price ins,
body.single-product .related.products li.product .price .amount,
body.single-product .upsells.products li.product .price,
body.single-product .upsells.products li.product .price bdi{
  color: var(--est-ink, #131313) !important;
  font-family: var(--est-font-body, "DM Sans", system-ui, sans-serif);
  font-size: .875rem !important;
  font-weight: 500;
  text-decoration: none;
  margin: 0 0 1rem;
}

body.single-product .related.products li.product .price del,
body.single-product .related.products li.product .price del bdi,
body.single-product .upsells.products li.product .price del{
  color: var(--est-ink, #131313) !important;
  opacity: .5;
}

/* Swatches */
body.single-product .related.products li.product .est-swatches,
body.single-product .upsells.products li.product .est-swatches{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .375rem;
  list-style: none;
  margin: 0 0 .875rem;
  padding: 0;
}

body.single-product .related.products li.product .est-swatches__item,
body.single-product .upsells.products li.product .est-swatches__item{
  margin: 0;
  padding: 0;
  line-height: 0;
  border: 0;
}

body.single-product .related.products li.product .est-swatches .est-swatch,
body.single-product .upsells.products li.product .est-swatches .est-swatch{
  display: block;
  width: .875rem;
  height: .875rem;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: var(--est-swatch-color, #CCC);
  box-shadow: inset 0 0 0 1px rgba(19, 19, 19, .18);
  cursor: pointer;
  transition: transform 200ms var(--est-ease, cubic-bezier(.22,1,.36,1)),
              box-shadow 200ms var(--est-ease, cubic-bezier(.22,1,.36,1));
}

@media (hover: hover) and (pointer: fine){
  body.single-product .related.products li.product .est-swatches .est-swatch:hover,
  body.single-product .upsells.products li.product .est-swatches .est-swatch:hover{
    transform: scale(1.15);
    box-shadow: inset 0 0 0 1px rgba(19, 19, 19, .35),
                0 0 0 1px var(--est-ink, #131313);
  }
}

body.single-product .related.products li.product .est-swatches .est-swatch.is-active,
body.single-product .upsells.products li.product .est-swatches .est-swatch.is-active{
  box-shadow: inset 0 0 0 1px rgba(19, 19, 19, .35),
              0 0 0 1px var(--est-ink, #131313);
}

body.single-product .related.products li.product .est-swatches__more,
body.single-product .upsells.products li.product .est-swatches__more{
  font-family: var(--est-font-body, "DM Sans", system-ui, sans-serif);
  font-size: .6875rem;
  letter-spacing: .04em;
  color: var(--est-ink, #131313);
  opacity: .6;
  line-height: 1;
  margin-left: .125rem;
}

body.single-product .related.products li.product .est-card__media.is-previewing img + img,
body.single-product .upsells.products li.product .est-card__media.is-previewing img + img{
  opacity: 0 !important;
}

@media (min-width: 48em){
  body.single-product .related.products li.product .est-swatches .est-swatch,
  body.single-product .upsells.products li.product .est-swatches .est-swatch{
    width: 1rem;
    height: 1rem;
  }
}

/* Button */
body.single-product .related.products li.product a.button,
body.single-product .related.products li.product a.button.add_to_cart_button,
body.single-product .related.products li.product a.button.product_type_variable,
body.single-product .upsells.products li.product a.button{
  font-family: var(--est-font-body, "DM Sans", system-ui, sans-serif);
  font-size: clamp(.6875rem, 2vw, .8125rem);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--est-bg, #FFFFFF) !important;
  background-color: var(--est-accent, #4A1F45) !important;
  background-image: none;
  border: 1px solid var(--est-accent, #4A1F45);
  border-radius: var(--est-radius, 0);
  padding: .875rem .75rem;
  width: 100% !important;
  display: block !important;
  margin: auto 0 0 !important;
  text-align: center;
  text-decoration: none;
  box-shadow: none;
  white-space: normal;
  -webkit-tap-highlight-color: transparent;
  transition: background-color var(--est-dur, 400ms) var(--est-ease, cubic-bezier(.22,1,.36,1)),
              color var(--est-dur, 400ms) var(--est-ease, cubic-bezier(.22,1,.36,1)),
              border-color var(--est-dur, 400ms) var(--est-ease, cubic-bezier(.22,1,.36,1));
}

body.single-product .related.products li.product a.button:hover,
body.single-product .related.products li.product a.button:focus,
body.single-product .related.products li.product a.button:active,
body.single-product .upsells.products li.product a.button:hover{
  color: var(--est-bg, #FFFFFF) !important;
  background-color: var(--est-accent-dark, #341530) !important;
  border-color: var(--est-accent-dark, #341530);
}

body.single-product .related.products li.product a.button:focus-visible,
body.single-product .upsells.products li.product a.button:focus-visible{
  outline: 2px solid var(--est-accent, #4A1F45);
  outline-offset: 2px;
}

body.single-product .related.products li.product a.added_to_cart,
body.single-product .upsells.products li.product a.added_to_cart{
  font-family: var(--est-font-body, "DM Sans", system-ui, sans-serif);
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--est-ink, #131313);
  text-decoration: underline;
  display: block;
  text-align: center;
  margin-top: .5rem;
}

@media (prefers-reduced-motion: reduce){
  body.single-product .related.products li.product a.button,
  body.single-product .related.products li.product .est-swatches .est-swatch{
    transition: none;
  }
  body.single-product .related.products li.product a .est-card__media:hover img{
    transform: none;
  }
}
/* --------------------------------------------------------------------------
   Trust row — full width below the whole product (gallery + summary),
   hooked to woocommerce_after_single_product_summary (see
   inc/product-page.php),
   not confined to the narrow summary column. Markup/classes are shared
   with the homepage's section 05 (.est-trustrow, see global.css); the
   grid/width there is reused as-is here — only the item layout changes,
   icon-left/text-right instead of the homepage's centered icon-on-top,
   so each item reads as one compact line.
   -------------------------------------------------------------------------- */
body.single-product .est-trustrow{
  margin-top: 2rem;
  border-radius: var(--est-radius, 0);
}

body.single-product .est-trustrow__item{
  flex-direction: row;
  align-items: center;
  gap: .625rem;
  text-align: left;
}

/* --------------------------------------------------------------------------
   Product reviews (Omtaler tab) — GeneratePress/WooCommerce defaults
   render each review as a rounded, bordered card (border-radius:4px,
   a generic lavender border) and a plain gray comment form. Neither
   matches the sharp-corners token or the rest of the page, so both are
   restyled here.

   !important throughout: WooCommerce's own review/comment-form CSS
   scopes almost everything through "#reviews #comments" or
   "#review_form #respond" — two ID selectors — which outranks any
   class-based override here no matter how many classes it stacks.
   -------------------------------------------------------------------------- */
body.woocommerce div.product .woocommerce-Reviews-title{
  margin: 0 0 1.75rem !important;
  font-family: var(--est-font-display, "Instrument Serif", Georgia, serif);
  font-weight: 400;
  color: var(--est-ink, #131313);
}

body.woocommerce div.product ol.commentlist{
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

body.woocommerce div.product ol.commentlist li.review{
  margin: 0 0 2rem !important;
  padding: 0 0 2rem !important;
  border: 0 !important;
  border-bottom: 1px solid var(--est-line, #D8D8D4) !important;
  background: transparent !important;
}

body.woocommerce div.product ol.commentlist li.review:last-child{
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}

body.woocommerce div.product .comment_container{
  position: relative;
}

body.woocommerce div.product .comment_container img.avatar{
  width: 2.75rem !important;
  height: 2.75rem !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: var(--est-radius, 0) !important;
  background: transparent !important;
  float: none !important;
}

/* Strip the boxed card look — border, radius, background, padding —
   the bottom rule on li.review is the only separator needed now. */
body.woocommerce div.product .comment-text{
  margin-left: 3.5rem !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

body.woocommerce div.product .star-rating{
  margin: 0 0 .5rem !important;
  font-size: .8125rem;
}

body.woocommerce div.product .star-rating::before{
  color: var(--est-line, #D8D8D4);
}

body.woocommerce div.product .star-rating span::before{
  color: var(--est-accent, #4A1F45);
}

body.woocommerce div.product p.meta{
  margin: 0 0 .5rem !important;
  font-family: var(--est-font-body, "DM Sans", system-ui, sans-serif);
  font-size: .8125rem !important;
  color: var(--est-ink-muted, #6A6A68) !important;
}

body.woocommerce div.product .woocommerce-review__author{
  font-weight: 600;
  font-style: normal;
  color: var(--est-ink, #131313) !important;
}

body.woocommerce div.product .woocommerce-review__verified{
  font-style: normal;
  color: var(--est-ink-muted, #6A6A68) !important;
}

body.woocommerce div.product .comment-text .description p{
  margin: 0 !important;
  font-family: var(--est-font-body, "DM Sans", system-ui, sans-serif);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--est-ink, #131313);
}

/* Review form */
body.woocommerce div.product #review_form_wrapper{
  margin-top: 3rem;
}

body.woocommerce div.product #review_form_wrapper #reply-title{
  margin: 0 0 1.5rem !important;
  font-family: var(--est-font-display, "Instrument Serif", Georgia, serif);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--est-ink, #131313);
}

body.woocommerce div.product #commentform p{
  margin: 0 0 1.25rem !important;
}

body.woocommerce div.product #commentform label{
  display: block;
  margin: 0 0 .5rem;
  font-family: var(--est-font-body, "DM Sans", system-ui, sans-serif);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--est-ink, #131313);
}

body.woocommerce div.product #commentform .required{
  text-decoration: none;
  color: var(--est-ink-muted, #6A6A68);
}

body.woocommerce div.product #commentform textarea,
body.woocommerce div.product #commentform input[type="text"],
body.woocommerce div.product #commentform input[type="email"]{
  display: block !important;
  width: 100% !important;
  max-width: 32rem;
  height: auto !important;
  padding: .875rem 1rem !important;
  font-family: var(--est-font-body, "DM Sans", system-ui, sans-serif);
  font-size: .9375rem;
  color: var(--est-ink, #131313);
  background: var(--est-bg, #FFFFFF) !important;
  border: 1px solid var(--est-line, #D8D8D4) !important;
  border-radius: var(--est-radius, 0) !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

body.woocommerce div.product #commentform textarea{
  max-width: 40rem;
  min-height: 8rem;
  resize: vertical;
}

body.woocommerce div.product #commentform textarea:focus-visible,
body.woocommerce div.product #commentform input[type="text"]:focus-visible,
body.woocommerce div.product #commentform input[type="email"]:focus-visible{
  outline: 2px solid var(--est-ink, #131313);
  outline-offset: 2px;
  border-color: var(--est-ink, #131313) !important;
}

body.woocommerce div.product #commentform p.stars a::before{
  color: var(--est-line, #D8D8D4);
}

body.woocommerce div.product #commentform p.stars:hover a::before,
body.woocommerce div.product #commentform p.stars.selected a.active::before,
body.woocommerce div.product #commentform p.stars.selected a.active ~ a::before{
  color: var(--est-accent, #4A1F45);
}

body.woocommerce div.product #commentform .comment-form-cookies-consent{
  display: flex !important;
  align-items: flex-start;
  gap: .5rem;
}

body.woocommerce div.product #commentform .comment-form-cookies-consent label{
  display: inline;
  margin: 0;
  font-size: .8125rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--est-ink-muted, #6A6A68);
}

body.woocommerce div.product #commentform p.form-submit{
  margin-bottom: 0 !important;
}

body.woocommerce div.product #commentform #submit{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9375rem 2rem;
  font-family: var(--est-font-body, "DM Sans", system-ui, sans-serif);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--est-bg, #FFFFFF);
  background-color: var(--est-accent, #4A1F45);
  border: 0;
  border-radius: var(--est-radius, 0);
  cursor: pointer;
  transition: background-color var(--est-dur, 400ms) var(--est-ease, cubic-bezier(.22,1,.36,1));
}

body.woocommerce div.product #commentform #submit:hover{
  background-color: var(--est-accent-dark, #341630);
}
