/*
 * Iniciax Child Theme — Main Stylesheet
 * WooCommerce + Astra | Bold Colorful + Amazon-like UX
 * Edit sections by number. Never edit style.css.
 */

/* ============================================
   1. GOOGLE FONTS
============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ============================================
   2. CSS VARIABLES
============================================ */
:root {
  /* Brand */
  --ix-purple:       #7C3AED;
  --ix-purple-dark:  #5B21B6;
  --ix-purple-light: #EDE9FE;
  --ix-amber:        #F59E0B;
  --ix-amber-light:  #FEF3C7;
  --ix-green:        #10B981;
  --ix-green-dark:   #059669;
  --ix-green-light:  #D1FAE5;
  --ix-red:          #EF4444;
  --ix-red-light:    #FEE2E2;
  --ix-pink:         #EC4899;

  /* Header */
  --ix-header-bg:    #1A0533;
  --ix-header-bg2:   #0F0C29;
  --ix-nav-bg:       #2D1B69;

  /* Neutrals */
  --ix-dark:         #111827;
  --ix-dark-2:       #1F2937;
  --ix-dark-3:       #374151;
  --ix-text:         #1F2937;
  --ix-text-light:   #6B7280;
  --ix-text-lighter: #9CA3AF;
  --ix-border:       #E5E7EB;
  --ix-bg:           #F9FAFB;
  --ix-white:        #FFFFFF;

  /* Typography */
  --ix-font:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ix-font-heading: 'Poppins', 'Inter', sans-serif;

  /* Shadows */
  --ix-shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --ix-shadow-md:    0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.08);
  --ix-shadow-lg:    0 10px 40px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.08);
  --ix-shadow-hover: 0 8px 30px rgba(124,58,237,.22);

  /* Radius */
  --ix-r-sm:   6px;
  --ix-r:      10px;
  --ix-r-lg:   16px;
  --ix-r-xl:   24px;
  --ix-r-full: 999px;

  /* Transitions */
  --ix-t:      all 0.2s ease;
  --ix-t-slow: all 0.35s ease;
}

/* ============================================
   3. BASE RESET
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { margin: 0 !important; padding: 0 !important; }

body {
  font-family: var(--ix-font);
  color: var(--ix-text);
  background-color: var(--ix-bg);
  line-height: 1.6;
  margin: 0 !important;
  padding: 0 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--ix-purple);
  text-decoration: none;
  transition: var(--ix-t);
}
a:hover { color: var(--ix-purple-dark); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ix-font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ix-text);
}

/* ============================================
   3b. PAGE LAYOUT (standalone theme)
============================================ */

/* Contenedor principal */
.ix-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Page wrap */
#ix-page-wrap {
  min-height: 60vh;
  background: var(--ix-bg);
}

/* Main content area */
#ix-main {
  padding: 32px 0 60px;
}
#ix-main .ix-container { /* WC content inside */ }

/* Generic page content */
.ix-page-article  { max-width: 860px; margin: 0 auto; }
.ix-page-title    { font-family: var(--ix-font-heading); font-size: 28px; font-weight: 800; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid var(--ix-border); }
.ix-page-content  { font-size: 15px; line-height: 1.8; color: var(--ix-text); }
.ix-entry-title   { font-family: var(--ix-font-heading); font-size: 24px; font-weight: 700; margin-bottom: 16px; }
.ix-entry-content { font-size: 15px; line-height: 1.8; }
.ix-no-results    { text-align: center; padding: 60px 20px; color: var(--ix-text-light); font-size: 16px; }

/* ============================================
   4. ANNOUNCEMENT BAR
============================================ */
#ix-announcement-bar {
  background: linear-gradient(90deg, #7C3AED 0%, #EC4899 50%, #F59E0B 100%);
  background-size: 200% auto;
  animation: ix-bar-gradient 6s ease infinite;
  color: #fff;
  text-align: center;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  position: relative;
  z-index: 1001;
}
#ix-announcement-bar a { color: #fff; font-weight: 700; text-decoration: underline; }
#ix-announcement-bar strong { font-weight: 700; }
#ix-announcement-bar .ix-bar-track { display: inline; }
#ix-announcement-bar .ix-bar-item { display: inline; }
#ix-announcement-bar .ix-bar-dot { opacity: .6; margin: 0 10px; }

@keyframes ix-bar-gradient {
  0%   { background-position: 0% center; }
  50%  { background-position: 100% center; }
  100% { background-position: 0% center; }
}

/* ============================================
   4b. LANDING PAGE SECTIONS
============================================ */

/* Hero */
.ix-hero {
  background: linear-gradient(135deg, #0F0C29 0%, #1A0533 40%, #2D1B69 70%, #1A0533 100%);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.ix-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237C3AED' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.ix-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ix-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,.25);
  border: 1px solid rgba(124,58,237,.4);
  color: #C4B5FD;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--ix-r-full);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.ix-hero h1 {
  font-family: var(--ix-font-heading);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.ix-hero h1 span { color: var(--ix-amber); }
.ix-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.ix-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.ix-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ix-amber);
  color: var(--ix-dark);
  font-family: var(--ix-font-heading);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--ix-r-full);
  text-decoration: none;
  transition: var(--ix-t);
  box-shadow: 0 4px 20px rgba(245,158,11,.4);
}
.ix-btn-primary:hover { background: #D97706; color: var(--ix-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,158,11,.5); }
.ix-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--ix-r-full);
  border: 2px solid rgba(255,255,255,.3);
  text-decoration: none;
  transition: var(--ix-t);
}
.ix-btn-outline:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); color: #fff; }
.ix-hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
}
.ix-hero-stat strong {
  display: block;
  font-family: var(--ix-font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--ix-amber);
}
.ix-hero-stat span { font-size: 12px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .06em; }
.ix-hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ix-hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--ix-r-lg);
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: var(--ix-t);
}
.ix-hero-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.ix-hero-card:first-child { grid-row: span 2; display: flex; flex-direction: column; justify-content: center; }
.ix-hero-card .ix-hero-icon { font-size: 36px; margin-bottom: 12px; }
.ix-hero-card h3 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.ix-hero-card p { color: rgba(255,255,255,.55); font-size: 12px; margin: 0; }
.ix-hero-card .ix-hero-price { color: var(--ix-amber); font-size: 20px; font-weight: 800; margin-top: 8px; }

/* Features bar */
.ix-features-bar {
  background: #fff;
  border-bottom: 1px solid var(--ix-border);
  padding: 0;
}
.ix-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ix-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid var(--ix-border);
  transition: var(--ix-t);
}
.ix-feature-item:last-child { border-right: none; }
.ix-feature-item:hover { background: var(--ix-purple-light); }
.ix-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--ix-purple-light);
  border-radius: var(--ix-r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.ix-feature-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--ix-dark); }
.ix-feature-text span { font-size: 12px; color: var(--ix-text-light); }

/* Sections common */
.ix-section { padding: 64px 0; }
.ix-section-alt { background: var(--ix-bg); }
.ix-section-header { text-align: center; margin-bottom: 40px; }
.ix-section-header h2 {
  font-family: var(--ix-font-heading);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--ix-dark);
  margin-bottom: 10px;
}
.ix-section-header p { color: var(--ix-text-light); font-size: 15px; }
.ix-section-header .ix-section-line {
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--ix-purple), var(--ix-amber));
  border-radius: 2px;
  margin: 14px auto 0;
}

/* Categories grid */
.ix-cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.ix-cat-card {
  background: #fff;
  border: 1px solid var(--ix-border);
  border-radius: var(--ix-r-lg);
  padding: 28px 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: var(--ix-t-slow);
  cursor: pointer;
  display: block;
}
.ix-cat-card:hover { border-color: var(--ix-purple); box-shadow: var(--ix-shadow-hover); transform: translateY(-4px); }
.ix-cat-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--ix-r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 14px;
}
.ix-cat-card h3 { font-size: 13px; font-weight: 700; color: var(--ix-dark); margin-bottom: 4px; }
.ix-cat-card span { font-size: 11px; color: var(--ix-text-light); }

/* Landing products section */
.ix-landing-products { background: var(--ix-bg); }
.ix-products-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.ix-tab-btn {
  padding: 8px 20px;
  border-radius: var(--ix-r-full);
  font-size: 13px;
  font-weight: 600;
  border: 2px solid var(--ix-border);
  background: #fff;
  color: var(--ix-text-light);
  cursor: pointer;
  transition: var(--ix-t);
}
.ix-tab-btn.active, .ix-tab-btn:hover {
  border-color: var(--ix-purple);
  background: var(--ix-purple);
  color: #fff;
}

/* Banner CTA */
.ix-cta-banner {
  background: linear-gradient(135deg, var(--ix-purple) 0%, var(--ix-purple-dark) 100%);
  border-radius: var(--ix-r-xl);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin: 0 0 64px;
  position: relative;
  overflow: hidden;
}
.ix-cta-banner::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.ix-cta-banner::after {
  content: '';
  position: absolute;
  right: 80px;
  bottom: -80px;
  width: 200px;
  height: 200px;
  background: rgba(245,158,11,.12);
  border-radius: 50%;
}
.ix-cta-content { position: relative; z-index: 1; }
.ix-cta-content h2 { font-family: var(--ix-font-heading); font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.ix-cta-content p { color: rgba(255,255,255,.75); font-size: 15px; margin: 0; }
.ix-cta-banner .ix-btn-primary { position: relative; z-index: 1; flex-shrink: 0; }

/* Logo size fix */
.ix-logo-wrap img.custom-logo { max-height: 60px; }

@media (max-width: 1100px) { .ix-cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
  .ix-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .ix-hero-visual { display: none; }
  .ix-features-grid { grid-template-columns: repeat(2, 1fr); }
  .ix-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .ix-cta-banner { padding: 36px 24px; flex-direction: column; }
}
@media (max-width: 480px) {
  .ix-features-grid { grid-template-columns: 1fr; }
  .ix-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .ix-hero-stats { gap: 20px; }
}

/* ============================================
   5. HEADER — CUSTOM STANDALONE
============================================ */

/* ── Wrapper del header ── */
#ix-header {
  background: var(--ix-header-bg);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}

/* ── Main row ── */
.ix-header-main { background: var(--ix-header-bg); }
.ix-header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 10px 32px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Hamburger */
.ix-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.ix-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--ix-t);
  transform-origin: center;
}
.ix-hamburger.is-active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.ix-hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ix-hamburger.is-active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Logo */
.ix-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.ix-logo-brand {
  color: #fff;
  font-family: var(--ix-font-heading);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.04em;
  white-space: nowrap;
}
.ix-logo-brand:hover { color: rgba(255,255,255,.85); }
.ix-logo-ax { color: var(--ix-amber); }

