/* ═══════════════════════════════════════════════════
   Mishka.ink Design System v3 — WordPress / WooCommerce
   Child theme CSS — matches React app 1:1
   ═══════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --mk-bg: #FAFAFA;
  --mk-surface: #FFFFFF;
  --mk-surface2: #F4F4F4;
  --mk-fg: #0D0D0D;
  --mk-muted: #6B6B6B;
  --mk-border: #E8E8E8;
  --mk-sale: #D92B2B;
  --mk-success: #2D7A4F;
  --mk-exclusive: #8B6914;
  --mk-outlet: #B85500;
  --mk-warning: #C89520;
  --mk-r-sm: 6px;
  --mk-r-md: 8px;
  --mk-r-lg: 10px;
  --mk-r-xl: 12px;
  --mk-r-2xl: 16px;
  --mk-r-pill: 999px;
  --mk-shadow-soft: 0 2px 12px rgba(0,0,0,0.06);
  --mk-shadow-hover: 0 6px 20px rgba(0,0,0,0.08);
  --mk-container: 1280px;
}

/* ── Base Reset ── */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv02","cv03","cv04","cv11";
  background: var(--mk-bg) !important;
  color: var(--mk-fg) !important;
  line-height: 1.5;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--mk-fg);
}

a { color: var(--mk-fg); text-decoration: none; }

/* ── Elementor global font ── */
.elementor-widget-heading .elementor-heading-title,
.elementor-widget-text-editor,
.elementor-widget-button .elementor-button {
  font-family: 'Inter', sans-serif !important;
}
.elementor-page,
.page-template-elementor_header_footer {
  background: var(--mk-bg) !important;
}

/* ── Header nav links (Elementor HFE header) ── */
.mishka-nav-link {
  position: relative;
  cursor: pointer;
  transition: color 0.15s ease;
}
.mishka-nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.mishka-nav-link:hover::after { transform: scaleX(1); }

/* Header action icons — match React (18px Lucide) */
.elementor-69 .elementor-icon {
  font-size: 17px !important;
}
.elementor-69 .elementor-icon svg {
  width: 18px !important;
  height: 18px !important;
}

/* Cart icon badge */
.mishka-cart-count {
  position: absolute;
  top: -3px; right: -3px;
  background: var(--mk-fg);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  min-width: 16px; height: 16px;
  border-radius: var(--mk-r-pill);
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  line-height: 1;
}
/* Hide badge when count is 0 */
.mishka-cart-count:empty,
.mishka-cart-count[data-count="0"] { display: none; }

/* Card hover helper */
.mishka-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.mishka-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--mk-shadow-hover);
}

/* ══════════════════════════════════════════════════
   WooCommerce — Product Grid
   Matches React <ProductCard> component
   ══════════════════════════════════════════════════ */

body.woocommerce ul.products,
body .woocommerce ul.products,
.elementor-shortcode .woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  padding: 0 !important;
  list-style: none !important;
  margin: 0 !important;
}
/* 4-col on Home page best sellers shortcode */
.elementor-shortcode .woocommerce.columns-4 ul.products {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 1024px) {
  body.woocommerce ul.products,
  body .woocommerce ul.products,
  .elementor-shortcode .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 768px) {
  body.woocommerce ul.products,
  body .woocommerce ul.products,
  .elementor-shortcode .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}
/* Kill WooCommerce float layout */
.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
}
.woocommerce ul.products li.product:nth-child(2n),
.woocommerce ul.products li.product:nth-child(2n+1) {
  clear: none !important;
}
body .woocommerce ul.products li.first,
body .woocommerce ul.products li.last {
  clear: none !important;
  margin-right: 0 !important;
  width: auto !important;
  float: none !important;
}

/* Card */
body .woocommerce ul.products li.product,
body.woocommerce ul.products li.product {
  float: none !important;
  width: auto !important;
  min-width: 0 !important;          /* let grid track shrink — stops long titles blowing out the column */
  max-width: 100% !important;
  overflow: hidden !important;
  margin: 0 !important;
  clear: none !important;
  padding: 12px !important;
  background: var(--mk-surface) !important;
  border: 0.5px solid var(--mk-border) !important;
  border-radius: var(--mk-r-2xl) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex !important;
  flex-direction: column;
  position: relative;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-2px);
  box-shadow: var(--mk-shadow-hover);
}

/* Image — square, rounded */
.woocommerce ul.products li.product a img {
  border-radius: var(--mk-r-xl) !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  width: 100% !important;
  height: auto !important;
  background: linear-gradient(135deg, #F4F4F4 0%, #E8E8E8 100%);
}

/* Sale badge — pill, top-left */
.woocommerce span.onsale {
  position: absolute !important;
  top: 24px !important;
  left: 24px !important;
  right: auto !important;
  background: var(--mk-sale) !important;
  color: #fff !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px;
  border-radius: var(--mk-r-pill) !important;
  padding: 3px 10px !important;
  min-height: auto !important;
  min-width: auto !important;
  line-height: 1.4 !important;
  z-index: 2;
}

/* Title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--mk-fg) !important;
  line-height: 1.4 !important;
  margin: 12px 4px 0 !important;
  padding: 0 !important;
  overflow: hidden;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 2.8em;
  overflow-wrap: anywhere;
}

/* Price */
.woocommerce ul.products li.product .price {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: var(--mk-fg) !important;
  margin: 4px 4px 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: baseline !important;
  flex-wrap: wrap !important;
  gap: 2px 6px !important;
}
.woocommerce ul.products li.product .price del {
  font-size: 12px !important;
  color: var(--mk-muted) !important;
  font-weight: 400 !important;
  order: 2;
}
.woocommerce ul.products li.product .price ins {
  text-decoration: none !important;
  color: var(--mk-sale) !important;
  font-weight: 500 !important;
  order: 1;
}

/* Add to cart — appears on hover */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.add_to_cart_button,
.woocommerce ul.products li.product a.product_type_simple {
  background: var(--mk-fg) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--mk-r-lg) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 10px 0 !important;
  margin: 12px 0 0 !important;
  text-align: center !important;
  width: 100% !important;
  display: block !important;
  opacity: 0;
  transition: opacity 0.15s ease;
  line-height: 1 !important;
}
.woocommerce ul.products li.product:hover .button,
.woocommerce ul.products li.product:hover a.add_to_cart_button,
.woocommerce ul.products li.product:hover a.product_type_simple {
  opacity: 1;
}
@media (max-width: 768px) {
  .woocommerce ul.products li.product .button,
  .woocommerce ul.products li.product a.add_to_cart_button { opacity: 1 !important; }
}

/* Hide star ratings in grid */
.woocommerce ul.products li.product .star-rating { display: none !important; }

/* ── Wishlist heart on product cards (matches React: Heart size=16, top-3 right-3, w-8 h-8) ── */
.mishka-wl-card {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  width: 32px !important;
  height: 32px !important;
  background: rgba(255,255,255,0.9) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 999px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border: none !important;
  z-index: 5;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  color: #0D0D0D;
}
.mishka-wl-card:hover {
  background: #fff !important;
  transform: scale(1.05);
}

/* Heart SVG dimensions */
.mishka-wl-btn svg {
  width: 16px;
  height: 16px;
}
/* Heart default state */
.mishka-wl-btn svg path {
  fill: none;
  stroke: #0D0D0D;
  stroke-width: 1.5;
  transition: fill 0.15s, stroke 0.15s;
}
/* Heart wishlisted state (JS toggles .wishlisted class) */
.mishka-wl-btn.wishlisted svg path {
  fill: #D92B2B !important;
  stroke: #D92B2B !important;
  stroke-width: 2 !important;
}
.mishka-wl-btn:not(.wishlisted):hover svg path {
  stroke: #D92B2B !important;
}

/* ── Empty cart + cross-sells: readable buttons ── */
.woocommerce-page .return-to-shop .button,
.wc-empty-cart-message + .return-to-shop .button {
  background: var(--mk-fg) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--mk-r-lg) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  height: 44px !important;
  padding: 0 24px !important;
  display: inline-flex !important;
  align-items: center !important;
}
.cross-sells .button,
.woocommerce .products .add_to_cart_button {
  color: #fff !important;
}

/* Single Product Page — see single-product.css */

