/* ═══════════════════════════════════════════════════════════
   FRANK SHOP — ESTILOS PRINCIPALES
   Inspirado en Apple Store: limpio, premium, minimalista
═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --white:       #ffffff;
  --gray-50:     #f5f5f7;
  --gray-100:    #f2f2f7;
  --gray-200:    #e5e5ea;
  --gray-300:    #d1d1d6;
  --gray-400:    #aeaeb2;
  --gray-500:    #8e8e93;
  --gray-700:    #3a3a3c;
  --gray-900:    #1d1d1f;
  --black:       #000000;
  --blue:        #0071e3;
  --blue-hover:  #0077ed;
  --blue-light:  #e8f4fd;
  --green:       #34c759;
  --orange:      #ff9500;
  --red:         #ff3b30;
  --whatsapp:    #25d366;

  --font-main:   'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  --navbar-h:    64px;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow-md:   0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.12);
  --shadow-xl:   0 24px 64px rgba(0,0,0,.14);

  --transition:  all .28s cubic-bezier(.4,0,.2,1);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select { font-family: inherit; }

/* ─── UTILS ──────────────────────────────────────────────── */
.hide-mobile { display: inline; }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--navbar-h);
  z-index: 1000;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: var(--shadow-sm);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 85px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -.3px;
}
.logo-slogan {
  font-size: 11px;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: .5px;
}

/* Menú */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--gray-900); background: var(--gray-100); }
.nav-link.active { color: var(--blue); }
.nav-admin { color: var(--blue); }
.nav-admin i { margin-right: 4px; }

/* Acciones navbar */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Buscador */
.search-wrapper { position: relative; }
.search-toggle {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  color: var(--gray-700);
  font-size: 16px;
  transition: var(--transition);
}
.search-toggle:hover { background: var(--gray-100); color: var(--gray-900); }

.search-input-box {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%) scaleX(0);
  transform-origin: right center;
  display: flex; align-items: center;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  padding: 0 14px;
  width: 0;
  opacity: 0;
  transition: var(--transition);
  overflow: hidden;
}
.search-input-box.active {
  width: 260px;
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}
.search-icon-inner { color: var(--gray-500); font-size: 14px; flex-shrink: 0; }
.search-input-box input {
  flex: 1;
  border: none;
  background: none;
  padding: 9px 10px;
  font-size: 14px;
  color: var(--gray-900);
  outline: none;
}
.search-close {
  color: var(--gray-500);
  font-size: 14px;
  padding: 4px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  flex-shrink: 0;
}
.search-close:hover { color: var(--gray-900); }

/* Dropdown búsqueda */
.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 24px;
  width: 340px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  display: none;
  z-index: 999;
}
.search-dropdown.visible { display: block; }
.search-drop-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: var(--transition);
}
.search-drop-item:hover { background: var(--gray-50); }
.search-drop-item img {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--gray-100);
  flex-shrink: 0;
}
.search-drop-info { flex: 1; min-width: 0; }
.search-drop-name { font-size: 13px; font-weight: 500; color: var(--gray-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-drop-price { font-size: 12px; color: var(--blue); font-weight: 600; margin-top: 2px; }
.search-drop-empty { padding: 24px; text-align: center; color: var(--gray-500); font-size: 14px; }

/* Botón WhatsApp navbar */
.btn-whatsapp {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #1dba57; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,.35); }
.btn-whatsapp i { font-size: 15px; }

/* Botón carrito */
.btn-cart {
  position: relative;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  color: var(--gray-700);
  font-size: 18px;
  transition: var(--transition);
}
.btn-cart:hover { background: var(--gray-100); color: var(--gray-900); }
.cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 18px; height: 18px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  transform: scale(0);
  transition: transform .2s cubic-bezier(.34,1.56,.64,1);
}
.cart-badge.visible { transform: scale(1); }

/* Menú móvil toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  flex-shrink: 0;
  padding: 0;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  transition: var(--transition);
  box-sizing: border-box;
}
.menu-toggle:hover,
.menu-toggle.open { background: var(--gray-200); }
.menu-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ═══════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(105deg,
      rgba(0,0,0,.40) 0%,
      rgba(0,0,0,.15) 55%,
      rgba(0,0,0,.10) 100%),
    url('accesorios.PNG')
    center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--navbar-h);
}

.hero-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 100px 24px 120px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 6px 14px;
  background: rgba(0,113,227,.15);
  border: 1px solid rgba(0,113,227,.3);
  border-radius: var(--radius-full);
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.919);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  justify-content: center;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--blue);
}
.btn-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,113,227,.4);
}
.btn-primary i { font-size: 14px; transition: transform .2s; }
.btn-primary:hover i { transform: translateX(3px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,.3);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}

/* Stats hero */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
}
.hero-stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.877);
  font-weight: 400;
  margin-top: 2px;
  display: block;
}
.hero-stat-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,.15);
}

