/* ─── FreeKin — homepage-only styles ───────────────────────────────────────── */
/* Loaded only by index.html. Content pages use styles.css alone.               */

/* ── Nav overrides ── */
.home-page header.site {
  max-width: none;
  padding: 0 48px;
  height: 66px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(244, 246, 243, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-download {
  margin-left: 8px !important;
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 8px 16px !important;
  border-radius: 20px !important;
  font-size: 13px !important;
  transition: background 0.15s !important;
}
.nav-download:hover { background: var(--accent-dark) !important; color: #fff !important; }

/* ── Shared section headings ── */
.section-headline {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
  margin: 0 0 14px;
  text-wrap: balance;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin: 0;
  max-width: 460px;
  line-height: 1.65;
}

/* ── Hero ── */
.home-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 140px 24px 0;
  text-align: center;
  position: relative;
}

/* Soft green glow behind headline */
.home-hero::before {
  content: '';
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: min(880px, 100vw);
  height: 520px;
  background: radial-gradient(ellipse at center top, rgba(47, 125, 91, 0.14) 0%, transparent 66%);
  pointer-events: none;
}

/* Subtle contour-dot grid */
.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(47, 125, 91, 0.09) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse at 50% 18%, black 0%, transparent 58%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 18%, black 0%, transparent 58%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding: 6px 14px;
  border: 1px solid rgba(47, 125, 91, 0.24);
  border-radius: 20px;
  background: rgba(47, 125, 91, 0.07);
  position: relative;
  z-index: 1;
}

.hero-headline {
  font-size: clamp(40px, 7.2vw, 92px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 0 0 24px;
  color: var(--text);
  position: relative;
  z-index: 1;
  text-wrap: balance;
  max-width: 100%;      /* flex column w/ align-items:center sizes to content — cap so long text wraps */
}
.hero-headline .glow {
  color: var(--accent);
}

.hero-tagline {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--text-muted);
  margin: 0 auto 40px;
  max-width: min(440px, 100%);
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.hero-cta {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s, border-color 0.15s, color 0.15s;
}
.btn-store:hover { text-decoration: none; transform: translateY(-1px); }
.btn-store:active { transform: translateY(0) scale(0.98); }
.btn-store svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn-store.primary { background: var(--accent); color: #fff; }
.btn-store.primary:hover { background: var(--accent-dark); }
.btn-store.secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-store.secondary:hover { border-color: var(--accent); color: var(--accent-dark); }

/* ── Hero phone cluster ── */
.hero-phones {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  position: relative;
  z-index: 1;
  margin-bottom: -2px;
}
.hero-phone { flex-shrink: 0; transform-origin: bottom center; }
.hero-phone.hp-left  { transform: rotate(-5deg) translateY(14px); opacity: 0.9; }
.hero-phone.hp-right { transform: rotate(5deg) translateY(14px); opacity: 0.9; }
.hero-phone.hp-center { z-index: 3; }

/* ── Phone frame (used in hero + showcase) ── */
.phone {
  width: 240px;
  border-radius: 34px;
  background: #fff;
  padding: 9px;
  box-shadow: var(--shadow-card), 0 30px 60px rgba(14, 31, 22, 0.14);
  border: 1px solid var(--border);
}
.phone-screen {
  border-radius: 26px;
  overflow: hidden;
  background: var(--bg);
  position: relative;
}
.hp-left .phone, .hp-right .phone { width: 190px; }
.hp-center .phone { width: 246px; }

/* Status bar */
.pm-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 16px 4px;
  font-size: 10px;
  font-weight: 700;
  color: var(--text);
  background: var(--surface);
}
.pm-status .dots { display: inline-flex; gap: 3px; align-items: center; }
.pm-status .dots i { width: 4px; height: 4px; border-radius: 50%; background: var(--text-faint); display: inline-block; }

/* Generic app header inside phone */
.pm-appbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 12px;
  background: var(--surface);
}
.pm-appbar .pm-title { font-size: 15px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); }
.pm-appbar .pm-spacer { flex: 1; }
.pm-chip {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--accent-muted);
  color: var(--accent-dark);
}

