/* =====================================================
   KK SINGLE PRODUCT — CSS v2.19.11
   =====================================================
   CHANGELOG 2.19.11
   - FIX: правая колонка .kk-mu-summary-scroll теперь имеет
     overflow-y:auto даже когда добавлен класс .kk-synced.
     Раньше стояло overflow-y:hidden — это блокировало колесо
     мыши, и если synced JS не срабатывал (range <= 0),
     контент в колонке был недоступен.
   ===================================================== */

:root {
  --kk-container-max: 1320px;
  --kk-gutter: clamp(12px, 2.4vw, 40px);
  --kk-gap: 10px;

  --kk-left-fr: 1.05fr;
  --kk-right-fr: 1fr;

  --kk-gallery-h: 520px;

  --kk-ring: rgba(139, 92, 246, .18);
  --kk-ring-soft: rgba(139, 92, 246, .08);
  --kk-ring-w: 1px;
  --kk-ring-soft-w: 4px;

  --kk-img-fit: contain;
  --kk-img-pos-x: 62%;

  --kk-inline-price-size: 28px;
  --kk-inline-price-sale-size: 34px;
  --kk-inline-price-old-size: 16px;

  --kk-card-price-size: 18px;
  --kk-card-price-sale-size: 20px;
  --kk-card-price-old-size: 13px;

  --kk-inline-price-nudge: 3px;
  --kk-old-price-gray: rgba(100, 116, 139, .88);

  --kk-heart-pink: #ec4899;

  --kk-font-base: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --kk-font-head: "Playfair Display", Georgia, "Times New Roman", Times, serif;

  --kk-btn-c1: #14001f;
  --kk-btn-c2: #4b12a8;
  --kk-btn-c3: #7b22ff;

  --kk-btn-success-c1: #25003d;
  --kk-btn-success-c2: #6320d9;
  --kk-btn-success-c3: #9554ff;
}

body.single-product {
  font-family: var(--kk-font-base) !important;
}
body.single-product button,
body.single-product input,
body.single-product select,
body.single-product textarea {
  font-family: var(--kk-font-base) !important;
}

body.single-product h1,
body.single-product h2,
body.single-product .product_title {
  font-family: var(--kk-font-head) !important;
  font-weight: 900 !important;
  letter-spacing: -0.01em;
}

html, body { max-width: 100% !important; }
body.single-product { overflow-x: clip !important; }
@supports not (overflow: clip) {
  body.single-product { overflow-x: hidden !important; }
}

body.single-product *,
body.single-product *::before,
body.single-product *::after {
  box-sizing: border-box !important;
}

body.single-product .site,
body.single-product .site-content,
body.single-product .content-area,
body.single-product .site-main,
body.single-product #primary,
body.single-product #main {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow-x: clip !important;
}

body.single-product div.product {
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  margin: 0 auto;
}

body.single-product .woocommerce div.product {
  width: min(calc(100% - (var(--kk-gutter) * 2)), var(--kk-container-max)) !important;
  margin-inline: auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, var(--kk-left-fr)) minmax(0, var(--kk-right-fr)) !important;
  gap: var(--kk-gap) !important;
  align-items: start !important;
  overflow: visible !important;
  min-width: 0 !important;
}

body.single-product .woocommerce div.product div.images,
body.single-product .woocommerce div.product div.summary {
  grid-row: 1 !important;
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  min-width: 0 !important;
  align-self: start !important;
  overflow: visible !important;
}

body.single-product .woocommerce div.product div.images { grid-column: 1 !important; }

body.single-product .woocommerce div.product div.summary {
  grid-column: 2 !important;
  height: var(--kk-gallery-h) !important;
  overflow: visible !important;
}

/* =====================================================
   ГАЛЕРЕЯ
   ===================================================== */
body.single-product .woocommerce div.product div.images .woocommerce-product-gallery {
  width: 100% !important;
  margin: 0 !important;
  position: sticky !important;
  top: 18px !important;
  min-width: 0 !important;
}

body.single-product .woocommerce div.product div.images figure.woocommerce-product-gallery__wrapper {
  margin: 0 !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
  border: 1px solid rgba(148, 163, 184, .22) !important;
  box-shadow:
    0 0 0 var(--kk-ring-w) var(--kk-ring),
    0 0 0 var(--kk-ring-soft-w) var(--kk-ring-soft),
    0 12px 40px rgba(15, 23, 42, .08) !important;
  aspect-ratio: 1 / 1 !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative !important;
}

body.single-product .woocommerce div.product div.images figure.woocommerce-product-gallery__wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: var(--kk-img-fit) !important;
  object-position: var(--kk-img-pos-x) center !important;
  display: block !important;
}

body.single-product .woocommerce div.product div.images .woocommerce-product-gallery__wrapper a {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

body.single-product .woocommerce div.product div.images ol.flex-control-nav.flex-control-thumbs {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  left: auto !important;
  z-index: 20 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 10px !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, .72) !important;
  border: 1px solid rgba(148, 163, 184, .25) !important;
  box-shadow:
    0 0 0 var(--kk-ring-w) var(--kk-ring),
    0 0 0 3px rgba(109, 40, 217, .08),
    0 12px 30px rgba(15, 23, 42, .10) !important;
  max-height: calc(100% - 24px) !important;
  overflow: auto !important;
  -webkit-overflow-scrolling: touch !important;
  list-style: none !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  width: 76px !important;
}
body.single-product .woocommerce div.product div.images ol.flex-control-nav.flex-control-thumbs::-webkit-scrollbar {
  width: 0 !important; height: 0 !important; display: none !important;
}
body.single-product .woocommerce div.product div.images ol.flex-control-nav.flex-control-thumbs li {
  width: 56px !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
}
body.single-product .woocommerce div.product div.images ol.flex-control-nav.flex-control-thumbs img {
  width: 56px !important;
  height: 56px !important;
  object-fit: cover !important;
  border-radius: 14px !important;
  display: block !important;
  border: 2px solid rgba(148, 163, 184, .35) !important;
  background: #fff !important;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .10) !important;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
body.single-product .woocommerce div.product div.images ol.flex-control-nav.flex-control-thumbs img:hover {
  transform: translateY(-1px);
  border-color: rgba(139, 92, 246, .50) !important;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .14) !important;
}
body.single-product .woocommerce div.product div.images ol.flex-control-nav.flex-control-thumbs li.flex-active img,
body.single-product .woocommerce div.product div.images ol.flex-control-nav.flex-control-thumbs img.flex-active {
  border-color: #6D28D9 !important;
}