/* Legacy fallback */
.ix-logo-text {
  color: #fff;
  font-family: var(--ix-font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.03em;
  white-space: nowrap;
}

/* Search bar */
.ix-header-search {
  flex: 1;
  min-width: 0;
  max-width: 520px;
}
.ix-search-form {
  display: flex;
  align-items: stretch;
  height: 44px;
}
.ix-search-input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 18px;
  border: 2px solid rgba(255,255,255,.18);
  border-right: none;
  border-radius: var(--ix-r-full) 0 0 var(--ix-r-full);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 14px;
  font-family: var(--ix-font);
  outline: none;
  transition: var(--ix-t);
}
.ix-search-input::placeholder { color: rgba(255,255,255,.5); }
.ix-search-input:focus {
  background: rgba(255,255,255,.95);
  color: var(--ix-text);
  border-color: var(--ix-amber);
}
.ix-search-btn {
  flex: 0 0 auto;
  width: 50px;
  height: 44px;
  background: var(--ix-amber);
  border: none;
  border-radius: 0 var(--ix-r-full) var(--ix-r-full) 0;
  color: var(--ix-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ix-t);
}
.ix-search-btn:hover { background: #d97706; }

/* Header actions */
.ix-header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.ix-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: rgba(255,255,255,.9);
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: var(--ix-r-sm);
  transition: var(--ix-t);
  white-space: nowrap;
}
.ix-action-btn svg { color: #fff; }
.ix-action-btn:hover { background: rgba(255,255,255,.1); color: #fff; }

.ix-cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--ix-r-full);
  padding: 8px 18px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: var(--ix-t);
}
.ix-cart-btn:hover { background: rgba(255,255,255,.2); color: #fff; }
.ix-cart-btn svg { color: #fff; flex-shrink: 0; }

.ix-cart-badge {
  background: transparent;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 700;
  min-width: 18px;
  text-align: center;
}
.ix-cart-badge.has-items {
  background: var(--ix-red);
  color: #fff;
  border-radius: 9px;
  padding: 1px 5px;
  font-size: 11px;
}

/* ── Nav bar ── */
#ix-nav-bar {
  background: var(--ix-nav-bg);
  border-top: 1px solid rgba(255,255,255,.08);
}
.ix-nav-inner {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.ix-nav-inner::-webkit-scrollbar { display: none; }

/* Todas las categorías button */
.ix-nav-all-cats {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--ix-purple);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: var(--ix-t);
  border-right: 1px solid rgba(255,255,255,.1);
  flex-shrink: 0;
}
.ix-nav-all-cats:hover { background: var(--ix-purple-dark); color: #fff; }

/* Nav menu */
ul.ix-nav-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
ul.ix-nav-menu > li { position: relative; flex-shrink: 0; }
ul.ix-nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--ix-t);
}
ul.ix-nav-menu > li > a:hover,
ul.ix-nav-menu > li.current-menu-item > a,
ul.ix-nav-menu > li.current-menu-ancestor > a {
  color: var(--ix-amber);
  background: rgba(255,255,255,.06);
}

/* Dropdown */
ul.ix-nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--ix-dark-2);
  min-width: 200px;
  border-radius: var(--ix-r);
  box-shadow: var(--ix-shadow-lg);
  border: 1px solid rgba(255,255,255,.08);
  display: none;
  z-index: 100;
}
ul.ix-nav-menu > li:hover > .sub-menu { display: block; }
ul.ix-nav-menu .sub-menu li a {
  display: block;
  padding: 10px 18px;
  color: rgba(255,255,255,.8);
  font-size: 13px;
  transition: var(--ix-t);
}
ul.ix-nav-menu .sub-menu li a:hover { background: rgba(124,58,237,.2); color: #fff; }

/* ── Mobile nav ── */
.ix-mobile-toggle { display: none; }

@media (max-width: 768px) {
  .ix-header-inner { flex-wrap: wrap; gap: 10px; padding: 10px 16px; }
  .ix-header-search { order: 3; flex: 0 0 100%; max-width: 100%; }
  .ix-header-actions .ix-action-btn span { display: none; }
  ul.ix-nav-menu { flex-wrap: wrap; }
  ul.ix-nav-menu > li > a { padding: 10px 12px; font-size: 13px; }
}

/* ============================================
   6. SHOP HEADER (ordering + count)
============================================ */
.ix-shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  padding: 12px 16px;
  background: var(--ix-white);
  border-radius: var(--ix-r);
  border: 1px solid var(--ix-border);
}
.ix-result-count { color: var(--ix-text-light); font-size: 14px; margin: 0; }
.ix-ordering select,
.woocommerce-ordering select {
  height: 38px;
  padding: 0 36px 0 14px;
  border: 2px solid var(--ix-border);
  border-radius: var(--ix-r-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--ix-text);
  background: var(--ix-white);
  cursor: pointer;
  transition: var(--ix-t);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.ix-ordering select:focus,
.woocommerce-ordering select:focus {
  border-color: var(--ix-purple);
  outline: none;
  box-shadow: 0 0 0 3px var(--ix-purple-light);
}

/* ============================================
   7. PRODUCT GRID
============================================ */
.woocommerce ul.products,
ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 1200px) { .woocommerce ul.products, ul.products { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 900px)  { .woocommerce ul.products, ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; } }
@media (max-width: 480px)  { .woocommerce ul.products, ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; } }

/* ============================================
   8. PRODUCT CARD
============================================ */
.woocommerce ul.products li.product,
ul.products li.product {
  background: var(--ix-white) !important;
  border-radius: var(--ix-r-lg) !important;
  border: 1px solid var(--ix-border) !important;
  overflow: hidden;
  display: flex !important;
  flex-direction: column;
  position: relative;
  box-shadow: var(--ix-shadow-sm);
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease !important;
}
.woocommerce ul.products li.product:hover,
ul.products li.product:hover {
  box-shadow: var(--ix-shadow-hover) !important;
  transform: translateY(-5px) !important;
  border-color: rgba(124,58,237,.3) !important;
}

/* Card image */
.woocommerce ul.products li.product .ix-img-wrap,
ul.products li.product .ix-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.woocommerce ul.products li.product img,
ul.products li.product img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform .45s ease !important;
  display: block !important;
}
.woocommerce ul.products li.product:hover img,
ul.products li.product:hover img { transform: scale(1.07) !important; }

/* Card body */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .woocommerce-loop-product__title {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: var(--ix-text) !important;
  line-height: 1.4 !important;
  padding: 12px 14px 4px !important;
  margin: 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

/* Rating stars */
.woocommerce ul.products li.product .star-rating,
ul.products li.product .star-rating {
  color: var(--ix-amber) !important;
  font-size: 11px !important;
  margin: 0 0 2px 14px !important;
  float: left;
  clear: left;
}
.woocommerce ul.products li.product .star-rating span,
ul.products li.product .star-rating span { color: var(--ix-amber) !important; }

/* Sold count */
.ix-sold-badge {
  display: inline-block;
  font-size: 11px;
  color: var(--ix-text-lighter);
  margin: 0 0 4px 14px;
  clear: left;
  float: left;
}

/* Price */
.woocommerce ul.products li.product .price,
ul.products li.product .price {
  padding: 4px 14px 2px !important;
  clear: both !important;
  display: block !important;
  margin: 0 !important;
}
.woocommerce ul.products li.product .price .amount,
ul.products li.product .price .amount {
  font-size: 17px !important;
  font-weight: 800 !important;
  color: var(--ix-text) !important;
}
.woocommerce ul.products li.product .price ins .amount,
ul.products li.product .price ins .amount {
  color: var(--ix-red) !important;
}
.woocommerce ul.products li.product .price ins,
ul.products li.product .price ins { text-decoration: none !important; }
.woocommerce ul.products li.product .price del,
ul.products li.product .price del {
  color: var(--ix-text-lighter) !important;
  font-size: 12px !important;
  margin-left: 6px;
}
.woocommerce ul.products li.product .price del .amount,
ul.products li.product .price del .amount {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: var(--ix-text-lighter) !important;
}

/* Free shipping badge */
.ix-shipping-badge {
  display: block;
  font-size: 11px;
  color: var(--ix-green-dark);
  font-weight: 600;
  padding: 2px 14px;
}

/* Add to cart button — card */
.woocommerce ul.products li.product .button,
ul.products li.product a.button,
ul.products li.product .add_to_cart_button {
  display: block !important;
  margin: 8px 14px 14px !important;
  padding: 10px 16px !important;
  background: var(--ix-green) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--ix-r-full) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: var(--ix-t) !important;
  letter-spacing: .02em;
  width: calc(100% - 28px) !important;
}
.woocommerce ul.products li.product .button:hover,
ul.products li.product a.button:hover,
ul.products li.product .add_to_cart_button:hover {
  background: var(--ix-green-dark) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(16,185,129,.35) !important;
  transform: none !important;
}

