div.blend-desc-outer {
  display: flex;
  width: 100%;
  justify-content: center;
  padding-bottom: 15px;
}

div.woocommerce-product-rating {
  display: none !important;
}

div.elementor-widget-porto_cp_price {
  display: none !important;
}

div.elementor-widget-porto_cp_meta {
  display: none !important;
}

div.blend-desc-panel {
  font-family: helvetica;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  padding: 5px;
}

img.blend-desc-img {
  width: 100%;
  padding: 0px;
}

div.blend-desc-name {
  font-size: 20px;
  text-align: center;
  background-color: white;
  color: black;
  padding: 15px;
}

div.blend-desc-desc {
  padding: 10px;
  font-size: 14px;
  background-color: white;
  color: black;
}


div.yith-par-message {
	display: none !important;
}

table.mnm_child_products {
	display: none !important;
}

button.mnm_reset {
    display: none !important;
}

div.yith-par-message-variation {
	display: none !important;
}

div.selected-blend-c {
  width: 100%;
  height: 100px;
  background-color: blue;
}

div.product-thumbnails {
  display: none !important;
}

span.onsale {
  display: none !important;
}

div.swatch-title-c {
	font-size: 20px;
    font-family: helvetica;
    font-weight: bold;
    padding-bottom: 10px;
}


table.variations.hidden-t {
	display: none;
}

.hidden-u {
    display: none !important;
}

div.swatch-set-c {
	display: flex;
  flex-direction: row;
  column-gap: 10px;
  row-gap: 10px;
  padding-bottom: 20px;
  flex-wrap: wrap;
}

div.swatch-set-c.hidden-c {
	display: none;
}

div.swatch-container-c.hidden-c {
	display: none;
}

div.swatch-btn-c {
  display: none;
  position: relative;  /* needed to anchor the qty badge */
  height: 50px;
  min-width: 160px;
  width: calc((100% - 20px)/3);
  border: 1px solid #111;
  border-radius: 8px;

  align-items: center;
  justify-content: center;

  text-align: center;
  font-family: helvetica;
  font-size: 15px;

  background: #fff;
  color: #111;

  cursor: pointer;
  user-select: none;

  /* transitions for state changes while visible */
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

/* visible buttons */
div.swatch-btn-c.active {
  display: flex;

  /* subtle 3D base */
  box-shadow: 0 1px 0 rgba(0,0,0,0.18), 0 6px 14px rgba(0,0,0,0.10);

  /* “appear” animation */
  animation: swatch-pop-in 180ms ease both;
}

@keyframes swatch-pop-in {
  from { opacity: 0; transform: translateY(4px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

div.swatch-btn-c.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 0 rgba(0,0,0,0.18), 0 10px 22px rgba(0,0,0,0.14);
}

div.swatch-btn-c.active:active {
  transform: translateY(0);
}

/* swatch has a non-zero qty — sits before selected-swatch so it can be overridden */
div.swatch-btn-c.active.in-sample {
  border-width: 2px;
  border-color: #111;
}

/* qty badge — circle pinned to upper-right corner */
div.swatch-btn-c .swatch-qty-badge_csc {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  border-radius: 10px;
  background-color: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  pointer-events: none;
}

/* badge on selected swatch inverts to stay readable */
div.swatch-btn-c.active.selected-swatch .swatch-qty-badge_csc {
  background-color: #fff;
  color: #111;
}

div.swatch-btn-c.active.selected-swatch {
  background-color: #111;
  color: #fff;
  font-weight: 700;
  border-color: #111;
}

@media (prefers-reduced-motion: reduce) {
  div.swatch-btn-c.active { animation: none; }
  div.swatch-btn-c { transition: none; }
}

/* ============================================================
   Blend Panel — Layout & Component Styles
   Matches: blend-panel.html
   ============================================================ */

/* Stack of blend cards — wraps all BlendCard instances */
div.blend-list_csc {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  width: 100%;
  scroll-behavior: smooth;
}

/* Outer wrapper — centres the panel horizontally */
div.blend-desc-outer_csc {
  display: flex;
  width: 100%;
  justify-content: center;
  padding-bottom: 15px;
}

/* Panel card — constrains max width, stacks rows vertically */
div.blend-panel_csc {
  font-family: helvetica, arial, sans-serif;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  padding: 8px;
  border: 1px solid #111;
  border-radius: 4px;
  background-color: #fff;
}

/* ── ROW 1 : blend-desc-upper_csc ─────────────────────────── */

div.blend-desc-upper_csc {
  display: flex;
  flex-direction: row;
  column-gap: 12px;
  align-items: flex-start;
}

/* COL 1 — product image */
div.blend-image_csc {
  flex: 0 0 40%;
  width: 40%;
}

div.blend-image_csc img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* COL 2 — text block, stacks title + copy vertically */
div.blend-text_csc {
  flex: 1 1 0;          /* takes remaining width */
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  min-width: 0;         /* prevents flex overflow on long words */
}

/* ROW 1 inside blend-text_csc — product title */
div.blend-title_csc {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}

/* ROW 2 inside blend-text_csc — descriptive copy */
div.blend-copy_csc {
  font-size: 13px;
  font-weight: 400;
  color: #444;
  line-height: 1.4;
}

/* ── ROW 2 : blend-cntrl_csc ──────────────────────────────── */

div.blend-cntrl_csc {
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 1px solid #111;
  border-radius: 4px;
  overflow: hidden;     /* clips children to rounded corners */
}

/* Shared styles for the two action buttons */
div.blend-sub_csc,
div.blend-add_csc {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background-color: #111;
  cursor: pointer;
  user-select: none;
  transition: background-color 180ms ease, color 180ms ease;
}

div.blend-sub_csc:hover,
div.blend-add_csc:hover {
  background-color: #333;
}

div.blend-sub_csc.is-remove_csc {
  background-color: #c00;
}

div.blend-sub_csc.is-remove_csc:hover {
  background-color: #a00;
}

div.blend-sub_csc:active,
div.blend-add_csc:active {
  background-color: #000;
}

/* COL 2 — quantity display */
div.blend-qty_csc {
  flex: 1 1 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  background-color: #fff;
  border-left: 1px solid #111;
  border-right: 1px solid #111;
  user-select: none;
}

/* ── Reduced-motion override ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  div.blend-sub_csc,
  div.blend-add_csc {
    transition: none;
  }
}