/* =====================================================
   INFO TILE
   ===================================================== */
body.single-product .kk-mu-info-tile {
  height: var(--kk-gallery-h) !important;
  max-height: var(--kk-gallery-h) !important;
  min-height: var(--kk-gallery-h) !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
  border: 1px solid rgba(148, 163, 184, .22) !important;
  box-shadow:
    0 0 0 var(--kk-ring-w) var(--kk-ring),
    0 0 0 var(--kk-ring-soft-w) var(--kk-ring-soft),
    0 12px 40px rgba(15, 23, 42, .08) !important;
  position: sticky !important;
  top: 18px !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

body.single-product .kk-mu-summary-scroll {
  height: 100% !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  padding: 22px 18px 18px 18px !important;
  scrollbar-gutter: stable;
  overscroll-behavior: contain !important;
}
body.single-product .kk-mu-summary-scroll::-webkit-scrollbar { width: 10px; }
body.single-product .kk-mu-summary-scroll::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, .42);
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: content-box;
}
body.single-product .kk-mu-summary-scroll::-webkit-scrollbar-track { background: transparent; }

/* When synced-scroll is active on desktop — оставляем overflow:auto
   чтобы пользователь МОГ ВРУЧНУЮ скроллить колесом мыши.
   Раньше здесь стояло overflow-y:hidden — это блокировало ручной скролл
   и в случае если synced не срабатывал (range <= 0 в JS), колонка
   не скроллилась никак. Теперь:
   - synced JS работает как раньше когда есть range (двигает scrollTop по прогрессу страницы)
   - юзер всегда может ручно крутить колесом колонку
   - конфликта нет: события scroll внутри колонки тоже не триггерят
     синк (он слушает window scroll, а не inner scroll) */
body.single-product .kk-mu-summary-scroll.kk-synced {
  overflow-y: auto !important;
}

body.single-product .product_title {
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.15;
  margin: 0 0 12px 0;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.01em;
  padding-left: 0 !important;
  word-break: break-word !important;
}
body.single-product .product_title::before { content: none !important; display: none !important; }

body.single-product .kk-mu-summary-scroll > p.price,
body.single-product .kk-mu-summary-scroll > .price { display: none !important; }

/* =====================================================
   PRICE
   ===================================================== */
body.single-product form.cart .kk-mu-inline-price {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 8px !important;
  flex: 0 0 auto !important;
  min-width: 0 !important;
  white-space: nowrap !important;
  font-weight: 950 !important;
  letter-spacing: -0.01em !important;
  color: #6D28D9 !important;
  font-size: var(--kk-inline-price-size) !important;
  line-height: 1 !important;
  transform: translateY(var(--kk-inline-price-nudge)) !important;
  overflow: hidden !important;
  max-width: 100% !important;
}

body.single-product form.cart .kk-mu-inline-price del {
  display: inline-flex !important;
  align-items: baseline !important;
  color: var(--kk-old-price-gray) !important;
  opacity: 1 !important;
  font-weight: 800 !important;
  font-size: var(--kk-inline-price-old-size) !important;
  text-decoration: line-through !important;
  text-decoration-thickness: 2px !important;
  text-decoration-color: var(--kk-old-price-gray) !important;
}
body.single-product form.cart .kk-mu-inline-price del *,
body.single-product form.cart .kk-mu-inline-price del .amount,
body.single-product form.cart .kk-mu-inline-price del .woocommerce-Price-amount,
body.single-product form.cart .kk-mu-inline-price del bdi,
body.single-product form.cart .kk-mu-inline-price del span,
body.single-product form.cart .kk-mu-inline-price del .woocommerce-Price-currencySymbol {
  color: var(--kk-old-price-gray) !important;
  font-size: var(--kk-inline-price-old-size) !important;
  font-weight: 800 !important;
  opacity: 1 !important;
  text-decoration: line-through !important;
  text-decoration-thickness: 2px !important;
  text-decoration-color: var(--kk-old-price-gray) !important;
}

body.single-product form.cart .kk-mu-inline-price ins {
  display: inline-flex !important;
  align-items: baseline !important;
  color: #6D28D9 !important;
  text-decoration: none !important;
  font-weight: 950 !important;
  font-size: var(--kk-inline-price-sale-size) !important;
}
body.single-product form.cart .kk-mu-inline-price ins *,
body.single-product form.cart .kk-mu-inline-price ins .amount,
body.single-product form.cart .kk-mu-inline-price ins .woocommerce-Price-amount,
body.single-product form.cart .kk-mu-inline-price ins bdi,
body.single-product form.cart .kk-mu-inline-price ins .woocommerce-Price-currencySymbol {
  color: #6D28D9 !important;
  font-size: var(--kk-inline-price-sale-size) !important;
  font-weight: 950 !important;
  text-decoration: none !important;
}

