/* ═══════════════════════════════════════════════════
   Home Page Sections — pixel-parity with React
   ═══════════════════════════════════════════════════ */

/* ── Hero Slider ── */
.n2-ss-slider {
  border-radius: 16px !important;
  overflow: hidden !important;
}
/* Darken slide backgrounds — React uses strong left gradient */
.n2-ss-slide-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,13,13,0.72) 0%, rgba(13,13,13,0.45) 55%, rgba(13,13,13,0.15) 100%);
  pointer-events: none;
  z-index: 1;
}
.n2-ss-layers-container {
  z-index: 2 !important;
}
/* Smart Slider arrows via JS — see functions.php */
/* Dot/bullet styling */
.n2-ss-widget-dot {
  gap: 8px !important;
}

/* ── Shop by Workflow ── */
/* The workflow grid is inside section [1] → elements[2] */

/* ── Shop by Category — responsive grid (handled via inline HTML) ── */

/* ── Best Sellers — WooCommerce products shortcode ── */
.mishka-best-sellers.woocommerce ul.products,
.woocommerce .mishka-best-sellers ul.products,
.woocommerce.mishka-best-sellers ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}
@media (max-width: 768px) {
  .mishka-best-sellers.woocommerce ul.products,
  .woocommerce .mishka-best-sellers ul.products,
  .woocommerce.mishka-best-sellers ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}

/* Force 4 products visible */
.woocommerce.columns-4 ul.products li.product {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

/* ── Bundles section ── */
/* Bundle card images are set via Elementor bg containers */

/* ── ESTO section — option cards ── */

/* ── Aftercare section — 2 column layout ── */
/* Handled via Elementor flex container settings */

/* ── Reviews ── */

/* ── FAQ accordion match ── */
.elementor-widget-accordion .elementor-accordion {
  border: 0.5px solid var(--mk-border) !important;
  border-radius: var(--mk-r-2xl) !important;
  overflow: hidden !important;
  background: var(--mk-surface);
  max-width: 768px;
  margin: 0 auto;
}
/* Slider arrows */
.mishka-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transition: background 0.2s;
}
.mishka-slider-arrow { display: flex; }
.mishka-slider-arrow--prev { left: 16px; }
.mishka-slider-arrow--next { right: 16px; }
.mishka-slider-arrow:hover { background: rgba(255,255,255,0.2); }
@media (max-width: 768px) { .mishka-slider-arrow { display: none; } }
.elementor-widget-accordion .elementor-accordion-item {
  border-bottom: 0.5px solid var(--mk-border) !important;
  border-top: none !important;
}
.elementor-widget-accordion .elementor-accordion-item:last-child {
  border-bottom: none !important;
}
.elementor-widget-accordion .elementor-tab-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  padding: 20px 24px !important;
  color: var(--mk-fg) !important;
  background: transparent !important;
  border: none !important;
}
.elementor-widget-accordion .elementor-tab-content {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  color: var(--mk-muted) !important;
  padding: 0 24px 20px !important;
  border: none !important;
  background: transparent !important;
}
.elementor-widget-accordion .elementor-accordion-icon {
  color: var(--mk-fg) !important;
}

/* ── Footer newsletter input ── */
.elementor-widget-form input[type="email"] {
  font-family: 'Inter', sans-serif !important;
  border: 0.5px solid var(--mk-border) !important;
  border-radius: var(--mk-r-lg) !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  background: var(--mk-surface) !important;
}
