/* ==========================================================================
   ZZACORE — WooCommerce
   Loop, single product, cart, checkout, account. Built for VARIABLE products
   (one garment, several colourways), which is how this catalogue is set up.
   ========================================================================== */

/* --- Notices -------------------------------------------------------------- */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: var(--zz-bone);
  border-top: 2px solid var(--zz-sage-deep);
  border-radius: 0;
  color: var(--zz-ink);
  font-size: 15px;
}
.woocommerce-message::before, .woocommerce-info::before { color: var(--zz-sage-deep); }
.woocommerce-error { border-top-color: var(--zz-sale); }
.woocommerce-error::before { color: var(--zz-sale); }

/* ==========================================================================
   1. Product loop
   ========================================================================== */

ul.products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 782px)  { ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { ul.products { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
ul.products.columns-1 { grid-template-columns: minmax(0, 1fr); }
ul.products.columns-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 782px) { ul.products.columns-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
  text-align: left;
  clear: none;
}
/* WooCommerce ships a clearfix on ul.products. In a grid container a ::before
   or ::after becomes a real grid item and swallows a cell -- that pushed the
   first card into column 2 and wrapped the row onto a second line.
   Woo scopes its rule as `.woocommerce ul.products::before` (0,2,1), so a bare
   `ul.products::before` (0,1,1) loses the cascade no matter the load order.
   Match its specificity and force it. */
.woocommerce ul.products::before,
.woocommerce ul.products::after,
ul.products::before,
ul.products::after { content: none !important; display: none !important; }
ul.products li.product::before, ul.products li.product::after { display: none; }

/* --- Media well ----------------------------------------------------------- */
.zz-card__media {
  position: relative;
  overflow: hidden;
  background: var(--zz-bone);
  aspect-ratio: 4 / 5;
}
/* Only the image link fills the well — the add-to-cart anchor must not. */
.zz-card__media > a.zz-card__link { display: block; width: 100%; height: 100%; }
.zz-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  transition: transform var(--zz-t-slow), opacity var(--zz-t);
}
li.product:hover .zz-card__media img { transform: scale(1.04); }

/* Second colourway revealed on hover */
.zz-card__img--alt { position: absolute; inset: 0; opacity: 0; }
li.product:hover .zz-card__img--alt { opacity: 1; }

/* --- Badges --------------------------------------------------------------- */
.zz-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.zz-badge,
ul.products li.product span.onsale {
  position: static;
  display: inline-block;
  background: var(--zz-cream);
  color: var(--zz-ink);
  font-family: var(--zz-font-display);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: var(--zz-track);
  text-transform: uppercase;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 0;
  margin: 0;
  min-height: 0;
  min-width: 0;
}
.zz-badge--sale, ul.products li.product span.onsale { background: var(--zz-ink); color: var(--zz-cream); }
.zz-badge--new  { background: var(--zz-sage-pale); color: var(--zz-sage-deep); }

/* --- Quick add / Select options ------------------------------------------- */
.zz-quickadd,
.zz-card__media .add_to_cart_button,
.zz-card__media .button {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin: 0 !important;
  padding: 13px 12px;
  background: var(--zz-ink);
  color: var(--zz-cream);
  border: 0;
  border-radius: 0;
  font-family: var(--zz-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--zz-track);
  text-transform: uppercase;
  text-align: center;
  transform: translateY(100%);
  transition: transform var(--zz-t), background var(--zz-t-fast);
}
li.product:hover .zz-quickadd,
.zz-quickadd:focus-visible { transform: translateY(0); }
.zz-quickadd:hover { background: var(--zz-sage-deep); color: var(--zz-cream); }

.zz-quickadd.loading { opacity: .85; pointer-events: none; }
.zz-quickadd.loading::after {
  content: "";
  position: static;
  width: 12px; height: 12px; margin: 0;
  border: 1.5px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: zz-spin .7s linear infinite;
}
.zz-quickadd.added::after { content: none; }
@keyframes zz-spin { to { transform: rotate(360deg); } }

ul.products li.product .added_to_cart { display: none; }

/* No hover on touch — keep the affordance visible */
@media (hover: none) { .zz-quickadd { transform: translateY(0); } }

/* --- Card body ------------------------------------------------------------ */
.zz-card__body {
  padding-top: 13px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.zz-card__info { min-width: 0; }

ul.products li.product .woocommerce-loop-product__title,
ul.products li.product h2 {
  font-family: var(--zz-font-body) !important;
  font-size: 14.5px !important;
  font-weight: 600;
  line-height: 1.35;
  color: var(--zz-ink);
  padding: 0;
  margin: 0;
}

ul.products li.product .price {
  font-family: var(--zz-font-body);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--zz-ink);
  margin: 0;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
ul.products li.product .price del { color: var(--zz-muted); font-weight: 400; opacity: .75; margin-right: 5px; }
ul.products li.product .price ins { text-decoration: none; color: var(--zz-sale); }
/* Variable products show "$76 – $92"; keep it from wrapping awkwardly */
ul.products li.product .price .woocommerce-Price-amount { white-space: nowrap; }

.zz-rating { display: flex; align-items: center; gap: 5px; margin-top: 3px; font-size: 12.5px; color: var(--zz-muted); }
.zz-rating svg { width: 12px; height: 12px; fill: var(--zz-sage); }
ul.products li.product .star-rating { display: none; }

/* --- Colourway swatches --------------------------------------------------- */
.zz-swatches { display: flex; gap: 5px; margin-top: 9px; flex-wrap: wrap; }
.zz-swatch {
  width: 11px;
  height: 11px;
  border-radius: var(--zz-pill);
  border: 1px solid var(--zz-line);
  display: block;
}
.zz-swatch--more { font-size: 10px; color: var(--zz-muted); line-height: 11px; }

/* ==========================================================================
   2. Archive chrome
   ========================================================================== */

.woocommerce-products-header__title, .woocommerce-products-header .page-title {
  font-family: var(--zz-font-display);
  font-size: var(--zz-h2);
  font-weight: 600;
}
.term-description, .woocommerce-products-header__description { color: var(--zz-muted); max-width: 60ch; }

.woocommerce-result-count {
  font-family: var(--zz-font-display);
  font-size: 11px;
  letter-spacing: var(--zz-track);
  text-transform: uppercase;
  color: var(--zz-muted);
}
.woocommerce-ordering select {
  font-family: var(--zz-font-display);
  font-size: 11.5px;
  letter-spacing: var(--zz-track);
  text-transform: uppercase;
  border: 0;
  border-bottom: 1px solid var(--zz-line);
  padding: 8px 2px;
  width: auto;
}

.woocommerce nav.woocommerce-pagination ul { border: 0; display: flex; gap: 8px; justify-content: center; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  font-family: var(--zz-font-display);
  font-size: 12px;
  min-width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--zz-line);
  padding: 0;
}
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--zz-ink); color: var(--zz-cream); border-color: var(--zz-ink);
}