body.single-product form.cart .kk-mu-inline-price > .amount,
body.single-product form.cart .kk-mu-inline-price > .woocommerce-Price-amount,
body.single-product form.cart .kk-mu-inline-price > bdi,
body.single-product form.cart .kk-mu-inline-price > .woocommerce-Price-currencySymbol {
  color: #6D28D9 !important;
}

/* ── Rating ── */
body.single-product .kk-mu-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 12px 0;
  padding: 9px 12px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, .15);
}
body.single-product .kk-mu-rating .star-rating { margin: 0 !important; }
body.single-product .kk-mu-rating a {
  text-decoration: none;
  font-weight: 800;
  color: #475569;
  font-size: 13px;
}
body.single-product .kk-mu-rating a:hover { color: #6D28D9; }

/* ── Short description ── */
body.single-product .woocommerce-product-details__short-description {
  font-size: 14px;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 14px;
  padding: 14px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, .15);
  box-shadow: 0 0 0 var(--kk-ring-w) rgba(139, 92, 246, .14) !important;
  max-width: 100% !important;
  word-break: break-word !important;
}

/* =====================================================
   ACTION ROW
   ===================================================== */
body.single-product form.cart {
  display: grid !important;
  grid-template-columns: auto auto auto !important;
  grid-template-areas:
    "price qty fav"
    "add   add add"
    "viewcart viewcart viewcart"
    "rozetka rozetka rozetka" !important;
  align-items: center !important;
  column-gap: 8px !important;
  row-gap: 10px !important;
  margin: 14px 0 14px 0 !important;
  width: 100% !important;
  min-width: 0 !important;
}

body.single-product form.cart .woocommerce-variation-add-to-cart,
body.single-product form.cart .variations_button {
  display: contents !important;
}

body.single-product form.cart .kk-mu-inline-price {
  grid-area: price !important;
  justify-self: start !important;
}

body.single-product form.cart .quantity {
  grid-area: qty !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
  justify-self: start !important;
}

body.single-product .quantity .qty {
  height: 48px !important;
  min-width: 76px !important;
  width: 76px !important;
  border-radius: 14px !important;
  border: 2px solid rgba(139, 92, 246, .18) !important;
  background: #fff !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  text-align: center !important;
  box-shadow: none !important;
}

/* ── Кнопка "Додати в кошик" ── */
body.single-product .single_add_to_cart_button.button {
  grid-area: add !important;
  height: 50px !important;
  width: 100% !important;
  padding: 0 20px !important;
  border-radius: 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  background: linear-gradient(135deg, #14001f 0%, #4b12a8 54%, #7b22ff 100%) !important;
  color: #fff !important;
  font-weight: 900 !important;
  font-size: 15px !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  box-shadow:
    0 14px 28px rgba(111,31,255,.30),
    inset 0 1px 0 rgba(255,255,255,.12) !important;
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease, background .3s ease !important;
  letter-spacing: -0.01em !important;
  min-width: 0 !important;
  gap: 8px !important;
}
body.single-product .single_add_to_cart_button.button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 18px 36px rgba(111,31,255,.36) !important;
  filter: brightness(1.06) saturate(1.08) !important;
  background: linear-gradient(135deg, #210033 0%, #5b18ca 54%, #8736ff 100%) !important;
}

body.single-product .single_add_to_cart_button.button.loading {
  pointer-events: none !important;
  opacity: .82 !important;
  filter: saturate(.92) brightness(.98) !important;
}

body.single-product .single_add_to_cart_button.kk-added-to-cart {
  background: linear-gradient(135deg, #25003d 0%, #6320d9 56%, #9554ff 120%) !important;
  color: #fff !important;
  border: 1px solid rgba(222,204,255,.58) !important;
  box-shadow:
    0 0 0 2px rgba(200,168,255,.18),
    0 18px 34px rgba(98,26,201,.34),
    inset 0 1px 0 rgba(255,255,255,.14) !important;
  filter: brightness(1.03) saturate(1.05) !important;
  transform: scale(1.02) !important;
}

body.single-product .kk-view-cart-btn {
  grid-area: viewcart !important;
  display: none;
  width: auto !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-decoration: underline !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  color: #e53e3e !important;
  transition: color 0.2s ease !important;
  text-align: center !important;
  white-space: normal !important;
  height: auto !important;
  min-height: 0 !important;
  cursor: pointer;
  font-family: var(--kk-font-base);
}
body.single-product .kk-view-cart-btn.kk-view-cart-visible {
  display: block !important;
}
body.single-product .kk-view-cart-btn:hover {
  color: #b91c1c !important;
  text-decoration: underline !important;
  transform: none !important;
}

/* Rozetka button */
body.single-product form.cart .btn-rozetka-wrapper {
  grid-area: rozetka !important;
  display: inline-flex !important;
  align-items: stretch !important;
  justify-content: stretch !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: 50px !important;
  margin: 0 !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  position: relative !important;
  box-shadow: 0 10px 28px rgba(109, 40, 217, .16) !important;
  isolation: isolate !important;
  cursor: pointer !important;
}

body.single-product form.cart .btn-rozetka-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
  z-index: 0;
  pointer-events: none;
}

body.single-product form.cart .btn-rozetka-wrapper iframe,
body.single-product form.cart .btn-rozetka-wrapper > div,
body.single-product form.cart .btn-rozetka-wrapper > a,
body.single-product form.cart .btn-rozetka-wrapper > button {
  position: relative !important;
  z-index: 1 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 50px !important;
  border: 0 !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  background: transparent !important;
}

body.single-product form.cart .btn-rozetka-wrapper a,
body.single-product form.cart .btn-rozetka-wrapper button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 0 18px !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  border: none !important;
  background: transparent !important;
}

