html { scroll-behavior: smooth; }

body.xb-body-home-redesign {
  background: #f7f7f5;
}

.storefront-mobile-home,
.storefront-mobile-home *,
.storefront-mobile-home *::before,
.storefront-mobile-home *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.storefront-mobile-home {
  --w: #ffffff;
  --bg: #f7f7f5;
  --surface: #ffffff;
  --ink: #0c0c0b;
  --ink2: #5a5a55;
  --ink3: #a8a8a2;
  --border: #eaeae6;
  --accent: #FF6B00;
  --accent-pale: #fff4ec;
  --blue: #2563EB;
  --blue-pale: #eef3ff;
  --green: #15803d;
  --green-pale: #f0fdf4;
  --red: #dc2626;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 6px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.09);
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-full: 999px;
  --nav-h: 56px;
  --bot-h: 64px;
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  padding-bottom: 0;
}

.storefront-mobile-home a {
  color: inherit;
  text-decoration: none;
}

.storefront-mobile-home button,
.storefront-mobile-home input,
.storefront-mobile-home select {
  font: inherit;
}

.storefront-mobile-home .syne {
  font-family: 'Syne', sans-serif;
}

.storefront-mobile-home .top-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}

body.admin-bar .storefront-mobile-home .top-nav {
  top: 32px;
}

.storefront-mobile-home .nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.5px;
  color: var(--ink);
  flex: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}

.storefront-mobile-home .logo-pip {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

.storefront-mobile-home .nav-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--w);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  color: var(--ink2);
  box-shadow: var(--shadow-xs);
}

.storefront-mobile-home .nav-icon-btn svg {
  width: 16px;
  height: 16px;
}

.storefront-mobile-home .nav-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 15px;
  height: 15px;
  background: var(--accent);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #fff;
}

.storefront-mobile-home .search-bar {
  padding: 10px 16px 0;
  position: relative;
}

.storefront-mobile-home .search-input-wrap {
  position: relative;
  background: var(--w);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  padding: 0 14px 0 40px;
  height: 44px;
  box-shadow: var(--shadow-xs);
  transition: border-color 0.15s;
}

.storefront-mobile-home .search-input-wrap:focus-within {
  border-color: var(--blue);
}

.storefront-mobile-home .search-ico {
  position: absolute;
  left: 14px;
  color: var(--ink3);
  pointer-events: none;
}

.storefront-mobile-home .search-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
}

.storefront-mobile-home .search-input-wrap input::placeholder {
  color: var(--ink3);
}

.storefront-mobile-home .search-filter {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  background: var(--w);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink2);
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
  margin-top: 10px;
}

.storefront-mobile-home .search-row {
  display: flex;
  gap: 8px;
  padding: 10px 16px 0;
}

.storefront-mobile-home .search-row .search-bar {
  padding: 0;
  flex: 1;
}

.storefront-mobile-home .cat-scroll {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 12px 16px 4px;
  white-space: nowrap;
}

.storefront-mobile-home .cat-scroll::-webkit-scrollbar,
.storefront-mobile-home .brand-scroll::-webkit-scrollbar,
.storefront-mobile-home .card-scroll::-webkit-scrollbar,
.storefront-mobile-home .review-scroll::-webkit-scrollbar,
.storefront-mobile-home .trust-scroll::-webkit-scrollbar {
  display: none;
}

.storefront-mobile-home .cat-pill {
  padding: 7px 14px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: var(--w);
  color: var(--ink2);
  white-space: nowrap;
  transition: all 0.15s;
  box-shadow: var(--shadow-xs);
  flex-shrink: 0;
}

.storefront-mobile-home .cat-pill.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.storefront-mobile-home .hero {
  margin: 14px 16px 0;
  border-radius: var(--r-xl);
  background: var(--ink);
  overflow: hidden;
  position: relative;
  padding: 28px 24px 24px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.storefront-mobile-home .hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 15%, rgba(255,107,0,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 85%, rgba(37,99,235,0.18) 0%, transparent 55%);
  pointer-events: none;
}

.storefront-mobile-home .hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

.storefront-mobile-home .hero-cards {
  position: absolute;
  top: 16px;
  right: -12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transform: rotate(15deg);
  opacity: 0.2;
}