/* Map canvas */
.pm-map {
  height: 150px;
  position: relative;
  background:
    linear-gradient(0deg, rgba(47,125,91,0.05), rgba(47,125,91,0.05)),
    repeating-linear-gradient(48deg, transparent 0 18px, rgba(47,125,91,0.06) 18px 19px),
    linear-gradient(160deg, #E8EFE9, #DCE7DD);
}
.pm-map.tall { height: 210px; }
.pm-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.pm-pin {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
  transform: translate(-50%, -50%);
}

/* Track / list body */
.pm-body { padding: 12px 14px 16px; background: var(--surface); }
.pm-trackname { font-size: 15px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 2px; color: var(--text); }
.pm-loc { font-size: 11px; color: var(--text-muted); margin: 0 0 12px; display: flex; align-items: center; gap: 4px; }

/* Multi-axis difficulty rows */
.pm-axes { display: flex; flex-direction: column; gap: 9px; margin-bottom: 12px; }
.pm-axis { display: flex; align-items: center; gap: 8px; }
.pm-axis .lbl { font-size: 10px; font-weight: 700; width: 58px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.03em; }
.pm-axis .bar { flex: 1; height: 6px; border-radius: 3px; background: var(--surface-alt); overflow: hidden; }
.pm-axis .bar i { display: block; height: 100%; border-radius: 3px; }
.pm-axis .val { font-size: 11px; font-weight: 800; width: 26px; text-align: right; color: var(--text); }
.ax-cardio i { background: var(--cardio); }
.ax-tech i { background: var(--technical); }
.ax-expo i { background: var(--exposure); }
.ax-cardio .val { color: var(--cardio); }
.ax-tech .val { color: var(--technical); }
.ax-expo .val { color: var(--exposure); }

/* Stat pills row */
.pm-stats { display: flex; gap: 6px; }
.pm-stat {
  flex: 1;
  background: var(--surface-alt);
  border-radius: 10px;
  padding: 8px 6px;
  text-align: center;
}
.pm-stat b { display: block; font-size: 13px; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.pm-stat span { font-size: 9px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }

/* Track card list */
.pm-list { padding: 10px; background: var(--bg); display: flex; flex-direction: column; gap: 10px; }
.pm-card {
  background: var(--surface);
  border-radius: 14px;
  padding: 10px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 10px;
  align-items: center;
}
.pm-card .thumb {
  width: 46px; height: 46px; border-radius: 11px; flex-shrink: 0;
  background: linear-gradient(150deg, #E8EFE9, #D4E4D8);
  position: relative; overflow: hidden;
}
.pm-card .thumb svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.pm-card .info { flex: 1; min-width: 0; }
.pm-card .info h4 { margin: 0 0 3px; font-size: 12px; font-weight: 800; color: var(--text); letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pm-card .info .meta { font-size: 10px; color: var(--text-muted); }
.pm-badge {
  font-size: 11px; font-weight: 800; color: #fff;
  width: 26px; height: 26px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pm-actrow { display: inline-flex; align-items: center; gap: 4px; }
.pm-acticon { width: 13px; height: 13px; color: var(--accent); }

/* Live event participants */
.pm-live-banner {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px; background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700;
}
.pm-live-banner .live-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: livePulse 1.6s infinite; }
@keyframes livePulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.pm-people { padding: 12px 14px 16px; background: var(--surface); display: flex; flex-direction: column; gap: 10px; }
.pm-person { display: flex; align-items: center; gap: 9px; }
.pm-ava { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: #fff; flex-shrink: 0; }
.pm-person .who { flex: 1; }
.pm-person .who b { display: block; font-size: 12px; font-weight: 700; color: var(--text); }
.pm-person .who span { font-size: 10px; color: var(--text-muted); }
.pm-person .dist { font-size: 11px; font-weight: 800; color: var(--accent-dark); }

/* ── How it works ── */
.home-how { border-top: 1px solid var(--border); padding: 96px 48px; }
.how-heading {
  max-width: 1100px;
  margin: 0 auto 64px;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  text-align: center;
}
.how-steps {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 17px; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, rgba(47,125,91,0.08), rgba(47,125,91,0.35) 15%, rgba(47,125,91,0.35) 85%, rgba(47,125,91,0.08));
  z-index: 0;
}
.how-step { display: flex; flex-direction: column; position: relative; z-index: 1; }
.how-number {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg);
  border: 1px solid rgba(47,125,91,0.5);
  color: var(--accent-dark);
  font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
}
.how-title { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); margin: 0 0 10px; }
.how-desc { font-size: 14px; line-height: 1.65; color: var(--text-muted); margin: 0; }
.how-arrow { display: flex; align-items: flex-start; padding: 6px 28px 0; color: rgba(47,125,91,0.5); }
.how-steps .reveal:nth-child(3) { transition-delay: 0.12s; }
.how-steps .reveal:nth-child(5) { transition-delay: 0.24s; }

/* ── Feature showcase ── */
.home-showcase { border-top: 1px solid var(--border); }
.showcase-intro { max-width: 1100px; margin: 0 auto; padding: 96px 48px 56px; text-align: center; }
.showcase-intro .section-sub { margin: 0 auto; }

.feature-selector {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px 112px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: center;
}
.fs-nav { display: flex; flex-direction: column; gap: 2px; position: sticky; top: 90px; }
.fs-tab {
  display: block; width: 100%; text-align: left;
  padding: 11px 16px; font-size: 15px; font-weight: 700;
  color: var(--text-muted);
  background: none; border: none;
  border-left: 2px solid transparent; border-radius: 0 8px 8px 0;
  cursor: pointer; letter-spacing: -0.01em; font-family: inherit;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.fs-tab:hover { color: var(--text); background: var(--surface-alt); }
.fs-tab.active { color: var(--accent-dark); border-left-color: var(--accent); background: var(--accent-muted); }

.fs-panel { min-height: 520px; display: flex; align-items: center; }
.fs-pane { display: none; width: 100%; grid-template-columns: auto 1fr; gap: 56px; align-items: center; }
.fs-pane.active { display: grid; animation: fsPaneIn 0.22s ease; }
@keyframes fsPaneIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.fs-phone { display: flex; justify-content: center; }

.showcase-label { display: block; font-size: 22px; font-weight: 800; letter-spacing: -0.02em; color: var(--accent); margin-bottom: 12px; }
.showcase-headline {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800; letter-spacing: -0.028em; line-height: 1.08;
  color: var(--text); margin: 0 0 18px; text-wrap: balance;
}
.showcase-desc { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin: 0; max-width: 420px; }

/* ── Stats strip ── */
.home-stats { border-top: 1px solid var(--border); padding: 80px 48px; }
.stats-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-card);
}
.stat-cell { padding: 44px 32px; background: var(--surface); text-align: center; }
.stat-value {
  display: block;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 900; letter-spacing: -0.04em;
  color: var(--accent); margin-bottom: 8px; line-height: 1;
}
.stat-label { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* ── Social proof ── */
.home-social { border-top: 1px solid var(--border); padding: 96px 0; }
.social-slider { overflow-x: scroll; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; }
.social-slider::-webkit-scrollbar { display: none; }
.social-track { display: flex; }
.social-page {
  flex: 0 0 100%; scroll-snap-align: start;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; padding: 0 48px; box-sizing: border-box;
}
.social-quote {
  display: flex; flex-direction: column;
  background: var(--surface); border-radius: 18px;
  padding: 24px; box-shadow: var(--shadow-card);
}
.quote-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  margin-bottom: 16px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: #fff;
}
.quote-text { font-size: 15px; line-height: 1.65; color: var(--text-secondary); margin: 0 0 16px; flex: 1; }
.quote-attr { font-size: 13px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.02em; }

.carousel-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; padding: 0 48px; }
.carousel-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--surface);
  color: var(--text-muted); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: border-color 0.15s, color 0.15s; font-family: inherit;
}
.carousel-btn:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.carousel-btn:disabled { opacity: 0.35; cursor: default; pointer-events: none; }
.carousel-dots { display: flex; gap: 8px; align-items: center; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); transition: background 0.2s, width 0.2s; }
.dot.active { background: var(--accent); width: 18px; border-radius: 3px; }