body.single-product form.cart .btn-rozetka-wrapper img,
body.single-product form.cart .btn-rozetka-wrapper svg {
  max-height: 22px !important;
  width: auto !important;
  display: inline-block !important;
  vertical-align: middle !important;
  flex: 0 0 auto !important;
}

body.single-product form.cart .btn-rozetka-wrapper span,
body.single-product form.cart .btn-rozetka-wrapper strong,
body.single-product form.cart .btn-rozetka-wrapper b {
  color: inherit !important;
  font-weight: 900 !important;
  font-size: 14px !important;
  line-height: 1.1 !important;
}

body.single-product form.cart .btn-rozetka-wrapper * {
  font-family: var(--kk-font-base) !important;
}

body.single-product form.cart .btn-rozetka-wrapper:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 30px rgba(109, 40, 217, .22) !important;
}

/* ── Сердечко ── */
body.single-product .kk-mu-fav-holder { display: none !important; }

body.single-product form.cart .kinket-fav-btn.kinket-fav-btn--single {
  grid-area: fav !important;
  justify-self: start !important;
  margin: 0 !important;
  position: static !important;
  width: 44px !important;
  height: 44px !important;
  flex-shrink: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  border: 1px solid rgba(139, 92, 246, .26) !important;
  background: linear-gradient(135deg, rgba(139, 92, 246, .08) 0%, rgba(109, 40, 217, .06) 100%) !important;
  cursor: pointer !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .06) !important;
  background-image: none !important;
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
}
body.single-product form.cart .kinket-fav-btn.kinket-fav-btn--single::before,
body.single-product form.cart .kinket-fav-btn.kinket-fav-btn--single::after {
  content: none !important;
  display: none !important;
}
body.single-product form.cart .kinket-fav-btn.kinket-fav-btn--single .kinket-fav-svg {
  width: 18px !important;
  height: 18px !important;
  fill: none !important;
  stroke: var(--kk-heart-pink) !important;
  stroke-width: 2 !important;
  opacity: .9 !important;
}
body.single-product form.cart .kinket-fav-btn.kinket-fav-btn--single.is-favorite .kinket-fav-svg {
  fill: var(--kk-heart-pink) !important;
  stroke: var(--kk-heart-pink) !important;
}

/* WC notices off */
body.single-product .woocommerce-message,
body.single-product .woocommerce-error,
body.single-product .woocommerce-info {
  display: none !important;
}

/* Toast */
.kk-cart-toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(18px);
  z-index: 999999;
  min-width: min(92vw, 320px);
  max-width: min(92vw, 420px);
  background: #14141a;
  color: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 18px 38px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.kk-cart-toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.kk-cart-toast--success {
  background: linear-gradient(90deg, #14141a, #241c36);
}
.kk-cart-toast--error {
  background: linear-gradient(90deg, #2c1212, #4a1717);
}

/* PS tile */
body.single-product .kk-mu-ps {
  margin: 12px 0 12px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid rgba(148, 163, 184, .2);
  border-radius: 18px;
  padding: 14px;
  box-shadow:
    0 0 0 var(--kk-ring-w) rgba(139, 92, 246, .16),
    0 8px 24px rgba(15, 23, 42, .06) !important;
  max-width: 100% !important;
  word-break: break-word !important;
}
body.single-product .kk-mu-ps h4 {
  margin: 0 0 10px 0;
  font-size: 14px;
  font-weight: 900;
  color: #0f172a;
  font-family: var(--kk-font-base) !important;
}
body.single-product .kk-mu-ps .kk-mu-chips { display: flex; flex-wrap: wrap; gap: 8px; }
body.single-product .kk-mu-ps .kk-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, .28);
  box-shadow: 0 4px 12px rgba(15, 23, 42, .06);
  font-weight: 800;
  color: #0f172a;
  font-size: 12px;
}
body.single-product .kk-mu-ps .kk-rows { display: flex; flex-direction: column; gap: 8px; }

body.single-product .kk-mu-ps .kk-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(148, 163, 184, .18);
  min-width: 0 !important;
}

body.single-product .kk-mu-ps .kk-ico {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, .25);
  box-shadow: 0 4px 12px rgba(15, 23, 42, .06);
  font-size: 16px;
  flex-shrink: 0 !important;
}

body.single-product .kk-mu-ps .kk-row .kk-left {
  font-weight: 800;
  color: #0f172a;
  font-size: 13px;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

body.single-product .kk-mu-ps .kk-row .kk-right {
  color: #64748b;
  font-weight: 800;
  font-size: 11px;
  white-space: nowrap;
  justify-self: end;
  min-width: 0;
}

/* Meta */
body.single-product .product_meta {
  font-size: 12px;
  color: #64748b;
  margin: 12px 0 0 0;
  padding: 12px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, .15);
  box-shadow: 0 0 0 var(--kk-ring-w) rgba(139, 92, 246, .14) !important;
  max-width: 100% !important;
  word-break: break-word !important;
}
body.single-product .product_meta span { display: block; margin-bottom: 6px; }
body.single-product .product_meta span:last-child { margin-bottom: 0; }
body.single-product .product_meta a {
  color: #6D28D9;
  font-weight: 800;
  text-decoration: none;
}
body.single-product .product_meta a:hover { text-decoration: underline; }

/* BELOW LAYOUT */
body.single-product .kk-mu-below {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  margin-top: 6px !important;
  display: grid !important;
  grid-template-columns: minmax(0, var(--kk-left-fr)) minmax(0, var(--kk-right-fr)) !important;
  gap: var(--kk-gap) !important;
  align-items: stretch !important;
  min-width: 0 !important;
  position: relative !important;
  overflow: visible !important;
}
body.single-product .kk-mu-below-main,
body.single-product .kk-mu-below-sidebar {
  min-width: 0 !important;
  max-width: 100% !important;
}
body.single-product .kk-mu-below-main {
  align-self: stretch !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}
