/** Shopify CDN: Minification failed

Line 488:16 Expected identifier but found whitespace
Line 488:17 Unexpected "2px"

**/
/* ===== STORELAB THEME CSS ===== */

:root {
  --navy: #0e1628;
  --navy-dark: #080f1e;
  --navy-mid: #131f35;
  --blue: #1d8ff2;
  --blue-dark: #1565c0;
  --white: #f5f5f5;
  --grey: rgba(255,255,255,0.45);
  --border: rgba(255,255,255,0.07);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--navy-dark);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
  background: rgba(8,15,30,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(29,143,242,0.15);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700;
  color: var(--white); text-decoration: none;
}
.nav-logo span { color: var(--blue); }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 600;
  color: rgba(245,245,245,0.55);
  text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }

.nav-cta {
  background: var(--blue); color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 24px; border: none; cursor: pointer; border-radius: 2px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(29,143,242,0.35); }

.nav-mobile-btn {
  display: none; background: none; border: none;
  color: var(--white); font-size: 24px; cursor: pointer;
}

.nav-mobile {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: var(--navy); z-index: 99;
  flex-direction: column; padding: 24px 48px; gap: 16px;
  border-bottom: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 600;
  color: rgba(255,255,255,0.7); text-decoration: none;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.nav-cta-mobile {
  background: var(--blue); color: white !important;
  padding: 12px 24px; border-radius: 2px;
  text-align: center; margin-top: 8px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 64px 48px 0;
  position: relative; overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 52%; height: 100%;
  background: var(--navy);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero::after {
  content: '';
  position: absolute; top: 0; right: 52%;
  width: 5px; height: 100%;
  background: var(--blue);
  transform: skewX(-4deg);
  box-shadow: 0 0 30px rgba(29,143,242,0.5);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(29,143,242,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(29,143,242,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.hero-content { position: relative; z-index: 2; max-width: 540px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(29,143,242,0.12);
  border: 1px solid rgba(29,143,242,0.35);
  border-radius: 100px; padding: 7px 18px; margin-bottom: 28px;
}
.hero-tag-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue); box-shadow: 0 0 8px var(--blue);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.85)} }
.hero-tag span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--blue); letter-spacing: 0.12em; text-transform: uppercase;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 100px; line-height: 0.92;
  color: var(--white); letter-spacing: 2px; margin-bottom: 24px;
}
.hero-title .outline {
  -webkit-text-stroke: 2px var(--blue);
  color: transparent;
}

.hero-sub {
  font-size: 17px; color: var(--grey);
  line-height: 1.65; margin-bottom: 40px; max-width: 420px;
}

.hero-btns { display: flex; gap: 16px; align-items: center; }

.btn-primary {
  background: var(--blue); color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 16px 36px; border: none; cursor: pointer; border-radius: 2px;
  text-decoration: none; display: inline-block;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(29,143,242,0.4); }

.btn-secondary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); background: none; border: none; cursor: pointer;
  opacity: 0.55; transition: opacity 0.2s; text-decoration: none;
}
.btn-secondary:hover { opacity: 1; }

.hero-visual {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 52%; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}

.hero-flask {
  position: relative;
  animation: float 3s ease-in-out infinite;
}
@keyframes rocketBob {
  0%, 100% { transform: translate(148px, 12px); }
  50% { transform: translate(148px, 4px); }
}

#rocket { transform-box: fill-box; }

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }
.hero-flask svg { width: 340px; height: 340px; filter: drop-shadow(0 0 40px rgba(29,143,242,0.35)); overflow: visible; }

.hero-bg-text {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 260px;
  color: rgba(29,143,242,0.04);
  right: 20px; top: 50%; transform: translateY(-50%);
  letter-spacing: -10px; pointer-events: none;
}

.hero-stats {
  display: flex; gap: 40px; margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-value { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--blue); letter-spacing: 1px; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.35); letter-spacing: 0.05em; }

/* ===== MARQUEE ===== */
.marquee-wrap {
  background: var(--blue); padding: 14px 0;
  overflow: hidden; white-space: nowrap;
}
.marquee-inner { display: inline-flex; animation: marquee 20s linear infinite; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 3px; color: white; padding: 0 32px;
}
.marquee-dot { color: rgba(255,255,255,0.4); }