/* ── Final CTA ── */
.home-final-cta { border-top: 1px solid var(--border); padding: 120px 48px; text-align: center; position: relative; overflow: hidden; }
.home-final-cta::before {
  content: '';
  position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%);
  width: min(760px, 100vw); height: 420px;
  background: radial-gradient(ellipse, rgba(47,125,91,0.12) 0%, transparent 66%);
  pointer-events: none;
}
.home-final-cta h2 {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900; letter-spacing: -0.04em; line-height: 1.02;
  color: var(--text); margin: 0 0 16px; position: relative; z-index: 1;
}
.home-final-cta p { font-size: 16px; color: var(--text-muted); margin: 0 auto 44px; max-width: 380px; line-height: 1.6; position: relative; z-index: 1; }
.home-final-cta .hero-cta { position: relative; z-index: 1; margin-bottom: 0; }

/* ── Footer ── */
.home-footer {
  max-width: none !important;
  border-top: 1px solid var(--border);
  padding: 32px 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px; margin-top: 0;
}
.home-footer .footer-brand { font-size: 15px; font-weight: 800; color: var(--text-muted); letter-spacing: -0.01em; display: inline-flex; align-items: center; gap: 8px; }
.home-footer .footer-brand span { color: var(--accent); }
.home-footer .footer-links { display: flex; gap: 4px; flex-wrap: wrap; }
.home-footer .footer-links a { font-size: 13px; color: var(--text-secondary); padding: 4px 9px; border-radius: 6px; transition: color 0.12s, background 0.12s; }
.home-footer .footer-links a:hover { color: var(--text); background: var(--surface-alt); text-decoration: none; }
.home-footer .footer-copy { font-size: 12px; color: var(--text-faint); }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.stats-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.stats-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.stats-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .fs-pane.active { animation: none; }
  .pm-live-banner .live-dot { animation: none; }
}