.widget .widget-title {
  font-family: var(--zz-font-display);
  font-size: var(--zz-label);
  letter-spacing: var(--zz-track);
  text-transform: uppercase;
  color: var(--zz-muted);
  margin-bottom: 16px;
}
.widget_product_categories li, .widget_layered_nav li {
  padding: 8px 0; border-bottom: 1px solid var(--zz-line); font-size: 14px; list-style: none;
}
.widget_product_categories ul, .widget_layered_nav ul { margin: 0; padding: 0; }

/* ==========================================================================
   3. Single product
   ========================================================================== */

.single-product div.product { display: grid; gap: clamp(28px, 5vw, 64px); }
@media (min-width: 900px) { .single-product div.product { grid-template-columns: 1.05fr 1fr; align-items: start; } }

.single-product .woocommerce-product-gallery { float: none; width: 100% !important; margin: 0; background: var(--zz-bone); }
.single-product .woocommerce-product-gallery img { border-radius: 0; }
.single-product .flex-control-thumbs { display: flex; gap: 10px; margin-top: 10px; padding: 0; list-style: none; }
.single-product .flex-control-thumbs li { width: 72px; margin: 0; }
.single-product .flex-control-thumbs img { opacity: .6; transition: opacity var(--zz-t-fast); }
.single-product .flex-control-thumbs img.flex-active, .single-product .flex-control-thumbs img:hover { opacity: 1; }