/* Sale badge */
.woocommerce ul.products li.product .onsale,
ul.products li.product .onsale,
.ix-badge-sale {
  background: linear-gradient(135deg, var(--ix-red), #b91c1c) !important;
  color: #fff !important;
  border-radius: var(--ix-r-sm) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 4px 10px !important;
  top: 10px !important; left: 10px !important; right: auto !important;
  letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(239,68,68,.4);
  position: absolute !important;
  z-index: 1;
}

/* ============================================
   9. SINGLE PRODUCT PAGE
============================================ */
.single-product h1.product_title {
  font-family: var(--ix-font-heading) !important;
  font-size: clamp(20px, 3vw, 28px) !important;
  font-weight: 700 !important;
  color: var(--ix-text) !important;
  line-height: 1.3 !important;
  margin-bottom: 12px !important;
}

.single-product p.price {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: var(--ix-red) !important;
  display: flex !important;
  align-items: baseline !important;
  gap: 12px !important;
  margin: 16px 0 !important;
}
.single-product p.price del       { font-size: 16px !important; color: var(--ix-text-lighter) !important; font-weight: 400 !important; }
.single-product p.price del .amount { font-size: 16px !important; color: var(--ix-text-lighter) !important; }
.single-product p.price ins .amount { font-size: 28px !important; color: var(--ix-red) !important; }

/* Buy box */
.single-product form.cart {
  background: var(--ix-white);
  border: 2px solid var(--ix-border);
  border-radius: var(--ix-r-lg);
  padding: 22px;
  margin: 24px 0;
  box-shadow: var(--ix-shadow-sm);
}

/* Qty input */
.single-product .quantity .qty {
  width: 68px !important;
  height: 46px !important;
  border: 2px solid var(--ix-border) !important;
  border-radius: var(--ix-r) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-align: center !important;
  background: #fff !important;
  color: var(--ix-text) !important;
}

/* Add to cart — single */
.single-product .single_add_to_cart_button,
.single-product .button.alt {
  height: 52px !important;
  padding: 0 40px !important;
  background: linear-gradient(135deg, var(--ix-green), var(--ix-green-dark)) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--ix-r-full) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: var(--ix-t) !important;
  text-transform: none !important;
  box-shadow: 0 4px 20px rgba(16,185,129,.3) !important;
}
.single-product .single_add_to_cart_button:hover,
.single-product .button.alt:hover {
  background: linear-gradient(135deg, var(--ix-green-dark), #047857) !important;
  box-shadow: 0 6px 28px rgba(16,185,129,.4) !important;
  transform: translateY(-2px) !important;
  color: #fff !important;
}

/* Gallery */
.woocommerce-product-gallery { position: sticky !important; top: 100px !important; }
.woocommerce-product-gallery__wrapper img {
  border-radius: var(--ix-r-lg) !important;
  border: 2px solid var(--ix-border) !important;
}
.flex-control-thumbs li img {
  border-radius: var(--ix-r-sm) !important;
  border: 2px solid transparent !important;
  opacity: .7;
  cursor: pointer;
  transition: var(--ix-t) !important;
}
.flex-control-thumbs li img:hover,
.flex-control-thumbs li.flex-active img {
  border-color: var(--ix-purple) !important;
  opacity: 1;
}

/* Tabs */
.woocommerce-tabs .tabs li a { color: var(--ix-text-light) !important; font-weight: 500 !important; font-size: 14px !important; }
.woocommerce-tabs .tabs li.active a { color: var(--ix-purple) !important; font-weight: 700 !important; }

/* Reviews */
.star-rating         { color: var(--ix-amber) !important; }
.star-rating span    { color: var(--ix-amber) !important; }
#reviews .comment-text { background: var(--ix-bg); padding: 16px; border-radius: var(--ix-r); margin-top: 8px; }

/* ============================================
   10. STICKY ADD TO CART
============================================ */
.ix-sticky-cart {
  position: fixed;
  bottom: -100px;
  left: 0; right: 0;
  background: var(--ix-white);
  border-top: 2px solid var(--ix-border);
  box-shadow: 0 -4px 24px rgba(0,0,0,.12);
  z-index: 998;
  transition: bottom .35s cubic-bezier(.4,0,.2,1);
  padding: 12px 20px;
}
.ix-sticky-cart.visible { bottom: 0; }

.ix-sticky-cart-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.ix-sticky-product-info {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}
.ix-sticky-product-info img {
  width: 52px; height: 52px;
  object-fit: cover;
  border-radius: var(--ix-r);
  border: 1px solid var(--ix-border);
}
.ix-sticky-product-info strong { display: block; font-size: 14px; font-weight: 600; }
.ix-sticky-price { font-size: 18px; font-weight: 800; color: var(--ix-red); }
.ix-sticky-btn {
  background: var(--ix-green) !important;
  color: #fff !important;
  border-radius: var(--ix-r-full) !important;
  padding: 12px 32px !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  white-space: nowrap;
  border: none !important;
  cursor: pointer;
  transition: var(--ix-t) !important;
}
.ix-sticky-btn:hover { background: var(--ix-green-dark) !important; color: #fff !important; }

/* ============================================
   11. CART PAGE
============================================ */
.woocommerce-cart .woocommerce,
.woocommerce-cart .content-area { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }

.woocommerce table.shop_table {
  border-radius: var(--ix-r-lg) !important;
  overflow: hidden;
  border: 1px solid var(--ix-border) !important;
  box-shadow: var(--ix-shadow-sm);
}
.woocommerce table.shop_table th {
  background: var(--ix-dark) !important;
  color: #fff !important;
  padding: 14px 16px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.woocommerce table.shop_table td { padding: 16px !important; border-bottom: 1px solid var(--ix-border) !important; vertical-align: middle !important; }
.woocommerce table.cart td.product-name a { font-weight: 600; color: var(--ix-text); font-size: 14px; }
.woocommerce table.cart td.product-name a:hover { color: var(--ix-purple); }

.cart_totals {
  background: var(--ix-white);
  border: 2px solid var(--ix-border);
  border-radius: var(--ix-r-lg);
  padding: 28px;
  box-shadow: var(--ix-shadow-sm);
}
.cart_totals h2 { font-family: var(--ix-font-heading); font-size: 20px; font-weight: 700; margin-bottom: 20px; }

/* ============================================
   12. CHECKOUT PAGE
============================================ */
.woocommerce-checkout .woocommerce,
.woocommerce-checkout .content-area { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }

.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
.woocommerce-additional-fields h3,
#order_review_heading {
  font-family: var(--ix-font-heading);
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ix-border);
  margin-bottom: 22px;
}

.woocommerce-checkout label {
  font-weight: 500;
  font-size: 13px;
  color: var(--ix-text);
  margin-bottom: 6px;
  display: block;
}
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="password"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 2px solid var(--ix-border) !important;
  border-radius: var(--ix-r) !important;
  font-size: 14px;
  color: var(--ix-text);
  background: #fff;
  transition: var(--ix-t);
  font-family: var(--ix-font);
}
.woocommerce-checkout textarea { height: auto; padding: 12px 14px; }
.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
  border-color: var(--ix-purple) !important;
  box-shadow: 0 0 0 3px var(--ix-purple-light) !important;
  outline: none !important;
}

#payment .payment_methods li {
  border: 2px solid var(--ix-border);
  border-radius: var(--ix-r);
  padding: 14px 16px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: var(--ix-t);
}
#payment .payment_methods li:hover { border-color: var(--ix-purple); }
#payment .payment_methods li.wc_payment_method { list-style: none; }

#place_order {
  width: 100% !important;
  height: 56px !important;
  background: linear-gradient(135deg, var(--ix-purple), var(--ix-purple-dark)) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--ix-r-full) !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: var(--ix-t) !important;
  box-shadow: 0 4px 20px rgba(124,58,237,.3) !important;
  letter-spacing: .02em;
  margin-top: 12px;
}
#place_order:hover {
  background: linear-gradient(135deg, var(--ix-purple-dark), #4C1D95) !important;
  box-shadow: 0 6px 30px rgba(124,58,237,.4) !important;
  transform: translateY(-2px);
}

/* ============================================
   13. GLOBAL WC BUTTONS
============================================ */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--ix-purple) !important;
  color: #fff !important;
  border-radius: var(--ix-r-full) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 10px 24px !important;
  border: none !important;
  transition: var(--ix-t) !important;
  cursor: pointer !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--ix-purple-dark) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(124,58,237,.3) !important;
  transform: translateY(-1px) !important;
}
.woocommerce a.button.alt,
.woocommerce button.button.alt { background: var(--ix-green) !important; }
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover { background: var(--ix-green-dark) !important; }

/* ============================================
   14. WC NOTICES
============================================ */
.woocommerce-message,
.woocommerce-info {
  background: var(--ix-purple-light) !important;
  border-left: 4px solid var(--ix-purple) !important;
  border-radius: var(--ix-r) !important;
  color: var(--ix-text) !important;
}
.woocommerce-error {
  background: var(--ix-red-light) !important;
  border-left: 4px solid var(--ix-red) !important;
  border-radius: var(--ix-r) !important;
}

/* ============================================
   15. PAGINATION
============================================ */
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  border: 2px solid var(--ix-border) !important;
  border-radius: var(--ix-r) !important;
  color: var(--ix-text) !important;
  font-weight: 600 !important;
  transition: var(--ix-t) !important;
}
.woocommerce-pagination ul li a:hover { background: var(--ix-purple) !important; color: #fff !important; border-color: var(--ix-purple) !important; }
.woocommerce-pagination ul li span.current { background: var(--ix-purple) !important; color: #fff !important; border-color: var(--ix-purple) !important; }

/* ============================================
   16. SIDEBAR / FILTERS
============================================ */
.widget_product_categories li,
.widget_layered_nav li { padding: 7px 0; border-bottom: 1px solid var(--ix-border); font-size: 14px; list-style: none; }
.widget_product_categories li a,
.widget_layered_nav li a { color: var(--ix-text); display: flex; justify-content: space-between; align-items: center; }
.widget_product_categories li a:hover,
.widget_layered_nav li a:hover { color: var(--ix-purple); padding-left: 4px; }
.widget_price_filter button { background: var(--ix-purple) !important; border-radius: var(--ix-r-full) !important; font-size: 12px !important; padding: 6px 16px !important; }

/* ============================================
   17. FOOTER (custom standalone)
============================================ */
#ix-footer {
  background: var(--ix-dark);
  color: rgba(255,255,255,.7);
  margin-top: 60px;
}

/* Footer main grid */
.ix-footer-main { padding: 60px 0 40px; }
.ix-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 900px)  { .ix-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px)  { .ix-footer-grid { grid-template-columns: 1fr; } }

/* Brand column */
.ix-footer-brand .custom-logo,
.ix-footer-brand img { max-height: 44px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.ix-footer-logo-text { color: #fff; font-family: var(--ix-font-heading); font-size: 20px; font-weight: 800; display: block; margin-bottom: 12px; }
.ix-footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.55); max-width: 260px; }
/* Social buttons */
.ix-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.ix-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  transition: transform .2s, opacity .2s;
}
.ix-social-btn:hover { transform: translateY(-3px); opacity: .85; color: #fff; }
.ix-social-fb { background: #1877F2; }
.ix-social-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.ix-social-tt { background: #000; }
.ix-social-wa { background: #25D366; }

.ix-footer-trust { display: flex; flex-direction: column; gap: 6px; margin-top: 20px; }
.ix-footer-trust span { font-size: 12px; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 8px; }

/* Link columns */
.ix-footer-col h4 {
  color: #fff;
  font-family: var(--ix-font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ix-purple);
  display: inline-block;
}
.ix-footer-col ul { list-style: none; padding: 0; margin: 0; }
.ix-footer-col ul li { margin-bottom: 4px; }
.ix-footer-col ul li a {
  color: rgba(255,255,255,.55);
  font-size: 13px;
  line-height: 2;
  transition: var(--ix-t);
}
.ix-footer-col ul li a:hover { color: var(--ix-amber); padding-left: 4px; }

/* Footer bottom */
.ix-footer-bottom { background: rgba(0,0,0,.3); border-top: 1px solid rgba(255,255,255,.06); padding: 18px 0; }
.ix-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.ix-footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); margin: 0; }
.ix-footer-bottom strong { color: rgba(255,255,255,.65); }
.ix-payment-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.ix-pay-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.6);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: .04em;
}

/* ============================================
   18. BREADCRUMBS
============================================ */
.woocommerce-breadcrumb, .ast-breadcrumbs {
  font-size: 12px !important;
  color: var(--ix-text-lighter) !important;
  padding: 12px 0 !important;
  margin-bottom: 16px !important;
}
.woocommerce-breadcrumb a, .ast-breadcrumbs a { color: var(--ix-purple) !important; }
.woocommerce-breadcrumb a:hover { text-decoration: underline; }

/* ============================================
   19. MY ACCOUNT
============================================ */
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none; padding: 0; margin: 0;
  background: #fff; border-radius: var(--ix-r-lg);
  overflow: hidden; box-shadow: var(--ix-shadow-sm);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block; padding: 14px 20px;
  font-size: 14px; font-weight: 500;
  color: var(--ix-text);
  border-bottom: 1px solid var(--ix-border);
  transition: var(--ix-t);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  background: var(--ix-purple-light); color: var(--ix-purple); padding-left: 28px;
}

