/*
Theme Name: AeroCompra
Theme URI: https://aerocompra.com
Description: Tema personalizado ultra liviano para AeroCompra. WooCommerce optimizado. Sin Elementor.
Author: AeroCompra
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
WC requires at least: 8.0
WC tested up to: 9.0
Text Domain: aerocompra
Tags: woocommerce, ecommerce, custom
*/

/* ============================================================
   VARIABLES GLOBALES
   ============================================================ */
:root {
  --ac-blue:        #2563EB;
  --ac-blue-dark:   #1D4ED8;
  --ac-blue-deeper: #1E40AF;
  --ac-yellow:      #FFD700;
  --ac-yellow-dark: #FFC200;
  --ac-dark:        #1a1a2e;
  --ac-dark-2:      #16213e;
  --ac-red:         #EF4444;
  --ac-green:       #10B981;
  --ac-purple:      #7C3AED;
  --ac-text:        #111827;
  --ac-text-muted:  #6B7280;
  --ac-text-light:  #9CA3AF;
  --ac-bg:          #F5F5F5;
  --ac-white:       #FFFFFF;
  --ac-border:      #E5E7EB;
  --ac-border-light:#F0F0F0;
  --ac-radius-sm:   6px;
  --ac-radius:      10px;
  --ac-radius-lg:   14px;
  --ac-shadow:      0 2px 8px rgba(0,0,0,0.08);
  --ac-shadow-hover:0 6px 20px rgba(37,99,235,0.14);
  --ac-font:        'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ac-container:   1280px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--ac-font);
  background: var(--ac-bg);
  color: var(--ac-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ac-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
button, input, select, textarea { font-family: var(--ac-font); }

.ac-container {
  max-width: var(--ac-container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.ac-topbar {
  background: var(--ac-dark);
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.ac-topbar a {
  color: var(--ac-yellow);
  font-weight: 700;
  text-decoration: none;
}
.ac-topbar a:hover { text-decoration: underline; }

/* ============================================================
   HEADER
   ============================================================ */
.ac-header {
  background: linear-gradient(135deg, var(--ac-blue) 0%, var(--ac-blue-dark) 60%, var(--ac-blue-deeper) 100%);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

/* Logo */
.ac-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.ac-logo__icon {
  background: var(--ac-yellow);
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  font-weight: 900;
  color: var(--ac-blue-dark);
}
.ac-logo__name {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.1;
}
.ac-logo__sub {
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* Search */
.ac-search {
  flex: 1;
  display: flex;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  height: 42px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.ac-search__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 16px;
  font-size: 14px;
  color: var(--ac-text);
  font-weight: 500;
}
.ac-search__input::placeholder { color: var(--ac-text-light); font-weight: 400; }
.ac-search__btn {
  background: var(--ac-yellow);
  border: none;
  padding: 0 18px;
  cursor: pointer;
  font-size: 16px;
  color: var(--ac-blue-dark);
  font-weight: 800;
  transition: background 0.15s;
}
.ac-search__btn:hover { background: var(--ac-yellow-dark); }

/* Header actions */
.ac-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.ac-btn-login {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.ac-btn-login:hover { background: rgba(255,255,255,0.22); }
.ac-btn-cart {
  background: var(--ac-yellow);
  border: none;
  color: var(--ac-blue-dark);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  display: flex; align-items: center; gap: 7px;
  transition: background 0.15s;
  text-decoration: none;
}
.ac-btn-cart:hover { background: var(--ac-yellow-dark); text-decoration: none; color: var(--ac-blue-dark); }
.ac-cart-count {
  background: var(--ac-red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  min-width: 18px; height: 18px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}

/* ============================================================
   NAVIGATION (category bar)
   ============================================================ */
.ac-nav {
  background: var(--ac-blue-deeper);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ac-nav__inner {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 2px;
  padding: 0 16px;
}
.ac-nav__inner::-webkit-scrollbar { display: none; }
.ac-nav__item {
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 14px;
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 2.5px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-decoration: none;
  display: inline-block;
}
.ac-nav__item:hover,
.ac-nav__item.current-menu-item,
.ac-nav__item:focus {
  color: var(--ac-yellow);
  border-bottom-color: var(--ac-yellow);
  text-decoration: none;
}

/* ============================================================
   HERO BANNER
   ============================================================ */
.ac-hero {
  background: linear-gradient(135deg, var(--ac-dark) 0%, var(--ac-dark-2) 50%, #0f3460 100%);
  padding: 48px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.ac-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.ac-hero__content { flex: 1; position: relative; z-index: 1; }
.ac-hero__badge {
  background: var(--ac-red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  animation: ac-pulse 2.5s ease-in-out infinite;
}
@keyframes ac-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.45); }
  50% { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
}
.ac-hero__title {
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
}
.ac-hero__title span { color: var(--ac-yellow); }
.ac-hero__subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.55;
}
.ac-hero__cta {
  background: var(--ac-yellow);
  color: var(--ac-blue-dark);
  border: none;
  padding: 13px 30px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: inline-block;
  transition: background 0.15s, transform 0.15s;
  text-decoration: none;
}
.ac-hero__cta:hover { background: var(--ac-yellow-dark); transform: translateY(-2px); text-decoration: none; color: var(--ac-blue-dark); }
.ac-hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
}
.ac-hero__stat-num { color: var(--ac-yellow); font-size: 24px; font-weight: 900; }
.ac-hero__stat-lbl { color: rgba(255,255,255,0.45); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; }
.ac-hero__visual {
  width: 220px; height: 220px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  border: 2px solid rgba(255,215,0,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 90px;
  flex-shrink: 0;
  position: relative; z-index: 1;
}

/* ============================================================
   PROMO STRIP
   ============================================================ */
.ac-promo-strip {
  background: var(--ac-white);
  border-bottom: 1px solid var(--ac-border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ac-promo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-right: 1px solid var(--ac-border-light);
  cursor: default;
  transition: background 0.15s;
}
.ac-promo-item:last-child { border-right: none; }
.ac-promo-item:hover { background: #fafafa; }
.ac-promo-item__icon {
  font-size: 22px;
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ac-promo-item__label { font-size: 11px; font-weight: 600; color: var(--ac-text-muted); }
.ac-promo-item__value { font-size: 13px; font-weight: 800; color: var(--ac-text); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.ac-section {
  padding: 24px 0 8px;
}
.ac-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.ac-section__title {
  font-size: 19px;
  font-weight: 900;
  color: var(--ac-text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ac-section__title::before {
  content: '';
  width: 4px; height: 22px;
  background: var(--ac-blue);
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
}
.ac-section__link {
  font-size: 13px;
  color: var(--ac-blue);
  font-weight: 700;
}
.ac-section__link:hover { text-decoration: underline; }

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.ac-cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 8px;
}
@media (max-width: 900px) { .ac-cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .ac-cat-grid { grid-template-columns: repeat(2, 1fr); } }

.ac-cat-card {
  background: var(--ac-white);
  border-radius: var(--ac-radius-lg);
  padding: 18px 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: 1.5px solid var(--ac-border-light);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-align: center;
  text-decoration: none;
  color: inherit;
}
.ac-cat-card:hover {
  border-color: var(--ac-blue);
  box-shadow: var(--ac-shadow-hover);
  transform: translateY(-3px);
  text-decoration: none;
  color: inherit;
}
.ac-cat-card__icon { font-size: 32px; line-height: 1; }
.ac-cat-card__name { font-size: 12px; font-weight: 800; color: var(--ac-text); line-height: 1.25; }
.ac-cat-card__count { font-size: 10px; color: var(--ac-text-light); font-weight: 600; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.ac-prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 8px;
}
@media (max-width: 1100px) { .ac-prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .ac-prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .ac-prod-grid { grid-template-columns: 1fr; } }

.ac-prod-card {
  background: var(--ac-white);
  border-radius: var(--ac-radius-lg);
  border: 1.5px solid var(--ac-border-light);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.ac-prod-card:hover {
  border-color: var(--ac-blue);
  box-shadow: var(--ac-shadow-hover);
  transform: translateY(-3px);
}
.ac-prod-card__badge {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  z-index: 2;
}
.badge-sale    { background: var(--ac-red);    color: #fff; }
.badge-new     { background: #10B981;           color: #fff; }
.badge-popular { background: var(--ac-yellow); color: var(--ac-blue-dark); }

/* WooCommerce: product image */
.ac-prod-card__img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  overflow: hidden;
}
.ac-prod-card__img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.3s;
}
.ac-prod-card:hover .ac-prod-card__img img { transform: scale(1.05); }

.ac-prod-card__body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.ac-prod-card__brand { font-size: 10px; color: var(--ac-text-light); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.ac-prod-card__name {
  font-size: 13px; font-weight: 700; color: var(--ac-text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
  flex: 1;
}
.ac-prod-card__name a { color: inherit; text-decoration: none; }
.ac-prod-card__name a:hover { color: var(--ac-blue); }

/* Star ratings */
.ac-prod-card__rating { display: flex; align-items: center; gap: 5px; margin-bottom: 10px; }
.ac-stars { color: #F59E0B; font-size: 12px; letter-spacing: 1px; }
.ac-rating-count { font-size: 11px; color: var(--ac-text-light); font-weight: 600; }

/* Price */
.ac-prod-card__price { margin-bottom: 6px; }
.ac-price-old { font-size: 12px; color: var(--ac-text-light); text-decoration: line-through; font-weight: 600; display: block; }
.ac-price-current { font-size: 22px; font-weight: 900; color: var(--ac-text); line-height: 1.1; }
.ac-price-current ins { text-decoration: none; }
.ac-price-discount {
  display: inline-block;
  background: #DCFCE7; color: #16A34A;
  font-size: 10px; font-weight: 800;
  padding: 2px 7px; border-radius: 5px;
  margin-left: 6px; vertical-align: middle;
}

.ac-prod-card__shipping { font-size: 12px; color: var(--ac-green); font-weight: 700; margin-bottom: 12px; }

/* Add to cart */
.ac-prod-card__add .button,
.ac-prod-card__add a.button {
  display: block; width: 100%;
  background: var(--ac-blue);
  color: #fff;
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s;
  text-decoration: none;
}
.ac-prod-card__add .button:hover,
.ac-prod-card__add a.button:hover {
  background: var(--ac-blue-dark);
  text-decoration: none;
  color: #fff;
}
.ac-prod-card__add .added_to_cart { display: none; }

/* ============================================================
   PROMO BANNER (inline)
   ============================================================ */
.ac-banner {
  background: linear-gradient(135deg, var(--ac-purple) 0%, #5B21B6 100%);
  border-radius: var(--ac-radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 8px 0 24px;
  position: relative;
  overflow: hidden;
}
.ac-banner::after {
  content: '🎁';
  position: absolute;
  right: 200px; top: 50%;
  transform: translateY(-50%);
  font-size: 64px;
  opacity: 0.22;
  pointer-events: none;
}
.ac-banner__title { color: #fff; font-size: 22px; font-weight: 900; margin-bottom: 6px; }
.ac-banner__sub   { color: rgba(255,255,255,0.7); font-size: 13px; line-height: 1.5; }
.ac-banner__cta {
  background: var(--ac-yellow);
  color: var(--ac-purple);
  border: none;
  padding: 13px 28px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.15s, background 0.15s;
  text-decoration: none;
  display: inline-block;
}
.ac-banner__cta:hover { background: var(--ac-yellow-dark); transform: scale(1.04); text-decoration: none; color: var(--ac-purple); }

/* ============================================================
   SINGLE PRODUCT PAGE
   ============================================================ */
.ac-single-product { padding: 28px 0; }
.ac-single-product .product_title { font-size: 26px; font-weight: 900; margin-bottom: 12px; }
.ac-single-product .price { font-size: 28px; font-weight: 900; color: var(--ac-text); }
.ac-single-product .price del { font-size: 18px; color: var(--ac-text-light); }
.ac-single-product .price ins { text-decoration: none; }
.ac-single-product .woocommerce-product-gallery { border-radius: var(--ac-radius-lg); overflow: hidden; }
.ac-single-product .single_add_to_cart_button {
  background: var(--ac-blue) !important;
  color: #fff !important;
  border-radius: 9px !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  padding: 14px 32px !important;
  border: none !important;
  transition: background 0.15s !important;
}
.ac-single-product .single_add_to_cart_button:hover { background: var(--ac-blue-dark) !important; }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.ac-breadcrumb {
  padding: 10px 0;
  font-size: 12px;
  color: var(--ac-text-muted);
}
.ac-breadcrumb a { color: var(--ac-text-muted); }
.ac-breadcrumb a:hover { color: var(--ac-blue); }
.woocommerce-breadcrumb { font-size: 12px; color: var(--ac-text-muted); padding: 8px 0; }

/* ============================================================
   WOOCOMMERCE OVERRIDES
   ============================================================ */
.woocommerce ul.products li.product { margin: 0; padding: 0; float: none; width: auto; }
.woocommerce ul.products { display: contents; }
.woocommerce-loop-product__title { font-size: 13px !important; font-weight: 700 !important; }
.woocommerce span.onsale { background: var(--ac-red) !important; border-radius: 5px !important; font-size: 11px !important; font-weight: 800 !important; }
.woocommerce .button { background: var(--ac-blue); color: #fff; border-radius: 8px; font-weight: 700; }
.woocommerce .button:hover { background: var(--ac-blue-dark); color: #fff; }
.woocommerce-message, .woocommerce-info { border-top-color: var(--ac-blue) !important; }
.woocommerce-message::before { color: var(--ac-blue) !important; }
.woocommerce-checkout #payment { border-radius: var(--ac-radius-lg); }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  border-radius: var(--ac-radius) !important;
  border: 1.5px solid var(--ac-border) !important;
  padding: 10px 14px !important;
  font-family: var(--ac-font) !important;
  font-size: 14px !important;
  transition: border-color 0.15s;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--ac-blue) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.ac-pagination, .woocommerce-pagination {
  display: flex; justify-content: center; gap: 6px;
  padding: 24px 0;
  flex-wrap: wrap;
}
.ac-pagination a, .ac-pagination span,
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--ac-white);
  border: 1.5px solid var(--ac-border);
  font-size: 13px; font-weight: 700;
  color: var(--ac-text);
  text-decoration: none;
  transition: all 0.15s;
}
.ac-pagination a:hover,
.woocommerce-pagination ul li a:hover { border-color: var(--ac-blue); color: var(--ac-blue); }
.ac-pagination .current,
.woocommerce-pagination ul li span.current {
  background: var(--ac-blue); color: #fff; border-color: var(--ac-blue);
}

/* ============================================================
   FOOTER
   ============================================================ */
.ac-footer {
  background: var(--ac-dark);
  color: rgba(255,255,255,0.45);
  padding: 40px 24px 20px;
  margin-top: 32px;
}
.ac-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
}
@media (max-width: 900px) { .ac-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .ac-footer__grid { grid-template-columns: 1fr; } }

.ac-footer__logo { color: var(--ac-yellow); font-size: 19px; font-weight: 900; margin-bottom: 10px; }
.ac-footer__desc { font-size: 12px; line-height: 1.65; }
.ac-footer__col h4 {
  color: rgba(255,255,255,0.8); font-size: 12px; font-weight: 800;
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.6px;
}
.ac-footer__col a {
  display: block; font-size: 12px;
  color: rgba(255,255,255,0.38); margin-bottom: 7px;
  transition: color 0.15s;
}
.ac-footer__col a:hover { color: var(--ac-yellow); text-decoration: none; }
.ac-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 16px;
  font-size: 11px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.ac-footer__pay { display: flex; gap: 8px; flex-wrap: wrap; }
.ac-pay-badge {
  background: rgba(255,255,255,0.07);
  padding: 4px 10px; border-radius: 5px;
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   RESPONSIVE — MOBILE NAV & HEADER
   ============================================================ */
@media (max-width: 768px) {
  .ac-header { flex-wrap: wrap; padding: 10px 14px; gap: 10px; }
  .ac-search { order: 3; flex-basis: 100%; }
  .ac-topbar { font-size: 11px; flex-direction: column; gap: 2px; text-align: center; }
  .ac-hero { flex-direction: column; padding: 32px 20px; }
  .ac-hero__visual { width: 140px; height: 140px; font-size: 56px; }
  .ac-hero__title { font-size: 26px; }
  .ac-promo-strip { grid-template-columns: repeat(2, 1fr); }
  .ac-banner { flex-direction: column; text-align: center; }
  .ac-banner::after { display: none; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.ac-mt-0 { margin-top: 0 !important; }
.ac-mb-24 { margin-bottom: 24px; }
.ac-text-center { text-align: center; }
.ac-hidden { display: none !important; }

/* Smooth image fade-in on load */
.ac-prod-card__img img { opacity: 0; transition: opacity 0.4s; }
.ac-prod-card__img img.loaded { opacity: 1; }