.single-product div.product .summary { float: none; width: 100% !important; margin: 0; }
.single-product .product_title { font-size: clamp(28px, 3vw, 40px); margin-bottom: 12px; }
.single-product div.product p.price, .single-product div.product span.price {
  font-family: var(--zz-font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--zz-ink);
  margin-bottom: 20px;
}
.single-product .woocommerce-product-details__short-description { color: var(--zz-muted); line-height: 1.7; }
.star-rating span::before, .star-rating::before { color: var(--zz-sage); }

/* --- Variations (Size / Colour) ------------------------------------------- */
.single-product table.variations { border: 0; margin-bottom: 20px; width: 100%; }
.single-product table.variations th, .single-product table.variations td { border: 0; padding: 8px 0; display: block; }
.single-product table.variations label {
  font-family: var(--zz-font-display);
  font-size: var(--zz-label);
  letter-spacing: var(--zz-track);
  text-transform: uppercase;
  color: var(--zz-muted);
}
.single-product table.variations select {
  border: 1px solid var(--zz-line);
  padding: 12px 14px;
  background: var(--zz-white);
}
.single-product .reset_variations { font-size: 12px; color: var(--zz-muted); }
.woocommerce-variation-price { margin-bottom: 14px; }

.quantity { display: inline-flex; align-items: center; border: 1px solid var(--zz-line); height: 52px; }
.quantity .qty {
  width: 64px; height: 100%; text-align: center; border: 0; padding: 0;
  -moz-appearance: textfield; font-size: 15px;
}
.quantity .qty::-webkit-outer-spin-button, .quantity .qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.single-product form.cart { display: flex; flex-wrap: wrap; gap: 12px; align-items: stretch; margin-bottom: 28px; }
.single-product form.cart.variations_form { display: block; }
.single-product .woocommerce-variation-add-to-cart { display: flex; gap: 12px; flex-wrap: wrap; }
.single-product form.cart .single_add_to_cart_button {
  flex: 1 1 220px;
  min-height: 52px;
  background: var(--zz-sage-deep);
  color: var(--zz-cream);
  border-radius: 0;
  font-family: var(--zz-font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: var(--zz-track);
  text-transform: uppercase;
  padding: 0 32px;
  transition: background var(--zz-t-fast);
}
.single-product form.cart .single_add_to_cart_button:hover { background: var(--zz-ink); }
.single-product form.cart .single_add_to_cart_button.disabled { opacity: .45; }

.product_meta {
  border-top: 1px solid var(--zz-line);
  padding-top: 20px;
  font-family: var(--zz-font-display);
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--zz-muted);
}
.product_meta > span { display: block; margin-bottom: 6px; }