/* Layout: gallery + info column */
.single-product div.product {
  display: grid !important;
  grid-template-columns: 1fr 440px !important;
  gap: 64px !important;
  align-items: start !important;
}
@media (max-width: 1024px) {
  .single-product div.product {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* Gallery */
.single-product .product .woocommerce-product-gallery {
  width: 100% !important;
  float: none !important;
  border-radius: 24px !important;
  overflow: hidden !important;
}
.single-product .product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
  border-radius: 24px !important;
}
.single-product .product .woocommerce-product-gallery .flex-control-thumbs {
  display: flex !important;
  gap: 12px !important;
  margin-top: 12px !important;
  padding: 0 !important;
}
.single-product .product .woocommerce-product-gallery .flex-control-thumbs li {
  width: 80px !important;
  height: 80px !important;
  flex-shrink: 0;
}
.single-product .product .woocommerce-product-gallery .flex-control-thumbs li img {
  border-radius: 12px !important;
  border: 0.5px solid var(--mk-border);
  width: 80px !important;
  height: 80px !important;
  object-fit: cover;
}

/* Summary / Info column */
.single-product .product .summary {
  width: 100% !important;
  float: none !important;
  clear: none !important;
}

/* Title */
.single-product .product .product_title {
  font-family: 'Inter', sans-serif !important;
  font-size: 32px !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.15 !important;
  color: var(--mk-fg) !important;
  margin-top: 8px !important;
  margin-bottom: 0 !important;
}

/* Price */
.single-product .product .price {
  font-family: 'Inter', sans-serif !important;
  font-size: 32px !important;
  font-weight: 600 !important;
  margin-top: 24px !important;
  margin-bottom: 0 !important;
}
.single-product .product .price del {
  font-size: 16px !important;
  color: var(--mk-muted) !important;
  font-weight: 400 !important;
}
.single-product .product .price ins {
  text-decoration: none !important;
  color: var(--mk-sale) !important;
}

/* Stock */
.single-product .stock {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 20px !important;
}
.single-product .stock::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.single-product .stock.in-stock { color: var(--mk-success) !important; }
.single-product .stock.out-of-stock { color: var(--mk-muted) !important; }

/* Add to cart row */
.single-product .product .cart {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-top: 24px !important;
  margin-bottom: 0 !important;
}
.single-product .product .single_add_to_cart_button {
  background: var(--mk-fg) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  height: 48px !important;
  padding: 0 32px !important;
  flex: 1;
  transition: opacity 0.15s;
}
.single-product .product .single_add_to_cart_button:hover { opacity: 0.9; }

/* Quantity */
.single-product .product .quantity {
  display: flex !important;
  align-items: center !important;
  border: 0.5px solid var(--mk-border) !important;
  border-radius: 10px !important;
  overflow: hidden;
  height: 48px !important;
}
.single-product .product .quantity .qty {
  border: none !important;
  width: 48px !important;
  height: 48px !important;
  text-align: center !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  background: transparent !important;
}

/* Short description */
.single-product .product .woocommerce-product-details__short-description {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: var(--mk-muted) !important;
  margin-top: 16px !important;
}

/* Product meta (SKU, Category) */
.single-product .product .product_meta {
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  color: var(--mk-muted) !important;
  border-top: 0.5px solid var(--mk-border) !important;
  padding-top: 16px !important;
  margin-top: 24px !important;
}
.single-product .product .product_meta a {
  color: var(--mk-fg) !important;
}

/* Woocommerce tabs on product page (full width below grid) */
.single-product .product .woocommerce-tabs {
  grid-column: 1 / -1 !important;
  margin-top: 48px !important;
}

/* Related products */
.single-product .product .related.products,
.single-product .product .upsells.products {
  grid-column: 1 / -1 !important;
  margin-top: 48px !important;
}

/* Quantity */
.woocommerce .quantity .qty {
  border: 0.5px solid var(--mk-border) !important;
  border-radius: var(--mk-r-md) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  width: 60px !important;
  height: 44px !important;
  text-align: center !important;
}

/* Tabs */
.woocommerce-tabs .tabs {
  padding: 0 !important;
  margin: 0 0 24px !important;
  border-bottom: 0.5px solid var(--mk-border) !important;
}
.woocommerce-tabs .tabs::before,
.woocommerce-tabs .tabs::after { display: none !important; }
.woocommerce-tabs .tabs li {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 24px 0 0 !important;
}
.woocommerce-tabs .tabs li a {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--mk-muted) !important;
  padding: 12px 0 !important;
  background: none !important;
}
.woocommerce-tabs .tabs li.active a {
  color: var(--mk-fg) !important;
  border-bottom: 2px solid var(--mk-fg) !important;
}
.woocommerce-tabs .panel {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Related / Upsells */
.single-product .related.products > h2,
.single-product .upsells.products > h2 {
  font-family: 'Inter', sans-serif !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  margin-bottom: 24px !important;
}

/* ══════════════════════════════════════════════════
   Cart Page (matches React cart)
   ══════════════════════════════════════════════════ */

/* Cart page title */
.woocommerce-cart .page-title,
.woocommerce-cart h1 {
  font-family: 'Inter', sans-serif !important;
  font-size: 36px !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 8px !important;
}

/* Hide WC default sad face icon */
.woocommerce-cart .cart-empty::before { display: none !important; }
.wc-empty-cart-message { display: none !important; }
/* Empty cart — full width in flex container */
.woocommerce-cart .woocommerce > .cart-empty,
.woocommerce-cart .woocommerce > .return-to-shop {
  width: 100% !important;
  flex-basis: 100% !important;
}

/* Cart layout: 2-column grid like React */
.woocommerce-cart .woocommerce {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 40px !important;
  max-width: var(--mk-container) !important;
  margin: 0 auto !important;
  padding: 32px 24px 80px !important;
}
.woocommerce-cart .woocommerce > .woocommerce-notices-wrapper {
  width: 100% !important;
  flex-basis: 100% !important;
}
.woocommerce-cart .woocommerce-cart-form {
  flex: 1 !important;
  min-width: 0 !important;
}
.woocommerce-cart .cart-collaterals {
  width: 380px !important;
  flex-shrink: 0 !important;
}
@media (max-width: 1024px) {
  .woocommerce-cart .woocommerce-cart-form,
  .woocommerce-cart .cart-collaterals {
    width: 100% !important;
    flex-basis: 100% !important;
  }
}

/* Empty cart styling (matches React) */
.woocommerce-cart .cart-empty {
  font-family: 'Inter', sans-serif !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  text-align: center !important;
  padding: 60px 20px 16px !important;
  border: none !important;
}
.woocommerce-cart .cart-empty::before {
  display: none !important;
}
.woocommerce-cart .return-to-shop {
  text-align: center !important;
  padding-bottom: 60px !important;
}
.woocommerce-cart .return-to-shop .button {
  background: var(--mk-fg) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--mk-r-lg) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  height: 44px !important;
  padding: 0 24px !important;
  display: inline-flex !important;
  align-items: center !important;
}

/* Cart table — card-style rows */
.woocommerce-cart table.cart {
  border-collapse: separate !important;
  border-spacing: 0 12px !important;
  border: none !important;
  width: 100% !important;
}
.woocommerce-cart table.cart thead {
  display: none !important; /* Hide th row, use card layout */
}
.woocommerce-cart table.cart td {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  border: none !important;
  vertical-align: middle !important;
  padding: 16px 12px !important;
  background: var(--mk-surface) !important;
}
.woocommerce-cart table.cart tr.cart_item {
  border: 0.5px solid var(--mk-border) !important;
  border-radius: var(--mk-r-2xl) !important;
}
.woocommerce-cart table.cart tr.cart_item td:first-child {
  border-radius: var(--mk-r-2xl) 0 0 var(--mk-r-2xl) !important;
}
.woocommerce-cart table.cart tr.cart_item td:last-child {
  border-radius: 0 var(--mk-r-2xl) var(--mk-r-2xl) 0 !important;
}
/* Cart thumbnail */
.woocommerce-cart table.cart td.product-thumbnail {
  width: 80px !important;
  padding: 12px !important;
}
.woocommerce-cart table.cart td.product-thumbnail img {
  width: 80px !important;
  height: 80px !important;
  border-radius: var(--mk-r-xl) !important;
  object-fit: cover !important;
  background: var(--mk-surface2) !important;
}
/* Product name */
.woocommerce-cart table.cart td.product-name {
  font-weight: 500 !important;
}
.woocommerce-cart table.cart td.product-name a {
  color: var(--mk-fg) !important;
  text-decoration: none !important;
}
.woocommerce-cart table.cart td.product-name a:hover {
  text-decoration: underline !important;
}
/* Price */
.woocommerce-cart table.cart td.product-price {
  font-size: 13px !important;
  color: var(--mk-muted) !important;
}
/* Quantity input — robust sizing so the value is clearly centered/visible.
   Overrides Hello Elementor / WooCommerce default line-height, padding and
   the native number spinner that otherwise clip the digit in a narrow box. */
.woocommerce-cart table.cart .quantity {
  display: inline-flex !important;
  align-items: center !important;
}
.woocommerce-cart table.cart .quantity .qty {
  box-sizing: border-box !important;
  border: 0.5px solid var(--mk-border) !important;
  border-radius: var(--mk-r-lg) !important;
  height: 40px !important;
  width: 64px !important;
  min-width: 64px !important;
  flex: 0 0 64px !important;
  padding: 0 6px !important;
  line-height: normal !important;
  text-align: center !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--mk-fg) !important;
  background: var(--mk-surface) !important;
  -moz-appearance: textfield !important;
  appearance: textfield !important;
  margin: 0 !important;
}
.woocommerce-cart table.cart .quantity .qty::-webkit-outer-spin-button,
.woocommerce-cart table.cart .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}
/* Subtotal */
.woocommerce-cart table.cart td.product-subtotal {
  font-weight: 600 !important;
  font-size: 15px !important;
}
/* Remove button */
.woocommerce-cart table.cart td.product-remove a {
  color: var(--mk-muted) !important;
  font-size: 20px !important;
}
.woocommerce-cart table.cart td.product-remove a:hover {
  color: var(--mk-sale) !important;
}
/* Actions row (coupon + update) */
.woocommerce-cart table.cart td.actions {
  border-radius: var(--mk-r-2xl) !important;
  padding: 16px !important;
}
.woocommerce-cart table.cart td.actions .coupon input {
  border: 0.5px solid var(--mk-border) !important;
  border-radius: var(--mk-r-lg) !important;
  height: 40px !important;
  padding: 0 12px !important;
  font-size: 13px !important;
  font-family: 'Inter', sans-serif !important;
}
.woocommerce-cart table.cart td.actions .coupon .button,
.woocommerce-cart table.cart td.actions > .button {
  background: var(--mk-fg) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--mk-r-lg) !important;
  height: 40px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  font-family: 'Inter', sans-serif !important;
  padding: 0 16px !important;
}

/* Cart totals sidebar */
.woocommerce-cart .cart_totals {
  background: var(--mk-surface) !important;
  border: 0.5px solid var(--mk-border) !important;
  border-radius: var(--mk-r-2xl) !important;
  padding: 24px !important;
}
.woocommerce-cart .cart_totals h2 {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  margin-bottom: 16px !important;
}
.woocommerce-cart .cart_totals table {
  border: none !important;
}
.woocommerce-cart .cart_totals table th {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--mk-muted) !important;
  border: none !important;
  padding: 8px 0 !important;
}
.woocommerce-cart .cart_totals table td {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border: none !important;
  text-align: right !important;
  padding: 8px 0 !important;
}
.woocommerce-cart .cart_totals .order-total th {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--mk-fg) !important;
}
.woocommerce-cart .cart_totals .order-total td {
  font-size: 24px !important;
  font-weight: 600 !important;
}
.woocommerce-cart .wc-proceed-to-checkout a {
  background: var(--mk-fg) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--mk-r-lg) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  height: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: opacity 0.15s !important;
}
.woocommerce-cart .wc-proceed-to-checkout a:hover {
  opacity: 0.9 !important;
}
/* Continue shopping link after checkout button */
.woocommerce-cart .wc-proceed-to-checkout::after {
  content: 'Continue shopping';
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  margin-top: 8px;
  border: 0.5px solid var(--mk-border);
  border-radius: var(--mk-r-lg);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--mk-fg);
  cursor: pointer;
}

/* Hide WC default notices (we use mini-cart) */
.woocommerce-cart .woocommerce-message { display: none !important; }

/* ══════════════════════════════════════════════════
   Checkout Page (matches React checkout)
   ══════════════════════════════════════════════════ */

/* Checkout centering container */
.woocommerce-checkout .woocommerce {
  max-width: var(--mk-container) !important;
  margin: 0 auto !important;
  padding: 32px 24px 80px !important;
}
/* Checkout 2-column: form.checkout is the flex container
   (col2-set + #order_review are siblings inside form.checkout) */
.woocommerce-checkout form.checkout {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 40px !important;
}
.woocommerce-checkout form.checkout > .col2-set {
  flex: 1 !important;
  min-width: 0 !important;
}
.woocommerce-checkout #order_review_heading {
  display: none !important;
}
.woocommerce-checkout form.checkout > #order_review {
  width: 400px !important;
  flex-shrink: 0 !important;
  position: sticky !important;
  top: 120px !important;
  align-self: flex-start !important;
}
@media (max-width: 1024px) {
  .woocommerce-checkout form.checkout > .col2-set,
  .woocommerce-checkout form.checkout > #order_review {
    width: 100% !important;
    flex-basis: 100% !important;
    position: static !important;
  }
}