/* Hero visual — oculto */
.hero-visual { display: none; }


/* ═══════════════════════════════════════════════════════════
   SECCIONES — HELPERS COMUNES
═══════════════════════════════════════════════════════════ */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -1px;
  line-height: 1.15;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.section-desc {
  color: var(--gray-500);
  font-size: 16px;
  margin-top: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}


/* ═══════════════════════════════════════════════════════════
   CATEGORÍAS RÁPIDAS
═══════════════════════════════════════════════════════════ */
.categories-section { background: var(--gray-50); }

.categories-grid {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  min-width: 110px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.category-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.category-card.active {
  border-color: var(--blue);
  background: var(--blue-light);
}
.category-card.active .cat-icon { background: var(--blue); color: var(--white); }
.category-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}
.category-card.active span { color: var(--blue); }

.cat-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--gray-700);
  transition: var(--transition);
  overflow: hidden;
  flex-shrink: 0;
}
.cat-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}


/* ═══════════════════════════════════════════════════════════
   CATÁLOGO DE PRODUCTOS
═══════════════════════════════════════════════════════════ */
.catalog-section { background: var(--white); }

/* Toolbar */
.catalog-toolbar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.catalog-search {
  flex: 1;
  min-width: 200px;
  max-width: 400px;
  display: flex; align-items: center;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  padding: 0 16px;
  border: 2px solid transparent;
  transition: var(--transition);
}
.catalog-search:focus-within {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0,113,227,.08);
}
.catalog-search i { color: var(--gray-500); font-size: 15px; flex-shrink: 0; }
.catalog-search input {
  flex: 1;
  border: none;
  background: none;
  padding: 11px 10px;
  font-size: 14px;
  color: var(--gray-900);
  outline: none;
}
.catalog-sort select {
  padding: 11px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 14px;
  color: var(--gray-700);
  background: var(--white);
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}
.catalog-sort select:focus { border-color: var(--blue); }
.catalog-count { font-size: 14px; color: var(--gray-500); margin-left: auto; white-space: nowrap; }

/* Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* Tarjeta de producto */
.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-image-wrap {
  aspect-ratio: 1;
  background: var(--gray-50);
  overflow: hidden;
  position: relative;
}
.product-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-image-wrap img { transform: scale(1.06); }

/* Placeholder imagen cuando no hay foto */
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  color: var(--gray-400);
}
.product-img-placeholder i { font-size: 48px; }
.product-img-placeholder span { font-size: 12px; font-weight: 500; }

/* Tags */
.product-tags {
  position: absolute;
  top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.product-tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-full);
  letter-spacing: .3px;
  text-transform: uppercase;
}
.tag-nuevo { background: var(--blue); color: var(--white); }
.tag-oferta { background: var(--red); color: var(--white); }
.tag-pocas  { background: var(--orange); color: var(--white); }

/* Add to cart rápido */
.product-quick-add {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 36px; height: 36px;
  background: var(--blue);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 16px;
  opacity: 0;
  transform: scale(0.7);
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0,113,227,.4);
}
.product-card:hover .product-quick-add { opacity: 1; transform: scale(1); }
.product-quick-add:hover { background: var(--blue-hover); transform: scale(1.1) !important; }