/* Tabs */
.woocommerce-tabs { grid-column: 1 / -1; margin-top: clamp(40px, 6vw, 80px); }
.woocommerce-tabs ul.tabs { padding: 0; margin: 0 0 32px; border-bottom: 1px solid var(--zz-line); display: flex; gap: 32px; list-style: none; }
.woocommerce-tabs ul.tabs::before { display: none; }
.woocommerce-tabs ul.tabs li { background: none; border: 0; border-radius: 0; margin: 0; padding: 0; }
.woocommerce-tabs ul.tabs li::before, .woocommerce-tabs ul.tabs li::after { display: none; }
.woocommerce-tabs ul.tabs li a {
  font-family: var(--zz-font-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: var(--zz-track);
  text-transform: uppercase;
  color: var(--zz-muted);
  padding: 0 0 14px;
  display: block;
}
.woocommerce-tabs ul.tabs li.active a { color: var(--zz-ink); box-shadow: inset 0 -1px 0 var(--zz-ink); }

.related, .upsells { grid-column: 1 / -1; margin-top: clamp(56px, 8vw, 112px); }
.related > h2, .upsells > h2 { font-size: var(--zz-h2); margin-bottom: 40px; }

/* ==========================================================================
   4. Cart, checkout, account
   ========================================================================== */

.woocommerce table.shop_table { border: 0; border-radius: 0; border-collapse: collapse; }
.woocommerce table.shop_table th {
  font-family: var(--zz-font-display);
  font-size: var(--zz-label);
  letter-spacing: var(--zz-track);
  text-transform: uppercase;
  color: var(--zz-muted);
  font-weight: 600;
  border-bottom: 1px solid var(--zz-line);
  padding: 0 12px 14px 0;
}
.woocommerce table.shop_table td { border: 0; border-bottom: 1px solid var(--zz-line); padding: 20px 12px 20px 0; }
.woocommerce table.shop_table .product-thumbnail img { width: 84px; background: var(--zz-bone); }
.woocommerce a.remove { color: var(--zz-muted) !important; font-weight: 400; }
.woocommerce a.remove:hover { background: transparent; color: var(--zz-sale) !important; }

.woocommerce .cart-collaterals .cart_totals { background: var(--zz-bone); padding: 28px; width: 100%; }
.woocommerce-checkout #order_review,
.woocommerce-checkout .woocommerce-checkout-review-order { background: var(--zz-bone); padding: 28px; }
.woocommerce .cart_totals h2, .woocommerce-checkout h3 { font-size: var(--zz-h3); margin-bottom: 20px; }

.woocommerce .button,
.woocommerce input[type=submit].button,
.woocommerce a.button,
.woocommerce button.button {
  background: var(--zz-ink);
  color: var(--zz-cream);
  border-radius: 0;
  font-family: var(--zz-font-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: var(--zz-track);
  text-transform: uppercase;
  padding: 15px 28px;
  line-height: 1.2;
  transition: background var(--zz-t-fast), color var(--zz-t-fast);
}
.woocommerce .button:hover, .woocommerce a.button:hover, .woocommerce button.button:hover {
  background: var(--zz-sage-deep); color: var(--zz-cream);
}
.woocommerce .button.alt, .woocommerce #place_order { background: var(--zz-sage-deep); }
.woocommerce .button.alt:hover, .woocommerce #place_order:hover { background: var(--zz-ink); }

.woocommerce form .form-row label {
  font-family: var(--zz-font-display);
  font-size: var(--zz-label);
  letter-spacing: var(--zz-track);
  text-transform: uppercase;
  color: var(--zz-muted);
  margin-bottom: 4px;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.select2-container--default .select2-selection--single {
  border: 0; border-bottom: 1px solid var(--zz-line); border-radius: 0;
  background: transparent; padding: 12px 2px; height: auto;
}
.select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 1.5; padding-left: 2px; }
.select2-container--default .select2-selection--single .select2-selection__arrow { top: 8px; }

/* --- Payment methods (COD at launch) -------------------------------------- */
.woocommerce-checkout #payment { background: transparent; border-radius: 0; }
.woocommerce-checkout #payment ul.payment_methods {
  border: 0; border-bottom: 1px solid var(--zz-line); padding: 0 0 16px; margin: 0; list-style: none;
}
.woocommerce-checkout #payment ul.payment_methods li { margin-bottom: 10px; }
.woocommerce-checkout #payment ul.payment_methods label {
  font-family: var(--zz-font-body);
  font-size: 15px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--zz-ink);
}
.woocommerce-checkout #payment div.payment_box {
  background: var(--zz-cream);
  border-radius: 0;
  font-size: 14px;
  color: var(--zz-muted);
}
.woocommerce-checkout #payment div.payment_box::before { border-bottom-color: var(--zz-cream); }

.woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; }
.woocommerce-MyAccount-navigation li { border-bottom: 1px solid var(--zz-line); }
.woocommerce-MyAccount-navigation li a {
  display: block; padding: 12px 0;
  font-family: var(--zz-font-display); font-size: 11.5px; font-weight: 600;
  letter-spacing: var(--zz-track); text-transform: uppercase; color: var(--zz-muted);
}
.woocommerce-MyAccount-navigation li.is-active a, .woocommerce-MyAccount-navigation li a:hover { color: var(--zz-ink); }

/* --- Header cart ---------------------------------------------------------- */
.zz-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: var(--zz-ink);
}
.zz-cart-link:hover { color: var(--zz-sage-deep); }
.zz-cart-link svg { width: 18px; height: 18px; }
.zz-cart-count {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--zz-sage);
  color: var(--zz-cream);
  font-family: var(--zz-font-display);
  font-size: 9px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
  border-radius: var(--zz-pill);
}


/* ==========================================================================
   5. Variation pickers — colour dots and size pills
   The native <select> stays in the DOM for WooCommerce's JS and for form
   submission; it is only hidden from view.

   Specificity note: the Elementor kit styles bare `button` site-wide as
   `.elementor-kit-N button` (0,1,1). Every rule below is scoped through
   `.zz-picker` (0,2,0) so the kit cannot repaint these controls.
   ========================================================================== */