/* ============================================
   20. ANIMATIONS & UTILITIES
============================================ */
.ix-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.ix-fade-in.ix-visible { opacity: 1; transform: translateY(0); }

@keyframes ix-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}
.ix-pulse { animation: ix-pulse 2s ease-in-out infinite; }

/* Added to cart feedback */
.added_to_cart, .ajax_add_to_cart.added {
  position: relative;
}
.added_to_cart::after {
  content: '✓ Agregado';
  position: absolute;
  top: -28px; left: 50%; transform: translateX(-50%);
  background: var(--ix-green);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: var(--ix-r-full);
  white-space: nowrap;
  animation: ix-toast .3s ease;
}
@keyframes ix-toast { from { opacity: 0; top: -14px; } to { opacity: 1; top: -28px; } }

/* Scrollbar */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--ix-bg); }
::-webkit-scrollbar-thumb { background: var(--ix-purple); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--ix-purple-dark); }

/* ============================================
   21. RESPONSIVE — TABLET & MOBILE
============================================ */

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  .ix-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .ix-hero-visual { display: none; }
  .ix-hero h1 { font-size: 36px; }
  .ix-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .ix-features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {

  /* Header */
  .ix-hamburger { display: flex; }
  .ix-header-inner {
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 16px;
    min-height: auto;
  }
  .ix-logo { order: 1; }
  .ix-logo-brand { font-size: 20px; }
  .ix-header-actions { order: 2; margin-left: auto; gap: 6px; }
  .ix-btn-label { display: none; }
  .ix-header-search { order: 3; flex: 0 0 100%; max-width: 100%; }
  .ix-search-input { font-size: 16px; }

  /* Nav: hide on mobile (shown in drawer) */
  #ix-nav-bar { display: none; }

  /* Hero */
  .ix-hero { padding: 48px 0 56px; }
  .ix-hero h1 { font-size: 28px; }
  .ix-hero p { font-size: 15px; }
  .ix-hero-btns { gap: 10px; }
  .ix-btn-primary, .ix-btn-outline { padding: 12px 24px; font-size: 14px; }
  .ix-hero-stats { gap: 20px; flex-wrap: wrap; }

  /* Features */
  .ix-features-grid { grid-template-columns: repeat(2, 1fr); }
  .ix-feature-item { padding: 14px 16px; }

  /* Categories */
  .ix-cat-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .ix-cat-icon { width: 48px; height: 48px; font-size: 22px; }

  /* Products */
  .woocommerce ul.products,
  ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }

  /* Product single */
  .single-product p.price { font-size: 22px !important; }
  .single-product .single_add_to_cart_button { width: 100% !important; }
  .woocommerce-product-gallery { position: static !important; }

  /* Cart & checkout */
  .woocommerce-cart .woocommerce,
  .woocommerce-checkout .woocommerce { padding: 16px; }

  /* CTA Banner */
  .ix-cta-banner { padding: 32px 20px; flex-direction: column; text-align: center; }

  /* Footer */
  .ix-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .ix-footer-main { padding: 40px 0 28px; }
}

/* ── Mobile small (≤480px) ── */
@media (max-width: 480px) {
  .ix-container { padding: 0 14px; }
  .ix-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ix-features-grid { grid-template-columns: 1fr; }
  .ix-feature-item:last-child { border-right: none; border-bottom: none; }
  .ix-feature-item { border-right: none; border-bottom: 1px solid var(--ix-border); }
  .ix-footer-grid { grid-template-columns: 1fr; }
  .ix-section { padding: 40px 0; }
  .ix-section-header h2 { font-size: 22px; }
  .woocommerce ul.products,
  ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
  .ix-sticky-cart-inner { flex-direction: column; align-items: stretch; }
  .ix-sticky-btn { text-align: center; }

  /* Logo compacto */
  .ix-logo-text { font-size: 18px; }
  .ix-nav-all-cats { display: none; }
}

@media (min-width: 769px) {
  .ix-sticky-cart { display: none; }
}

/* ============================================
   22. MOBILE DRAWER MENU
============================================ */
/* Mobile menu — fixed drawer, oculto con transform+visibility */
.ix-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: min(300px, 88vw);
  height: 100vh;
  background: #0F0C29;
  z-index: 10000;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform .3s cubic-bezier(.4,0,.2,1), visibility .3s;
}
.ix-mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}
.ix-mm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ix-mm-title { color: #fff; font-weight: 700; font-size: 16px; }
.ix-mm-close {
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ix-t);
}
.ix-mm-close:hover { background: rgba(255,255,255,.2); }
.ix-mm-search {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ix-mm-search form {
  display: flex;
  height: 40px;
  border-radius: var(--ix-r-full);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
}
.ix-mm-search input[type="search"] {
  flex: 1; background: rgba(255,255,255,.08); border: none;
  color: #fff; padding: 0 14px; font-size: 14px; outline: none;
}
.ix-mm-search input::placeholder { color: rgba(255,255,255,.4); }
.ix-mm-search button {
  width: 42px; background: var(--ix-amber); border: none;
  color: var(--ix-dark); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.ix-mm-nav { list-style: none; padding: 8px 0 40px; margin: 0; }
.ix-mm-nav li a {
  display: block; padding: 13px 20px;
  color: rgba(255,255,255,.85); font-size: 15px; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: var(--ix-t); text-decoration: none;
}
.ix-mm-nav li a:hover { background: rgba(255,255,255,.06); color: var(--ix-amber); padding-left: 28px; }
.ix-mm-divider { border-top: 1px solid rgba(255,255,255,.12) !important; margin-top: 8px; }

.ix-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.ix-menu-overlay.is-visible { opacity: 1; pointer-events: all; }

/* ============================================
   23. FLOATING HELP BUTTON
============================================ */
.ix-help-btn {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 8888;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ix-purple);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--ix-r-full);
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(124,58,237,.45);
  transform: translateY(100px);
  opacity: 0;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .4s ease, background .2s ease;
  white-space: nowrap;
}
.ix-help-btn.ix-help-visible { transform: translateY(0); opacity: 1; }
.ix-help-btn:hover { background: var(--ix-purple-dark); color: #fff; transform: translateY(-3px); }
.ix-help-icon { font-size: 20px; }
@media (max-width: 480px) {
  .ix-help-text { display: none; }
  .ix-help-btn { padding: 14px; width: 52px; height: 52px; justify-content: center; }
}

/* ============================================
   24. HERO — GRADIENT TEXT + NEW ELEMENTS
============================================ */
.ix-gradient-text {
  background: linear-gradient(90deg, #F59E0B 0%, #EC4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ix-hero-content { max-width: 680px; }
.ix-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.ix-hero-trust span {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ix-btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ix-green);
  color: #fff;
  font-family: var(--ix-font-heading);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--ix-r-full);
  text-decoration: none;
  transition: var(--ix-t);
  box-shadow: 0 4px 20px rgba(16,185,129,.35);
}
.ix-btn-green:hover { background: var(--ix-green-dark); color: #fff; transform: translateY(-2px); }
.ix-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--ix-r-full);
  border: 2px solid rgba(255,255,255,.35);
  text-decoration: none;
  transition: var(--ix-t);
}
.ix-btn-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); color: #fff; }

/* ============================================
   25. TRUST STRIP
============================================ */
.ix-trust-strip {
  background: var(--ix-purple);
  padding: 14px 0;
}
.ix-trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
}
.ix-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.ix-trust-item span { font-size: 18px; }
@media (max-width: 600px) { .ix-trust-inner { justify-content: flex-start; gap: 16px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; } }

/* ============================================
   26. FEATURES BAR
============================================ */
.ix-features-bar { background: #fff; border-bottom: 1px solid var(--ix-border); }
.ix-features-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.ix-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid var(--ix-border);
  transition: var(--ix-t);
}
.ix-feat:last-child { border-right: none; }
.ix-feat:hover { background: var(--ix-purple-light); }
.ix-feat-icon { font-size: 28px; flex-shrink: 0; }
.ix-feat div strong { display: block; font-size: 13px; font-weight: 700; color: var(--ix-dark); }
.ix-feat div span { font-size: 12px; color: var(--ix-text-light); }
@media (max-width: 768px) {
  .ix-features-grid { grid-template-columns: repeat(2,1fr); }
  .ix-feat { border-bottom: 1px solid var(--ix-border); }
  .ix-feat:nth-child(2n) { border-right: none; }
}
@media (max-width: 480px) {
  .ix-features-grid { grid-template-columns: 1fr; }
  .ix-feat { border-right: none; }
}

/* ============================================
   27. RECLAMOS PAGE
============================================ */
.ix-reclamos { padding: 40px 0; }
.ix-reclamos-intro {
  font-size: 17px;
  color: var(--ix-text-light);
  margin-bottom: 40px;
  max-width: 600px;
}
.ix-reclamos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.ix-reclamo-card {
  background: #fff;
  border: 1px solid var(--ix-border);
  border-radius: var(--ix-r-lg);
  padding: 28px;
  box-shadow: var(--ix-shadow-sm);
}
.ix-reclamo-icon { font-size: 36px; margin-bottom: 14px; }
.ix-reclamo-card h3 { font-size: 16px; font-weight: 700; color: var(--ix-dark); margin-bottom: 10px; }
.ix-reclamo-card p { font-size: 14px; color: var(--ix-text-light); line-height: 1.7; }
.ix-reclamos-process h2 { font-size: 22px; font-weight: 800; margin-bottom: 28px; }
.ix-process-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.ix-process-list li { display: flex; align-items: flex-start; gap: 18px; }
.ix-step-num {
  width: 36px; height: 36px;
  background: var(--ix-purple);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.ix-process-list strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.ix-process-list p { font-size: 14px; color: var(--ix-text-light); margin: 0; }
.ix-reclamos-cta { text-align: center; padding: 40px; background: var(--ix-purple-light); border-radius: var(--ix-r-xl); }
.ix-reclamos-cta p { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
@media (max-width: 600px) { .ix-reclamos-grid { grid-template-columns: 1fr; } }

/* ============================================
   28. SECTION CTA + BG HELPERS
============================================ */
.ix-bg-white { background: #fff; }
.ix-bg-light  { background: var(--ix-bg); }
.ix-section-cta { text-align: center; margin-top: 36px; }
.ix-cta-section { padding: 0 0 64px; }
.ix-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ix-amber);
  color: var(--ix-dark);
  font-family: var(--ix-font-heading);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--ix-r-full);
  text-decoration: none;
  transition: var(--ix-t);
  box-shadow: 0 4px 20px rgba(245,158,11,.35);
}
.ix-btn-primary:hover { background: #D97706; color: var(--ix-dark); transform: translateY(-2px); }

/* ============================================
   29. SEARCH AUTOCOMPLETE DROPDOWN
============================================ */
.ix-search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: var(--ix-r-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  border: 1px solid var(--ix-border);
  z-index: 10001;
  overflow: hidden;
  max-height: 360px;
  overflow-y: auto;
}
.ix-search-dropdown.is-open { display: block; }
.ix-ac-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  text-decoration: none;
  transition: var(--ix-t);
  border-bottom: 1px solid var(--ix-border);
}
.ix-ac-item:last-child { border-bottom: none; }
.ix-ac-item:hover { background: var(--ix-purple-light); }
.ix-ac-item img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: var(--ix-r-sm);
  border: 1px solid var(--ix-border);
  flex-shrink: 0;
}
.ix-ac-no-img {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: var(--ix-bg);
  border-radius: var(--ix-r-sm);
  flex-shrink: 0;
}
.ix-ac-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.ix-ac-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ix-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ix-ac-price { font-size: 12px; color: var(--ix-red); font-weight: 700; }
.ix-ac-price .woocommerce-Price-amount { color: var(--ix-red); }