.woocommerce-checkout .woocommerce h3,
.woocommerce-checkout .woocommerce h2 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 20px !important;
  margin-bottom: 16px !important;
}

/* Form fields */
.woocommerce form .form-row {
  margin-bottom: 12px !important;
}
.woocommerce form .form-row label {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--mk-fg) !important;
  margin-bottom: 4px !important;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  border: 0.5px solid var(--mk-border) !important;
  border-radius: var(--mk-r-lg) !important;
  padding: 10px 14px !important;
  background: var(--mk-surface) !important;
  height: 44px !important;
}
.woocommerce form .form-row textarea {
  height: auto !important;
  min-height: 80px !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  border-color: var(--mk-fg) !important;
  box-shadow: none !important;
  outline: none !important;
}

/* ── Billing form polish (React-like) ── */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select { width: 100% !important; box-sizing: border-box !important; display: block !important; }
.woocommerce form .form-row { padding: 0 !important; }
/* two-column name row */
.woocommerce-checkout .col2-set .form-row-first,
.woocommerce-checkout .col2-set .form-row-last { width: 48.5% !important; float: left !important; }
.woocommerce-checkout .col2-set .form-row-first { clear: both !important; margin-right: 3% !important; }
.woocommerce-checkout .col2-set .form-row-last { float: right !important; margin-right: 0 !important; }
.woocommerce-checkout .col2-set .form-row-wide { width: 100% !important; float: none !important; clear: both !important; }
.woocommerce-billing-fields__field-wrapper::after,
.woocommerce-shipping-fields__field-wrapper::after,
.woocommerce-checkout .col2-set::after { content: "" !important; display: table !important; clear: both !important; }
.woocommerce form .form-row label .optional { color: var(--mk-muted) !important; font-weight: 400 !important; }
.woocommerce form .form-row .required { color: #d63638 !important; text-decoration: none !important; border: 0 !important; }
/* select2 country dropdown to match inputs */
.woocommerce-checkout .select2-container--default .select2-selection--single { height: 44px !important; border: 0.5px solid var(--mk-border) !important; border-radius: var(--mk-r-lg) !important; background: var(--mk-surface) !important; }
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 42px !important; padding-left: 12px !important; color: var(--mk-fg) !important; font-size: 14px !important; }
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow { height: 42px !important; }
.woocommerce-checkout .select2-container { width: 100% !important; }
/* validation */
.woocommerce form .woocommerce-invalid input.input-text,
.woocommerce form .woocommerce-invalid select { border-color: #d63638 !important; }
.woocommerce form .woocommerce-validated input.input-text { border-color: var(--mk-border) !important; }
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-NoticeGroup .woocommerce-error { border-radius: var(--mk-r-lg) !important; border: 0.5px solid #f0c0c0 !important; background: #fdf3f3 !important; }
/* coupon toggle */
.woocommerce-checkout .checkout_coupon .form-row { margin-bottom: 10px !important; }
.woocommerce-checkout form.woocommerce-form-coupon .button { background: var(--mk-fg) !important; color: #fff !important; border-radius: var(--mk-r-lg) !important; height: 44px !important; }

/* Place order button */
.woocommerce #place_order {
  background: var(--mk-fg) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--mk-r-lg) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  height: 48px !important;
  width: 100% !important;
  transition: opacity 0.15s !important;
}
.woocommerce #place_order:hover { opacity: 0.9 !important; }

/* Payment box */
.woocommerce-checkout #payment {
  background: var(--mk-surface) !important;
  border-radius: var(--mk-r-2xl) !important;
  border: 0.5px solid var(--mk-border) !important;
  padding: 20px !important;
}
.woocommerce-checkout #payment .payment_methods {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 16px !important;
  border-bottom: 0.5px solid var(--mk-border) !important;
}
.woocommerce-checkout #payment .payment_methods li {
  border: none !important;
  padding: 12px 0 !important;
  border-bottom: 0.5px solid var(--mk-border) !important;
}
.woocommerce-checkout #payment .payment_methods li label {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

/* Shipping method selector (delivery vs pickup) in the order review */
.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping td { text-align: left !important; padding-top: 6px !important; padding-bottom: 6px !important; }
.woocommerce-checkout #shipping_method { list-style: none !important; margin: 0 !important; padding: 0 !important; }
.woocommerce-checkout #shipping_method li {
  display: flex !important; align-items: center !important; gap: 10px !important;
  padding: 9px 0 !important; margin: 0 !important; border-bottom: 0.5px solid var(--mk-border) !important;
}
.woocommerce-checkout #shipping_method li:last-child { border-bottom: 0 !important; }
.woocommerce-checkout #shipping_method li input[type="radio"] { accent-color: var(--mk-fg) !important; width: 16px !important; height: 16px !important; margin: 2px 0 0 !important; flex: 0 0 auto !important; }
.woocommerce-checkout #shipping_method label {
  display: flex !important; align-items: center !important; gap: 8px !important;
  flex: 1 1 auto !important; min-width: 0 !important; margin: 0 !important;
  font-size: 13px !important; font-weight: 500 !important; line-height: 1.35 !important;
  color: var(--mk-fg) !important; cursor: pointer !important;
  word-break: normal !important; overflow-wrap: break-word !important;
}
/* Montonio carrier methods: text wraps by words on the left, small logo on the right */
.woocommerce-checkout #shipping_method .montonio-shipping-label { flex: 1 1 auto !important; min-width: 0 !important; }
.woocommerce-checkout #shipping_method .montonio-shipping-carrier-logo { width: 34px !important; height: auto !important; flex: 0 0 auto !important; margin-left: auto !important; }
.woocommerce-checkout #shipping_method label .amount { font-weight: 600 !important; margin-left: 4px !important; white-space: nowrap !important; }
/* Montonio pickup-point picker below the methods */
.woocommerce-checkout .montonio-pickup-point-wrapper,
.woocommerce-checkout [class*="montonio-shipping"] .select2-container,
.woocommerce-checkout .montonio-pickup-point-select { width: 100% !important; }
/* Give the shipping selector the FULL order-review width (label on its own line,
   methods full-width below) so carrier methods + logos never get squeezed. */
.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping { display: block !important; padding: 12px 18px !important; }
.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping th,
.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping td {
  display: block !important; width: 100% !important; padding: 0 !important; border: 0 !important; text-align: left !important;
}
.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping th {
  font-size: 11px !important; text-transform: uppercase !important; letter-spacing: .06em !important;
  color: var(--mk-muted) !important; margin-bottom: 8px !important; font-weight: 600 !important;
}
.woocommerce-checkout .woocommerce-shipping-destination { font-size: 12px !important; color: var(--mk-muted) !important; margin: 8px 0 0 !important; }

/* Order review table */
/* Checkout order-summary — clean card (matches cart summary aesthetic) */
.woocommerce-checkout-review-order-table {
  font-family: 'Inter', sans-serif !important;
  border-radius: var(--mk-r-2xl) !important;
  overflow: hidden !important;
  border: 0.5px solid var(--mk-border) !important;
  background: var(--mk-surface) !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  width: 100% !important;
  margin-bottom: 16px !important;
}
.woocommerce-checkout-review-order-table thead th {
  font-size: 11px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: var(--mk-muted) !important;
  background: var(--mk-surface2) !important;
  padding: 12px 18px !important;
  border: none !important;
  text-align: left !important;
}
.woocommerce-checkout-review-order-table thead th.product-total { text-align: right !important; }
.woocommerce-checkout-review-order-table tbody td,
.woocommerce-checkout-review-order-table tbody th {
  font-size: 14px !important;
  padding: 14px 18px !important;
  border: none !important;
  border-bottom: 0.5px solid var(--mk-border) !important;
  background: transparent !important;
  vertical-align: top !important;
}
.woocommerce-checkout-review-order-table tbody .product-name { font-weight: 500 !important; color: var(--mk-fg) !important; }
.woocommerce-checkout-review-order-table tbody .product-name .product-quantity { color: var(--mk-muted) !important; font-weight: 400 !important; }
.woocommerce-checkout-review-order-table tbody .product-total,
.woocommerce-checkout-review-order-table .cart-subtotal td,
.woocommerce-checkout-review-order-table .order-total td { text-align: right !important; white-space: nowrap !important; }
/* Non-classic states: long shipping notices ("no options available") must WRAP,
   otherwise the table overflows its container and the amounts slide off-screen. */
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td { word-break: normal !important; overflow-wrap: break-word !important; }
.woocommerce-checkout-review-order-table .shipping td,
.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping td {
  white-space: normal !important; text-align: left !important;
  font-size: 13px !important; font-weight: 400 !important; color: var(--mk-muted) !important; line-height: 1.5 !important;
}
/* "no shipping options" / info notices inside the review */
.woocommerce-checkout-review-order-table .woocommerce-info,
.woocommerce-checkout-review-order-table .woocommerce-error,
.woocommerce-checkout-review-order-table .shipping td > *:only-child {
  background: none !important; border: 0 !important; padding: 0 !important; margin: 0 !important;
  color: var(--mk-muted) !important; font-size: 13px !important; line-height: 1.5 !important;
}
/* Mishka Credits earn row — integrate as a quiet info row, not a heavy card */
.woocommerce-checkout-review-order-table .mpc-earn-row th {
  font-size: 13px !important; font-weight: 400 !important; color: var(--mk-muted) !important;
  padding: 14px 18px !important; border: none !important; border-top: 0.5px solid var(--mk-border) !important;
}
.woocommerce-checkout-review-order-table .mpc-earn-row td {
  text-align: right !important; white-space: nowrap !important; font-size: 13px !important; font-weight: 500 !important;
  color: var(--mk-fg) !important; padding: 14px 18px !important; border: none !important; border-top: 0.5px solid var(--mk-border) !important;
}
.woocommerce-checkout-review-order-table .cart-subtotal th,
.woocommerce-checkout-review-order-table .shipping th {
  font-size: 13px !important; font-weight: 400 !important; color: var(--mk-muted) !important;
  padding: 14px 18px !important; border: none !important; border-bottom: 0.5px solid var(--mk-border) !important;
}
.woocommerce-checkout-review-order-table .cart-subtotal td,
.woocommerce-checkout-review-order-table .shipping td {
  font-size: 14px !important; font-weight: 500 !important; padding: 14px 18px !important; border: none !important; border-bottom: 0.5px solid var(--mk-border) !important;
}
.woocommerce-checkout-review-order-table .order-total th {
  font-size: 14px !important; font-weight: 600 !important; color: var(--mk-fg) !important;
  padding: 18px !important; border: none !important; vertical-align: middle !important;
}
.woocommerce-checkout-review-order-table .order-total td {
  font-size: 24px !important; font-weight: 700 !important; color: var(--mk-fg) !important;
  padding: 18px !important; border: none !important; vertical-align: middle !important;
}

