:root {
  --bg: #000000;
  --panel: #0d0d0d;
  --panel-2: #121212;
  --card: rgba(255, 255, 255, 0.02);
  --line: rgba(255, 255, 255, 0.05);
  --text: #ffffff;
  --muted: #cccccc;
  --orange: #8b5cf6;
  --orange-2: #7c3aed;
  --orange-hover: #6d28d9;
  --green: #2ecc71;
  --gold: #f1c40f;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  --radius: 18px;
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; letter-spacing: -0.01em; }
body { min-height: 100vh; }
button { background: none; border: none; padding: 0; cursor: pointer; color: inherit; }
.app-shell { display: grid; grid-template-columns: 287px 1fr; min-height: 100vh; }
.sidebar {
  position: sticky; top: 0; height: 100vh; overflow: auto;
  padding: 30px 15px; background: var(--bg); border-right: 1px solid var(--line);
}
.brand-block { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 40px; padding: 0 15px; cursor: pointer; }
.brand-logo { width: 40px; height: 40px; object-fit: contain; }
.brand-block h1 { font-size: 18px; letter-spacing: 0.1em; color: white; }
.sidebar-search {
  display: flex; align-items: center; gap: 10px; padding: 12px 15px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel); color: var(--muted); margin-bottom: 30px;
}
.sidebar-search input { flex: 1; background: transparent; border: 0; outline: none; color: var(--text); font-size: 13px; }
.sidebar-nav { display: flex; flex-direction: column; gap: 4px; }
.nav-group { border-radius: var(--radius); }
.nav-parent {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 15px;
  color: #ffffff; font-weight: 500; text-align: left; font-size: 14px; text-transform: uppercase; transition: opacity 0.2s;
}
.nav-parent:hover { opacity: 0.8; }
.nav-parent.active { background: rgba(255, 255, 255, 0.05); border-radius: var(--radius); color: var(--orange); }
.nav-parent .left { display: flex; align-items: center; gap: 15px; }
.nav-parent .left i { font-size: 18px; color: var(--orange); width: 24px; text-align: center; }
.nav-children { display: none; padding: 5px 0 10px 15px; flex-direction: column; gap: 2px; }
.nav-group.open .nav-children { display: flex; }
.nav-child {
  width: 100%; padding: 8px 15px; color: #aaaaaa; font-weight: 500; font-size: 13px; text-transform: uppercase; transition: color 0.2s;
}
.nav-child:hover, .nav-child.active { color: white; }
.sidebar-card { margin-top: 24px; border: 1px solid var(--line); background: var(--panel-2); border-radius: var(--radius); padding: 16px; }
.sidebar-card-title { margin: 0 0 6px; font-weight: 700; font-size: 13px; text-transform: uppercase; }
.sidebar-card-text { margin: 0 0 12px; color: var(--muted); line-height: 1.5; font-size: 12px; }
.main-panel { padding: 32px 40px; }
.topbar { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 32px; }
.topbar h2 { font-size: 28px; letter-spacing: -0.02em; }
.topbar-actions { display: flex; gap: 12px; align-items: center; }
.top-btn, .cart-btn, .ghost-btn, .primary-btn, .icon-btn {
  border: 0; border-radius: var(--radius); cursor: pointer; transition: all .2s ease; font-weight: 600; text-transform: uppercase; font-size: 13px; letter-spacing: 0.05em;
}
.top-btn, .cart-btn { display: flex; align-items: center; gap: 10px; padding: 12px 18px; background: var(--panel); color: var(--text); border: 1px solid var(--line); }
.top-btn:hover, .cart-btn:hover { background: var(--panel-2); border-color: rgba(255,255,255,0.1); }
.cart-btn strong { display: inline-grid; place-items: center; min-width: 24px; height: 24px; background: var(--orange); color: white; border-radius: 999px; font-size: 11px; }
.ghost-btn { background: rgba(255,255,255,.03); color: var(--text); padding: 12px 16px; border: 1px solid var(--line); }
.ghost-btn:hover { background: rgba(255,255,255,.06); }
.primary-btn { background: var(--orange); color: white; padding: 14px 20px; box-shadow: 0 4px 14px rgba(139,92,246,0.34); }
.primary-btn:hover { background: var(--orange-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(139,92,246,0.4); }
.full-width { width: 100%; justify-content: center; }
.icon-btn { width: 36px; height: 36px; background: rgba(255,255,255,.04); color: var(--text); display: inline-grid; place-items: center; border: 1px solid var(--line); border-radius: 8px; }
.icon-btn:hover { background: rgba(255,255,255,.08); }
.hero-banner {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 20px; padding: 32px; border-radius: 16px; background: linear-gradient(135deg, #161616, #0e0e0e);
  border: 1px solid var(--line); margin-bottom: 24px; position: relative; overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy h3 { font-size: clamp(24px, 3vw, 42px); line-height: 1.1; margin: 0 0 16px; max-width: 16ch; }
.hero-copy p { margin: 0 0 20px; color: var(--muted); max-width: 50ch; font-size: 14px; line-height: 1.6; text-transform: none; font-weight: 400; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-art { position: absolute; right: 0; top: -20px; bottom: 0; width: 50%; background: radial-gradient(circle at center, rgba(139,92,246,.16), transparent 60%); z-index: 1; opacity: 0.8; }
.gem-stack { display: none; }

.home-intro { margin-bottom: 24px; }
.home-panel {
  display: grid;
  gap: 20px;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, #121212 0%, #090909 100%);
  border: 1px solid var(--line);
}
.home-copy h3 { margin: 0 0 10px; font-size: clamp(28px, 3vw, 44px); line-height: 1.06; }
.home-copy p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; max-width: 72ch; }
.home-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }

.breadcrumbs { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin: 0 0 16px; color: var(--muted); text-transform: uppercase; font-size: 11px; font-weight: 700; }
.breadcrumb.active { color: white; }
.subcategory-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 24px; }
.subcategory-tab { padding: 8px 16px; background: transparent; color: var(--muted); border-radius: 8px; border: 1px solid var(--line); cursor: pointer; font-size: 12px; text-transform: uppercase; font-weight: 700; transition: all .2s; }
.subcategory-tab.active, .subcategory-tab:hover { background: rgba(255,255,255,0.04); color: white; border-color: rgba(255,255,255,0.1); }
.featured-strip { display: none; } 
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.product-card {
  border-radius: var(--radius); overflow: hidden; background: linear-gradient(180deg, #111111 0%, #0b0b0b 100%); border: 1px solid rgba(255,255,255,0.06); display: grid;
  min-height: 100%; transition: transform .22s, border-color .22s, box-shadow .22s; cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(139,92,246,0.32); box-shadow: 0 18px 42px rgba(0,0,0,0.55); }
.product-media {
  position: relative; height: 248px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at top, rgba(139,92,246,0.12), transparent 42%), linear-gradient(180deg, #101010 0%, #070707 100%); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 18px;
}
.product-media img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 14px 26px rgba(0,0,0,0.55)); transition: transform .3s ease; }
.product-card:hover .product-media img { transform: scale(1.05); }
.product-media .emoji-art, .product-media .icon-art { font-size: 64px; color: var(--muted); opacity: 0.5; }
.product-badge, .product-tag {
  position: absolute; left: 14px; top: 14px; padding: 6px 10px; font-size: 10px; border-radius: 999px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.product-badge { background: var(--orange); color: white; }
.product-tag { left: auto; right: 14px; background: rgba(255,255,255,.08); color: white; }
.product-body { padding: 22px; display: grid; gap: 14px; align-content: space-between; }
.product-title { margin: 0; font-size: 22px; line-height: 1.08; letter-spacing: -0.03em; }
.product-subtitle { margin: 6px 0 0; color: #b9b9b9; font-size: 13px; text-transform: none; font-weight: 500; }
.product-price-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 4px; }
.product-price { font-size: 30px; font-weight: 900; color: white; font-family: 'Inter', sans-serif; letter-spacing: -0.04em; }
.product-meta { color: #c4c4c4; font-size: 12px; text-transform: uppercase; font-weight: 700; min-height: 16px; text-align: right; }
.product-points { margin: 0; padding-left: 0; list-style: none; color: #cfcfcf; display: grid; gap: 8px; font-size: 13px; text-transform: none; font-weight: 500; min-height: 72px; }
.product-points li::before { content: "• "; color: var(--orange); font-weight: bold; }
.product-actions { display: grid; gap: 10px; margin-top: 8px; }
.product-actions .primary-btn { width: 100%; padding: 13px 16px; font-size: 12px; border-radius: 14px; }
.card-hint { display: inline-flex; align-items: center; gap: 8px; color: #bfbfbf; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.card-hint i { color: var(--orange); }
.detail-modal, .passport-modal {
  width: min(900px, calc(100vw - 32px)); max-width: 900px; background: var(--bg); color: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 0; box-shadow: var(--shadow);
}
.passport-modal { width: min(480px, calc(100vw - 32px)); }
.detail-modal::backdrop, .passport-modal::backdrop { background: rgba(0,0,0,0.85); backdrop-filter: blur(4px); }
.modal-close { position: absolute; right: 16px; top: 16px; z-index: 10; border: 0; }
.detail-wrap { display: grid; grid-template-columns: 1fr 340px; min-height: 60vh; }
.detail-main { padding: 32px; border-right: 1px solid var(--line); overflow: auto; max-height: calc(100vh - 60px); }
.detail-sidebar { background: var(--panel); padding: 32px; display: grid; align-content: start; gap: 24px; }
.detail-hero {
  border-radius: var(--radius); min-height: 320px; display: grid; place-items: center; overflow: hidden; background: #0c0c0c;
  margin-bottom: 24px; border: 1px solid var(--line); padding: 24px;
}
.detail-hero img { width: 100%; height: 100%; object-fit: contain; }
.detail-copy h3 { margin: 0 0 8px; font-size: 32px; }
.detail-price { font-size: 38px; font-weight: 900; font-family: 'Inter', sans-serif; letter-spacing: -0.04em; color: white; margin: 8px 0 20px; }
.detail-sections { display: grid; gap: 20px; }
.detail-section { border-radius: var(--radius); background: rgba(255,255,255,.02); padding: 20px; border: 1px solid var(--line); }
.detail-section h4 { margin: 0 0 12px; font-size: 14px; color: var(--orange); letter-spacing: 0.05em; }
.detail-section ul { margin: 0; padding-left: 20px; display: grid; gap: 8px; line-height: 1.5; font-size: 13px; text-transform: none; font-weight: 400; color: #ccc; }
.detail-section p { margin: 0; color: #ccc; line-height: 1.6; font-size: 13px; text-transform: none; font-weight: 400; }
.passport-box { padding: 32px; display: grid; gap: 20px; }
.passport-box h3 { margin: 0; font-size: 24px; }
.passport-box p { margin: 0; color: var(--muted); font-size: 13px; text-transform: none; font-weight: 400; line-height: 1.5; }
.passport-box label { display: grid; gap: 8px; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; }
.passport-box input {
  padding: 14px 16px; border-radius: 8px; border: 1px solid var(--line); background: var(--panel-2); color: white; outline: none; font-size: 14px;
}
.passport-box input:focus { border-color: var(--orange); }
.passport-actions { display: flex; justify-content: flex-end; margin-top: 8px; }
.cart-drawer {
  position: fixed; top: 0; right: -420px; width: 400px; height: 100vh; background: var(--panel); border-left: 1px solid var(--line); z-index: 25;
  box-shadow: -10px 0 40px rgba(0,0,0,0.5); padding: 24px; display: grid; grid-template-rows: auto auto 1fr auto; transition: right .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-drawer.open { right: 0; }
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 20; }
.overlay.open { opacity: 1; pointer-events: auto; }
.drawer-header { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 24px; }
.drawer-header h3 { margin: 0; font-size: 24px; }
.account-box { border-radius: var(--radius); background: rgba(255,255,255,.02); border: 1px solid var(--line); padding: 16px; }
.account-row { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; font-size: 13px; text-transform: uppercase; font-weight: 700; }
.account-row i { font-size: 20px; color: var(--orange); width: 24px; text-align: center; }
.account-row p { margin: 4px 0 0; color: var(--muted); font-size: 11px; }
.cart-items { overflow: auto; display: grid; gap: 12px; padding: 16px 0; align-content: start; }
.cart-item { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; background: rgba(255,255,255,.015); display: grid; gap: 12px; }
.cart-item-head { display: flex; justify-content: space-between; gap: 10px; align-items: start; }
.cart-item h4 { margin: 0; font-size: 16px; }
.cart-item p { margin: 4px 0 0; color: var(--muted); font-size: 11px; font-weight: 700; }
.qty-box { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; background: rgba(255,255,255,0.02); }
.qty-box button { background: transparent; color: white; border: 0; width: 32px; height: 32px; cursor: pointer; transition: background .2s; }
.qty-box button:hover { background: rgba(255,255,255,0.05); }
.qty-box span { min-width: 32px; display: inline-grid; place-items: center; font-size: 13px; font-weight: 700; }
.cart-price-row { display: flex; justify-content: space-between; align-items: center; }
.cart-price-row strong { font-family: 'Inter', sans-serif; font-size: 16px; }
.cart-footer { border-top: 1px solid var(--line); padding-top: 24px; display: grid; gap: 16px; }
.totals-row { display: flex; justify-content: space-between; align-items: center; font-size: 20px; font-weight: 800; text-transform: uppercase; }
.totals-row strong { font-family: 'Inter', sans-serif; color: var(--orange); font-size: 24px; letter-spacing: -0.03em; }
.mini-note { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; text-transform: none; font-weight: 400; text-align: center; }
.toast {
  position: fixed; left: 50%; bottom: 32px; transform: translateX(-50%) translateY(120px); background: var(--panel-2); border: 1px solid var(--line);
  color: white; padding: 14px 20px; border-radius: 8px; box-shadow: var(--shadow); z-index: 30; transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), opacity .3s; opacity: 0;
  font-size: 13px; font-weight: 600;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.hidden { display: none !important; }
.small-note { color: var(--muted); font-size: 12px; text-transform: none; font-weight: 400; }
.special-grid { grid-column: 1 / -1; display: grid; gap: 20px; }
.id-controls { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 8px; }
.id-controls input { padding: 12px 14px; border-radius: 8px; border: 1px solid var(--line); background: rgba(255,255,255,.02); color: white; font-size: 13px; }
.id-controls select { padding: 12px 14px; border-radius: 8px; border: 1px solid var(--line); background: var(--panel-2); color: white; font-size: 13px; }
.ids-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 16px; }
.ids-grid .product-card .product-media { height: 160px; }
.id-number { font-family: 'Orbitron', sans-serif; font-size: 64px; font-weight: 900; letter-spacing: -0.05em; color: var(--orange); opacity: 0.9; }
.product-title.small { font-size: 18px; }
.weapon-pill { display: inline-flex; gap: 8px; align-items: center; padding: 6px 10px; border-radius: 4px; background: rgba(255,102,0,0.1); color: var(--orange); font-size: 11px; font-weight: 800; text-transform: uppercase; }
@media (max-width: 1080px) {
  .app-shell { grid-template-columns: 1fr; }
  .sidebar { position: relative; height: auto; padding-bottom: 32px; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-banner, .detail-wrap, .home-grid { grid-template-columns: 1fr; }
  .detail-main { border-right: 0; border-bottom: 1px solid var(--line); }
}
@media (max-width: 780px) {
  .main-panel { padding: 20px; }
  .topbar { flex-direction: column; align-items: stretch; gap: 16px; }
  .topbar h2 { font-size: 24px; }
  .catalog-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .cart-drawer { width: 100vw; right: -100vw; }
  .hero-copy h3 { max-width: unset; font-size: 28px; }
}
.pack-card { background: #0c0c0c; border: 1px solid var(--line); border-radius: 12px; padding: 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.pack-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.pack-header h3 { font-size: 24px; color: white; letter-spacing: -0.02em; margin: 0; }
.pack-list { background: rgba(255,255,255,0.02); border-radius: 8px; border: 1px solid var(--line); overflow: hidden; }
.pack-row { display: flex; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.02); }
.pack-row:last-child { border-bottom: 0; }
.pack-row span { color: #a3a3a3; font-size: 14px; font-weight: 500; }
.pack-row strong { color: #00e5ff; font-family: 'Orbitron', sans-serif; font-size: 16px; font-weight: 900; }
.pack-btn { background: transparent !important; color: white !important; border: 1px solid var(--line) !important; font-family: 'Orbitron', sans-serif; }
.pack-btn:hover { background: rgba(255,255,255,0.05) !important; border-color: rgba(255,255,255,0.2) !important; }



.faq-home .home-copy h3 { max-width: 22ch; }
.faq-home .home-copy p { max-width: 72ch; }
.product-card.section-vips .product-media img,
.product-card.section-mascotas .product-media img {
  max-width: 76%;
  max-height: 76%;
  width: auto;
  height: auto;
}
.detail-hero.section-vips img,
.detail-hero.section-mascotas img {
  max-width: 72%;
  max-height: 300px;
  width: auto;
  height: auto;
  margin: 0 auto;
}
.detail-hero.section-vips,
.detail-hero.section-mascotas {
  align-items: center;
  justify-items: center;
}
.pdf-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.pdf-link:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.14);
}

/* Ajustes finos nuevos */
.product-card.section-vips .product-media img {
  max-width: 52%;
  max-height: 52%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.detail-hero.section-vips img {
  max-width: 42%;
  max-height: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}
.product-card.section-otro .product-media .emoji-art,
.detail-hero.section-otro .emoji-art {
  font-size: 74px;
  opacity: 0.9;
}


.section-vips .product-media img, .section-mascotas .product-media img, .section-mochilas .product-media img { width: 74%; height: 74%; object-fit: contain; }
.detail-hero.section-vips img, .detail-hero.section-mascotas img, .detail-hero.section-mochilas img { width: 70%; height: 70%; object-fit: contain; display:block; margin:auto; }
.sidebar-card { display: block; }


.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  min-width: 146px;
  background: transparent;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
}
.login-btn:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.06); }
.login-modal {
  width: min(560px, calc(100vw - 32px));
  background: #050505;
  color: white;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 0;
  box-shadow: var(--shadow);
}
.login-modal::backdrop { background: rgba(0,0,0,0.84); backdrop-filter: blur(4px); }
.login-box { padding: 28px 28px 32px; display: grid; gap: 22px; }
.login-box h3 { margin: 0; font-size: 26px; line-height: 1.15; }
.login-actions-stack { display: grid; gap: 14px; }
.login-provider-btn {
  display: inline-flex; align-items: center; justify-content: center; width: 100%;
  padding: 18px 22px; border-radius: 16px; border: 1px solid rgba(139,92,246,0.18);
  background: linear-gradient(180deg, #a855f7 0%, #7c3aed 100%); color: white; font-size: 15px; font-weight: 800;
  box-shadow: 0 10px 28px rgba(124,58,237,0.32);
}
.login-provider-btn.secondary {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
  color: white;
  box-shadow: none;
}
.passport-simple { width: min(620px, calc(100vw - 32px)); background: #050505; border-radius: 26px; }
.compact-box { gap: 18px; padding: 30px 28px 28px; }
.passport-simple .passport-box h3 { font-size: 28px; line-height: 1.15; max-width: 18ch; }
.passport-simple .passport-box p { font-size: 14px; color: #f0f0f0; max-width: 28ch; }
.passport-simple .passport-box label { display: block; }
.passport-simple .passport-box input {
  width: 100%; border-radius: 6px; border: 1px solid rgba(255,255,255,0.08); background: #242424;
  min-height: 54px; font-size: 14px; color: #fff; padding: 14px 18px;
}
.passport-simple .passport-box input::placeholder { color: #d8d8d8; opacity: 0.8; }
.passport-simple .passport-box input:focus { border-color: #8b5cf6; box-shadow: 0 0 0 3px rgba(139,92,246,0.18); }
.left-action { justify-content: flex-start; }
.orange-btn { background: linear-gradient(180deg, #ff7a00 0%, #ff6200 100%); box-shadow: 0 10px 30px rgba(255,98,0,0.28); min-width: 288px; }
.orange-btn:hover { background: linear-gradient(180deg, #ff8d22 0%, #ff6c0f 100%); box-shadow: 0 12px 34px rgba(255,98,0,0.34); }
.section-mochilas .product-media img,
.section-otro .product-media img {
  width: 88%; height: 88%; object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(0,0,0,0.50));
}
.detail-hero.section-mochilas img,
.detail-hero.section-otro img {
  width: 80%; height: 80%; object-fit: contain; display: block; margin: auto;
}
.detail-hero.section-otro,
.detail-hero.section-mochilas {
  background: radial-gradient(circle at top, rgba(168,85,247,0.12), transparent 36%), #0c0c0c;
}