/* ===== SECTION STYLES ===== */
.section-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 58px; letter-spacing: 2px;
  color: var(--white); line-height: 1; margin-bottom: 48px;
}

/* ===== SERVICES ===== */
.services { padding: 80px 48px; background: var(--navy-dark); }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.service-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 4px; padding: 36px 32px;
  cursor: pointer; transition: transform 0.2s, border-color 0.2s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0; transition: opacity 0.2s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(29,143,242,0.3); }
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  border-color: rgba(29,143,242,0.4);
  background: linear-gradient(135deg, var(--navy-mid) 0%, rgba(29,143,242,0.08) 100%);
}
.service-card.featured::before { opacity: 1; }

.service-badge {
  display: inline-block;
  background: var(--blue); color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 2px; margin-bottom: 20px;
}
.service-icon { font-size: 36px; margin-bottom: 16px; }
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.service-name span { color: var(--blue); }
.service-desc { font-size: 14px; color: var(--grey); line-height: 1.6; margin-bottom: 24px; }
.service-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px; color: var(--white); letter-spacing: 1px; margin-bottom: 20px;
}
.service-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.service-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.6);
}
.service-check { color: var(--blue); font-size: 14px; }
.service-btn {
  width: 100%; padding: 13px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 2px; border: none; cursor: pointer;
  transition: transform 0.15s; text-decoration: none; display: block; text-align: center;
}
.service-btn.primary { background: var(--blue); color: white; }
.service-btn.outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.service-btn:hover { transform: translateY(-1px); }

/* ===== HOW IT WORKS ===== */
.how {
  padding: 80px 48px;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.how::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 45%; height: 100%;
  background: var(--navy-dark);
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
}
.how-inner { position: relative; z-index: 1; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step { display: flex; flex-direction: column; gap: 16px; }
.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px; color: rgba(29,143,242,0.15);
  letter-spacing: 2px; line-height: 1;
}
.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--white); letter-spacing: 0.05em; text-transform: uppercase;
}
.step-desc { font-size: 14px; color: var(--grey); line-height: 1.65; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--blue);
  padding: 60px 64px;
  display: flex; align-items: center; justify-content: space-between;
  overflow: hidden; position: relative;
}
.cta-banner::before {
  content: 'R1500';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 200px;
  color: rgba(255,255,255,0.08);
  position: absolute; right: 60px; top: 50%;
  transform: translateY(-50%);
  letter-spacing: -5px; pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-bottom: 10px;
}
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 68px; color: white;
  letter-spacing: 2px; line-height: 1; margin-bottom: 8px;
}
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.7); }
.cta-btn {
  position: relative; z-index: 1;
  background: white; color: var(--blue);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 18px 40px; border: none; cursor: pointer; border-radius: 2px;
  text-decoration: none; display: inline-block;
  transition: transform 0.15s, box-shadow 0.15s;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* ===== WHY STORELAB ===== */
.why {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-item {
  background: var(--navy-dark);
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 12px;
  border-right: 1px solid var(--border);
}
.why-item:last-child { border-right: none; }
.why-icon { font-size: 28px; }
.why-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--white); letter-spacing: 0.05em; text-transform: uppercase;
}
.why-desc { font-size: 13px; color: var(--grey); line-height: 1.55; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: var(--white);
}
.footer-logo span { color: var(--blue); }
.footer-links { display: flex; gap: 32px; list-style: none; }
.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600;
  color: rgba(245,245,245,0.35);
  text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--blue); }
.footer-right { text-align: right; }
.footer-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--blue); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-copy { font-size: 12px; color: rgba(245,245,245,0.2); }

/* ===== PRODUCT PAGE ===== */
.product-page-wrap {
  padding: 100px 48px 60px;
  background: var(--navy-dark);
  max-width: 1200px;
  margin: 0 auto;
}

.product-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.product-page-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 700;
  color: var(--white); margin-bottom: 16px; line-height: 1.1;
}

.product-page-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; color: var(--white);
  letter-spacing: 1px; margin-bottom: 24px;
}

.product-page-desc {
  font-size: 15px; color: var(--grey);
  line-height: 1.75; margin-bottom: 36px;
}