.storefront-mobile-home .h-card {
  width: 72px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.3px;
}

.storefront-mobile-home .hero-content {
  position: relative;
  z-index: 1;
}

.storefront-mobile-home .hero-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  font-weight: 500;
  padding: 4px 9px;
  border-radius: var(--r-full);
  margin-bottom: 10px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.storefront-mobile-home .live-dot {
  width: 5px;
  height: 5px;
  background: #4ade80;
  border-radius: 50%;
  animation: blink 2s infinite;
}

.storefront-mobile-home .hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.storefront-mobile-home .hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.storefront-mobile-home .hero-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
  max-width: 240px;
}

.storefront-mobile-home .hero-btns {
  display: flex;
  gap: 8px;
}

.storefront-mobile-home .btn-hero-primary {
  height: 40px;
  padding: 0 20px;
  border-radius: var(--r-full);
  background: var(--accent);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.15s;
}

.storefront-mobile-home .btn-hero-primary:active,
.storefront-mobile-home .promo-btn:active,
.storefront-mobile-home .nl-btn:active,
.storefront-mobile-home .btn-topup-cta:active {
  opacity: 0.85;
}

.storefront-mobile-home .btn-hero-ghost {
  height: 40px;
  padding: 0 18px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.storefront-mobile-home .stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px 16px 0;
}

.storefront-mobile-home .stat-box {
  background: var(--w);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 10px;
  text-align: center;
  box-shadow: var(--shadow-xs);
}

.storefront-mobile-home .stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--ink);
}

.storefront-mobile-home .stat-lbl {
  font-size: 10px;
  color: var(--ink3);
  margin-top: 1px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.storefront-mobile-home .section {
  padding: 20px 16px 0;
}

.storefront-mobile-home .sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.storefront-mobile-home .sec-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.storefront-mobile-home .sec-link {
  font-size: 12px;
  color: var(--blue);
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}

.storefront-mobile-home .brand-scroll,
.storefront-mobile-home .review-scroll,
.storefront-mobile-home .trust-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.storefront-mobile-home .brand-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  background: var(--w);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink2);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
  transition: all 0.13s;
}

.storefront-mobile-home .brand-chip:active {
  border-color: var(--ink);
  color: var(--ink);
}