body.single-product .kk-mu-below-main > .woocommerce-tabs {
  flex: 1 1 auto !important;
}
body.single-product .kk-mu-below-sidebar {
  align-self: stretch !important;
  display: flex !important;
  flex-direction: column !important;
  gap: var(--kk-gap) !important;
}
body.single-product .kk-mu-below-sidebar:empty { display: none !important; }

body.single-product { overflow-x: clip !important; }
@supports not (overflow: clip) {
  body.single-product { overflow-x: hidden !important; }
}

/* Tabs */
body.single-product .woocommerce-tabs {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  margin-top: 0 !important;
  border: 1px solid rgba(148, 163, 184, .2);
  box-shadow:
    0 0 0 var(--kk-ring-w) var(--kk-ring),
    0 0 0 var(--kk-ring-soft-w) var(--kk-ring-soft),
    0 10px 32px rgba(15, 23, 42, .10) !important;
  width: 100%;
  max-width: 100%;
  min-width: 0 !important;
}

body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 0 0 16px 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  max-width: 100% !important;
}
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs::-webkit-scrollbar {
  width: 0 !important; height: 0 !important; display: none !important;
}
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs::before,
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs::after { content: none !important; display: none !important; }

body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li,
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  float: none !important;
  position: relative !important;
}
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li::before,
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li::after,
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li.active::before,
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
  content: none !important;
  display: none !important;
}

body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 42px !important;
  padding: 0 16px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(148, 163, 184, .35) !important;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%) !important;
  color: #0f172a !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  letter-spacing: -0.01em !important;
  text-decoration: none !important;
  outline: none !important;
  box-shadow: 0 6px 18px rgba(15, 23, 42, .06) !important;
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .10) !important;
  filter: brightness(1.01) !important;
}
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  background: linear-gradient(135deg, #6D28D9 0%, #8B5CF6 100%) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 10px 22px rgba(109, 40, 217, .22) !important;
}