.product-info {
  padding: 16px 18px 20px;
}
.product-category-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
}
.product-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 8px;
}
.product-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}
.product-price-detail {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
}
.product-price-mayoreo {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
}
.product-price-mayoreo span { font-weight: 400; color: var(--gray-500); }

.product-mayoreo-hint {
  font-size: 11px;
  color: var(--green);
  font-weight: 500;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── Selector de modelos en card ── */
.product-models {
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.models-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.models-chips-select {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.model-select-chip {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gray-300);
  color: var(--gray-700);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.model-select-chip:hover { border-color: var(--blue); color: var(--blue); }
.model-select-chip.selected {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* ── Selector de modelos en modal ── */
#pmodalModels {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  margin-bottom: 4px;
}
.pmodal-models-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 5px;
}
.pmodal-models-label i { color: var(--blue); }
.pmodal-models-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pmodal-model-chip {
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gray-300);
  color: var(--gray-700);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.pmodal-model-chip:hover { border-color: var(--blue); color: var(--blue); }
.pmodal-model-chip.selected {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* ── Modelo en ítem del carrito ── */
.cart-item-model {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
}

.product-stock {
  font-size: 12px;
  color: var(--gray-500);
  display: flex; align-items: center; gap: 4px;
}
.product-stock i { font-size: 10px; }
.stock-ok { color: var(--green); }
.stock-low { color: var(--orange); }
.stock-out { color: var(--red); }

/* Qty selector en tarjeta */
.product-add-row {
  display: flex; align-items: center; gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}
.qty-control {
  display: flex; align-items: center;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.qty-btn {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--gray-700);
  transition: var(--transition);
}
.qty-btn:hover { background: var(--gray-200); color: var(--gray-900); }
.qty-input {
  width: 36px;
  text-align: center;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  outline: none;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

@media (max-width: 768px) {
  .qty-input {
    width: 52px;
    font-size: 16px; /* evita zoom automático en iOS */
    padding: 4px 0;
    min-height: 36px;
  }
  .qty-btn {
    width: 36px;
    height: 36px;
    min-height: 36px;
  }
}
.btn-add-cart {
  flex: 1;
  padding: 9px 14px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
}
.btn-add-cart:hover { background: var(--blue-hover); transform: translateY(-1px); }
.btn-add-cart.added {
  background: var(--green);
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--gray-400);
}
.empty-state i { font-size: 56px; display: block; margin-bottom: 16px; }
.empty-state h3 { font-size: 22px; font-weight: 600; color: var(--gray-700); margin-bottom: 8px; }
.empty-state p { font-size: 15px; color: var(--gray-500); }


/* ═══════════════════════════════════════════════════════════
   CONTACTO
═══════════════════════════════════════════════════════════ */
.contact-section { background: var(--gray-50); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 14px; }

.contact-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
  transform: translateX(4px);
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.whatsapp-icon { background: rgba(37,211,102,.12); color: var(--whatsapp); }
.location-icon { background: var(--blue-light); color: var(--blue); }
.hours-icon { background: rgba(255,149,0,.1); color: var(--orange); }

.contact-details { flex: 1; min-width: 0; }
.contact-label { font-size: 11px; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: .5px; display: block; }
.contact-value { font-size: 15px; font-weight: 600; color: var(--gray-900); display: block; margin: 2px 0; }
.contact-sub { font-size: 13px; color: var(--blue); font-weight: 500; display: block; }
.contact-arrow { color: var(--gray-400); font-size: 14px; flex-shrink: 0; }

/* Mapa */
.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-placeholder {
  aspect-ratio: 4/3;
  background: var(--gray-200);
  display: flex;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.map-placeholder-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray-500);
  background:
    linear-gradient(rgba(245,245,247,.95), rgba(245,245,247,.95)),
    repeating-linear-gradient(0deg, transparent, transparent 40px, var(--gray-300) 40px, var(--gray-300) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, var(--gray-300) 40px, var(--gray-300) 41px);
}
.map-placeholder-inner i { font-size: 40px; color: var(--gray-400); }
.map-placeholder-inner p { font-size: 14px; font-weight: 600; color: var(--gray-700); }
.map-placeholder-inner span { font-size: 13px; color: var(--gray-500); }
.map-btn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 8px;
  padding: 10px 20px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}
.map-btn:hover { background: var(--blue-hover); transform: translateY(-2px); }


/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.7);
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.footer-logo { height: 32px; width: auto; object-fit: contain; filter: brightness(0) invert(1) opacity(.8); }
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.footer-name { font-size: 14px; font-weight: 700; color: var(--white); }
.footer-slogan { font-size: 11px; color: var(--blue); font-weight: 500; }
.footer-desc { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  align-self: flex-start;
  transition: var(--transition);
}
.footer-whatsapp:hover { background: #1dba57; }
.footer-links h4 { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 16px; letter-spacing: .5px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap; gap: 8px;
}
.footer-credit {
  color: rgba(255,255,255,.45);
  font-size: 12px;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.footer-credit:hover {
  color: var(--blue);
  border-color: var(--blue);
}


/* ═══════════════════════════════════════════════════════════
   CARRITO LATERAL
═══════════════════════════════════════════════════════════ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.cart-overlay.visible { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 400px; max-width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -20px 0 60px rgba(0,0,0,.12);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-100);
}
.cart-header h3 {
  font-size: 18px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  color: var(--gray-900);
}
.cart-header h3 i { color: var(--blue); }
.cart-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  color: var(--gray-500);
  font-size: 16px;
  transition: var(--transition);
}
.cart-close:hover { background: var(--gray-100); color: var(--gray-900); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}
.cart-body::-webkit-scrollbar { width: 4px; }
.cart-body::-webkit-scrollbar-track { background: transparent; }
.cart-body::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 4px; }

.cart-items { display: flex; flex-direction: column; gap: 14px; }

.cart-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.cart-item:hover { background: var(--gray-100); }

.cart-item-img {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  background: var(--gray-200);
  overflow: hidden;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--gray-400);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 14px; font-weight: 600; color: var(--gray-900); line-height: 1.3; margin-bottom: 4px; }
.cart-item-price { font-size: 15px; font-weight: 700; color: var(--blue); }
.cart-item-unit { font-size: 12px; color: var(--gray-500); }

.cart-mayoreo-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: var(--green);
  padding: 2px 7px;
  border-radius: 20px;
}
.cart-mayoreo-hint {
  margin-top: 4px;
  font-size: 11px;
  color: var(--orange);
  font-weight: 500;
  line-height: 1.3;
}

.cart-item-controls {
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.cart-item-qty {
  display: flex; align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.cart-qty-btn {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--gray-700);
  transition: var(--transition);
}
.cart-qty-btn:hover { background: var(--gray-100); color: var(--gray-900); }
.cart-qty-value {
  min-width: 28px; text-align: center;
  font-size: 14px; font-weight: 600;
  color: var(--gray-900);
}
.cart-item-remove {
  color: var(--gray-400);
  font-size: 14px;
  transition: var(--transition);
  padding: 4px;
}
.cart-item-remove:hover { color: var(--red); }

.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 200px;
  color: var(--gray-400);
  text-align: center;
  gap: 8px;
}
.cart-empty i { font-size: 48px; }
.cart-empty p { font-size: 16px; font-weight: 600; color: var(--gray-600); margin-top: 4px; }
.cart-empty span { font-size: 13px; }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--gray-100);
  display: flex; flex-direction: column; gap: 12px;
}
.cart-summary {}
.cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px;
}
.cart-total-row span:first-child { color: var(--gray-600); }
.cart-total-row span:last-child { font-weight: 700; color: var(--gray-900); font-size: 20px; }

.cart-note {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 12px; color: var(--gray-500);
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  line-height: 1.5;
}
.cart-note i { flex-shrink: 0; margin-top: 1px; }

/* Nota del cliente al vendedor */
.cart-customer-note {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cart-customer-note label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 5px;
}
.cart-customer-note label i { color: var(--blue); font-size: 13px; }
.cart-customer-note textarea {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  font-size: 13px;
  font-family: var(--font-main);
  color: var(--gray-900);
  background: var(--gray-50);
  resize: none;
  outline: none;
  line-height: 1.5;
  transition: border-color .2s ease, background .2s ease;
}
.cart-customer-note textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}
.cart-customer-note textarea::placeholder { color: var(--gray-400); }

.btn-whatsapp-order {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
}
.btn-whatsapp-order:hover { background: #1dba57; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.35); }

.btn-clear-cart {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px;
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.btn-clear-cart:hover { color: var(--red); background: rgba(255,59,48,.06); }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  /* ── Navbar móvil ── */
  .navbar {
    height: 60px;
    overflow: visible;
  }
  .navbar-container {
    padding: 0 16px;
    gap: 0;                  /* sin gap, el logo queda izq y actions queda der */
    justify-content: space-between;
  }
  .navbar-logo { flex-shrink: 0; }
  .logo-img {
    height: 44px;
    max-width: 120px;        /* evita logos muy anchos */
    object-fit: contain;
    object-position: left center;
  }

  /* El menú desplegable queda fijo bajo el navbar */
  .navbar-menu {
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform .3s ease;
    border-bottom: 1px solid var(--gray-200);
    z-index: 900;
  }
  .navbar-menu.open { transform: translateY(0); }
  .nav-link { padding: 12px 16px; border-radius: var(--radius-md); }

  /* Acciones: solo icono WhatsApp + carrito + hamburger */
  .navbar-actions {
    gap: 4px;
    flex-shrink: 0;
  }
  .btn-whatsapp { display: none; }   /* ocultar WhatsApp en navbar móvil */
  .menu-toggle { display: flex; }

  .hero { padding-top: 60px; }
  .hero-title { letter-spacing: -.5px; }
  .hero-stats { gap: 16px; flex-wrap: wrap; justify-content: center; }

  .categories-grid { gap: 8px; }
  .category-card { padding: 16px 18px; min-width: 90px; }

  .catalog-toolbar { flex-direction: column; align-items: stretch; }
  .catalog-search { max-width: 100%; }
  .catalog-count { text-align: right; }

  .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }

  .section-container { padding: 56px 16px; }

  .footer-container { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }

  .hide-mobile { display: none; }

  .search-input-box.active { width: 220px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-info { padding: 12px 14px 16px; }
  .product-name { font-size: 14px; }
  .product-price-detail { font-size: 17px; }
  .btn-add-cart { font-size: 12px; padding: 8px 10px; }
  .cart-sidebar { width: 100vw; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── Scroll suave para animaciones ─ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}


/* ═══════════════════════════════════════════════════════════
   SPLASH / LOADING SCREEN
═══════════════════════════════════════════════════════════ */

@keyframes splashLogoIn {
  from { opacity: 0; transform: translateY(16px) scale(.94); }
  to   { opacity: 1; transform: translateY(0)    scale(1);   }
}
@keyframes splashSloganIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes splashBarFill {
  0%   { width: 0%; }
  30%  { width: 40%; }
  70%  { width: 72%; }
  100% { width: 100%; }
}
@keyframes splashFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; pointer-events: none; }
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.splash-screen.hidden {
  animation: splashFadeOut .55s ease forwards;
}

.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.splash-logo {
  height: 150px;
  width: auto;
  object-fit: contain;
  animation: splashLogoIn .7s cubic-bezier(.22,1,.36,1) both;
}

.splash-slogan {
  font-family:  'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--gray-700);
  text-align: center;
  line-height: 1.5;
  letter-spacing: -.01em;
  animation: splashSloganIn .6s ease .3s both;
  margin: 0;
}
.splash-slogan span {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.splash-bar-wrap {
  width: 160px;
  height: 2px;
  background: var(--gray-200);
  border-radius: 99px;
  overflow: hidden;
  animation: splashSloganIn .4s ease .5s both;
}
.splash-bar {
  height: 100%;
  width: 0%;
  background: var(--blue);
  border-radius: 99px;
  animation: splashBarFill 1.6s cubic-bezier(.4,0,.2,1) .5s forwards;
}


/* ═══════════════════════════════════════════════════════════
   MODAL DETALLE DE PRODUCTO
═══════════════════════════════════════════════════════════ */

.pmodal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.pmodal-overlay.open { opacity: 1; pointer-events: all; }

.pmodal {
  position: fixed;
  inset: 0;
  z-index: 1101;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transform: scale(.96) translateY(10px);
  transition: opacity .3s ease, transform .3s ease;
}
.pmodal.open { opacity: 1; transform: scale(1) translateY(0); pointer-events: all; }

.pmodal-inner {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 32px 80px rgba(0,0,0,.22);
  position: relative;
}
.pmodal-inner::-webkit-scrollbar { width: 4px; }
.pmodal-inner::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }

.pmodal-close {
  position: fixed;
  top: 28px;
  right: 28px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--gray-700);
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  z-index: 1102;
  transition: var(--transition);
}
.pmodal-close:hover { background: var(--gray-100); transform: scale(1.1); }

/* ── Galería ── */
.pmodal-gallery {
  background: var(--gray-50);
  border-radius: 20px 0 0 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pmodal-main-img-wrap {
  position: relative;
  flex: 1;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pmodal-main-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: opacity .25s ease;
  padding: 20px;
}
.pmodal-main-img-wrap img.fading { opacity: 0; }

.pmodal-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px;
  background: var(--white);
  border: none; border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--gray-700);
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
  transition: var(--transition);
  opacity: 0;
}
.pmodal-main-img-wrap:hover .pmodal-nav { opacity: 1; }
.pmodal-nav:hover { background: var(--gray-100); transform: translateY(-50%) scale(1.1); }
.pmodal-prev { left: 12px; }
.pmodal-next { right: 12px; }
.pmodal-nav:disabled { opacity: 0 !important; pointer-events: none; }