.storefront-mobile-home .brand-pip {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.storefront-mobile-home .card-scroll {
  display: flex;
  gap: 11px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 2px 16px 4px;
  margin: 0 -16px;
}

.storefront-mobile-home .p-card {
  background: var(--w);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  width: 152px;
  position: relative;
}

.storefront-mobile-home .p-card:active {
  transform: scale(0.97);
}

.storefront-mobile-home .p-card-img {
  width: 100%;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.storefront-mobile-home .p-card-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.2px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
  z-index: 1;
  position: relative;
}

.storefront-mobile-home .p-card-badge {
  position: absolute;
  top: 7px;
  left: 7px;
  font-size: 9px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  color: #fff;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255,255,255,0.2);
  text-transform: uppercase;
}

.storefront-mobile-home .p-card-badge.sale {
  background: var(--accent);
  border-color: var(--accent);
}

.storefront-mobile-home .p-card-badge.new-badge {
  background: var(--blue);
  border-color: var(--blue);
}

.storefront-mobile-home .p-card-body {
  padding: 10px 12px 12px;
}

.storefront-mobile-home .p-card-name {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.storefront-mobile-home .p-card-sub {
  font-size: 10px;
  color: var(--ink3);
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.storefront-mobile-home .p-card-foot,
.storefront-mobile-home .d-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.storefront-mobile-home .d-card:last-child {
  margin-bottom: 0;
}

.storefront-mobile-home .r-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.storefront-mobile-home .p-card-price {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.storefront-mobile-home .d-price {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.storefront-mobile-home .old-p {
  font-size: 10px;
  color: var(--ink3);
  text-decoration: line-through;
  font-weight: 400;
  margin-right: 3px;
}

.storefront-mobile-home .add-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
  flex-shrink: 0;
}

.storefront-mobile-home .add-btn:active {
  transform: scale(0.9);
  background: var(--accent);
}

.storefront-mobile-home .promo {
  margin: 20px 16px 0;
  border-radius: var(--r-xl);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.storefront-mobile-home .promo-dark {
  background: var(--ink);
}

.storefront-mobile-home .promo-orange {
  background: var(--accent);
}

.storefront-mobile-home .promo-blue {
  background: var(--blue);
}

.storefront-mobile-home .promo-circle-1,
.storefront-mobile-home .promo-circle-2 {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}

.storefront-mobile-home .promo-circle-1 {
  width: 120px;
  height: 120px;
  top: -40px;
  right: -30px;
}

.storefront-mobile-home .promo-circle-2 {
  width: 80px;
  height: 80px;
  bottom: -30px;
  right: 30px;
  border-color: rgba(255,255,255,0.05);
}

.storefront-mobile-home .promo-text {
  z-index: 1;
}

.storefront-mobile-home .promo-eye {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.storefront-mobile-home .promo-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.4px;
  margin-bottom: 3px;
}

.storefront-mobile-home .promo-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
}

.storefront-mobile-home .promo-btn {
  padding: 9px 16px;
  background: #fff;
  color: var(--ink);
  border: none;
  border-radius: var(--r-full);
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 1;
  transition: opacity 0.15s;
}

.storefront-mobile-home .p-grid,
.storefront-mobile-home .amounts,
.storefront-mobile-home .shop-grid,
.storefront-mobile-home .net-row,
.storefront-mobile-home .footer-cols,
.storefront-mobile-home .stats-row {
  display: grid;
}

.storefront-mobile-home .p-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
}

.storefront-mobile-home .p-grid .p-card {
  width: 100%;
}

.storefront-mobile-home .p-grid .p-card-img {
  height: 96px;
}

.storefront-mobile-home .d-card {
  background: var(--w);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.15s;
  margin-bottom: 10px;
}

.storefront-mobile-home .d-card:active {
  box-shadow: var(--shadow-md);
}

.storefront-mobile-home .d-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.storefront-mobile-home .d-info {
  flex: 1;
  min-width: 0;
}

.storefront-mobile-home .d-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.storefront-mobile-home .d-desc {
  font-size: 11px;
  color: var(--ink2);
  line-height: 1.45;
  margin-bottom: 8px;
}

.storefront-mobile-home .tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1px;
}

.storefront-mobile-home .tag-g {
  background: var(--green-pale);
  color: var(--green);
}

.storefront-mobile-home .tag-b {
  background: var(--blue-pale);
  color: var(--blue);
}

.storefront-mobile-home .tag-o {
  background: var(--accent-pale);
  color: var(--accent);
}

.storefront-mobile-home .topup-wrap {
  margin: 20px 16px 0;
  background: var(--w);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.storefront-mobile-home .topup-head {
  background: var(--ink);
  padding: 20px 20px 16px;
  position: relative;
  overflow: hidden;
}

.storefront-mobile-home .topup-head::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  right: -30px;
  top: -30px;
}

.storefront-mobile-home .topup-eye {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.storefront-mobile-home .topup-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.4px;
  margin-bottom: 2px;
}

.storefront-mobile-home .topup-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}

.storefront-mobile-home .topup-body {
  padding: 16px;
}

.storefront-mobile-home .net-row {
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-bottom: 14px;
}

.storefront-mobile-home .net-btn {
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 9px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: var(--w);
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink2);
  transition: all 0.13s;
}

.storefront-mobile-home .net-btn.active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.storefront-mobile-home .net-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
}

.storefront-mobile-home .input-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.storefront-mobile-home .t-input,
.storefront-mobile-home .nl-input {
  border: 1.5px solid var(--border);
  outline: none;
  transition: border-color 0.15s;
}

.storefront-mobile-home .t-input {
  flex: 1;
  height: 44px;
  border-radius: var(--r-sm);
  padding: 0 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--ink);
  background: var(--bg);
}

.storefront-mobile-home .t-input:focus,
.storefront-mobile-home .nl-input:focus {
  border-color: var(--blue);
  background: #fff;
}

.storefront-mobile-home .t-input::placeholder,
.storefront-mobile-home .nl-input::placeholder {
  color: var(--ink3);
}