/* ── Responsive ── */
.fs-select { display: none; }

@media (max-width: 960px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .home-page header.site { padding: 0 24px; }
  .home-stats, .home-final-cta { padding-left: 28px; padding-right: 28px; }
  .home-footer { padding: 28px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .hp-left .phone, .hp-right .phone { width: 140px; }
  .hp-center .phone { width: 176px; }
}

@media (max-width: 860px) {
  .home-how { padding: 72px 28px; }
  .how-heading { margin-bottom: 48px; }
  .how-steps { grid-template-columns: 1fr; }
  .how-arrow, .how-steps::before { display: none; }
  .how-steps .reveal:nth-child(3), .how-steps .reveal:nth-child(5) { transition-delay: 0s; }
  .how-step { flex-direction: row; align-items: flex-start; gap: 20px; padding-bottom: 40px; position: relative; }
  .how-step:last-child { padding-bottom: 0; }
  .how-number { margin-bottom: 0; }
  .how-content { flex: 1; min-width: 0; }
  .how-step:not(:last-child)::after {
    content: ''; position: absolute; left: 17px; top: 36px; bottom: 0; width: 1px;
    background: linear-gradient(to bottom, rgba(47,125,91,0.45), rgba(47,125,91,0.06));
  }

  .feature-selector { grid-template-columns: 1fr; gap: 0; padding: 0 28px 72px; }
  .fs-nav {
    display: flex; flex-direction: row; position: static;
    overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
    gap: 8px; padding: 0 0 4px; margin-bottom: 28px;
  }
  .fs-nav::-webkit-scrollbar { display: none; }
  .fs-tab {
    flex-shrink: 0; white-space: nowrap; width: auto; text-align: center;
    padding: 9px 16px; border-radius: 20px; font-size: 13px;
    border-left: none; border: 1px solid var(--border); background: var(--surface); color: var(--text-secondary);
  }
  .fs-tab.active { background: var(--accent); color: #fff; border-color: transparent; }
  .fs-panel { min-height: unset; }
  .fs-pane.active { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .showcase-desc { max-width: none; margin: 0 auto; }
  .showcase-intro { padding: 72px 28px 32px; }

  .home-social { padding: 72px 0; }
  .social-slider { overflow-x: visible; scroll-snap-type: none; }
  .social-track { flex-direction: column; }
  .social-page { flex: none; grid-template-columns: 1fr; gap: 16px; padding: 0 28px; }
  .social-page + .social-page { margin-top: 16px; }
  .carousel-nav { display: none; }
}

@media (max-width: 640px) {
  .home-page header.site { padding: 0 20px; }
  .home-page header.site nav a:not(.nav-download) { display: none; }
  .nav-download { margin-left: 0 !important; }
  .home-hero { padding-top: 100px; }
  .home-how { padding: 56px 20px; }
  .how-heading { font-size: 1.75rem; margin-bottom: 36px; }
  .showcase-intro { padding: 56px 20px 24px; }
  .feature-selector { padding: 0 20px 56px; }
  .home-social { padding: 56px 0; }
  .social-page { padding: 0 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; border-radius: 16px; }
  .hero-phones { gap: 10px; }
  .hp-left .phone, .hp-right .phone { width: 104px; }
  .hp-center .phone { width: 132px; }
  .home-final-cta { padding: 72px 20px; }
  .home-footer { padding: 24px 20px; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
  .home-footer .footer-links { justify-content: center; }
  .hero-cta { gap: 8px; }
  .btn-store { padding: 11px 15px; font-size: 13px; }
}