.product-add-btn {
  width: 100%; font-size: 16px;
  padding: 18px; margin-bottom: 12px;
  display: block; text-align: center;
  border: none; cursor: pointer;
}

.product-contact-link {
  display: block; text-align: center;
  padding: 14px; border: 1px solid var(--border);
  border-radius: 2px; color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}

.product-page-features {
  margin-top: 32px; padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
}
  border-radius: 2px; color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 32px;
  transition: border-color 0.2s;
}
.product-contact-btn:hover { border-color: var(--blue); color: var(--white); }

.product-trust {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
}


.page-hero {
  padding: 140px 48px 80px;
  background: var(--navy-dark);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(29,143,242,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(29,143,242,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px; color: var(--white); letter-spacing: 2px; line-height: 1;
  margin-bottom: 16px;
}
.page-hero-title span { color: var(--blue); }
.page-hero-sub {
  font-size: 18px; color: var(--grey); line-height: 1.65;
}

.page-content {
  padding: 80px 48px;
  background: var(--navy-dark);
  max-width: 900px; margin: 0 auto;
}
.page-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px; color: var(--white); letter-spacing: 1px;
  margin-bottom: 16px; margin-top: 48px;
}
.page-content p {
  font-size: 16px; color: var(--grey); line-height: 1.75; margin-bottom: 20px;
}

/* Contact form */
.contact-form { max-width: 600px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.5); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%; padding: 14px 16px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 2px; color: var(--white);
  font-family: 'Barlow', sans-serif; font-size: 15px;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--blue);
}
.form-group textarea { height: 140px; resize: vertical; }
.form-submit {
  background: var(--blue); color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 16px 40px; border: none; cursor: pointer; border-radius: 2px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(29,143,242,0.4); }

/* Portfolio grid */
.portfolio-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  padding: 80px 48px;
}
.portfolio-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.portfolio-card:hover { transform: translateY(-4px); border-color: rgba(29,143,242,0.3); }
.portfolio-img {
  width: 100%; aspect-ratio: 16/9;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}
.portfolio-info { padding: 24px; }
.portfolio-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.portfolio-type {
  font-size: 13px; color: var(--blue);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-mobile-btn { display: block; }

  /* Hero */
  .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 100px 24px 48px;
    min-height: auto;
  }
  .hero::before, .hero::after { display: none; }
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .hero-title { font-size: 56px; }
  .hero-sub { max-width: 100%; margin: 0 auto 32px; }
  .hero-btns { justify-content: center; flex-wrap: wrap; }
  .hero-stats { flex-wrap: wrap; gap: 24px; justify-content: center; }
  .hero-tag { margin: 0 auto 24px; }

  .section-title { font-size: 38px; }
  .marquee-item { font-size: 13px; padding: 0 20px; }

  /* Services */
  .services { padding: 48px 20px; }
  .services-grid { grid-template-columns: 1fr; }

  /* How it works */
  .how { padding: 48px 20px; }
  .how::before { display: none; }
  .steps { grid-template-columns: 1fr; gap: 32px; }

  /* CTA Banner */
  .cta-banner { padding: 48px 20px; flex-direction: column; gap: 32px; text-align: center; }
  .cta-banner::before { display: none; }
  .cta-title { font-size: 44px; }

  /* Why */
  .why { grid-template-columns: 1fr 1fr; }
  .why-item { padding: 20px; }

  /* Footer */
  .footer { padding: 40px 20px; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .footer-right { text-align: center; }

  /* Pages */
  .page-hero { padding: 100px 20px 48px; }
  .page-hero-title { font-size: 40px; }
  .page-hero-sub { font-size: 16px; }
  .page-content { padding: 40px 20px; }
  .portfolio-grid { grid-template-columns: 1fr; padding: 40px 20px; }

  /* Product page mobile */
  .product-page-wrap { padding: 40px 20px; }
  .product-page-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .product-page-title { font-size: 32px; }
  .product-page-price { font-size: 36px; }

  /* Flask — always visible, show below content on mobile */
  .hero-visual {
    display: flex !important;
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    margin-top: 40px !important;
    justify-content: center !important;
    align-items: center !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
  }
  .hero-flask svg { width: 220px !important; height: 220px !important; }
  .hero-bg-text { display: none; }
}