.storefront-mobile-home .amounts {
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 14px;
}

.storefront-mobile-home .amt-btn {
  padding: 9px 4px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xs);
  background: var(--w);
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink2);
  cursor: pointer;
  text-align: center;
  transition: all 0.13s;
}

.storefront-mobile-home .amt-btn.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.storefront-mobile-home .btn-topup-cta {
  width: 100%;
  height: 46px;
  border-radius: var(--r-md);
  background: var(--ink);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
  letter-spacing: -0.2px;
}

.storefront-mobile-home .shop-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}

.storefront-mobile-home .shop-tile {
  background: var(--w);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 6px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition: transform 0.15s;
  text-align: center;
}

.storefront-mobile-home .shop-tile:active {
  transform: scale(0.95);
}

.storefront-mobile-home .shop-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
}

.storefront-mobile-home .shop-name {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.storefront-mobile-home .shop-from {
  font-size: 9px;
  color: var(--ink3);
}

.storefront-mobile-home .how-card {
  margin: 0 16px;
  background: var(--w);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 22px 18px;
  box-shadow: var(--shadow-sm);
}

.storefront-mobile-home .how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 16px;
}

.storefront-mobile-home .how-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 20px;
  position: relative;
}

.storefront-mobile-home .how-step:last-child {
  padding-bottom: 0;
}

.storefront-mobile-home .how-step::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 36px;
  width: 1px;
  bottom: 0;
  background: var(--border);
}

.storefront-mobile-home .how-step:last-child::before {
  display: none;
}

.storefront-mobile-home .step-n {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.storefront-mobile-home .step-info {
  padding-top: 4px;
}

.storefront-mobile-home .step-ttl {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.storefront-mobile-home .step-dsc {
  font-size: 12px;
  color: var(--ink2);
  line-height: 1.45;
}

.storefront-mobile-home .review-scroll {
  gap: 11px;
  padding: 2px 16px 4px;
  margin: 0 -16px;
}

.storefront-mobile-home .r-card {
  background: var(--w);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px;
  min-width: 230px;
  max-width: 260px;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
}

.storefront-mobile-home .r-verified {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 9px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--r-full);
  margin-bottom: 7px;
  letter-spacing: 0.2px;
}

.storefront-mobile-home .r-stars {
  color: #FBBF24;
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 7px;
}

.storefront-mobile-home .r-text {
  font-size: 12px;
  color: var(--ink2);
  line-height: 1.55;
  margin-bottom: 12px;
}

.storefront-mobile-home .r-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.storefront-mobile-home .r-name {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
}

.storefront-mobile-home .r-loc {
  font-size: 10px;
  color: var(--ink3);
}

.storefront-mobile-home .newsletter {
  margin: 20px 16px 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 26px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.storefront-mobile-home .nl-icon {
  width: 46px;
  height: 46px;
  background: var(--ink);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.storefront-mobile-home .nl-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.4px;
  margin-bottom: 4px;
}

.storefront-mobile-home .nl-sub {
  font-size: 12px;
  color: var(--ink2);
  margin-bottom: 16px;
}

.storefront-mobile-home .nl-form {
  display: flex;
  gap: 7px;
}

.storefront-mobile-home .nl-input {
  flex: 1;
  height: 44px;
  border-radius: var(--r-full);
  padding: 0 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  background: var(--w);
  color: var(--ink);
}

.storefront-mobile-home .nl-btn {
  height: 44px;
  padding: 0 18px;
  border-radius: var(--r-full);
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.storefront-mobile-home .nl-note {
  font-size: 10px;
  color: var(--ink3);
  margin-top: 8px;
}

.storefront-mobile-home .app-promo {
  margin: 20px 16px 0;
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  overflow: hidden;
  position: relative;
}

.storefront-mobile-home .app-promo::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  right: -40px;
  bottom: -40px;
}

.storefront-mobile-home .ap-text,
.storefront-mobile-home .ap-btns {
  z-index: 1;
}

.storefront-mobile-home .ap-eye {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.storefront-mobile-home .ap-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: 3px;
}

.storefront-mobile-home .ap-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}

.storefront-mobile-home .ap-btns {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex-shrink: 0;
}

.storefront-mobile-home .ap-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  cursor: pointer;
  color: #fff;
  white-space: nowrap;
  transition: background 0.15s;
}

