/* ================= TOKENS ================= */
:root {
  --navy: #0A1628;
  --navy-soft: #142338;
  --orange: #F5A623;
  --orange-hover: #e0940f;
  --gold: #D4A017;
  --white: #FFFFFF;
  --gray: #F5F5F0;
  --gray-2: #ECECE5;
  --wa-green: #25D366;
  --wa-green-hover: #1eb857;

  --text-navy: #0A1628;
  --text-muted: #5b6472;
  --text-light: #eef1f6;

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  --space-2: 0.5rem; --space-3: 0.75rem; --space-4: 1rem; --space-5: 1.25rem;
  --space-6: 1.5rem; --space-8: 2rem; --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem; --space-20: 5rem; --space-24: 6rem;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 6px rgba(10,22,40,.08);
  --shadow-md: 0 8px 24px rgba(10,22,40,.10);
  --shadow-lg: 0 18px 48px rgba(10,22,40,.16);

  --header-h: 72px;
  --transition: 200ms cubic-bezier(0.16,1,0.3,1);
}

/* ================= BASE ================= */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; scroll-behavior:smooth; scroll-padding-top: calc(var(--header-h) + 8px); }
body {
  min-height:100dvh; line-height:1.6; font-family:var(--font-body);
  font-size:var(--text-base); color:var(--text-navy); background:var(--white);
}
img,svg,video { display:block; max-width:100%; height:auto; }
ul[role="list"] { list-style:none; }
input,button,textarea,select { font:inherit; color:inherit; }
h1,h2,h3,h4 { line-height:1.05; text-wrap:balance; }
p { text-wrap:pretty; }
button { cursor:pointer; background:none; border:none; }
a { text-decoration:none; color:inherit; }
:focus-visible { outline:3px solid var(--orange); outline-offset:2px; border-radius:var(--radius-sm); }

.container { width:min(1200px, 92%); margin-inline:auto; }

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration:.01ms !important; transition-duration:.01ms !important; scroll-behavior:auto !important; }
}