body.single-product .woocommerce-tabs .panel { padding: 14px 0 0 0; }
body.single-product .woocommerce-tabs .panel,
body.single-product .woocommerce-tabs .panel * {
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

/* Carousels */
body.single-product .kk-mu-car {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid rgba(148, 163, 184, .2);
  border-radius: 20px;
  padding: 18px;
  box-shadow:
    0 0 0 var(--kk-ring-w) rgba(139, 92, 246, .14),
    0 8px 24px rgba(15, 23, 42, .08) !important;
}
body.single-product .kk-mu-car-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
body.single-product .kk-mu-car-title { font-size: 16px; font-weight: 900; margin: 0; color: #0f172a; padding-left: 0 !important; font-family: var(--kk-font-base) !important; }
body.single-product .kk-mu-car-nav { display: flex; gap: 8px; }
body.single-product .kk-mu-car-btn {
  width: 38px; height: 38px; border-radius: 10px; border: none;
  background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px; box-shadow: 0 6px 18px rgba(139, 92, 246, .18);
}
body.single-product .kk-mu-car-track {
  display: flex !important;
  gap: 14px;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 2px 2px 6px 2px;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
body.single-product .kk-mu-car-track::-webkit-scrollbar { width: 0 !important; height: 0 !important; display: none !important; }

body.single-product .kk-mu-car-item {
  flex: 0 0 200px !important;
  min-width: 200px !important;
  scroll-snap-align: start;
  background: linear-gradient(180deg, #ffffff 0%, #fcfaff 100%);
  border-radius: 16px;
  border: 1px solid rgba(123, 34, 255, .18);
  box-shadow:
    0 12px 32px rgba(62, 10, 150, .08),
    inset 0 1px 0 rgba(255, 255, 255, .92);
  overflow: hidden;
  position: relative;
}

body.single-product .kk-mu-card-link { display: block; text-decoration: none; color: inherit; padding: 12px; }
body.single-product .kk-mu-card-img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}
body.single-product .kk-mu-card-title {
  font-size: 13px; line-height: 1.35; font-weight: 800;
  margin: 10px 0 6px 0; color: #0f172a;
  display: block;
  text-align: left;
  min-height: 34px;
  font-family: var(--kk-font-base) !important;
}
body.single-product .kk-mu-card-title .kk-title-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.single-product .kk-mu-card-price {
  font-size: var(--kk-card-price-size);
  font-weight: 950;
  margin: 6px 0 8px 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  color: #6D28D9;
  text-align: center;
}

body.single-product .kk-mu-card-sku {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f0e3ff 100%);
  border: 2px solid rgba(123, 34, 255, .28);
  box-shadow: 0 4px 12px rgba(111, 31, 255, .08), inset 0 1px 0 rgba(255,255,255,.9);
  font-size: 11px;
  font-weight: 700;
  color: #71658f;
  margin: 4px auto 6px auto;
  width: fit-content;
  text-align: center;
}
body.single-product .kk-mu-card-sku-label {
  color: #746a8c;
  font-weight: 700;
}
body.single-product .kk-mu-card-sku-val {
  font-weight: 900;
  color: #a855f7;
}
body.single-product .kk-mu-card-price del {
  display: inline-flex;
  align-items: baseline;
  color: var(--kk-old-price-gray) !important;
  font-size: var(--kk-card-price-old-size) !important;
  font-weight: 850 !important;
  text-decoration: line-through !important;
  text-decoration-thickness: 2px !important;
  text-decoration-color: var(--kk-old-price-gray) !important;
}
body.single-product .kk-mu-card-price del * {
  color: var(--kk-old-price-gray) !important;
  font-size: var(--kk-card-price-old-size) !important;
  font-weight: 850 !important;
  text-decoration: line-through !important;
}
body.single-product .kk-mu-card-price ins {
  display: inline-flex;
  align-items: baseline;
  color: #6D28D9 !important;
  font-size: var(--kk-card-price-sale-size) !important;
  font-weight: 950 !important;
  text-decoration: none !important;
}
body.single-product .kk-mu-card-price ins * {
  color: #6D28D9 !important;
  font-size: var(--kk-card-price-sale-size) !important;
  font-weight: 950 !important;
  text-decoration: none !important;
}
body.single-product .kk-mu-card-cta { display: flex; padding: 0 12px 14px 12px; }

body.single-product a.kk-mu-add-to-cart {
  width: 100%;
  text-align: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #14001f 0%, #4b12a8 54%, #7b22ff 100%);
  color: #fff !important;
  font-weight: 900;
  font-size: 13px;
  padding: 10px 12px;
  text-decoration: none;
  box-shadow:
    0 14px 28px rgba(111, 31, 255, .30),
    inset 0 1px 0 rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .12);
  display: block;
  transition: filter .16s ease, transform .16s ease, background .22s ease;
}
body.single-product a.kk-mu-add-to-cart:hover {
  filter: brightness(1.06) saturate(1.08);
  transform: translateY(-1px);
  background: linear-gradient(135deg, #210033 0%, #5b18ca 54%, #8736ff 100%);
}
body.single-product a.kk-mu-add-to-cart.loading {
  pointer-events: none;
  opacity: .88;
  filter: saturate(.9) brightness(.96);
}
body.single-product a.kk-mu-add-to-cart.kk-is-added {
  background: linear-gradient(135deg, #25003d 0%, #6320d9 56%, #9554ff 100%) !important;
  color: #fff !important;
  border: 1px solid rgba(222, 204, 255, .52) !important;
  box-shadow:
    0 0 0 2px rgba(200, 168, 255, .14),
    0 16px 30px rgba(98, 26, 201, .28) !important;
  filter: brightness(1.03) saturate(1.05);
}

/* Out-of-stock card button */
body.single-product a.kk-mu-add-to-cart.kk-is-oos,
body.single-product span.kk-mu-add-to-cart.kk-is-oos {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%) !important;
  color: #fff !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  opacity: .85 !important;
  box-shadow: 0 6px 14px rgba(15, 23, 42, .14) !important;
  filter: none !important;
  transform: none !important;
  border: 1px solid rgba(255, 255, 255, .08) !important;
}

body.single-product .kk-mu-card-cta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 12px 14px 12px;
}
body.single-product a.kk-mu-car-view-cart {
  display: block !important;
  width: 100%;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #e53e3e !important;
  text-decoration: underline !important;
  line-height: 1.4;
  padding: 0;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  transform: none !important;
  filter: none !important;
  cursor: pointer;
  font-family: var(--kk-font-base);
}
body.single-product a.kk-mu-car-view-cart:hover {
  color: #b91c1c !important;
  text-decoration: underline !important;
  transform: none !important;
  filter: none !important;
}

body.single-product .kk-mu-car-item .kinket-fav-btn.kinket-fav-btn--car {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  z-index: 6 !important;
  width: 38px !important;
  height: 38px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  border: 1px solid rgba(139, 92, 246, .26) !important;
  background: linear-gradient(135deg, rgba(139, 92, 246, .08) 0%, rgba(109, 40, 217, .06) 100%) !important;
  cursor: pointer !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .06) !important;
  background-image: none !important;
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
}
body.single-product .kk-mu-car-item .kinket-fav-btn.kinket-fav-btn--car::before,
body.single-product .kk-mu-car-item .kinket-fav-btn.kinket-fav-btn--car::after { content: none !important; display: none !important; }
body.single-product .kk-mu-car-item .kinket-fav-btn.kinket-fav-btn--car .kinket-fav-svg {
  width: 18px !important;
  height: 18px !important;
  fill: none !important;
  stroke: var(--kk-heart-pink) !important;
  stroke-width: 2 !important;
  opacity: .9 !important;
}
body.single-product .kk-mu-car-item .kinket-fav-btn.kinket-fav-btn--car.is-favorite .kinket-fav-svg {
  fill: var(--kk-heart-pink) !important;
  stroke: var(--kk-heart-pink) !important;
}