/* Woo's own <th> label is replaced by .zz-picker__label inside the row */
.single-product table.variations th.label { display: none; }
.single-product table.variations tr,
.single-product table.variations td { display: block; width: 100%; }
.single-product table.variations td { padding: 0; }

.zz-picker { margin-bottom: 24px; }
.zz-picker .zz-picker__native {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Chosen value on the left, attribute name on the right */
.zz-picker .zz-picker__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.zz-picker .zz-picker__chosen {
  font-family: var(--zz-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--zz-ink);
}
.zz-picker .zz-picker__chosen:empty::before {
  content: attr(data-empty);
  color: var(--zz-muted);
  font-weight: 400;
}
.zz-picker .zz-picker__label {
  font-family: var(--zz-font-display);
  font-size: var(--zz-label);
  font-weight: 600;
  letter-spacing: var(--zz-track);
  text-transform: uppercase;
  color: var(--zz-muted);
  white-space: nowrap;
}

/* --- Shared button reset -------------------------------------------------- */
.zz-picker .zz-pick {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  cursor: pointer;
  box-shadow: none;
  font-family: var(--zz-font-display);
  line-height: 1;
  transition: border-color var(--zz-t-fast), background var(--zz-t-fast),
              color var(--zz-t-fast), outline-color var(--zz-t-fast);
}

/* --- Size pills: outlined, all on one line -------------------------------- */
.zz-picker--size .zz-picker__row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 6px;
}
.zz-picker .zz-pick--size {
  height: 42px;
  min-width: 0;
  padding: 0 4px;
  background: transparent;
  border: 1px solid var(--zz-line);
  border-radius: 0;
  color: var(--zz-ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.zz-picker .zz-pick--size:hover { border-color: var(--zz-ink); background: transparent; }
.zz-picker .zz-pick--size.is-active {
  border-color: var(--zz-ink);
  box-shadow: inset 0 0 0 1px var(--zz-ink);
  background: transparent;
  color: var(--zz-ink);
}

/* Narrow phones: let them wrap rather than squash below legibility */
@media (max-width: 400px) {
  .zz-picker--size .zz-picker__row {
    grid-auto-flow: row;
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --- Colour dots: no box, just the colour --------------------------------- */
.zz-picker--colour .zz-picker__row { display: flex; flex-wrap: wrap; gap: 14px; }
.zz-picker .zz-pick--colour {
  width: 26px;
  height: 26px;
  padding: 0;
  background: none;
  border: 0;
  border-radius: var(--zz-pill);
  display: block;
  outline: 1px solid transparent;
  outline-offset: 4px;
}
.zz-picker .zz-pick--colour span {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: var(--zz-pill);
  background: var(--zz-pick-colour, #cccccc);
  box-shadow: inset 0 0 0 1px rgba(31, 36, 28, .18);
}
.zz-picker .zz-pick--colour:hover { outline-color: var(--zz-line); }
.zz-picker .zz-pick--colour.is-active { outline-color: var(--zz-ink); }

/* Combinations WooCommerce reports as unavailable */
.zz-picker .zz-pick.is-disabled { opacity: .28; cursor: not-allowed; }
.zz-picker .zz-pick--size.is-disabled { text-decoration: line-through; }

.woocommerce-variation-price { margin-bottom: 16px; }
.reset_variations { display: inline-block; margin-top: 4px; font-size: 12px; }

/* ==========================================================================
   6. Product gallery — keep the thumbnails above the fold
   ========================================================================== */

@media (min-width: 900px) {
  .single-product div.product .woocommerce-product-gallery {
    position: sticky;
    top: 100px;
    align-self: start;
  }
}
.single-product .woocommerce-product-gallery__wrapper { margin: 0; }
.single-product .woocommerce-product-gallery__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: min(62vh, 620px);
  object-fit: cover;
}
.single-product .flex-control-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 8px;
  margin-top: 8px;
  padding: 0;
  list-style: none;
}
.single-product .flex-control-thumbs li { width: auto; margin: 0; }
.single-product .flex-control-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  opacity: .55;
  cursor: pointer;
  transition: opacity var(--zz-t-fast);
}
.single-product .flex-control-thumbs img.flex-active,
.single-product .flex-control-thumbs img:hover { opacity: 1; }