/* ============================================
   30. TRUST BAR (homepage, white)
============================================ */
.ix-trust-bar {
  background: linear-gradient(90deg, var(--ix-purple-dark) 0%, var(--ix-purple) 100%);
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}
@keyframes ix-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ix-tb-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: max-content;
  animation: ix-marquee 30s linear infinite;
}
.ix-tb-track:hover { animation-play-state: paused; }
.ix-tb-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.ix-tb-icon { font-size: 15px; }
.ix-tb-sep { color: rgba(255,255,255,.4); margin-left: 6px; }
/* legacy — mantiene compatibilidad si algún template usa la clase antigua */
.ix-trust-bar-inner { max-width: 1400px; margin: 0 auto; display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.ix-trust-bar .ix-trust-item { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.8); }
.ix-trust-icon { font-size: 20px; }

/* ============================================
   31. SECTION HEADERS WITH "VER TODOS"
============================================ */
.ix-section-header-flex { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.ix-section-title { font-family: var(--ix-font-heading); font-size: clamp(20px,3vw,28px); font-weight: 700; color: var(--ix-text); }
.ix-section-title span { color: var(--ix-purple); }
.ix-see-all { color: var(--ix-purple); font-size: 13px; font-weight: 600; padding: 7px 18px; border: 2px solid var(--ix-purple-light); border-radius: var(--ix-r-full); transition: var(--ix-t); }
.ix-see-all:hover { background: var(--ix-purple); color: #fff; border-color: var(--ix-purple); }

/* Hero stats */
.ix-hero-stats { display: flex; gap: 36px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.ix-stat { text-align: center; }
.ix-stat-num { font-family: var(--ix-font-heading); font-size: 26px; font-weight: 800; color: #fff; }
.ix-stat-label { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 2px; }

/* Hero centered layout */
.ix-hero-content { text-align: center; max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.ix-hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.ix-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: var(--ix-r-full); font-weight: 700; font-size: 15px; transition: var(--ix-t); border: none; cursor: pointer; text-decoration: none; }

/* Categories grid (homepage style) */
.ix-cats { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 14px; margin: 24px 0; }
.ix-cat { background: var(--ix-white); border-radius: var(--ix-r-lg); padding: 20px 12px; text-align: center; border: 2px solid transparent; transition: var(--ix-t-slow); box-shadow: var(--ix-shadow-sm); cursor: pointer; text-decoration: none; display: block; }
.ix-cat:hover { border-color: var(--ix-purple); box-shadow: var(--ix-shadow-hover); transform: translateY(-4px); }
.ix-cat span { font-size: 12.5px; font-weight: 600; color: var(--ix-text); display: block; margin-top: 4px; }

/* Flash sale banner */
.ix-flash { background: linear-gradient(135deg, var(--ix-dark) 0%, var(--ix-dark-2) 100%); border-radius: var(--ix-r-xl); padding: 32px; margin-bottom: 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; overflow: hidden; position: relative; }
.ix-flash::before { content: ''; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; background: radial-gradient(circle, rgba(124,58,237,.35), transparent 70%); border-radius: 50%; }
.ix-flash-left { position: relative; z-index: 1; }
.ix-flash-tag { background: var(--ix-red); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: var(--ix-r-full); display: inline-block; margin-bottom: 10px; letter-spacing: .05em; text-transform: uppercase; }
.ix-flash-left h2 { font-family: var(--ix-font-heading); font-size: clamp(20px,2.5vw,26px); font-weight: 800; color: #fff; margin-bottom: 6px; }
.ix-flash-left p { color: rgba(255,255,255,.6); font-size: 14px; }
.ix-countdown-wrap { display: flex; gap: 12px; position: relative; z-index: 1; }
.ix-cd-unit { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: var(--ix-r); padding: 10px 16px; text-align: center; min-width: 58px; }
.ix-cd-num { font-family: var(--ix-font-heading); font-size: 24px; font-weight: 800; color: #fff; display: block; line-height: 1; }
.ix-cd-label { font-size: 10px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; display: block; }

/* Search results page */
.ix-search-results-header { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 2px solid var(--ix-border); }
.ix-search-results-header h1 { font-size: 22px; font-weight: 700; }
.ix-search-results-header h1 span { color: var(--ix-purple); }
.ix-no-results-wrap { text-align: center; padding: 80px 20px; }
.ix-no-results-icon { font-size: 64px; margin-bottom: 20px; }
.ix-no-results-wrap h2 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.ix-no-results-wrap p { color: var(--ix-text-light); margin-bottom: 28px; }
.ix-pagination { margin-top: 40px; text-align: center; }

@media (max-width: 768px) {
  .ix-hero-stats { gap: 20px; }
  .ix-flash { flex-direction: column; }
  .ix-cats { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .ix-trust-bar-inner { gap: 16px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
}
@media (max-width: 480px) {
  .ix-cats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  #ix-nav-bar { display: none !important; }
  .ix-hamburger { display: flex !important; }
  .ix-btn-label { display: none !important; }
}

/* ── Slider: ancho de .ix-amc cards ────────────────────────────────────────── */
.ix-slider-track .ix-amc {
  width: calc((100vw - 200px) / 3);
  min-width: 160px;
  max-width: 310px;
}
@media (max-width: 900px) {
  .ix-slider-track .ix-amc { width: calc((100vw - 160px) / 2); }
}
@media (max-width: 600px) {
  .ix-slider-track .ix-amc {
    width: calc(100vw - 48px);
    max-width: 100%;
    border-radius: 12px;
  }
  .ix-slider-track { gap: 12px; }
}

/* ── Front-page: categorías ──────────────────────────────────────────────── */
.ix-section-eyebrow {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--ix-purple); margin-bottom: 6px;
}
.ix-section-header-flex {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 28px; flex-wrap: wrap; gap: 12px;
}
/* ── Category grid — 3×2 uniforme ─────────────────────────────── */
.ix-cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
/* Tablet: 2 columnas, 3 filas */
@media (max-width: 900px) {
  .ix-cats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
/* Mobile: 2 columnas, solo 4 tarjetas visibles */
@media (max-width: 600px) {
  .ix-cats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ix-cat-card:nth-child(n+5) { display: none; }
}

.ix-cat-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(0,0,0,.13);
  transition: transform .38s cubic-bezier(.22,.68,0,1.2), box-shadow .38s;
  cursor: pointer;
}
.ix-cat-card:hover {
  transform: translateY(-7px) scale(1.015);
  box-shadow: 0 20px 56px rgba(0,0,0,.22);
}

/* Shine sweep on hover */
.ix-cat-card::before {
  content: '';
  position: absolute;
  top: -60%; left: -80%;
  width: 48%; height: 220%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.14), transparent);
  transform: skewX(-18deg);
  transition: transform .7s ease;
  z-index: 5;
  pointer-events: none;
}
.ix-cat-card:hover::before { transform: skewX(-18deg) translateX(520%); }

.ix-cat-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .55s cubic-bezier(.22,.68,0,1);
}
.ix-cat-card:hover .ix-cat-bg { transform: scale(1.09); }

.ix-cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.94) 0%,
    rgba(0,0,0,.70) 38%,
    rgba(0,0,0,.30) 60%,
    rgba(0,0,0,.05) 80%,
    transparent 100%
  );
  transition: background .42s ease;
}
.ix-cat-card:hover .ix-cat-overlay {
  background: linear-gradient(
    to top,
    var(--cat-g1, rgba(109,40,217,.92)) 0%,
    var(--cat-g2, rgba(109,40,217,.45)) 50%,
    transparent 100%
  );
}

/* Emoji icon pill */
.ix-cat-icon-pill {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 100px;
  padding: 6px 13px;
  font-size: 20px; line-height: 1;
  transition: transform .38s cubic-bezier(.22,.68,0,1.2), background .3s;
}
.ix-cat-card:hover .ix-cat-icon-pill { transform: scale(1.15) rotate(-4deg); background: rgba(0,0,0,.18); }

.ix-cat-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 18px 18px; color: #fff; z-index: 3;
}
.ix-cat-name {
  display: block;
  font-family: var(--ix-font-heading, 'Poppins', sans-serif);
  font-size: 18px; font-weight: 800; line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,1), 0 4px 16px rgba(0,0,0,.9), 0 0 40px rgba(0,0,0,.8);
  margin-bottom: 4px;
  letter-spacing: .01em;
  transition: letter-spacing .3s;
}
.ix-cat-card:hover .ix-cat-name { letter-spacing: .025em; }

.ix-cat-count {
  display: block; font-size: 12px; font-weight: 600;
  opacity: 1; margin-bottom: 10px;
  color: rgba(255,255,255,.95);
  text-shadow: 0 1px 6px rgba(0,0,0,.9);
  transition: opacity .25s, transform .25s;
}
.ix-cat-card:hover .ix-cat-count { opacity: 0; transform: translateY(-5px); }

.ix-cat-cta-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: .05em;
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.55);
  backdrop-filter: blur(6px);
  padding: 7px 18px; border-radius: 100px; color: #fff;
  transform: translateY(14px); opacity: 0;
  transition: transform .32s .06s, opacity .32s .06s, background .22s;
}
.ix-cat-card:hover .ix-cat-cta-btn {
  transform: translateY(0); opacity: 1;
  background: rgba(255,255,255,.28);
}

/* ── Slider: contenedor + viewport + track ────────────────────────────────── */
.ix-slider-wrap {
  position: relative;
  padding: 0 44px;
}
.ix-slider-viewport {
  overflow: hidden;
  border-radius: var(--ix-r-lg);
}
.ix-slider-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
  will-change: transform;
  cursor: grab;
  user-select: none;
}
.ix-slider-track.is-dragging { cursor: grabbing; }
.ix-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ix-white);
  border: 2px solid var(--ix-border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: var(--ix-t);
  color: var(--ix-text);
  line-height: 1;
  padding: 0;
}
.ix-slider-arrow:hover {
  background: var(--ix-purple);
  color: #fff;
  border-color: var(--ix-purple);
  box-shadow: var(--ix-shadow-hover);
}
.ix-slider-prev { left: 0; }
.ix-slider-next { right: 0; }
@media (max-width: 600px) {
  .ix-slider-wrap { padding: 0 30px; }
  .ix-slider-arrow { width: 28px; height: 28px; font-size: 15px; }
}