/* CAROUSEL SKELETON */
body.single-product .kk-mu-car-skeleton {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid rgba(148, 163, 184, .2);
  border-radius: 20px;
  padding: 18px;
  min-height: 320px;
  box-shadow:
    0 0 0 var(--kk-ring-w) rgba(139, 92, 246, .14),
    0 8px 24px rgba(15, 23, 42, .08);
  position: relative;
  overflow: hidden;
}
body.single-product .kk-mu-car-skeleton::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 140px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(90deg, #e2e8f0 0%, #f1f5f9 50%, #e2e8f0 100%);
  background-size: 200% 100%;
  animation: kk-skeleton-shimmer 1.4s linear infinite;
}
body.single-product .kk-mu-car-skeleton::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 56px;
  bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(90deg, #e2e8f0 0%, #f1f5f9 50%, #e2e8f0 100%);
  background-size: 200% 100%;
  animation: kk-skeleton-shimmer 1.4s linear infinite;
}
@keyframes kk-skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* BADGES */
body .kinket-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
body .kinket-badges--inline {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  vertical-align: middle;
}
body .kinket-badge {
  --kb-bg: rgba(15, 23, 42, .06);
  --kb-tx: #0f172a;
  --kb-bd: rgba(148, 163, 184, .35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  background: var(--kb-bg);
  border: 1px solid var(--kb-bd);
  color: var(--kb-tx);
  white-space: nowrap;
}
body .kinket-badge .kinket-badge-ico {
  width: 12px;
  height: 12px;
  display: inline-block;
  fill: currentColor;
}
body .kinket-badges--overlay {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 7;
  pointer-events: none;
}
body .kinket-badge--preset-solid_black  { --kb-bg: #0b1220; --kb-tx: #ffffff; --kb-bd: rgba(255, 255, 255, .12); }
body .kinket-badge--preset-solid_purple { --kb-bg: #6D28D9; --kb-tx: #ffffff; --kb-bd: rgba(255, 255, 255, .14); }
body .kinket-badge--preset-solid_pink   { --kb-bg: #ec4899; --kb-tx: #ffffff; --kb-bd: rgba(255, 255, 255, .14); }
body .kinket-badge--preset-grad_purple  { --kb-bd: rgba(109, 40, 217, .22); background: linear-gradient(135deg, #6D28D9 0%, #8B5CF6 100%); color: #fff; }
body .kinket-badge--preset-grad_sunset  { --kb-bd: rgba(244, 63, 94, .18); background: linear-gradient(135deg, #fb7185 0%, #f59e0b 100%); color: #0b1220; }
body .kinket-badge--preset-grad_ocean   { --kb-bd: rgba(14, 165, 233, .22); background: linear-gradient(135deg, #0ea5e9 0%, #22c55e 100%); color: #0b1220; }
body .kinket-badge--preset-grad_mint    { --kb-bd: rgba(34, 197, 94, .22); background: linear-gradient(135deg, #22c55e 0%, #a3e635 100%); color: #0b1220; }
body .kinket-badge--preset-grad_gold    { --kb-bd: rgba(245, 158, 11, .22); background: linear-gradient(135deg, #f59e0b 0%, #fde047 100%); color: #0b1220; }
body .kinket-badge--shape-pill    { border-radius: 999px; }
body .kinket-badge--shape-oval    { border-radius: 999px; padding: 5px 11px; }
body .kinket-badge--shape-rounded { border-radius: 12px; padding: 6px 10px; }
body .kinket-badge--shape-tag     { border-radius: 999px 12px 12px 999px; padding: 6px 12px 6px 10px; }
body .kinket-badge--shape-ribbon  { border-radius: 10px; padding: 6px 10px; transform: skewX(-10deg); }
body .kinket-badge--shape-ribbon .kinket-badge-txt,
body .kinket-badge--shape-ribbon .kinket-badge-ico { transform: skewX(10deg); }

body.single-product .kinket-title-with-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
body.single-product .kinket-title-with-badges .kinket-badges { margin: 0 !important; }

body .kk-sr {
  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;
}

/* Variation pills */
body .kk-var-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
body .kk-var-pill {
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, .32);
  background: #fff;
  cursor: pointer;
  font-weight: 900;
  font-size: 13px;
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(15, 23, 42, .06);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
  position: relative;
}
body .kk-var-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(109, 40, 217, .35);
  box-shadow: 0 8px 18px rgba(15, 23, 42, .10);
}
body .kk-var-pill.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #6D28D9 0%, #8B5CF6 100%);
  color: #fff;
}
body .kk-var-pill.is-disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
body .kk-var-pill.kk-var-pill--swatch {
  --kk-swatch: #cbd5e1;
  width: 36px !important;
  height: 36px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  position: relative !important;
}
body .kk-var-pill.kk-var-pill--swatch::before {
  content: "" !important;
  position: absolute !important;
  inset: 5px !important;
  border-radius: 999px !important;
  background: var(--kk-swatch) !important;
  border: 1px solid rgba(15, 23, 42, .14) !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .10) !important;
}
body .kk-var-pill.kk-var-pill--swatch.is-active::after {
  content: "" !important;
  position: absolute !important;
  inset: -2px !important;
  border-radius: 999px !important;
  box-shadow: 0 0 0 3px rgba(109, 40, 217, .28) !important;
}

/* Simple attr box */
body.single-product .kk-attr-box {
  margin: 12px 0 6px 0;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid rgba(148, 163, 184, .18);
  box-shadow: 0 0 0 var(--kk-ring-w) rgba(139, 92, 246, .12), 0 8px 22px rgba(15, 23, 42, .06);
}
body.single-product .kk-attr-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
body.single-product .kk-attr-title { margin: 0; font-size: 14px; font-weight: 950; color: #0f172a; font-family: var(--kk-font-base) !important; }
body.single-product .kk-attr-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  align-items: start;
  padding: 8px 0;
  border-top: 1px dashed rgba(148, 163, 184, .28);
}
body.single-product .kk-attr-row:first-of-type { border-top: 0; padding-top: 0; }
body.single-product .kk-attr-label { font-weight: 900; font-size: 12px; color: #0f172a; padding-top: 8px; }
body.single-product .kk-attr-pills { display: flex; flex-wrap: wrap; gap: 8px; }
body.single-product .kk-attr-pill {
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, .32);
  background: #fff;
  cursor: pointer;
  font-weight: 900;
  font-size: 12px;
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(15, 23, 42, .06);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, background .12s ease;
}
body.single-product .kk-attr-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(109, 40, 217, .35);
  box-shadow: 0 8px 18px rgba(15, 23, 42, .10);
}
body.single-product .kk-attr-pill.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #6D28D9 0%, #8B5CF6 100%);
  color: #fff;
}
body .kk-attr-pill.kk-attr-pill--swatch {
  --kk-swatch: #cbd5e1;
  width: 36px !important;
  height: 36px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  position: relative !important;
}
body .kk-attr-pill.kk-attr-pill--swatch::before {
  content: "" !important;
  position: absolute !important;
  inset: 5px !important;
  border-radius: 999px !important;
  background: var(--kk-swatch) !important;
  border: 1px solid rgba(15, 23, 42, .14) !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .10) !important;
}

/* Breakpoints */
@media (max-width: 1400px) {
  :root {
    --kk-left-fr: 1fr;
    --kk-right-fr: 1fr;
    --kk-gutter: clamp(12px, 2vw, 32px);
  }
}

@media (max-width: 1280px) {
  :root {
    --kk-inline-price-size: 24px;
    --kk-inline-price-sale-size: 30px;
    --kk-inline-price-old-size: 14px;
    --kk-gutter: 16px;
    --kk-gap: 8px;
  }

  body.single-product .woocommerce div.product {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  }

  body.single-product .product_title {
    font-size: clamp(16px, 1.6vw, 24px);
  }

  body.single-product .quantity .qty {
    min-width: 66px !important;
    width: 66px !important;
  }

  body.single-product .kk-mu-summary-scroll {
    padding: 18px 14px 14px 14px !important;
  }

  body.single-product .kk-mu-ps .kk-row .kk-right {
    display: none;
  }

  body.single-product .kk-mu-ps .kk-row {
    grid-template-columns: 36px minmax(0, 1fr) !important;
  }
}

@media (max-width: 1100px) {
  :root {
    --kk-inline-price-size: 22px;
    --kk-inline-price-sale-size: 27px;
    --kk-inline-price-old-size: 13px;
    --kk-inline-price-nudge: 2px;
    --kk-gutter: 14px;
  }

  body.single-product .woocommerce div.product {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 8px !important;
  }

  body.single-product form.cart {
    column-gap: 6px !important;
    row-gap: 10px !important;
  }

  body.single-product .kk-mu-ps .kk-chip {
    font-size: 11px;
    height: 32px;
    padding: 0 10px;
  }

  body.single-product .kk-mu-ps h4 {
    font-size: 13px;
  }
}

@media (max-width: 980px) {
  :root {
    --kk-inline-price-size: 22px;
    --kk-inline-price-sale-size: 28px;
    --kk-inline-price-old-size: 13px;
    --kk-inline-price-nudge: 2px;
    --kk-card-price-size: 16px;
    --kk-card-price-sale-size: 18px;
    --kk-card-price-old-size: 12px;
    --kk-img-pos-x: 50%;
    --kk-gutter: 14px;
  }

  body.single-product .woocommerce div.product {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: min(calc(100% - (var(--kk-gutter) * 2)), var(--kk-container-max)) !important;
  }
  body.single-product .woocommerce div.product div.summary { height: auto !important; }
  body.single-product .woocommerce div.product div.images .woocommerce-product-gallery,
  body.single-product .kk-mu-info-tile { position: relative !important; top: auto !important; }

  body.single-product .kk-mu-info-tile { height: auto !important; max-height: none !important; min-height: 0 !important; }
  body.single-product .kk-mu-summary-scroll { height: auto !important; overflow: visible !important; overscroll-behavior: auto !important; }
  body.single-product .kk-mu-summary-scroll.kk-synced { overflow: visible !important; }

  body.single-product .kk-mu-below { grid-template-columns: 1fr !important; gap: 16px !important; }

  body.single-product .woocommerce-tabs { overflow: visible !important; padding: 16px !important; }
  body.single-product .kk-attr-row { grid-template-columns: 1fr; }
  body.single-product .kk-attr-label { padding-top: 0; }

  body.single-product .kk-mu-ps .kk-row {
    grid-template-columns: 40px minmax(0, 1fr) !important;
    grid-template-areas:
      "ico left"
      "ico right";
    align-items: start !important;
    row-gap: 4px !important;
  }
  body.single-product .kk-mu-ps .kk-ico { grid-area: ico; }
  body.single-product .kk-mu-ps .kk-row .kk-left {
    grid-area: left;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    padding-top: 2px;
    display: block !important;
  }
  body.single-product .kk-mu-ps .kk-row .kk-right {
    grid-area: right;
    justify-self: start !important;
    text-align: left !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
    display: block !important;
  }

  body.single-product form.cart {
    grid-template-columns: auto auto auto !important;
    grid-template-areas:
      "price qty fav"
      "add   add add"
      "viewcart viewcart viewcart"
      "rozetka rozetka rozetka" !important;
    align-items: center !important;
    column-gap: 8px !important;
    row-gap: 10px !important;
  }

  body.single-product form.cart .kk-mu-inline-price { justify-self: start !important; }
  body.single-product form.cart .quantity { justify-self: start !important; }

  body.single-product form.cart .single_add_to_cart_button.button {
    width: 100% !important;
    min-width: 0 !important;
  }

  body.single-product form.cart .btn-rozetka-wrapper {
    max-width: none !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  body.single-product form.cart .kinket-fav-btn.kinket-fav-btn--single { justify-self: start !important; }

  body.single-product .kk-attr-box { display: none !important; }
}

@media (max-width: 520px) {
  body.single-product .product_title { font-size: 20px !important; }

  body.single-product .woocommerce div.product div.images ol.flex-control-nav.flex-control-thumbs {
    top: auto !important;
    bottom: 12px !important;
    right: 12px !important;
    left: 12px !important;
    width: auto !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    max-height: none !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
  }
  body.single-product .woocommerce div.product div.images ol.flex-control-nav.flex-control-thumbs li {
    width: 50px !important;
    flex: 0 0 auto !important;
  }
  body.single-product .woocommerce div.product div.images ol.flex-control-nav.flex-control-thumbs img {
    width: 50px !important;
    height: 50px !important;
  }
}