/* ================= BUTTONS ================= */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  font-family:var(--font-display); font-weight:700; letter-spacing:.02em;
  font-size:var(--text-sm); text-transform:uppercase;
  padding:.75rem 1.5rem; border-radius:var(--radius-full);
  transition:var(--transition); border:2px solid transparent; white-space:nowrap;
}
.btn-lg { font-size:var(--text-base); padding:.95rem 2rem; }
.btn-sm { font-size:var(--text-xs); padding:.55rem 1.1rem; }
.btn-primary { background:var(--orange); color:var(--navy); box-shadow:var(--shadow-sm); }
.btn-primary:hover { background:var(--orange-hover); transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn-outline { background:transparent; color:var(--white); border-color:var(--white); }
.btn-outline:hover { background:var(--white); color:var(--navy); transform:translateY(-2px); }
.btn-whatsapp { background:var(--wa-green); color:#fff; }
.btn-whatsapp:hover { background:var(--wa-green-hover); transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn-icon { padding:.55rem; width:44px; height:44px; border-radius:var(--radius-full); }

/* ================= HEADER ================= */
.site-header {
  position:sticky; top:0; z-index:100; background:var(--navy);
  border-bottom:1px solid rgba(245,166,35,.15);
  box-shadow:0 2px 14px rgba(0,0,0,.25);
}
.header-inner { display:flex; align-items:center; justify-content:space-between; height:var(--header-h); gap:var(--space-4); }
.logo { display:flex; align-items:center; gap:.6rem; }
.logo-text { font-family:var(--font-display); font-size:1.5rem; line-height:1; color:var(--navy); }
.logo-text strong { color:var(--navy); font-weight:800; }
.site-header .logo-text strong { color:#fff; }
.logo-text em { color:var(--orange); font-style:normal; font-weight:700; }
.logo-text-light strong { color:#fff; }

.main-nav ul { display:flex; gap:var(--space-6); list-style:none; }
.main-nav a {
  font-family:var(--font-display); font-weight:600; font-size:1.05rem;
  color:var(--text-light); text-transform:uppercase; letter-spacing:.03em;
  padding:.3rem 0; position:relative;
}
.main-nav a::after { content:""; position:absolute; left:0; bottom:-4px; width:0; height:3px; background:var(--orange); transition:width var(--transition); border-radius:2px; }
.main-nav a:hover { color:#fff; }
.main-nav a:hover::after { width:100%; }

.header-right { display:flex; align-items:center; gap:var(--space-4); }

.nav-toggle { display:none; flex-direction:column; gap:5px; padding:8px; }
.nav-toggle span { width:26px; height:3px; background:#fff; border-radius:2px; transition:var(--transition); }

.mobile-nav { display:none; flex-direction:column; background:var(--navy-soft); border-top:1px solid rgba(255,255,255,.08); }
.mobile-nav a { padding:1rem 4%; color:var(--text-light); font-family:var(--font-display); font-weight:600; font-size:1.15rem; text-transform:uppercase; border-bottom:1px solid rgba(255,255,255,.06); }
.mobile-nav.open { display:flex; }

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: center;
  padding-block: clamp(4.5rem, 10vw, 7.5rem);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background:
    url('/assets/hero-la-capital-night.jpg') center / cover no-repeat;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8,16,30,.88) 0%, rgba(8,16,30,.72) 38%, rgba(8,16,30,.42) 68%, rgba(8,16,30,.28) 100%),
    linear-gradient(0deg, rgba(8,16,30,.55) 0%, transparent 42%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: var(--text-sm);
  color: var(--orange);
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-3xl);
  color: #fff;
  letter-spacing: .01em;
  text-shadow: 0 4px 24px rgba(0,0,0,.45);
}
.hero-title .accent { color: var(--orange); }
.hero-sub {
  color: #e9edf3;
  font-size: var(--text-lg);
  margin-top: var(--space-5);
  max-width: 54ch;
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.hero-team-pill {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-top: var(--space-10);
  max-width: 420px;
  padding: .7rem .9rem;
  border-radius: 999px;
  background: rgba(10,22,40,.78);
  border: 1px solid rgba(245,166,35,.35);
  box-shadow: 0 12px 32px rgba(0,0,0,.28);
  backdrop-filter: blur(8px);
}
.hero-team-pill img {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(245,166,35,.55);
  flex-shrink: 0;
}
.hero-team-pill strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.hero-team-pill span {
  display: block;
  color: #c5ceda;
  font-size: var(--text-xs);
  margin-top: .15rem;
  line-height: 1.35;
}

@media (max-width: 700px) {
  .hero { min-height: auto; padding-block: var(--space-16) var(--space-12); }
  .hero-content { max-width: 100%; }
  .hero-team-pill { max-width: 100%; border-radius: 16px; }
}

.trust-badges { justify-content:center; }
}


.trust-badges { display:flex; flex-wrap:wrap; gap:var(--space-4) var(--space-6); margin-top:var(--space-8); list-style:none; }
.trust-badges li { display:flex; align-items:center; gap:.45rem; color:#fff; font-weight:600; font-size:var(--text-sm); }
.trust-badges .check { display:inline-flex; align-items:center; justify-content:center; width:22px; height:22px; border-radius:var(--radius-full); background:var(--orange); color:var(--navy); font-weight:800; font-size:.8rem; }

/* ================= STATS BAR ================= */
.stats-bar { background:var(--navy); padding-block:var(--space-12); }
.stats-inner { display:flex; align-items:center; justify-content:center; gap:var(--space-8); flex-wrap:wrap; text-align:center; }
.stat { display:flex; flex-direction:column; gap:.25rem; }
.stat-num { font-family:var(--font-display); font-weight:800; font-size:var(--text-2xl); color:var(--orange); line-height:1; }
.stat-label { color:var(--text-light); font-size:var(--text-sm); font-weight:500; text-transform:uppercase; letter-spacing:.05em; }
.stat-divider { width:1px; height:56px; background:rgba(255,255,255,.15); }

/* ================= SECTION HEAD ================= */
.section-head { text-align:center; max-width:640px; margin:0 auto var(--space-12); }
.eyebrow { display:inline-block; font-family:var(--font-display); font-weight:700; text-transform:uppercase; letter-spacing:.12em; color:var(--orange); font-size:var(--text-sm); margin-bottom:.5rem; }
.eyebrow-dark { color:var(--orange-hover); }
.section-title { font-family:var(--font-display); font-weight:800; font-size:var(--text-2xl); color:var(--navy); }
.section-lead { color:var(--text-muted); margin-top:var(--space-3); font-size:var(--text-lg); }

/* ================= HOW IT WORKS ================= */
.how { background:var(--gray); padding-block:clamp(4rem,7vw,6rem); }
.steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:var(--space-6); }
.step-card {
  background:#fff; border-radius:var(--radius); padding:var(--space-8) var(--space-6);
  box-shadow:var(--shadow-sm); border:1px solid var(--gray-2); position:relative;
  transition:var(--transition);
}
.step-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.step-num {
  display:inline-flex; align-items:center; justify-content:center; width:52px; height:52px;
  border-radius:var(--radius-full); background:var(--orange); color:var(--navy);
  font-family:var(--font-display); font-weight:800; font-size:1.7rem; margin-bottom:var(--space-4);
}
.step-card h3 { font-family:var(--font-display); font-weight:700; font-size:var(--text-lg); color:var(--navy); margin-bottom:.5rem; }
.step-card p { color:var(--text-muted); font-size:var(--text-base); }

/* ================= INVENTORY ================= */
.inventory { background:#fff; padding-block:clamp(4rem,7vw,6rem); }
.filter-bar {
  display:flex; flex-wrap:wrap; align-items:flex-end; gap:var(--space-4);
  background:var(--gray); border:1px solid var(--gray-2); border-radius:var(--radius);
  padding:var(--space-6); margin-bottom:var(--space-10); box-shadow:var(--shadow-sm);
}
.filter-field { display:flex; flex-direction:column; gap:.35rem; flex:1; min-width:150px; }
.filter-field label { font-family:var(--font-display); font-weight:600; text-transform:uppercase; letter-spacing:.04em; font-size:var(--text-xs); color:var(--navy); }
.filter-field select, .form-field input, .form-field select {
  padding:.7rem .8rem; border:1.5px solid var(--gray-2); border-radius:var(--radius-sm);
  background:#fff; font-size:var(--text-sm); color:var(--text-navy); transition:var(--transition);
}
.filter-field select:focus, .form-field input:focus, .form-field select:focus { border-color:var(--orange); outline:none; }
.filter-btn { align-self:flex-end; }

.truck-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:var(--space-6); }
.truck-card {
  background:#fff; border-radius:var(--radius); overflow:hidden;
  border:1px solid var(--gray-2); box-shadow:var(--shadow-sm); transition:var(--transition);
  display:flex; flex-direction:column;
}
.truck-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); }
.truck-media { position:relative; aspect-ratio:16/10; background:var(--gray); overflow:hidden; }
.truck-media img { width:100%; height:100%; object-fit:cover; transition:transform 400ms ease; }
.truck-card:hover .truck-media img { transform:scale(1.05); }
.badge {
  position:absolute; top:12px; left:12px; z-index:2;
  font-family:var(--font-display); font-weight:700; text-transform:uppercase; letter-spacing:.04em;
  font-size:var(--text-xs); padding:.3rem .7rem; border-radius:var(--radius-full); color:#fff;
}
.badge-popular { background:var(--orange); color:var(--navy); }
.badge-available { background:var(--navy); }
.badge-new { background:var(--wa-green); }
.badge-premium { background:var(--gold); color:var(--navy); }

.truck-body { padding:var(--space-5); display:flex; flex-direction:column; gap:.4rem; flex:1; }
.truck-name { font-family:var(--font-display); font-weight:700; font-size:var(--text-lg); color:var(--navy); }
.truck-price { font-family:var(--font-display); font-weight:800; font-size:1.6rem; color:var(--orange-hover); line-height:1; }
.truck-meta { display:flex; gap:var(--space-4); list-style:none; color:var(--text-muted); font-size:var(--text-sm); margin-bottom:.5rem; }
.truck-actions { display:flex; align-items:center; gap:var(--space-3); margin-top:auto; }
.truck-actions .btn-primary { flex:1; }

/* ================= LISTING ================= */
.listing { background:var(--gray); padding-block:clamp(4rem,7vw,6rem); }
.listing-grid { display:grid; grid-template-columns:1.2fr 1fr; gap:var(--space-10); align-items:start; }
.listing-media { position:relative; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-md); background:#fff; }
.listing-media img { width:100%; aspect-ratio:16/10; object-fit:cover; }
.listing-detail { background:#fff; border-radius:var(--radius); padding:var(--space-8); box-shadow:var(--shadow-sm); border:1px solid var(--gray-2); }
.listing-price { font-family:var(--font-display); font-weight:800; font-size:var(--text-2xl); color:var(--orange-hover); line-height:1; margin-bottom:var(--space-5); }
.detail-table { width:100%; border-collapse:collapse; margin-bottom:var(--space-6); }
.detail-table th, .detail-table td { text-align:left; padding:.7rem 0; border-bottom:1px solid var(--gray-2); font-size:var(--text-base); }
.detail-table th { font-family:var(--font-display); font-weight:600; text-transform:uppercase; letter-spacing:.03em; color:var(--text-muted); font-size:var(--text-sm); }
.detail-table td { font-weight:600; color:var(--navy); }
.listing-actions { display:flex; flex-direction:column; gap:var(--space-3); }

/* ================= APPLY ================= */
.apply { background:linear-gradient(160deg, #FDF3E1 0%, #FBE8CC 100%); padding-block:clamp(4rem,7vw,6rem); }
.apply-title { font-family:var(--font-display); font-weight:700; font-size:var(--text-xl); color:var(--navy); margin-top:.4rem; }
.credit-badges { display:flex; flex-wrap:wrap; justify-content:center; gap:var(--space-3); margin-top:var(--space-5); list-style:none; }
.credit-badges li { background:var(--navy); color:#fff; font-family:var(--font-display); font-weight:700; text-transform:uppercase; letter-spacing:.03em; font-size:var(--text-sm); padding:.45rem 1rem; border-radius:var(--radius-full); }
.apply-form { max-width:760px; margin:0 auto; background:#fff; border-radius:var(--radius); padding:var(--space-8); box-shadow:var(--shadow-md); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:var(--space-5); margin-bottom:var(--space-5); }
.form-field { display:flex; flex-direction:column; gap:.4rem; }
.form-field label { font-family:var(--font-display); font-weight:600; text-transform:uppercase; letter-spacing:.03em; font-size:var(--text-xs); color:var(--navy); }
.apply-submit { width:100%; margin-top:var(--space-2); }
.apply-note { text-align:center; color:var(--text-muted); font-size:var(--text-sm); margin-top:var(--space-4); }

/* ================= ABOUT ================= */
.about { position:relative; padding-block:clamp(5rem,9vw,8rem); background:url('/assets/hero-la-capital-day.jpg') center/cover no-repeat fixed; }
.about-overlay { position:absolute; inset:0; background:linear-gradient(180deg, rgba(10,22,40,.9), rgba(10,22,40,.82)); }
.about-content { position:relative; max-width:760px; margin:0 auto; text-align:center; }
.about-content .eyebrow { color:var(--orange); }
.about-text { color:#f2f5f9; font-size:var(--text-lg); line-height:1.6; margin:var(--space-5) auto var(--space-8); }

/* ================= FOOTER ================= */
.site-footer { background:var(--navy); color:var(--text-light); padding-block:var(--space-16) var(--space-8); }
.footer-inner { display:flex; flex-direction:column; align-items:center; gap:var(--space-5); text-align:center; }
.logo-footer .logo-text { color:#fff; }
.footer-tagline { color:var(--orange); font-family:var(--font-display); font-weight:600; font-size:var(--text-lg); }
.footer-social { display:flex; gap:var(--space-4); }
.footer-social a { display:inline-flex; align-items:center; justify-content:center; width:46px; height:46px; border-radius:var(--radius-full); background:rgba(255,255,255,.08); color:#fff; transition:var(--transition); }
.footer-social a:hover { background:var(--orange); color:var(--navy); transform:translateY(-3px); }
.footer-copy { color:rgba(255,255,255,.55); font-size:var(--text-sm); margin-top:var(--space-4); }

/* ================= CHATBOT ================= */
.chatbot { position:fixed; right:20px; bottom:20px; z-index:200; }
.chat-fab {
  width:60px; height:60px; border-radius:var(--radius-full); background:var(--wa-green); color:#fff;
  display:flex; align-items:center; justify-content:center; box-shadow:0 8px 24px rgba(37,211,102,.45);
  transition:var(--transition); margin-left:auto;
}
.chat-fab:hover { background:var(--wa-green-hover); transform:scale(1.06); }
.chat-window {
  width:min(340px, calc(100vw - 40px)); background:#fff; border-radius:16px; overflow:hidden;
  box-shadow:var(--shadow-lg); position:absolute; right:0; bottom:74px;
  transform-origin:bottom right; transition:opacity var(--transition), transform var(--transition);
}
.chatbot.closed .chat-window { opacity:0; transform:scale(.9) translateY(10px); pointer-events:none; }
.chat-header { display:flex; align-items:center; gap:.6rem; background:var(--wa-green); color:#fff; padding:.85rem 1rem; }
.chat-avatar { width:38px; height:38px; border-radius:var(--radius-full); background:#fff; display:flex; align-items:center; justify-content:center; }
.chat-name { font-family:var(--font-display); font-weight:700; font-size:1rem; line-height:1.1; }
.chat-status { font-size:.75rem; opacity:.9; }
.chat-close { margin-left:auto; color:#fff; font-size:1.5rem; line-height:1; width:28px; height:28px; }
.chat-body { padding:var(--space-4); display:flex; flex-direction:column; gap:.6rem; background:#ECE5DD; max-height:320px; overflow-y:auto; }
.chat-msg { max-width:82%; }
.chat-msg p { padding:.6rem .8rem; border-radius:12px; font-size:var(--text-sm); line-height:1.4; box-shadow:0 1px 1px rgba(0,0,0,.08); }
.chat-msg.bot { align-self:flex-start; }
.chat-msg.bot p { background:#fff; color:var(--text-navy); border-top-left-radius:2px; }
.chat-msg.user { align-self:flex-end; }
.chat-msg.user p { background:#DCF8C6; color:var(--text-navy); border-top-right-radius:2px; }
.chat-input { display:flex; align-items:center; gap:.5rem; padding:.6rem; background:#fff; border-top:1px solid var(--gray-2); }
.chat-input input { flex:1; border:1px solid var(--gray-2); border-radius:var(--radius-full); padding:.55rem .9rem; font-size:var(--text-sm); }
.chat-input input:focus { outline:none; border-color:var(--wa-green); }
.chat-send { width:40px; height:40px; border-radius:var(--radius-full); background:var(--wa-green); color:#fff; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.chat-send:hover { background:var(--wa-green-hover); }

/* ================= RESPONSIVE ================= */
@media (max-width:960px) {
  .steps-grid, .truck-grid { grid-template-columns:repeat(2,1fr); }
  .listing-grid { grid-template-columns:1fr; }
  .about { background-attachment:scroll; }
}
@media (max-width:768px) {
  .main-nav, .header-right .btn-whatsapp { display:none; }
  .nav-toggle { display:flex; }
  .header-right { gap:var(--space-2); }
}
@media (max-width:640px) {
  .steps-grid, .truck-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .stat-divider { display:none; }
  .stats-inner { gap:var(--space-6); }
  .hero { min-height:auto; padding-block:var(--space-20); }
  .listing-detail { padding:var(--space-6); }
}


/* ===== José advisor spotlight ===== */
.jose-section { padding-block: clamp(3.5rem, 7vw, 6rem); background: #0a1628; }
.jose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 860px) {
  .jose-grid { grid-template-columns: minmax(240px, 380px) 1fr; }
}
.jose-photo-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  aspect-ratio: 3/4;
  background: #152238;
}
.jose-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.jose-copy h2 { margin-bottom: .75rem; }
.jose-copy p { color: rgba(255,255,255,.75); font-size: 1.05rem; line-height: 1.65; margin: 0 0 1rem; }
.jose-meta { display: flex; flex-wrap: wrap; gap: .5rem 1rem; margin: 1rem 0 1.25rem; color: rgba(255,255,255,.55); font-size: .9rem; }
.jose-meta strong { color: #F5A623; font-weight: 600; }
.hero-team-pill img {
  width: 64px !important;
  height: 64px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(245,166,35,.7);
}


/* ===== Stores (high contrast) ===== */
.stores-section {
  background: #0a1628;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  border-block: 1px solid rgba(255,255,255,.06);
}
.stores-head .section-title { color: #ffffff; }
.stores-head .section-lead { color: rgba(255,255,255,.78); }
.stores-head .eyebrow { color: var(--orange); }
.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.store-card {
  display: block;
  padding: 1.5rem 1.35rem 1.4rem;
  border-radius: 14px;
  text-decoration: none;
  color: #f4f7fb;
  background: #152238;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 12px 32px rgba(0,0,0,.28);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.store-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245,166,35,.55);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
  color: #ffffff;
}
.store-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #0a1628;
  background: #f5a623;
  padding: .28rem .55rem;
  border-radius: 999px;
  margin-bottom: .85rem;
}
.store-name {
  margin: 0 0 .4rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
}
.store-brands {
  margin: 0 0 .65rem;
  font-size: .95rem;
  font-weight: 600;
  color: #f5a623;
}
.store-desc {
  margin: 0 0 1.15rem;
  font-size: .95rem;
  line-height: 1.5;
  color: rgba(255,255,255,.78);
}
.store-cta { pointer-events: none; }