/* Billing/shipping section cards */
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
  background: var(--mk-surface) !important;
  border: 0.5px solid var(--mk-border) !important;
  border-radius: var(--mk-r-2xl) !important;
  padding: 24px !important;
  margin-bottom: 16px !important;
}

/* Secure checkout badge */
.woocommerce-checkout #payment::after {
  content: '🔒 Secure checkout · Visa · MC · ESTO';
  display: block;
  text-align: center;
  font-size: 11px;
  color: var(--mk-muted);
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
}

/* ══════════════════════════════════════════════════
   My Account Page
   ══════════════════════════════════════════════════ */

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0 !important;
  border-bottom: 0.5px solid var(--mk-border);
}
.woocommerce-account .woocommerce-MyAccount-navigation li a {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: var(--mk-fg) !important;
  display: block !important;
  padding: 12px 16px !important;
  transition: background 0.15s;
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
  background: var(--mk-surface2) !important;
  font-weight: 500 !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  background: var(--mk-surface) !important;
  border: 0.5px solid var(--mk-border) !important;
  border-radius: var(--mk-r-2xl) !important;
  overflow: hidden !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}
.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
  font-family: 'Inter', sans-serif !important;
}

/* Login/Register forms */
.woocommerce-form-login,
.woocommerce-form-register {
  background: var(--mk-surface) !important;
  border: 0.5px solid var(--mk-border) !important;
  border-radius: var(--mk-r-2xl) !important;
  padding: 32px !important;
}

.woocommerce-form-login .woocommerce-form-login__submit,
.woocommerce-form-register .woocommerce-form-register__submit {
  background: var(--mk-fg) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--mk-r-lg) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  height: 44px !important;
  padding: 0 24px !important;
}

/* Orders table */
.woocommerce-orders-table {
  border-radius: var(--mk-r-2xl) !important;
  overflow: hidden !important;
  border: 0.5px solid var(--mk-border) !important;
}
.woocommerce-orders-table th {
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  color: var(--mk-muted) !important;
  background: var(--mk-surface2) !important;
}
.woocommerce-orders-table td {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
}
.woocommerce-orders-table .woocommerce-button {
  background: var(--mk-fg) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--mk-r-lg) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 6px 14px !important;
}

/* ══════════════════════════════════════════════════
   Breadcrumbs & Notices
   ══════════════════════════════════════════════════ */

.woocommerce-breadcrumb {
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  color: var(--mk-muted) !important;
  margin-bottom: 20px !important;
}
.woocommerce-breadcrumb a { color: var(--mk-muted) !important; }
.woocommerce-breadcrumb a:hover { color: var(--mk-fg) !important; }

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  border-radius: var(--mk-r-lg) !important;
  border-top-color: var(--mk-fg) !important;
}

/* Result count & ordering */
.woocommerce-result-count {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  color: var(--mk-muted) !important;
}
.woocommerce-ordering select {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  border: 0.5px solid var(--mk-border) !important;
  border-radius: var(--mk-r-lg) !important;
  padding: 8px 32px 8px 14px !important;
  background: var(--mk-surface) !important;
  height: 40px !important;
}

/* Shop page title */
.woocommerce-products-header__title {
  font-family: 'Inter', sans-serif !important;
  font-size: 36px !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
}

/* ══════════════════════════════════════════════════
   Page Containers
   ══════════════════════════════════════════════════ */

.woocommerce-page .entry-content,
.woocommerce-page .page-content {
  max-width: var(--mk-container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) {
  .woocommerce-page .entry-content,
  .woocommerce-page .page-content { padding: 0 32px; }
}

/* ══════════════════════════════════════════════════
   Sticky Header (HFE template ID=69)
   ══════════════════════════════════════════════════ */

#masthead {
  position: sticky;
  top: -36px; /* hide announcement bar on scroll, keep navbar visible */
  z-index: 999;
  background: #fff;
}

/* ══════════════════════════════════════════════════
   Global layout safety
   ══════════════════════════════════════════════════ */

html {
  overflow-x: clip;
}

/* ══════════════════════════════════════════════════
   Hide Hello Elementor default header/footer
   (we use HFE Elementor templates instead)
   ══════════════════════════════════════════════════ */

.site-header { display: none !important; }
.site-footer { display: none !important; }

/* ══════════════════════════════════════════════════
   WooCommerce Container (woocommerce.php template)
   ══════════════════════════════════════════════════ */

.mishka-wc-container {
  max-width: var(--mk-container);
  margin: 0 auto;
  padding: 32px 24px 80px;
}

/* Shop layout: sidebar + product grid */
.mishka-shop-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
/* min-width:0 so the product grid can't push the 1fr track past the viewport */
.mishka-shop-content { min-width: 0; }

/* ── Category hero banner ── */
.mishka-cat-hero {
  position: relative;
  border-radius: var(--mk-r-2xl);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 32px;
}
.mishka-cat-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0) 35%, rgba(13,13,13,0.55) 100%);
}
.mishka-cat-hero__inner {
  position: relative;
  z-index: 1;
  padding: 28px 32px;
  color: #fff;
}
.mishka-cat-hero__title {
  font-family: 'Inter', sans-serif !important;
  font-size: 34px !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
  color: #fff !important;
  margin: 0 !important;
}
.mishka-cat-hero__desc {
  font-size: 14px;
  margin: 6px 0 0 !important;
  max-width: 640px;
  opacity: 0.9;
}
/* hide the default WC archive title on category pages (hero shows it) */
.tax-product_cat .woocommerce-products-header { display: none !important; }
@media (max-width: 1024px) {
  .mishka-shop-layout {
    grid-template-columns: 1fr;
  }
  /* sidebar becomes an off-canvas drawer on mobile — see end-of-file rules */
}
.mishka-shop-sidebar {
  position: sticky;
  top: 120px;
  font-family: 'Inter', sans-serif;
}
.mishka-shop-sidebar .widget {
  margin-bottom: 28px;
}
.mishka-shop-sidebar .widget-title,
.mishka-shop-sidebar .widgettitle {
  font-size: 12px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: #6B6B6B !important;
  margin-bottom: 12px !important;
  font-family: 'Inter', sans-serif !important;
}
.mishka-shop-sidebar ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.mishka-shop-sidebar ul li {
  margin-bottom: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}