.pmodal-counter {
  position: absolute;
  bottom: 10px; left: 50%; transform: translateX(-50%);
  font-size: 11px;
  color: var(--gray-500);
  background: rgba(255,255,255,.85);
  padding: 2px 8px;
  border-radius: 20px;
}

.pmodal-thumbs {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  overflow-x: auto;
  background: var(--white);
}
.pmodal-thumbs::-webkit-scrollbar { height: 3px; }
.pmodal-thumbs::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }

.pmodal-thumb {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s ease, transform .2s ease;
  background: var(--gray-100);
}
.pmodal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pmodal-thumb.active { border-color: var(--blue); transform: scale(1.06); }
.pmodal-thumb:hover:not(.active) { border-color: var(--gray-300); }

/* ── Info ── */
.pmodal-info {
  padding: 36px 32px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pmodal-cat {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.pmodal-name {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.25;
  margin: 0;
}
.pmodal-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

.pmodal-prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.pmodal-price-detail {
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-900);
}
.pmodal-price-mayoreo {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
}
.pmodal-price-mayoreo span { font-weight: 400; color: var(--gray-500); }

.pmodal-mayoreo-hint {
  font-size: 12px;
  color: var(--green);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f0faf4;
  padding: 7px 12px;
  border-radius: 8px;
  margin-top: -6px;
}

.pmodal-stock {
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pmodal-stock i { font-size: 9px; }
.pmodal-stock.stock-ok   { color: var(--green); }
.pmodal-stock.stock-low  { color: var(--orange); }
.pmodal-stock.stock-out  { color: var(--red); }

.pmodal-add-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--gray-100);
}
.pmodal-add-row .qty-control { flex-shrink: 0; }
.pmodal-add-row .btn-add-cart { flex: 1; padding: 12px 16px; font-size: 15px; }

/* ── Responsive modal ── */
@media (max-width: 680px) {
  .pmodal { padding: 0; align-items: flex-end; }
  .pmodal-inner {
    grid-template-columns: 1fr;
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
  }
  .pmodal-gallery { border-radius: 20px 20px 0 0; }
  .pmodal-main-img-wrap { min-height: 260px; }
  .pmodal-info { padding: 20px 20px 32px; }
  .pmodal-name { font-size: 18px; }
  .pmodal-price-detail { font-size: 22px; }
  .pmodal-close { top: 14px; right: 14px; }
  .pmodal-nav { opacity: 1; }
}