/* ── CTA botón full-width ─────────────────────────────────────────────────── */
.ix-slider-cta { text-align: center; margin-top: 28px; }
.ix-cta-btn-full {
  display: inline-block;
  background: linear-gradient(135deg, var(--ix-purple) 0%, var(--ix-purple-dark) 100%);
  color: #fff; font-size: 15px; font-weight: 700;
  padding: 14px 36px; border-radius: var(--ix-r-full);
  transition: var(--ix-t); box-shadow: var(--ix-shadow-md);
}
.ix-cta-btn-full:hover { transform: translateY(-2px); box-shadow: var(--ix-shadow-lg); color: #fff; }

/* ── Front-page: nuevos productos ────────────────────────────────────────── */
.ix-nuevos-section { background: var(--ix-bg); }
.ix-nuevos-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.ix-nuevos-header-left { display: flex; flex-direction: column; gap: 4px; }
.ix-nuevos-eyebrow {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--ix-amber);
}
.ix-nuevos-all-btn {
  font-size: 13px; font-weight: 600; color: var(--ix-purple);
  padding: 8px 18px; border: 2px solid var(--ix-purple);
  border-radius: var(--ix-r-full); transition: var(--ix-t); white-space: nowrap;
}
.ix-nuevos-all-btn:hover { background: var(--ix-purple); color: #fff; }

.ix-nuevos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .ix-nuevos-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .ix-nuevos-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* ── Nuevos productos: cards ──────────────────────────────────────────────── */
.ix-nv-card {
  background: var(--ix-white);
  border-radius: var(--ix-r-lg);
  overflow: hidden;
  box-shadow: var(--ix-shadow-sm);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.ix-nv-card:hover { transform: translateY(-4px); box-shadow: var(--ix-shadow-lg); }
.ix-nv-link { display: flex; flex-direction: column; flex: 1; text-decoration: none; color: inherit; }
.ix-nv-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f3f4f6;
}
.ix-nv-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.ix-nv-card:hover .ix-nv-img img { transform: scale(1.06); }
.ix-nv-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--ix-purple); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: var(--ix-r-full);
  letter-spacing: .05em; z-index: 2;
}
.ix-nv-sale-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--ix-red); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: var(--ix-r-full); z-index: 2;
}
.ix-nv-arrived {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(0,0,0,.5); color: #fff;
  font-size: 9px; font-weight: 600;
  padding: 2px 8px; border-radius: var(--ix-r-full);
  backdrop-filter: blur(4px); z-index: 2;
}
.ix-nv-body { padding: 12px; flex: 1; }
.ix-nv-name {
  font-size: 13px; font-weight: 600; color: var(--ix-text);
  line-height: 1.4; margin-bottom: 6px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ix-nv-stars { display: flex; align-items: center; gap: 4px; margin-bottom: 8px; color: var(--ix-amber); font-size: 12px; }
.ix-nv-rating { color: var(--ix-text-light); font-size: 11px; }
.ix-nv-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.ix-nv-price-now { font-family: var(--ix-font-heading); font-size: 16px; font-weight: 800; color: var(--ix-purple); }
.ix-nv-price-was { font-size: 12px; color: var(--ix-text-lighter); text-decoration: line-through; }
.ix-nv-ship { font-size: 11px; color: var(--ix-green); font-weight: 500; }
.ix-nv-footer {
  padding: 10px 12px 12px;
  display: flex; gap: 8px;
  border-top: 1px solid var(--ix-border);
}
.ix-nv-btn {
  flex: 1; background: var(--ix-purple); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 8px 10px; border-radius: var(--ix-r);
  text-align: center; transition: var(--ix-t);
  cursor: pointer; border: none; display: block;
}
.ix-nv-btn:hover { background: var(--ix-purple-dark); color: #fff; }
.ix-nv-detail-btn {
  padding: 8px 10px; font-size: 12px; font-weight: 600;
  color: var(--ix-purple); border: 1.5px solid var(--ix-purple);
  border-radius: var(--ix-r); transition: var(--ix-t); text-align: center; white-space: nowrap;
}
.ix-nv-detail-btn:hover { background: var(--ix-purple); color: #fff; }
@media (max-width: 700px) {
  .ix-nv-body { padding: 10px; }
  .ix-nv-name { font-size: 12px; }
  .ix-nv-price-now { font-size: 14px; }
  .ix-nv-footer { padding: 8px 10px 10px; }
  .ix-nv-btn, .ix-nv-detail-btn { font-size: 11px; padding: 7px 8px; }
}

/* ── Nuevos productos: CTA banner ─────────────────────────────────────────── */
.ix-nuevos-cta { margin-top: 32px; }
.ix-nuevos-cta-inner {
  background: linear-gradient(135deg, var(--ix-purple) 0%, var(--ix-purple-dark) 100%);
  border-radius: var(--ix-r-xl);
  padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; color: #fff;
}
.ix-nuevos-cta-title { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.ix-nuevos-cta-sub { font-size: 13px; opacity: .8; }
.ix-nuevos-cta-btn {
  background: #fff; color: var(--ix-purple);
  font-size: 14px; font-weight: 700;
  padding: 12px 24px; border-radius: var(--ix-r-full);
  transition: var(--ix-t); white-space: nowrap;
}
.ix-nuevos-cta-btn:hover { transform: scale(1.03); box-shadow: 0 4px 16px rgba(0,0,0,.2); color: var(--ix-purple-dark); }
@media (max-width: 600px) {
  .ix-nuevos-cta-inner { padding: 20px; flex-direction: column; text-align: center; }
}



/* ══════════════════════════════════════════════════════════════════════════
   HERO CAROUSEL
══════════════════════════════════════════════════════════════════════════ */
.ix-hc {
  position: relative;
  overflow: hidden;
  height: clamp(420px, 56vw, 600px);
  background: var(--ix-header-bg);
}
.ix-hc-slides { position: relative; width: 100%; height: 100%; }

.ix-hc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.ix-hc-slide.is-active { opacity: 1; pointer-events: auto; }

.ix-hc-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ix-hc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transition: transform 8s ease;
  display: block;
}
.ix-hc-slide.is-active .ix-hc-img { transform: scale(1.04); }

/* Overlays */
.ix-hc-overlay {
  position: absolute;
  inset: 0;
}
.ix-hc-overlay--orange { background: linear-gradient(90deg, rgba(15,5,30,.88) 0%, rgba(15,5,30,.65) 45%, rgba(15,5,30,.15) 100%); }
.ix-hc-overlay--purple { background: linear-gradient(90deg, rgba(10,3,28,.90) 0%, rgba(10,3,28,.65) 45%, rgba(10,3,28,.15) 100%); }
.ix-hc-overlay--teal   { background: linear-gradient(90deg, rgba(5,20,30,.90) 0%, rgba(5,20,30,.65) 45%, rgba(5,20,30,.15) 100%); }

/* Content */
.ix-hc-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.ix-hc-content {
  max-width: 560px;
  padding: 32px 0;
  animation: ix-hc-fadein 0.7s ease forwards;
}
.ix-hc-slide:not(.is-active) .ix-hc-content { animation: none; opacity: 0; }

@keyframes ix-hc-fadein {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ix-hc-badge {
  display: inline-block;
  font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: var(--ix-r-full);
  margin-bottom: 14px;
}
.ix-hc-badge--orange { background: #F97316; color: #fff; }
.ix-hc-badge--gold   { background: #D97706; color: #fff; }
.ix-hc-badge--green  { background: var(--ix-green); color: #fff; }

.ix-hc-title {
  font-family: var(--ix-font-heading);
  font-size: clamp(26px, 4vw, 50px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}
.ix-hc-title span { color: var(--ix-amber); }

.ix-hc-sub {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255,255,255,.80);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Buttons */
.ix-hc-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.ix-hc-btn {
  padding: 13px 26px;
  border-radius: var(--ix-r-full);
  font-size: 14px; font-weight: 700;
  transition: var(--ix-t);
  white-space: nowrap;
  display: inline-block;
}
.ix-hc-btn--primary { background: var(--ix-purple); color: #fff; box-shadow: 0 4px 16px rgba(124,58,237,.45); }
.ix-hc-btn--primary:hover { background: var(--ix-purple-dark); color: #fff; transform: translateY(-2px); }
.ix-hc-btn--green { background: var(--ix-green); color: #fff; box-shadow: 0 4px 16px rgba(16,185,129,.45); }
.ix-hc-btn--green:hover { background: var(--ix-green-dark); color: #fff; transform: translateY(-2px); }
.ix-hc-btn--ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.3); backdrop-filter: blur(4px); }
.ix-hc-btn--ghost:hover { background: rgba(255,255,255,.22); color: #fff; }

/* Trust row */
.ix-hc-trust { display: flex; gap: 16px; flex-wrap: wrap; }
.ix-hc-trust span { font-size: 12px; color: rgba(255,255,255,.65); font-weight: 500; }

/* Arrows */
.ix-hc-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 24px; line-height: 1;
  cursor: pointer;
  transition: var(--ix-t);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.ix-hc-arrow:hover { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.5); }
.ix-hc-arrow--prev { left: 16px; }
.ix-hc-arrow--next { right: 16px; }

/* Dots */
.ix-hc-dots {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; gap: 8px;
}
.ix-hc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none; cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.ix-hc-dot.is-active { background: #fff; width: 24px; border-radius: 4px; }

/* ── Mobile: banner compacto sin imagen de fondo ─────────────────────────── */
@media (max-width: 768px) {
  /* Altura fija compacta */
  .ix-hc,
  .ix-hc-slides { height: auto; min-height: unset; }

  .ix-hc-slide {
    position: relative;
    inset: unset;
    display: none;
    padding: 28px 20px 24px;
  }
  .ix-hc-slide.is-active { display: flex; flex-direction: row; align-items: center; gap: 12px; }

  /* Ocultar imagen de fondo — modo compacto usa solo gradiente */
  .ix-hc-bg { display: none; }

  /* Cada slide tiene su propio color de fondo */
  .ix-hc-slide[data-slide="0"] { background: linear-gradient(135deg, #3B0764 0%, #7C2D12 100%); }
  .ix-hc-slide[data-slide="1"] { background: linear-gradient(135deg, #1E1B4B 0%, #4C1D95 100%); }
  .ix-hc-slide[data-slide="2"] { background: linear-gradient(135deg, #064E3B 0%, #1E1B4B 100%); }
  .ix-hc-slide[data-slide="3"] { background: linear-gradient(135deg, #14532D 0%, #1E1B4B 100%); }

  /* Ocultar overlay — ya no aplica */
  .ix-hc-overlay { display: none; }

  /* Contenido ocupa la parte izquierda */
  .ix-hc-inner { position: relative; z-index: 2; height: auto; padding: 0; }
  .ix-hc-content { max-width: 100%; padding: 0; flex: 1; }

  /* Emoji decorativo grande a la derecha */
  .ix-hc-slide[data-slide="0"]::after { content: '🛍️'; font-size: 64px; flex-shrink: 0; line-height: 1; }
  .ix-hc-slide[data-slide="1"]::after { content: '⭐'; font-size: 64px; flex-shrink: 0; line-height: 1; }
  .ix-hc-slide[data-slide="2"]::after { content: '📦'; font-size: 64px; flex-shrink: 0; line-height: 1; }
  .ix-hc-slide[data-slide="3"]::after { content: '💳'; font-size: 64px; flex-shrink: 0; line-height: 1; }

  .ix-hc-badge { font-size: 10px; padding: 4px 10px; margin-bottom: 10px; }
  .ix-hc-title { font-size: 20px; line-height: 1.2; margin-bottom: 8px; }
  .ix-hc-sub   { font-size: 12px; line-height: 1.5; margin-bottom: 14px; }

  .ix-hc-btns  { gap: 8px; margin-bottom: 12px; }
  .ix-hc-btn   { padding: 10px 16px; font-size: 12px; }

  .ix-hc-trust { gap: 6px; flex-wrap: wrap; }
  .ix-hc-trust span { font-size: 10px; }

  .ix-hc-arrow { display: none; }

  /* Dots debajo del slide */
  .ix-hc-dots {
    position: relative;
    bottom: unset; left: unset;
    transform: none;
    justify-content: center;
    padding: 10px 0;
    background: rgba(0,0,0,.15);
  }
}


/* ══════════════════════════════════════════════════════════════════════════
   PRODUCT CARDS (.ix-amc) — grid de tienda y slider
══════════════════════════════════════════════════════════════════════════ */

/* Grid en páginas de archivo / categoría */
ul.products { list-style: none; margin: 0; padding: 0; }
.ix-amc-grid-wrap,
ul.products.columns-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
ul.products.columns-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
ul.products.columns-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }

/* Card base */
.ix-amc {
  background: var(--ix-white);
  border-radius: var(--ix-r-lg);
  overflow: hidden;
  box-shadow: var(--ix-shadow-sm);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  position: relative;
  flex-shrink: 0;
}
.ix-amc:hover { transform: translateY(-4px); box-shadow: var(--ix-shadow-lg); }

/* Link wrapper */
.ix-amc-link { display: flex; flex-direction: column; flex: 1; text-decoration: none; color: inherit; }

/* Imagen */
.ix-amc-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f3f4f6;
}
.ix-amc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
  display: block;
}
.ix-amc:hover .ix-amc-img img { transform: scale(1.06); }

/* Badges */
.ix-amc-badge-sale,
.ix-amc-badge-new {
  position: absolute; top: 10px; left: 10px;
  font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: var(--ix-r-full);
  z-index: 2; letter-spacing: .04em;
}
.ix-amc-badge-sale { background: var(--ix-red);    color: #fff; }
.ix-amc-badge-new  { background: var(--ix-purple); color: #fff; }

/* Body */
.ix-amc-body { padding: 12px; flex: 1; }
.ix-amc-title {
  font-size: 13px; font-weight: 600; color: var(--ix-text);
  line-height: 1.4; margin-bottom: 6px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}

/* Stars */
.ix-amc-stars { display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.ix-stars-fill { color: var(--ix-amber); font-size: 12px; letter-spacing: 1px; }
.ix-stars-num  { font-size: 11px; font-weight: 700; color: var(--ix-text); }
.ix-stars-count{ font-size: 11px; color: var(--ix-text-light); }

/* Precio */
.ix-amc-price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; flex-wrap: wrap; }
.ix-amc-price-now { font-family: var(--ix-font-heading); font-size: 17px; font-weight: 800; color: var(--ix-purple); }
.ix-amc-price-was { font-size: 12px; color: var(--ix-text-lighter); text-decoration: line-through; }
.ix-amc-pct       { font-size: 11px; font-weight: 700; color: var(--ix-red); background: var(--ix-red-light); padding: 1px 5px; border-radius: 4px; }
.ix-amc-ship      { font-size: 11px; color: var(--ix-green); font-weight: 500; }

/* Footer / botón */
.ix-amc-footer {
  padding: 10px 12px 12px;
  border-top: 1px solid var(--ix-border);
}
.ix-amc-btn {
  display: block; width: 100%;
  background: var(--ix-purple); color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 9px 12px; border-radius: var(--ix-r);
  text-align: center; transition: var(--ix-t);
  cursor: pointer; border: none;
}
.ix-amc-btn:hover { background: var(--ix-purple-dark); color: #fff; }

/* Responsive grid */
@media (max-width: 1100px) {
  ul.products.columns-4 { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  ul.products.columns-4,
  ul.products.columns-3 { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .ix-amc-body { padding: 10px; }
  .ix-amc-title { font-size: 12px; }
  .ix-amc-price-now { font-size: 15px; }
  .ix-amc-btn { font-size: 12px; padding: 8px; }
}
@media (max-width: 400px) {
  ul.products.columns-4,
  ul.products.columns-3,
  ul.products.columns-2 { grid-template-columns: repeat(2,1fr); gap: 8px; }
}

/* ============================================
   20. SINGLE PRODUCT PAGE — Amazon/Landing Style
============================================ */

/* ── Layout grid ── */
.ix-sp-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 0 24px;
  align-items: start;
}

/* ── Gallery (left) ── */
.ix-sp-gallery {
  position: sticky;
  top: 100px;
}
.ix-sp-gallery .woocommerce-product-gallery {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  border: 1px solid #eee;
  max-height: 560px;
}
.ix-sp-gallery .woocommerce-product-gallery__wrapper {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.ix-sp-gallery .woocommerce-product-gallery__image {
  height: 100%;
}
.ix-sp-gallery .woocommerce-product-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ix-sp-gallery .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  display: block;
}
.ix-sp-sale-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--ix-red);
  color: #fff;
  font-family: var(--ix-font-body);
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  padding: 4px 10px;
  z-index: 10;
  letter-spacing: .3px;
}

/* ── Info (right) ── */
.ix-sp-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Breadcrumb */
.ix-sp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ix-font-body);
  font-size: 13px;
  color: #888;
}
.ix-sp-breadcrumb a {
  color: var(--ix-purple);
  text-decoration: none;
  font-weight: 500;
}
.ix-sp-breadcrumb a:hover { text-decoration: underline; }

/* Pills */
.ix-sp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ix-sp-pill {
  background: var(--ix-purple-light);
  color: var(--ix-purple-dark);
  font-family: var(--ix-font-body);
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
  padding: 3px 11px;
  letter-spacing: .2px;
}

/* Title */
.ix-sp-title {
  font-family: var(--ix-font-heading);
  font-size: 26px;
  font-weight: 800;
  color: #111;
  line-height: 1.25;
  margin: 0;
}

/* Rating row */
.ix-sp-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ix-sp-stars {
  display: flex;
  gap: 2px;
}
.ix-star { font-size: 18px; line-height: 1; }
.ix-star--on  { color: #F59E0B; }
.ix-star--off { color: #D1D5DB; }
.ix-sp-rcount {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ix-font-body);
  font-size: 13px;
  color: var(--ix-purple);
  text-decoration: underline;
  padding: 0;
}
.ix-sp-rcount--none {
  font-family: var(--ix-font-body);
  font-size: 13px;
  color: #aaa;
  text-decoration: none;
}
.ix-sp-stock {
  font-family: var(--ix-font-body);
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  padding: 3px 10px;
}
.ix-sp-stock--ok  { background: var(--ix-green-light); color: var(--ix-green-dark); }
.ix-sp-stock--low { background: var(--ix-amber-light); color: #92400E; }
.ix-sp-stock--out { background: var(--ix-red-light);   color: #991B1B; }

/* Price block */
.ix-sp-price-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.ix-sp-price-main {
  font-family: var(--ix-font-heading);
  font-size: 34px;
  font-weight: 900;
  color: var(--ix-red);
  line-height: 1;
}
.ix-sp-price-was {
  font-family: var(--ix-font-body);
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
}
.ix-sp-price-badge {
  background: var(--ix-red);
  color: #fff;
  font-family: var(--ix-font-body);
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  padding: 4px 10px;
  letter-spacing: .3px;
}

/* ── Transfer box — KEY CONVERSION ELEMENT ── */
.ix-sp-transfer-box {
  background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
  border: 2px solid #10B981;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 16px rgba(16,185,129,.12);
}
.ix-sp-tb-top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ix-sp-tb-icon {
  font-size: 32px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(16,185,129,.3));
}
.ix-sp-tb-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ix-sp-tb-text strong {
  font-family: var(--ix-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #065F46;
  display: block;
}
.ix-sp-tb-text span {
  font-family: var(--ix-font-body);
  font-size: 12px;
  color: #059669;
}
.ix-sp-tb-pricing {
  text-align: right;
  flex-shrink: 0;
}
.ix-sp-tb-price {
  display: block;
  font-family: var(--ix-font-heading);
  font-size: 26px;
  font-weight: 900;
  color: #065F46;
  line-height: 1;
}
.ix-sp-tb-save {
  display: block;
  font-family: var(--ix-font-body);
  font-size: 12px;
  font-weight: 600;
  color: #059669;
  margin-top: 3px;
}
.ix-sp-tb-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  padding: 14px 20px;
  font-family: var(--ix-font-heading);
  font-size: 15px;
  font-weight: 700;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
  letter-spacing: .2px;
}
.ix-sp-tb-btn:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  color: #fff;
  text-decoration: none;
}
.ix-sp-tb-steps {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 4px;
}
.ix-sp-tb-steps span {
  font-family: var(--ix-font-body);
  font-size: 11px;
  color: #059669;
  font-weight: 500;
}
.ix-sp-tb-steps span:not(:nth-child(2n)) {
  background: rgba(16,185,129,.1);
  border-radius: 100px;
  padding: 3px 8px;
}

/* Short description */
.ix-sp-short-desc {
  font-family: var(--ix-font-body);
  font-size: 15px;
  color: #444;
  line-height: 1.65;
  border-left: 3px solid var(--ix-purple-light);
  padding-left: 12px;
}
.ix-sp-short-desc p { margin: 0 0 8px; }
.ix-sp-short-desc p:last-child { margin: 0; }

/* Trust bullets */
.ix-sp-bullets {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ix-sp-bullets li {
  font-family: var(--ix-font-body);
  font-size: 14px;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ix-sp-bullet--warn { color: #D97706 !important; font-weight: 600; }

/* Cart wrap */
.ix-sp-cart-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ix-sp-cart-wrap form.cart {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ix-sp-cart-wrap .qty {
  width: 80px;
  border: 1.5px solid #D1D5DB;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 16px;
  font-family: var(--ix-font-body);
  text-align: center;
}
.ix-sp-cart-wrap .single_add_to_cart_button {
  background: var(--ix-purple) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 16px 28px !important;
  font-family: var(--ix-font-heading) !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(124,58,237,.3);
  width: 100%;
  letter-spacing: .3px;
}
.ix-sp-cart-wrap .single_add_to_cart_button:hover {
  background: var(--ix-purple-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124,58,237,.4);
}

/* Trust bar */
.ix-sp-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 16px 12px;
  background: #FAFAFA;
}
.ix-sp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.ix-sp-trust-icon {
  font-size: 22px;
  line-height: 1;
}
.ix-sp-trust-item strong {
  font-family: var(--ix-font-body);
  font-size: 12px;
  font-weight: 700;
  color: #111;
  display: block;
}
.ix-sp-trust-item small {
  font-family: var(--ix-font-body);
  font-size: 11px;
  color: #888;
}

/* ── Tabs section ── */
.ix-sp-tabs-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 0;
  border-top: 1px solid #E5E7EB;
}
.ix-sp-tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #E5E7EB;
  margin-bottom: 28px;
}
.ix-tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  font-family: var(--ix-font-body);
  font-size: 15px;
  font-weight: 600;
  color: #777;
  padding: 12px 22px;
  transition: color .15s, border-color .15s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.ix-tab-btn:hover { color: var(--ix-purple); }
.ix-tab-btn.is-active {
  color: var(--ix-purple);
  border-bottom-color: var(--ix-purple);
}
.ix-tab-count {
  background: var(--ix-purple);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  padding: 1px 7px;
  line-height: 1.6;
}
.ix-tab-panel { display: none; }
.ix-tab-panel.is-active { display: block; }

.ix-sp-description {
  font-family: var(--ix-font-body);
  font-size: 15px;
  color: #374151;
  line-height: 1.75;
  max-width: 820px;
}
.ix-sp-description h2,
.ix-sp-description h3 { font-family: var(--ix-font-heading); color: #111; margin: 20px 0 10px; }
.ix-sp-description ul { padding-left: 20px; }
.ix-sp-description ul li { margin-bottom: 6px; }
.ix-sp-description p { margin: 0 0 12px; }

.ix-sp-specs-table {
  width: 100%;
  max-width: 680px;
  border-collapse: collapse;
  font-family: var(--ix-font-body);
  font-size: 14px;
}
.ix-sp-specs-table th,
.ix-sp-specs-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #E5E7EB;
  text-align: left;
}
.ix-sp-specs-table th {
  background: #F9FAFB;
  font-weight: 600;
  color: #374151;
  width: 38%;
}
.ix-sp-specs-table td { color: #111; }
.ix-sp-specs-table tr:last-child th,
.ix-sp-specs-table tr:last-child td { border-bottom: none; }
.ix-sp-empty-specs {
  font-family: var(--ix-font-body);
  font-size: 14px;
  color: #aaa;
  padding: 20px 0;
}

/* ── Related products ── */
.ix-sp-related {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 0 24px 48px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ix-sp-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 16px;
  }
  .ix-sp-gallery { position: static; }
  .ix-sp-title { font-size: 22px; }
  .ix-sp-trust { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ix-sp-price-main { font-size: 28px; }
  .ix-sp-trust { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 12px 8px; }
  .ix-sp-tabs-section { padding: 24px 0 0; }
  .ix-sp-related { padding: 0 12px 32px; }
  .ix-tab-btn { font-size: 13px; padding: 10px 14px; }
}

/* ============================================
   21. RICH PRODUCT DESCRIPTION COMPONENTS
============================================ */

/* Hero intro */
.ix-desc-hero {
  background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%);
  border-left: 5px solid var(--ix-purple);
  border-radius: 0 14px 14px 0;
  padding: 22px 26px;
  margin-bottom: 28px;
}
.ix-desc-hero h2 {
  font-family: var(--ix-font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--ix-purple-dark);
  margin: 0 0 8px;
}
.ix-desc-hero p {
  font-family: var(--ix-font-body);
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin: 0;
}

/* Section label */
.ix-sec-label {
  font-family: var(--ix-font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #111;
  margin: 24px 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ix-sec-label::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--ix-purple-light), transparent);
  border-radius: 1px;
}

/* Feature grid — cards */
.ix-feats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.ix-feat {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow .2s, border-color .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.ix-feat:hover {
  border-color: var(--ix-purple-light);
  box-shadow: 0 4px 16px rgba(124,58,237,.08);
}
.ix-feat-ico {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 2px;
}
.ix-feat b {
  font-family: var(--ix-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #111;
}
.ix-feat p {
  font-family: var(--ix-font-body);
  font-size: 13px;
  color: #555;
  line-height: 1.55;
  margin: 0;
}

/* 3-column feat variant */
.ix-feats-3 { grid-template-columns: repeat(3, 1fr); }

/* Callout box */
.ix-callout {
  background: #F0FDF4;
  border: 1.5px solid #86EFAC;
  border-radius: 12px;
  padding: 16px 20px;
  font-family: var(--ix-font-body);
  font-size: 14px;
  color: #166534;
  line-height: 1.6;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.ix-callout-ico { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.ix-callout b { font-weight: 700; color: #14532D; display: block; margin-bottom: 3px; }

.ix-callout--blue {
  background: #EFF6FF;
  border-color: #93C5FD;
  color: #1E40AF;
}
.ix-callout--blue b { color: #1E3A8A; }

.ix-callout--amber {
  background: #FFFBEB;
  border-color: #FCD34D;
  color: #92400E;
}
.ix-callout--amber b { color: #78350F; }

/* Visual specs grid */
.ix-specs-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.ix-spec-card {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.ix-spec-card span {
  font-family: var(--ix-font-body);
  font-size: 11px;
  font-weight: 600;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: .6px;
}
.ix-spec-card strong {
  font-family: var(--ix-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

/* Check list */
.ix-check-list {
  list-style: none;
  padding: 0; margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ix-check-list li {
  font-family: var(--ix-font-body);
  font-size: 14px;
  color: #374151;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.ix-check-list li::before {
  content: '✓';
  background: var(--ix-green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Two-column list */
.ix-check-list-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
}

/* Who-for box */
.ix-for-who {
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
  border: 1.5px solid #93C5FD;
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ix-for-who-ico { font-size: 32px; flex-shrink: 0; }
.ix-for-who-txt {}
.ix-for-who-txt b {
  font-family: var(--ix-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #1E40AF;
  display: block;
  margin-bottom: 5px;
}
.ix-for-who-txt p {
  font-family: var(--ix-font-body);
  font-size: 14px;
  color: #1E3A8A;
  line-height: 1.6;
  margin: 0;
}

/* Use cases pills */
.ix-use-cases {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.ix-use-case {
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 100px;
  padding: 6px 14px;
  font-family: var(--ix-font-body);
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Responsive */
@media (max-width: 640px) {
  .ix-feats, .ix-feats-3 { grid-template-columns: 1fr; }
  .ix-specs-cards { grid-template-columns: repeat(2, 1fr); }
  .ix-check-list-2 { grid-template-columns: 1fr; }
}


/* ── Section 22: URGENCY COUNTDOWN BAR ─────────────────────────────────── */
.ix-urgency-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #1E1B4B, #312E81);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(99,58,245,.25);
  transition: background .4s;
}
.ix-urgency-bar.ix-urg-hot {
  background: linear-gradient(135deg, #7F1D1D, #DC2626);
  animation: ix-pulse-red 1s ease-in-out infinite alternate;
}
@keyframes ix-pulse-red {
  from { box-shadow: 0 4px 14px rgba(220,38,38,.3); }
  to   { box-shadow: 0 4px 24px rgba(220,38,38,.6); }
}
.ix-urg-icon { font-size: 18px; flex-shrink: 0; }
.ix-urg-text { flex: 1; min-width: 120px; opacity: .9; }
.ix-urg-timer {
  font-size: 22px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
  background: rgba(255,255,255,.15);
  padding: 4px 12px;
  border-radius: 8px;
  flex-shrink: 0;
}
.ix-urg-people {
  font-size: 11px;
  opacity: .75;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .ix-urg-text { font-size: 12px; }
  .ix-urg-timer { font-size: 18px; }
  .ix-urg-people { width: 100%; }
}

/* ══════════════════════════════════════════════════════════════════
   23 · CATEGORY HERO BANNER (archive-product.php)
══════════════════════════════════════════════════════════════════ */
.ix-cat-hero {
  position: relative;
  min-height: 380px;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ix-cat-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.60) 50%,
    rgba(0,0,0,.35) 100%
  );
  z-index: 1;
}
.ix-cat-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 24px;
  width: 100%;
}
.ix-cat-hero-content {
  flex: 1;
  max-width: 620px;
}
.ix-cat-hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 16px;
}
.ix-cat-hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.ix-cat-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.88);
  margin: 0 0 28px;
  line-height: 1.5;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.ix-cat-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.ix-cat-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, filter .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.ix-cat-hero-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 8px 28px rgba(0,0,0,.4);
  color: #fff;
}
.ix-cat-hero-all {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.ix-cat-hero-all:hover { color: #fff; }

/* Trust pills (right side of hero) */
.ix-cat-hero-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.ix-cat-ht {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  padding: 10px 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* ── Toolbar (result count + sort) ── */
.ix-cat-body { padding: 40px 0 60px; }
.ix-cat-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.ix-cat-toolbar .woocommerce-result-count {
  font-size: 14px;
  color: var(--ix-muted, #6B7280);
  margin: 0;
}
.ix-cat-toolbar .woocommerce-ordering select {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 14px;
  background: #fff;
  cursor: pointer;
}

/* ── Inline CTA banner (below products) ── */
.ix-cat-inline-cta {
  margin-top: 48px;
  border-radius: 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--cta-color,#6C3FF5) 15%, #f8f9fa), #fff);
  border: 1.5px solid color-mix(in srgb, var(--cta-color,#6C3FF5) 25%, #E5E7EB);
  overflow: hidden;
}
.ix-cat-inline-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 40px;
  flex-wrap: wrap;
}
.ix-cta-title {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 6px;
}
.ix-cta-sub {
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}
.ix-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform .2s, filter .2s;
}
.ix-cta-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  color: #fff;
}

/* ── Sticky CTA bar (mobile) ── */
.ix-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--sc-color,#6C3FF5), color-mix(in srgb, var(--sc-color,#6C3FF5) 70%, #000));
  color: #fff;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
}
.ix-sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--sc-color,#6C3FF5);
  font-weight: 800;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform .2s;
}
.ix-sticky-cta-btn:hover { transform: scale(1.04); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .ix-cat-hero-trust { display: none; }
  .ix-cat-hero-inner { padding: 48px 20px; }
  .ix-cat-inline-cta-inner { flex-direction: column; text-align: center; padding: 28px 24px; }
}
@media (max-width: 600px) {
  .ix-cat-hero { min-height: 320px; }
  .ix-cat-hero-title { font-size: 28px; }
  .ix-cat-hero-sub { font-size: 15px; }
  .ix-cat-hero-btns { gap: 10px; }
  .ix-cat-hero-cta { padding: 12px 22px; font-size: 14px; }
  .ix-sticky-cta { display: flex; }
}
