/* ═══════════════════════════════════════════════════
   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;
}

/* 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;
}

/* 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,
.woocommerce-checkout-review-order-table .shipping td { text-align: right !important; white-space: nowrap !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;
  }
  .mishka-shop-sidebar { display: none; }
}
.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;
}