.storefront-mobile-home .ap-btn:active {
  background: rgba(255,255,255,0.14);
}

.storefront-mobile-home .ap-btn-ico {
  font-size: 18px;
  line-height: 1;
}

.storefront-mobile-home .ap-btn-sm {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  line-height: 1;
}

.storefront-mobile-home .ap-btn-lg {
  display: block;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
}

.storefront-mobile-home .trust-scroll {
  gap: 10px;
  padding: 2px 16px 4px;
  margin: 0 -16px;
}

.storefront-mobile-home .trust-tile {
  background: var(--w);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 14px;
  min-width: 140px;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
  text-align: center;
}

.storefront-mobile-home .trust-ico {
  font-size: 22px;
  margin-bottom: 7px;
}

.storefront-mobile-home .trust-ttl {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.storefront-mobile-home .trust-dsc {
  font-size: 10px;
  color: var(--ink3);
  line-height: 1.4;
}

.storefront-mobile-home .footer {
  margin: 20px 16px 0;
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: 26px 20px 20px;
  overflow: hidden;
}

.storefront-mobile-home .footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.4px;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.storefront-mobile-home .footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  margin-bottom: 16px;
}

.storefront-mobile-home .footer-socials,
.storefront-mobile-home .f-payments {
  display: flex;
  gap: 7px;
  margin-bottom: 20px;
}

.storefront-mobile-home .soc-btn {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  transition: background 0.13s;
}

.storefront-mobile-home .soc-btn:active {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.storefront-mobile-home .f-links a:active {
  color: #fff;
}

.storefront-mobile-home .footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 18px;
}

.storefront-mobile-home .footer-cols {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.storefront-mobile-home .f-col-title {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-family: 'Syne', sans-serif;
}

.storefront-mobile-home .f-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.storefront-mobile-home .f-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.13s;
}

.storefront-mobile-home .footer-bottom {
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.storefront-mobile-home .f-copy {
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  margin-bottom: 10px;
}

.storefront-mobile-home .f-payments {
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.storefront-mobile-home .pay-chip {
  padding: 3px 9px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  font-family: 'Syne', sans-serif;
}

.storefront-mobile-home .bot-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  display: flex;
  height: var(--bot-h);
  z-index: 200;
  padding-bottom: env(safe-area-inset-bottom);
}

.storefront-mobile-home .bn-item,
.storefront-mobile-home .bn-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  color: var(--ink3);
  text-decoration: none;
  transition: color 0.13s;
  padding-top: 4px;
}

.storefront-mobile-home .bn-item.active {
  color: var(--ink);
}

.storefront-mobile-home .bn-item svg,
.storefront-mobile-home .bn-fab svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.storefront-mobile-home .bn-item span,
.storefront-mobile-home .bn-center span {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.storefront-mobile-home .bn-fab {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.22);
  margin-top: -14px;
  transition: transform 0.13s;
}

.storefront-mobile-home .bn-fab:active {
  transform: scale(0.93);
}

.storefront-mobile-home .bn-fab svg {
  width: 18px;
  height: 18px;
  color: #fff;
  stroke-width: 2;
}

.storefront-mobile-home .page-end {
  height: calc(var(--bot-h) + 20px);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.storefront-mobile-home .anim {
  animation: slideUp 0.38s ease both;
}

.storefront-mobile-home .anim-1 { animation-delay: 0.04s; }
.storefront-mobile-home .anim-2 { animation-delay: 0.09s; }
.storefront-mobile-home .anim-3 { animation-delay: 0.14s; }
.storefront-mobile-home .anim-4 { animation-delay: 0.19s; }
.storefront-mobile-home .anim-5 { animation-delay: 0.24s; }
.storefront-mobile-home .anim-6 { animation-delay: 0.29s; }
.storefront-mobile-home .anim-7 { animation-delay: 0.34s; }
.storefront-mobile-home .anim-8 { animation-delay: 0.39s; }

@media (max-width: 782px) {
  body.admin-bar .storefront-mobile-home .top-nav {
    top: 46px;
  }
}