.mishka-shop-sidebar ul li a {
  font-size: 14px !important;
  color: #0D0D0D !important;
  text-decoration: none !important;
  font-family: 'Inter', sans-serif !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex: 1;
}
/* Category checkbox via ::before pseudo-element */
.mishka-shop-sidebar .product-categories li a::before {
  content: '';
  width: 16px;
  height: 16px;
  border: 1.5px solid #D4D4D4;
  border-radius: 4px;
  flex-shrink: 0;
  display: inline-block;
  transition: all 0.15s;
}
/* Checked state (JS toggles .mishka-cat-checked on li) */
.mishka-shop-sidebar .product-categories li.current-cat a::before,
.mishka-shop-sidebar .product-categories li.mishka-cat-checked a::before {
  background: #0D0D0D;
  border-color: #0D0D0D;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
/* Count on same line, right-aligned */
.mishka-shop-sidebar ul li .count {
  font-size: 12px !important;
  color: #6B6B6B !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}
/* Price filter label on one line */
.mishka-shop-sidebar .price_slider_amount {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}
.mishka-shop-sidebar .price_slider_wrapper {
  margin-top: 8px;
}
.mishka-shop-sidebar .price_slider {
  margin-bottom: 16px !important;
}
.mishka-shop-sidebar .price_slider_amount .price_label {
  font-size: 13px !important;
  color: #6B6B6B !important;
  font-family: 'Inter', sans-serif !important;
}
/* jQuery UI slider base (WC doesn't load jQuery UI CSS) */
.ui-slider {
  position: relative !important;
  text-align: left;
}
.ui-slider .ui-slider-handle {
  position: absolute !important;
  z-index: 2;
  touch-action: none;
  outline: none;
}
.ui-slider .ui-slider-range {
  position: absolute !important;
  z-index: 1;
  display: block;
}
/* Horizontal slider defaults */
.ui-slider-horizontal {
  height: 4px !important;
}
.ui-slider-horizontal .ui-slider-handle {
  margin-left: -8px;
}
.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}
/* Mishka styling on top */
.mishka-shop-sidebar .ui-slider {
  background: #E8E8E8 !important;
  border: none !important;
  border-radius: 4px !important;
  height: 4px !important;
}
.mishka-shop-sidebar .ui-slider .ui-slider-range {
  background: #0D0D0D !important;
  border-radius: 4px !important;
}
.mishka-shop-sidebar .ui-slider .ui-slider-handle {
  background: #0D0D0D !important;
  border: 2px solid #fff !important;
  border-radius: 50% !important;
  width: 16px !important;
  height: 16px !important;
  top: -6px !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  cursor: grab;
}
.mishka-shop-sidebar .ui-slider .ui-slider-handle:active {
  cursor: grabbing;
}

/* Price filter button styling */
.mishka-shop-sidebar .price_slider_amount .button {
  background: #0D0D0D !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 8px 16px !important;
  cursor: pointer !important;
  font-family: 'Inter', sans-serif !important;
}

/* ══════════════════════════════════════════════════
   Wishlist — Custom localStorage-based
   ══════════════════════════════════════════════════ */

/* Hide any leftover TI wishlist markup (in case plugin is re-enabled) */
.tinv-wraper { display: none !important; }

/* ══════════════════════════════════════════════════
   Outlet page (Elementor HTML widget)
   ══════════════════════════════════════════════════ */
.mk-outlet { font-family: 'Inter', sans-serif; color: var(--mk-fg); width: calc(100% - 48px); max-width: var(--mk-container); margin: 0 auto; padding: 24px 0 72px; box-sizing: border-box; }
.mk-outlet-hero {
  border: 0.5px solid var(--mk-border);
  border-radius: var(--mk-r-2xl);
  background: var(--mk-surface);
  padding: 32px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 900px) { .mk-outlet-hero { grid-template-columns: 2fr 1fr; padding: 48px; align-items: start; } }
.mk-outlet-hero__badge { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.mk-outlet-hero__tagicon { width: 40px; height: 40px; border-radius: var(--mk-r-xl); background: var(--mk-fg); color: #fff; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mk-outlet-hero__eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mk-muted); font-weight: 500; }
.mk-outlet-hero__title { font-size: 32px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; margin: 0 !important; }
@media (min-width: 768px) { .mk-outlet-hero__title { font-size: 48px; } }
.mk-outlet-hero__title .mk-muted { color: var(--mk-muted); }
.mk-outlet-hero__sub { margin: 20px 0 0 !important; font-size: 15px; line-height: 1.6; color: var(--mk-muted); max-width: 640px; }
.mk-outlet-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (min-width: 900px) { .mk-outlet-stats { grid-template-columns: 1fr; } }
.mk-outlet-stat { border: 0.5px solid var(--mk-border); border-radius: var(--mk-r-xl); background: var(--mk-bg); padding: 16px; }
.mk-outlet-stat__n { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.mk-outlet-stat__l { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--mk-muted); margin-top: 4px; }

.mk-outlet-why { margin: 48px 0; }
.mk-outlet-why__eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mk-muted); font-weight: 500; margin-bottom: 8px; }
.mk-outlet-why__title { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 24px !important; }
.mk-outlet-section-title { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 24px !important; }

.mk-outlet-cards { display: grid; grid-template-columns: minmax(0,1fr); gap: 16px; }
@media (min-width: 600px) { .mk-outlet-cards { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .mk-outlet-cards { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.mk-outlet-cards--soft { margin-bottom: 16px; }
.mk-outlet-card {
  position: relative;
  min-height: 200px;
  border-radius: var(--mk-r-2xl);
  overflow: hidden;
  background: var(--mk-surface2) center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  border: 0.5px solid var(--mk-border);
}
.mk-outlet-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,13,13,0.05) 30%, rgba(13,13,13,0.78) 100%); }
.mk-outlet-card__body { position: relative; z-index: 1; padding: 18px; color: #fff; }
.mk-outlet-card__tag { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; background: rgba(255,255,255,0.92); color: var(--mk-fg); padding: 3px 9px; border-radius: var(--mk-r-pill); margin-bottom: 10px; }
.mk-outlet-card__title { font-size: 16px; font-weight: 600; margin: 0 0 6px !important; color: #fff !important; }
.mk-outlet-card__text { font-size: 12.5px; line-height: 1.5; margin: 0 !important; color: rgba(255,255,255,0.88); }

.mk-outlet-rules { border: 0.5px solid var(--mk-border); background: rgba(13,13,13,0.03); border-radius: var(--mk-r-xl); padding: 16px; font-size: 12.5px; line-height: 1.6; color: var(--mk-muted); margin: 32px 0; }
.mk-outlet-count { font-size: 14px; color: var(--mk-muted); margin-bottom: 20px; }
.mk-outlet-empty { border: 0.5px solid var(--mk-border); border-radius: var(--mk-r-2xl); background: var(--mk-surface); text-align: center; padding: 56px 24px; }
.mk-outlet-empty svg { color: var(--mk-muted); margin-bottom: 16px; }
.mk-outlet-empty__title { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.mk-outlet-empty__text { font-size: 13px; color: var(--mk-muted); max-width: 440px; margin: 0 auto 24px; line-height: 1.6; }

/* ══════════════════════════════════════════════════
   Page hero banner (Installment / Payment)
   ══════════════════════════════════════════════════ */
.mk-pagehero {
  position: relative;
  border-radius: var(--mk-r-2xl);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  width: calc(100% - 48px);
  max-width: var(--mk-container);
  margin: 24px auto 40px;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}
.mk-pagehero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,13,13,0.78) 0%, rgba(13,13,13,0.45) 55%, rgba(13,13,13,0.15) 100%);
}
.mk-pagehero__inner { position: relative; z-index: 1; padding: 44px 48px; color: #fff; max-width: 680px; }
.mk-pagehero__eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  background: rgba(255,255,255,0.14); padding: 6px 12px; border-radius: var(--mk-r-pill); margin-bottom: 18px;
}
.mk-pagehero__title { font-size: 38px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.06; color: #fff !important; margin: 0 !important; }
@media (min-width: 768px) { .mk-pagehero__title { font-size: 52px; } }
.mk-pagehero__sub { font-size: 15px; line-height: 1.55; margin: 16px 0 0 !important; opacity: 0.92; max-width: 520px; }
.mk-pagehero__btn { display: inline-flex; align-items: center; height: 46px; padding: 0 26px; margin-top: 26px; border-radius: var(--mk-r-lg); background: #fff; color: var(--mk-fg) !important; font-size: 14px; font-weight: 500; text-decoration: none !important; transition: opacity .15s; }
.mk-pagehero__btn:hover { opacity: 0.9; }

/* ══════════════════════════════════════════════════
   Installment ESTO hero (black rounded card, React 1:1)
   ══════════════════════════════════════════════════ */
.mk-esto-hero {
  background: var(--mk-fg); color: #fff;
  border-radius: var(--mk-r-2xl);
  padding: 44px;
  width: calc(100% - 48px); max-width: var(--mk-container);
  margin: 24px auto 0; box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}
@media (min-width: 768px) { .mk-esto-hero { padding: 56px; } }
.mk-esto-hero__badge { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.6; margin-bottom: 14px; }
.mk-esto-hero__title { font-size: 38px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; color: #fff !important; margin: 0 !important; max-width: 640px; }
@media (min-width: 768px) { .mk-esto-hero__title { font-size: 52px; } }
.mk-esto-hero__sub { font-size: 15px; opacity: 0.8; margin: 18px 0 0 !important; max-width: 520px; }

/* ══════════════════════════════════════════════════
   Home hero slider (LOGO3 promos)
   ══════════════════════════════════════════════════ */
.mk-hero { position: relative; width: calc(100% - 48px); max-width: var(--mk-container); margin: 16px auto 0; border-radius: var(--mk-r-2xl); overflow: hidden; font-family: 'Inter', sans-serif; }
.mk-hero__track { display: flex; transition: transform .5s ease; }
/* image-only banner slides (the LOGO3 promos already include their own text) */
.mk-hero__slide { position: relative; flex: 0 0 100%; display: block; aspect-ratio: 2048 / 768; background-size: cover; background-position: left center; background-repeat: no-repeat; }
.mk-hero__inner { position: relative; z-index: 1; padding: 40px 48px; color: #fff; max-width: 600px; }
.mk-hero__tag { display: inline-block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; background: rgba(255,255,255,0.16); padding: 6px 12px; border-radius: var(--mk-r-pill); margin-bottom: 16px; }
.mk-hero__title { font-size: 34px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.06; color: #fff !important; margin: 0 !important; }
@media (min-width: 768px) { .mk-hero__title { font-size: 46px; } }
.mk-hero__sub { font-size: 15px; opacity: 0.9; margin: 14px 0 0 !important; max-width: 460px; }
.mk-hero__btn { display: inline-flex; align-items: center; height: 46px; padding: 0 26px; margin-top: 24px; border-radius: var(--mk-r-lg); background: #fff; color: var(--mk-fg) !important; font-size: 14px; font-weight: 500; text-decoration: none !important; }
.mk-hero__btn:hover { opacity: 0.9; }
.mk-hero__dots { position: absolute; z-index: 2; bottom: 18px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; }
.mk-hero__dot { width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,0.45); border: none; cursor: pointer; padding: 0; }
.mk-hero__dot.is-active { background: #fff; width: 22px; }
.mk-hero__arrow { position: absolute !important; z-index: 3; top: 50%; transform: translateY(-50%); width: 42px !important; height: 42px !important; min-width: 0 !important; padding: 0 !important; margin: 0 !important; border-radius: 999px !important; background: rgba(255,255,255,0.92) !important; border: none !important; box-shadow: 0 2px 10px rgba(0,0,0,0.18) !important; cursor: pointer; display: inline-flex !important; align-items: center !important; justify-content: center !important; line-height: 0 !important; }
.mk-hero__arrow:hover { background: #fff !important; }
.mk-hero__arrow svg { display: block; }
.mk-hero__arrow--prev { left: 16px; } .mk-hero__arrow--next { right: 16px; }

/* ══════════════════════════════════════════════════
   Brands — logo strip
   ══════════════════════════════════════════════════ */
.mk-brandstrip { font-family: 'Inter', sans-serif; margin: 8px 0 40px; }
.mk-brandstrip__head { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mk-muted); font-weight: 500; margin-bottom: 16px; }
.mk-brandstrip__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
@media (min-width: 640px) { .mk-brandstrip__grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
@media (min-width: 1024px) { .mk-brandstrip__grid { grid-template-columns: repeat(5, minmax(0,1fr)); } }
.mk-brandtile {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 16/10; background: var(--mk-surface); border: 0.5px solid var(--mk-border);
  border-radius: var(--mk-r-xl); padding: 18px; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mk-brandtile:hover { transform: translateY(-2px); box-shadow: var(--mk-shadow-hover); }
.mk-brandtile img { max-width: 100%; max-height: 56px; width: auto; height: auto; object-fit: contain; display: block; }

/* Brands page — clickable logo grid (React (3) BrandCard) */
.mk-brandpage { font-family: 'Inter', sans-serif; width: calc(100% - 48px); max-width: var(--mk-container); margin: 0 auto; padding: 36px 0 72px; box-sizing: border-box; }
.mk-brandpage__title { font-size: 36px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 6px; }
.mk-brandpage__sub { font-size: 14px; color: var(--mk-muted); margin: 0 0 28px; }
.mk-brandgrid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
@media (min-width: 640px) { .mk-brandgrid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1024px) { .mk-brandgrid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.mk-brandcard {
  display: flex; flex-direction: column; overflow: hidden;
  border: 0.5px solid var(--mk-border); border-radius: var(--mk-r-2xl); background: var(--mk-surface);
  text-decoration: none !important; transition: transform .2s ease, box-shadow .2s ease;
}
.mk-brandcard:hover { transform: translateY(-3px); box-shadow: var(--mk-shadow-hover); }
.mk-brandcard__logo { aspect-ratio: 3/2; display: flex; align-items: center; justify-content: center; padding: 16px; background: var(--mk-surface2); }
.mk-brandcard__logo img { max-width: 100%; max-height: 92px; width: auto; height: auto; object-fit: contain; display: block; }
.mk-brandcard__logo--text { font-size: 20px; font-weight: 600; color: var(--mk-fg); letter-spacing: -0.01em; }
.mk-brandcard__meta { padding: 16px 18px; display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.mk-brandcard__name { font-size: 15px; font-weight: 600; color: var(--mk-fg); }
.mk-brandcard__count { font-size: 12px; color: var(--mk-muted); white-space: nowrap; }

/* ══════════════════════════════════════════════════
   Aftercare — Do/Don't, booster, trust
   ══════════════════════════════════════════════════ */
.mk-ac { font-family: 'Inter', sans-serif; width: calc(100% - 48px); max-width: var(--mk-container); margin: 0 auto; padding: 8px 0 56px; box-sizing: border-box; }
.mk-ac-grid2 { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 0 0 40px; }
@media (min-width: 768px) { .mk-ac-grid2 { grid-template-columns: 1fr 1fr; } }
.mk-ac-card { position: relative; border-radius: var(--mk-r-2xl); border: 0.5px solid var(--mk-border); padding: 28px; overflow: hidden; background: var(--mk-surface); background-size: cover; background-position: center; }
.mk-ac-card::after { content:''; position:absolute; inset:0; background: rgba(255,255,255,0.72); }
.mk-ac-card > * { position: relative; z-index: 1; }
.mk-ac-card__h { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 600; margin-bottom: 16px; }
.mk-ac-card__badge { width: 30px; height: 30px; border-radius: var(--mk-r-pill); display: inline-flex; align-items: center; justify-content: center; }
.mk-ac-card__badge--do { background: rgba(45,122,79,0.12); color: var(--mk-success); }
.mk-ac-card__badge--dont { background: rgba(217,43,43,0.12); color: var(--mk-sale); }
.mk-ac-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; font-size: 14px; }
.mk-ac-list li { display: flex; gap: 9px; align-items: flex-start; }
.mk-ac-list--do li::before { content: '✓'; color: var(--mk-success); font-weight: 600; }
.mk-ac-list--dont li { color: var(--mk-muted); }
.mk-ac-list--dont li::before { content: '×'; color: var(--mk-sale); font-weight: 600; }

.mk-ac-booster { position: relative; border-radius: var(--mk-r-2xl); border: 0.5px solid var(--mk-border); padding: 28px 32px; overflow: hidden; margin: 0 0 40px; background-size: cover; background-position: center; }
.mk-ac-booster::after { content:''; position:absolute; inset:0; background: rgba(250,250,250,0.86); }
.mk-ac-booster__row { position: relative; z-index: 1; display: flex; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.mk-ac-booster__icon { width: 40px; height: 40px; border-radius: var(--mk-r-pill); background: var(--mk-fg); color: #fff; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mk-ac-booster__eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mk-muted); font-weight: 500; }
.mk-ac-booster__title { font-size: 16px; font-weight: 600; margin-top: 4px; }
.mk-ac-booster__text { font-size: 13px; color: var(--mk-muted); margin-top: 4px; }
.mk-ac-booster__text strong { color: var(--mk-fg); font-weight: 600; }

.mk-ac-trust { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 0 0 48px; }
@media (min-width: 768px) { .mk-ac-trust { grid-template-columns: repeat(3, 1fr); } }
.mk-ac-trustcard { border-radius: var(--mk-r-2xl); overflow: hidden; background: var(--mk-surface2); border: 0.5px solid var(--mk-border); }
.mk-ac-trustcard__img { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.mk-ac-trustcard__body { padding: 20px 22px; }
.mk-ac-trustcard__t { font-size: 15px; font-weight: 600; }
.mk-ac-trustcard__d { font-size: 13px; color: var(--mk-muted); margin-top: 6px; line-height: 1.5; }
.mk-ac-secttitle { font-family: 'Inter', sans-serif; font-size: 28px; font-weight: 600; letter-spacing: -0.01em; margin: 8px 0 20px; }

/* ══════════════════════════════════════════════════
   Coming Soon page template
   ══════════════════════════════════════════════════ */
.mk-coming {
  min-height: 64vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  font-family: 'Inter', sans-serif;
}
.mk-coming__inner { max-width: 560px; }
.mk-coming__eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mk-muted);
  margin-bottom: 20px;
}
.mk-coming__title {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 16px !important;
  color: var(--mk-fg);
}
@media (min-width: 768px) { .mk-coming__title { font-size: 64px; } }
.mk-coming__sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--mk-muted);
  margin: 0 auto 32px !important;
  max-width: 440px;
}
.mk-coming__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.mk-coming__btn {
  height: 48px;
  padding: 0 28px;
  border-radius: var(--mk-r-lg);
  background: var(--mk-fg);
  color: #fff !important;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  transition: opacity 0.15s;
}
.mk-coming__btn:hover { opacity: 0.9; }
.mk-coming__link {
  height: 48px;
  padding: 0 24px;
  border-radius: var(--mk-r-lg);
  border: 0.5px solid var(--mk-border);
  color: var(--mk-fg) !important;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  transition: background 0.15s;
}
.mk-coming__link:hover { background: var(--mk-surface2); }

/* ══════════════════════════════════════════════════
   Mishka v3 — Checkout/Cart skin cleanup (appended override)
   Wins via end-of-file order + !important at equal specificity.
   Targets: WC notice boxes, coupon-toggle bar, payment "no
   methods" notice, and the cart action-button pair.
   Uses --mk-* tokens only. Does NOT touch billing form,
   order-review table, or #place_order.
   ══════════════════════════════════════════════════ */

/* ── PROBLEM 4 + 5: WooCommerce notices — kill the default
   dark/colored TOP-BORDER STRIPE and the oversized ::before
   info icon, on checkout + cart. Earlier rule (~line 1144)
   set border-top-color:var(--mk-fg) which created the stripe;
   here we remove the top border entirely and make a clean,
   subtle bordered surface bar with Inter. ── */
.woocommerce-info,
.woocommerce-checkout .woocommerce-info,
.woocommerce-cart .woocommerce-info {
  position: relative !important;
  background: var(--mk-surface) !important;
  color: var(--mk-fg) !important;
  border: 0.5px solid var(--mk-border) !important;
  border-top: 0.5px solid var(--mk-border) !important; /* override dark stripe */
  border-radius: var(--mk-r-lg) !important;
  box-shadow: none !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  padding: 14px 16px !important;
}
.woocommerce-info::before,
.woocommerce-checkout .woocommerce-info::before,
.woocommerce-cart .woocommerce-info::before {
  content: none !important;
  display: none !important;
}

/* ── PROBLEM 4: the checkout coupon-toggle bar.
   Markup: div.woocommerce-form-coupon-toggle > div.woocommerce-info
   containing a.showcoupon. Make it a clean intentional bar;
   the showcoupon link is the accent. ── */
.woocommerce-form-coupon-toggle {
  margin-bottom: 16px !important;
}
.woocommerce-form-coupon-toggle .woocommerce-info {
  background: var(--mk-surface2) !important;
  color: var(--mk-muted) !important;
  border: 0.5px solid var(--mk-border) !important;
  border-top: 0.5px solid var(--mk-border) !important; /* no dark stripe */
  border-radius: var(--mk-r-lg) !important;
  box-shadow: none !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  padding: 12px 16px !important;
}
.woocommerce-form-coupon-toggle .woocommerce-info::before {
  content: none !important;
  display: none !important;
}
.woocommerce-form-coupon-toggle .woocommerce-info a.showcoupon {
  color: var(--mk-fg) !important;
  font-weight: 500 !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
}
.woocommerce-form-coupon-toggle .woocommerce-info a.showcoupon:hover {
  opacity: 0.7 !important;
}

/* ── PROBLEM 5: payment area "no available payment methods"
   notice inside #payment — same clean treatment, no stripe,
   no oversized icon. (Underlying cause is no enabled gateway;
   this only cleans the box styling.) ── */
.woocommerce-checkout #payment .woocommerce-info,
#payment .woocommerce-info {
  background: var(--mk-surface2) !important;
  color: var(--mk-muted) !important;
  border: 0.5px solid var(--mk-border) !important;
  border-top: 0.5px solid var(--mk-border) !important;
  border-radius: var(--mk-r-lg) !important;
  box-shadow: none !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  padding: 14px 16px !important;
  margin: 0 0 4px !important;
}
.woocommerce-checkout #payment .woocommerce-info::before,
#payment .woocommerce-info::before {
  content: none !important;
  display: none !important;
}

/* ── PROBLEM 3: harmonize cart action buttons into a pair.
   "Apply coupon" stays the solid primary; "Update cart"
   (button[name="update"], normally disabled until the cart
   changes, which Hello Elementor renders as a broken grey)
   becomes a clean SECONDARY outline that reads as an
   intentional sibling. ── */
.woocommerce-cart table.cart td.actions {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 12px !important;
  justify-content: space-between !important;
}
.woocommerce-cart table.cart td.actions .coupon {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}
/* Apply coupon — primary (solid), made explicit so both
   buttons share identical geometry. */
.woocommerce-cart table.cart td.actions .coupon .button {
  background: var(--mk-fg) !important;
  color: #fff !important;
  border: 0.5px solid var(--mk-fg) !important;
  border-radius: var(--mk-r-lg) !important;
  height: 40px !important;
  padding: 0 18px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
}
/* Update cart — secondary outline, consistent size; also
   neutralizes the WC/Hello-Elementor disabled grey/opacity
   so the disabled state looks deliberate, not broken. */
.woocommerce-cart table.cart td.actions > button[name="update"],
.woocommerce-cart table.cart td.actions > .button[name="update"],
.woocommerce-cart table.cart td.actions > .button {
  background: var(--mk-surface) !important;
  color: var(--mk-fg) !important;
  border: 0.5px solid var(--mk-border) !important;
  border-radius: var(--mk-r-lg) !important;
  height: 40px !important;
  padding: 0 18px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
  opacity: 1 !important;
}
.woocommerce-cart table.cart td.actions > button[name="update"]:disabled,
.woocommerce-cart table.cart td.actions > .button[name="update"]:disabled,
.woocommerce-cart table.cart td.actions > .button:disabled,
.woocommerce-cart table.cart td.actions > .button.disabled {
  opacity: 0.55 !important;       /* clearly-but-cleanly disabled */
  cursor: not-allowed !important;
  background: var(--mk-surface) !important;
  color: var(--mk-muted) !important;
  border-color: var(--mk-border) !important;
}
.woocommerce-cart table.cart td.actions > .button:not(:disabled):not(.disabled):hover {
  border-color: var(--mk-fg) !important;
}

/* ─────────────── Shop drill-down: brand hub + scoped ─────────────── */
.mk-hub { margin: 4px 0 8px; }
.mk-hub__stat { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--mk-muted); margin-bottom: 8px; }
.mk-hub__lead { font-size: 15px; color: var(--mk-muted); max-width: 640px; margin: 0 0 22px; line-height: 1.5; }
.mk-hub__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 700px) { .mk-hub__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .mk-hub__grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.mk-btile { position: relative; display: flex; flex-direction: column; border: 0.5px solid var(--mk-border); border-radius: 16px; overflow: hidden; background: var(--mk-surface); text-decoration: none; color: var(--mk-fg); transition: transform .18s, box-shadow .18s; }
.mk-btile:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.09); }
.mk-btile__logo { display: block; height: 130px; background-color: #fff; background-size: contain; background-position: center; background-repeat: no-repeat; margin: 14px 14px 0; border-radius: 10px; }
.mk-btile__logo--txt { display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 18px; color: var(--mk-fg); background: var(--mk-surface2); }
.mk-btile__body { padding: 14px; }
.mk-btile__name { display: block; font-size: 16px; font-weight: 600; letter-spacing: -.01em; }
.mk-btile__count { display: block; margin-top: 3px; font-size: 12px; color: var(--mk-muted); }
.mk-btile:hover .mk-btile__name { text-decoration: underline; text-underline-offset: 3px; }
.mk-btile--sub { justify-content: center; min-height: 96px; }
.mk-btile--sub .mk-btile__body { padding: 20px; }

.mk-scoped { margin: 0 0 24px; }
.mk-scoped__back { display: inline-block; font-size: 13px; color: var(--mk-muted); text-decoration: none; margin-bottom: 16px; }
.mk-scoped__back:hover { color: var(--mk-fg); text-decoration: underline; text-underline-offset: 3px; }
.mk-scoped__card { border: 0.5px solid var(--mk-border); border-radius: 20px; background: var(--mk-surface); padding: 40px; }
.mk-scoped__logo { display: inline-flex; padding: 14px 18px; background: #fff; border: 0.5px solid var(--mk-border); border-radius: 12px; margin-bottom: 20px; }
.mk-scoped__logo img { max-height: 56px; max-width: 200px; display: block; }
.mk-scoped__eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--mk-muted); margin-bottom: 8px; }
.mk-scoped__title { font-size: 40px !important; font-weight: 600 !important; letter-spacing: -.02em; margin: 0 !important; line-height: 1.05; }
.mk-scoped__desc { font-size: 15px; color: var(--mk-muted); max-width: 560px; margin: 14px 0 0; line-height: 1.5; }
@media (max-width: 700px) { .mk-scoped__card { padding: 24px; } .mk-scoped__title { font-size: 30px !important; } }

/* Ink sub-filter pills (Format / Color / Bottle) */
.mk-inkfilter { display: flex; flex-direction: column; gap: 14px; margin: 22px 0 6px; }
.mk-inkfilter__row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.mk-inkfilter__label { flex: 0 0 64px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--mk-muted); }
.mk-inkfilter__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.mk-pill {
  display: inline-flex; align-items: center; height: 34px; padding: 0 16px;
  border: 0.5px solid var(--mk-border); border-radius: 999px; background: var(--mk-surface);
  font-size: 13px; font-weight: 500; color: var(--mk-fg); text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
}
.mk-pill:hover { background: var(--mk-surface2); }
.mk-pill.is-active { background: var(--mk-fg); color: var(--mk-bg); border-color: var(--mk-fg); }
@media (max-width: 700px) { .mk-inkfilter__label { flex-basis: 100%; } }

/* ─────────────── Shop sidebar filters: category + brand + price ─────────────── */
.mishka-shop-sidebar .mk-filter { margin: 0 0 26px; }
.mishka-shop-sidebar .mk-filter__title { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--mk-muted); margin: 0 0 12px; }
.mishka-shop-sidebar .mk-filter ul { list-style: none; margin: 0; padding: 0; }
.mishka-shop-sidebar .mk-filter li { margin: 0; }
.mishka-shop-sidebar .mk-filter__scroll { max-height: 320px; overflow-y: auto; padding-right: 4px; margin-right: -4px; }
.mishka-shop-sidebar .mk-filter__scroll::-webkit-scrollbar { width: 6px; }
.mishka-shop-sidebar .mk-filter__scroll::-webkit-scrollbar-thumb { background: var(--mk-border); border-radius: 3px; }
.mishka-shop-sidebar .mk-filter__row {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  padding: 7px 0; font-size: 14px; color: var(--mk-fg); line-height: 1.3;
  transition: color .15s;
}
.mishka-shop-sidebar .mk-filter__row input[type="checkbox"] {
  appearance: none; -webkit-appearance: none; flex: 0 0 auto;
  width: 17px; height: 17px; margin: 0; border: 1.5px solid var(--mk-border);
  border-radius: 5px; background: var(--mk-bg); cursor: pointer; position: relative;
  transition: border-color .15s, background .15s;
}
.mishka-shop-sidebar .mk-filter__row:hover input[type="checkbox"] { border-color: var(--mk-fg); }
.mishka-shop-sidebar .mk-filter__row input[type="checkbox"]:checked { background: var(--mk-fg); border-color: var(--mk-fg); }
.mishka-shop-sidebar .mk-filter__row input[type="checkbox"]:checked::after {
  content: ""; position: absolute; left: 5px; top: 1.5px; width: 4px; height: 9px;
  border: solid var(--mk-bg); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.mishka-shop-sidebar .mk-filter__row span { flex: 1 1 auto; }
.mishka-shop-sidebar .mk-filter__row.is-on span { font-weight: 600; }
.mishka-shop-sidebar .mk-filter__row em { flex: 0 0 auto; font-style: normal; font-size: 12px; color: var(--mk-muted); }
/* let the WC price filter widget breathe inside the styled sidebar */
.mishka-shop-sidebar .mk-filter--price .widget { margin: 0; padding: 0; border: 0; }
.mishka-shop-sidebar .mk-filter--price .widgettitle,
.mishka-shop-sidebar .mk-filter--price h2,
.mishka-shop-sidebar .mk-filter--price h3 {
  font-size: 12px !important; font-weight: 600 !important; text-transform: uppercase;
  letter-spacing: .08em; color: var(--mk-muted); margin: 0 0 12px !important;
}
.mishka-shop-sidebar .mk-filter--price .price_slider_wrapper .price_slider { margin-bottom: 14px; }
.mishka-shop-sidebar .mk-filter--price .price_slider_amount .button { float: left; font-size: 13px; padding: 8px 16px; }
.mishka-shop-sidebar .mk-filter--price .price_slider_amount .price_label { float: right; font-size: 13px; color: var(--mk-muted); padding-top: 8px; }
/* stock/sale toggles + clear-all */
.mishka-shop-sidebar .mk-filter--toggles { margin-top: -6px; }
.mishka-shop-sidebar .mk-filter__clear {
  display: inline-block; font-size: 13px; color: var(--mk-muted);
  text-decoration: underline; text-underline-offset: 4px; cursor: pointer;
}
.mishka-shop-sidebar .mk-filter__clear:hover { color: var(--mk-fg); }
/* empty state — matches React dashed card */
.mk-empty {
  border: 1px dashed var(--mk-border); border-radius: 16px;
  padding: 48px 24px; text-align: center; color: var(--mk-muted); font-size: 15px;
}

/* ─────────────── Brand-tile badges (country + Exclusive) ─────────────── */
.mk-btile { position: relative; }
.mk-btile__badges { position: absolute; top: 10px; left: 10px; right: 10px; z-index: 2; display: flex; justify-content: space-between; align-items: flex-start; pointer-events: none; }
.mk-btile__country { font-size: 10px; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; padding: 3px 8px; border-radius: 999px; background: rgba(255,255,255,.9); color: var(--mk-fg); backdrop-filter: blur(4px); }
.mk-btile__excl { font-size: 10px; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; padding: 3px 8px; border-radius: 999px; background: var(--mk-fg); color: var(--mk-bg); }

/* ─────────────── Load more button ─────────────── */
.mishka-loadmore {
  display: block; margin: 40px auto 0; height: 46px; padding: 0 32px;
  border: 0.5px solid var(--mk-border); border-radius: 10px; background: var(--mk-surface);
  font: 500 14px 'Inter', sans-serif; color: var(--mk-fg); cursor: pointer; transition: background .15s;
}
.mishka-loadmore:hover { background: var(--mk-surface2); }
.mishka-loadmore:disabled { opacity: .6; cursor: default; }

/* ─────────────── Mobile filter drawer ─────────────── */
.mishka-filters-toggle, .mishka-shop-backdrop { display: none; }
@media (max-width: 1024px) {
  .mishka-filters-toggle {
    display: inline-flex; align-items: center; gap: 9px; height: 44px; padding: 0 20px;
    margin: 0 0 20px; border: 0.5px solid var(--mk-border); border-radius: 999px;
    background: var(--mk-surface); font: 500 14px 'Inter', sans-serif; color: var(--mk-fg); cursor: pointer;
  }
  .mishka-filters-toggle__n {
    display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px; padding: 0 6px;
    border-radius: 999px; background: var(--mk-fg); color: var(--mk-bg); font-size: 12px; font-weight: 600;
  }
  .mishka-shop-sidebar {
    position: fixed !important; top: 0 !important; right: 0; bottom: 0; left: auto;
    width: 86%; max-width: 360px; z-index: 1000;
    background: var(--mk-bg); padding: 26px 22px 40px; overflow-y: auto;
    transform: translateX(100%); transition: transform .28s ease; box-shadow: -8px 0 40px rgba(0,0,0,.16);
  }
  .mishka-shop-sidebar.is-open { transform: translateX(0); }
  .mishka-shop-backdrop {
    display: block; position: fixed; inset: 0; z-index: 999; background: rgba(13,13,13,.42);
    opacity: 0; pointer-events: none; transition: opacity .28s;
  }
  .mishka-shop-backdrop.is-open { opacity: 1; pointer-events: auto; }
  body.mk-noscroll { overflow: hidden; }
}

/* ─────────────── Announcement bar (above header) ─────────────── */
.mishka-annbar {
  position: relative;
  background: var(--mk-fg); color: var(--mk-bg);
  min-height: 36px; display: flex; align-items: center; justify-content: center;
  padding: 6px 16px; font-family: 'Inter', sans-serif; font-size: 12px;
  line-height: 1.35; text-align: center;
}
.mishka-annbar__msg { transition: opacity .2s ease; }
.mishka-annbar__lang { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); display: inline-flex; align-items: center; gap: 5px; }
.mishka-annbar__lg { color: var(--mk-bg); opacity: .5; text-decoration: none; letter-spacing: .04em; }
.mishka-annbar__lg.is-cur { opacity: 1; font-weight: 600; }
.mishka-annbar__lg:hover { opacity: .85; }
.mishka-annbar__sep { opacity: .3; }
@media (max-width: 640px) {
  .mishka-annbar { justify-content: space-between; text-align: left; }
  .mishka-annbar__lang { position: static; transform: none; }
}

/* ─────────────── Header language switcher (at the "EN" slot) ─────────────── */
.mk-langsw { position: relative; display: inline-flex; align-items: center; cursor: pointer; outline: none; }
.mk-langsw__cur { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 500; color: var(--mk-fg, #0D0D0D); white-space: nowrap; }
.mk-langsw__car { transition: transform .15s ease; opacity: .7; }
.mk-langsw:hover .mk-langsw__car, .mk-langsw:focus-within .mk-langsw__car { transform: rotate(180deg); }
.mk-langsw__menu {
  position: absolute; top: 100%; right: 0; margin-top: 8px; z-index: 200;
  display: none; flex-direction: column; gap: 2px; min-width: 76px; padding: 6px;
  background: var(--mk-surface, #fff); border: 0.5px solid var(--mk-border, #E8E8E8);
  border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,.10);
}
.mk-langsw:hover .mk-langsw__menu, .mk-langsw:focus-within .mk-langsw__menu { display: flex; }
/* #9 Bridge the 8px gap between the label and the menu so moving the cursor down onto
   the dropdown keeps :hover alive (otherwise it closes mid-gap). Transparent, hoverable. */
.mk-langsw__menu::before { content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px; }
/* Also keep the whole switcher hoverable across the label's own bottom edge. */
.mk-langsw { padding-bottom: 2px; }
.mk-langsw__menu a {
  display: block; padding: 7px 12px; border-radius: 8px; text-decoration: none;
  font-size: 13px; font-weight: 400; color: var(--mk-fg, #0D0D0D); line-height: 1;
}
.mk-langsw__menu a:hover { background: var(--mk-surface2, #F4F4F4); }
.mk-langsw__menu a.is-cur { font-weight: 600; background: var(--mk-surface2, #F4F4F4); }

/* ─────────────── Newsletter / Pro Club promo popup ─────────────── */
.mishka-nl {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9998;
  background-color: #EFE7DB;
  background-image:
    radial-gradient(120% 180% at 12% -40%, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 55%),
    radial-gradient(140% 200% at 90% 130%, rgba(160,130,105,0.18) 0%, rgba(160,130,105,0) 60%),
    linear-gradient(180deg, #F6EFE3 0%, #EFE7DB 55%, #E6DCCB 100%);
  border-top: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 -12px 40px -16px rgba(80,60,40,0.20), inset 0 1px 0 rgba(255,255,255,0.75);
  color: #3A2A20; padding: 18px 24px;
  transform: translateY(110%); transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.mishka-nl.is-open { transform: translateY(0); }
.mishka-nl__inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.mishka-nl__pitch { display: flex; align-items: center; gap: 12px; flex: 1 1 240px; min-width: 220px; }
.mishka-nl__gift {
  width: 40px; height: 40px; flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; color: #3A2A20;
  background: radial-gradient(circle at 30% 25%, #FFFFFF 0%, #F2E3D2 50%, #C9A789 100%);
  border: 1px solid rgba(255,255,255,0.7); box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 2px 6px rgba(120,90,60,0.20);
}
.mishka-nl__text { display: flex; flex-direction: column; line-height: 1.25; }
.mishka-nl__eyebrow { font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: #8B6F55; }
.mishka-nl__line { font-size: 14px; color: #3A2A20; }
.mishka-nl__line strong { color: #1F1410; font-weight: 600; }
.mishka-nl__form { display: flex; gap: 8px; flex: 1 1 260px; min-width: 240px; }
.mishka-nl__email {
  flex: 1 1 auto; height: 40px; padding: 0 12px; font-size: 13px; border-radius: 10px; color: #3A2A20;
  background: rgba(255,255,255,0.85); border: 1px solid rgba(120,95,70,0.20); box-shadow: inset 0 1px 2px rgba(120,95,70,0.08);
}
.mishka-nl__btn {
  height: 40px; padding: 0 20px; font-size: 13px; font-weight: 500; border: 0; border-radius: 10px; cursor: pointer;
  color: #F6EFE3; background: linear-gradient(180deg, #2D241D 0%, #1A1310 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 3px 10px rgba(60,40,25,0.30);
}
.mishka-nl__btn:hover { opacity: .95; }
.mishka-nl__close {
  width: 32px; height: 32px; flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; cursor: pointer; color: #3A2A20; background: rgba(255,255,255,0.55); border: 1px solid rgba(120,95,70,0.18);
}
.mishka-nl__done { flex: 1; font-size: 14px; font-weight: 500; color: #3A2A20; }
@media (max-width: 600px) { .mishka-nl__form { order: 3; } }

/* ─── N2-004: interactive inputs ≥16px on mobile (prevents iOS auto-zoom) ─── */
@media (max-width: 640px) {
  input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
  input[type="search"], input[type="password"], input[type="url"], textarea, select,
  .mk-qty-input, .mk-promo-input, .mishka-nl__input,
  .woocommerce input.input-text, .woocommerce select, .woocommerce textarea,
  .select2-container--default .select2-selection--single .select2-selection__rendered,
  .select2-search__field { font-size: 16px !important; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE PASS (2026-07-16) — scoped to max-width so desktop is untouched
   ═══════════════════════════════════════════════════════════════ */

/* ── Mobile menu: hamburger + slide-in drawer (injected by mobile-nav.js) ── */
.mk-burger { display: none; }
.mk-drawer { position: fixed; inset: 0; z-index: 100000; visibility: hidden; }
.mk-drawer.is-open { visibility: visible; }
.mk-drawer__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.42); opacity: 0; transition: opacity .25s ease; }
.mk-drawer.is-open .mk-drawer__overlay { opacity: 1; }
.mk-drawer__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(84vw, 330px);
  background: #fff; box-shadow: -8px 0 40px rgba(0,0,0,0.16); transform: translateX(100%);
  transition: transform .28s ease; padding: 18px 22px 32px; overflow-y: auto;
  display: flex; flex-direction: column; font-family: 'Inter', sans-serif; }
.mk-drawer.is-open .mk-drawer__panel { transform: translateX(0); }
.mk-drawer__close { align-self: flex-end; width: 40px; height: 40px; font-size: 30px; line-height: 1;
  background: none; border: none; color: #0D0D0D; cursor: pointer; margin: -4px -8px 4px 0; }
.mk-drawer__links { display: flex; flex-direction: column; }
.mk-drawer__link { display: block; padding: 15px 2px; font-size: 18px; font-weight: 500;
  color: #0D0D0D !important; text-decoration: none !important; border-bottom: 1px solid #F0F0F0; }
.mk-drawer__lang { margin-top: 20px; }
.mk-drawer__lang .mk-langsw__menu { position: static !important; display: flex !important; gap: 18px;
  box-shadow: none !important; padding: 0 !important; background: none !important; opacity: 1 !important;
  visibility: visible !important; transform: none !important; pointer-events: auto !important; }

@media (max-width: 1024px) {
  .mk-navwrap { display: none !important; }
  .mk-burger { display: inline-flex !important; flex-direction: column; align-items: center; justify-content: center;
    gap: 5px; position: fixed; top: 14px; right: 14px; z-index: 1050;
    width: 44px !important; height: 44px !important; padding: 0 !important; border: none !important; cursor: pointer;
    background: #0D0D0D !important; border-radius: 999px !important; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
  .mk-burger span { display: block; width: 22px; height: 2px; background: #fff !important; border-radius: 2px; }
}

/* ── Content sections: give boxed containers side padding on phones (they had 0) ── */
@media (max-width: 768px) {
  #mk-main .e-con-boxed > .e-con-inner { padding-left: 20px; padding-right: 20px; }
}

/* ── Hero: fix the aspect-ratio "sliver" on small screens ── */
@media (max-width: 768px) {
  .mk-hero { width: 100%; margin-top: 12px; }
  .mk-hero__slide { aspect-ratio: auto !important; min-height: 260px; background-position: center !important; }
  .mk-hero__inner { padding: 24px; max-width: 100%; }
  .mk-hero__title { font-size: 30px; }
  .mk-hero__arrow { width: 36px !important; height: 36px !important; }
  .mk-hero__arrow--prev { left: 10px; } .mk-hero__arrow--next { right: 10px; }
}

/* (Product gallery mobile rules live in single-product.css — it loads last so it wins) */

/* ── General overflow safety net on phones ── */
@media (max-width: 768px) {
  html, body { max-width: 100%; overflow-x: hidden; }
  img, video, table { max-width: 100%; }
}

/* #4 Whole "Shop by Workflow" card clickable — each .mishka-card holds a single
   Explore link; stretch it to cover the entire card so image/title/text all click. */
.mishka-card { position: relative; }
.mishka-card a[href] { position: static; }
.mishka-card a[href]::after { content: ""; position: absolute; inset: 0; z-index: 5; }

/* ── Horizontal product/review carousel (#22 Outlet, #34 Aftercare, #7 Reviews) ── */
.mk-pcar { position: relative; }
.mk-pcar__track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; padding: 4px 2px 12px; margin: 0; list-style: none;
  scrollbar-width: none; }
.mk-pcar__track::-webkit-scrollbar { display: none; }
.mk-pcar__track > li.product, .mk-pcar__track > .mk-revs__card {
  scroll-snap-align: start; flex: 0 0 clamp(220px, 24%, 300px); margin: 0 !important; width: auto !important; }
.mk-pcar__nav { position: absolute; top: 40%; transform: translateY(-50%); z-index: 6;
  width: 40px; height: 40px; border-radius: 50%; border: 0.5px solid #E8E8E8; background: #fff;
  color: #0D0D0D; font-size: 22px; line-height: 1; cursor: pointer; box-shadow: 0 6px 18px rgba(0,0,0,.10);
  display: flex; align-items: center; justify-content: center; transition: opacity .2s; }
.mk-pcar__prev { left: -8px; } .mk-pcar__next { right: -8px; }
.mk-pcar__empty { padding: 24px; color: #6B6B6B; font-size: 14px; text-align: center; }
@media (max-width: 640px) { .mk-pcar__nav { display: none; } .mk-pcar__track > li.product, .mk-pcar__track > .mk-revs__card { flex-basis: 78%; } }
/* Reviews cards */
.mk-revs__head { margin-bottom: 12px; }
.mk-revs__rating { font-size: 14px; color: #6B6B6B; }
.mk-revs__rating strong { font-size: 18px; color: #0D0D0D; }
.mk-revs__card { flex: 0 0 clamp(260px, 32%, 360px); scroll-snap-align: start; border: 0.5px solid #E8E8E8;
  border-radius: 16px; padding: 20px; background: #fff; }
.mk-revs__stars { color: #F5A623; letter-spacing: 2px; font-size: 14px; margin-bottom: 8px; }
.mk-revs__text { font-size: 14px; line-height: 1.55; color: #0D0D0D; margin: 0 0 12px; }
.mk-revs__author { font-size: 13px; font-weight: 600; color: #0D0D0D; }
.mk-revs__date { font-weight: 400; color: #6B6B6B; }
/* #31 colour swatches (Apple/Euronics-style circles) */
.mk-swatches { display: flex; flex-wrap: wrap; gap: 10px; margin: 6px 0 4px; }
.mk-swatch { width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(0,0,0,.15);
  cursor: pointer; padding: 0; box-shadow: inset 0 0 0 2px #fff; transition: transform .12s, box-shadow .12s; }
.mk-swatch:hover { transform: scale(1.08); }
.mk-swatch.is-sel { box-shadow: inset 0 0 0 2px #fff, 0 0 0 2px #0D0D0D; }
