@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');


/* ─────────── RESET ─────────── */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* ─────────── VARIABLES ─────────── */

:root {
  --black:   #000000;
  --white:   #f5f5f7;
  --g1:      #1d1d1f;
  --g2:      #2d2d2f;
  --g3:      #424245;
  --g4:      #6e6e73;
  --g5:      #86868b;
  --g6:      #aeaeb2;
  --accent:  #2997ff;
  --accent2: #0077ed;
  --red:     #ff375f;
  --green:   #30d158;
  --r:       18px;
  --nav:     52px;
  --sf:      'SF Pro Display', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Inter', sans-serif;
}


/* ─────────── BASE ─────────── */

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sf);
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--g3);
  border-radius: 3px;
}


/* ─────────── NAV ─────────── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.3px;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
}

.logo svg {
  width: 22px;
  height: 22px;
  fill: var(--accent);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  color: var(--g6);
  text-decoration: none;
  transition: color .2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transition: transform .25s cubic-bezier(.4, 0, .2, 1);
  transform-origin: left;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--g6);
  display: flex;
  align-items: center;
  padding: 4px;
  transition: color .2s;
}

.nav-btn:hover {
  color: var(--white);
}

.cart-wrap {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-badge.pop {
  animation: cartPop .35s cubic-bezier(.34, 1.56, .64, 1);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--g6);
}


/* ─────────── HERO ─────────── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav) + 60px) 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(41, 151, 255, 0.13) 0%, transparent 70%);
  animation: heroPulse 8s ease-in-out infinite;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

.orb1 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: -120px;
  left: -140px;
  opacity: .17;
  animation: orbF 12s ease-in-out infinite;
}

.orb2 {
  width: 420px;
  height: 420px;
  background: #a855f7;
  bottom: -100px;
  right: -100px;
  opacity: .12;
  animation: orbF 14s ease-in-out infinite reverse;
}

.orb3 {
  width: 280px;
  height: 280px;
  background: #30d158;
  top: 45%;
  left: 62%;
  opacity: .07;
  animation: orbF 10s ease-in-out 3s infinite;
}

.hero-eyebrow {
  position: relative;
  z-index: 2;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp .75s .1s cubic-bezier(.2, .8, .2, 1) forwards;
}

.hero h1 {
  position: relative;
  z-index: 2;
  font-size: clamp(52px, 8.5vw, 100px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.02;
  opacity: 0;
  animation: fadeUp .75s .22s cubic-bezier(.2, .8, .2, 1) forwards;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-sub {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  font-size: clamp(16px, 2.2vw, 21px);
  font-weight: 300;
  color: var(--g5);
  max-width: 540px;
  line-height: 1.5;
  opacity: 0;
  animation: fadeUp .75s .38s cubic-bezier(.2, .8, .2, 1) forwards;
}

.hero-cta {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 14px;
  margin-top: 42px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp .75s .52s cubic-bezier(.2, .8, .2, 1) forwards;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 52px;
  margin-top: 72px;
  opacity: 0;
  animation: fadeUp .75s .68s cubic-bezier(.2, .8, .2, 1) forwards;
}

.stat {
  text-align: center;
}

.stat-n {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -.03em;
}

.stat-l {
  font-size: 12px;
  color: var(--g5);
  margin-top: 3px;
  letter-spacing: .04em;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--g4);
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid var(--g3);
  border-radius: 11px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--g5);
  border-radius: 2px;
  animation: swScroll 1.8s ease-in-out infinite;
}


/* ─────────── BUTTONS ─────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  border: none;
  white-space: nowrap;
  transition: transform .2s cubic-bezier(.34, 1.56, .64, 1), box-shadow .2s, background .2s;
}

.btn:active {
  transform: scale(0.96) !important;
}

.btn-blue {
  background: var(--accent);
  color: #fff;
  padding: 13px 28px;
}

.btn-blue:hover {
  background: var(--accent2);
  box-shadow: 0 0 32px rgba(41, 151, 255, .4), 0 4px 16px rgba(0, 0, 0, .3);
  transform: translateY(-2px);
}

.btn-dim {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  padding: 13px 28px;
  backdrop-filter: blur(10px);
}

.btn-dim:hover {
  background: rgba(255, 255, 255, .14);
  transform: translateY(-2px);
}

.btn-sm {
  font-size: 13px;
  padding: 9px 18px;
}


/* ─────────── SECTION HELPERS ─────────── */

section {
  padding: 100px 24px;
}

.tag {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.stitle {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.08;
}

.ssub {
  font-size: 17px;
  font-weight: 300;
  color: var(--g5);
  line-height: 1.6;
  max-width: 560px;
  margin-top: 14px;
}

.ctr {
  text-align: center;
}

.ctr .ssub {
  margin: 14px auto 0;
}


/* ─────────── FEATURES STRIP ─────────── */

.features-strip {
  background: var(--black);
  padding: 70px 24px;
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 24px 32px;
  cursor: default;
}

.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(41, 151, 255, .09);
  border: 1px solid rgba(41, 151, 255, .18);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s;
}

.feat:hover .feat-icon {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 28px rgba(41, 151, 255, .28);
}

.feat-icon svg {
  width: 22px;
  height: 22px;
}

.feat-title {
  font-size: 15px;
  font-weight: 500;
}

.feat-desc {
  font-size: 13px;
  color: var(--g5);
  line-height: 1.5;
  max-width: 200px;
}


/* ─────────── PRODUCTS ─────────── */

.products-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.products-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

.pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.pill {
  padding: 7px 16px;
  border-radius: 980px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--g3);
  color: var(--g5);
  background: none;
  transition: all .2s cubic-bezier(.4, 0, .2, 1);
}

.pill.on,
.pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(41, 151, 255, .08);
}

.pgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}


/* ─────────── PRODUCT CARD ─────────── */

.card {
  background: var(--g1);
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, .06);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s, border-color .3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .65), 0 0 0 1px rgba(41, 151, 255, .1);
  border-color: rgba(255, 255, 255, .12);
}

.cbadge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 980px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.bn { background: var(--accent); color: #fff; }
.bs { background: var(--red);    color: #fff; }
.bh { background: #ff9f0a;       color: #000; }

.cimg-wrap {
  background: var(--g2);
  overflow: hidden;
}

.cimg {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  padding: 30px;
  display: block;
}

.cbody {
  padding: 18px 20px 20px;
}

.ccat {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cname {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 4px;
}

.cdesc {
  font-size: 13px;
  color: var(--g5);
  line-height: 1.5;
  margin-bottom: 14px;
}

.cfoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cprice-now {
  font-size: 19px;
  font-weight: 600;
}

.cprice-was {
  font-size: 13px;
  color: var(--g4);
  text-decoration: line-through;
}

.cadd {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .2s, transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .2s;
  flex-shrink: 0;
}

.cadd:hover {
  background: var(--accent2);
  transform: scale(1.16);
  box-shadow: 0 4px 18px rgba(41, 151, 255, .45);
}

.cadd:active {
  transform: scale(.9);
}

.cadd svg {
  width: 16px;
  height: 16px;
}


/* ─────────── BANNER ─────────── */

.banner {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0a2540 0%, #000 60%);
  border: 1px solid rgba(255, 255, 255, .07);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}

.banner-body {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.banner-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}

.banner-h {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.1;
}

.banner-p {
  font-size: 15px;
  color: var(--g5);
  line-height: 1.6;
  max-width: 340px;
}

.banner-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: radial-gradient(ellipse at center, rgba(41, 151, 255, .15) 0%, transparent 70%);
}

.banner-img img {
  width: 100%;
  max-width: 360px;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(41, 151, 255, .25));
  animation: floatImg 5s ease-in-out infinite;
}

.banner-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 151, 255, .08) 0%, transparent 70%);
  pointer-events: none;
}


/* ─────────── BRAND LOGO MARQUEE ─────────── */

.marquee-section {
  padding: 56px 0;
  overflow: hidden;
  position: relative;
}

.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(to right, var(--black), transparent);
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(to left, var(--black), transparent);
}

.mrow {
  display: flex;
  overflow: hidden;
}

.mrow + .mrow {
  margin-top: 20px;
}

.mtrack {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marq 32s linear infinite;
}

.mtrack-rev {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marq 38s linear infinite reverse;
}

.marquee-section:hover .mtrack,
.marquee-section:hover .mtrack-rev {
  animation-play-state: paused;
}

.brand-pill {
  height: 56px;
  padding: 0 28px;
  flex-shrink: 0;
  background: var(--g1);
  border-radius: 980px;
  border: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: default;
  transition: border-color .25s, background .25s;
}

.brand-pill:hover {
  background: var(--g2);
  border-color: rgba(255, 255, 255, .14);
}

.brand-pill svg {
  flex-shrink: 0;
}

.brand-pill span {
  font-size: 14px;
  font-weight: 500;
  color: var(--g6);
  letter-spacing: -.01em;
  white-space: nowrap;
}


/* ─────────── REVIEWS ─────────── */

.reviews-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.rgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.rcard {
  background: var(--g1);
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, .06);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1), border-color .3s, box-shadow .3s;
}

.rcard:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .4);
}

.stars {
  display: flex;
  gap: 3px;
}

.star {
  width: 13px;
  height: 13px;
  fill: #ff9f0a;
}

.rtext {
  font-size: 14px;
  color: var(--g6);
  line-height: 1.65;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--g3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}

.rname {
  font-size: 13px;
  font-weight: 500;
}

.rmeta {
  font-size: 12px;
  color: var(--g5);
}


/* ─────────── NEWSLETTER ─────────── */

.nl {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 24px;
}

.nl-form {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.nl-input {
  flex: 1;
  min-width: 220px;
  padding: 13px 18px;
  background: var(--g1);
  border: 1.5px solid var(--g3);
  border-radius: 980px;
  font-size: 15px;
  color: var(--white);
  font-family: var(--sf);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}

.nl-input::placeholder {
  color: var(--g4);
}

.nl-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(41, 151, 255, .15);
}


/* ─────────── FOOTER ─────────── */

footer {
  background: var(--g1);
  padding: 60px 24px 32px;
}

.footer-in {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.f-brand .logo {
  font-size: 20px;
  margin-bottom: 14px;
  display: inline-flex;
}

.f-brand p {
  font-size: 13px;
  color: var(--g5);
  line-height: 1.6;
  max-width: 280px;
}

.f-col h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: .03em;
}

.f-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.f-col ul a {
  font-size: 13px;
  color: var(--g5);
  text-decoration: none;
  transition: color .18s;
}

.f-col ul a:hover {
  color: var(--white);
}

.footer-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bot p {
  font-size: 12px;
  color: var(--g4);
}

.socials {
  display: flex;
  gap: 14px;
}

.soc-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--g2);
  border: 1px solid var(--g3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g5);
  cursor: pointer;
  transition: all .2s cubic-bezier(.34, 1.56, .64, 1);
}

.soc-btn:hover {
  background: var(--g3);
  color: var(--white);
  transform: scale(1.15);
}


/* ─────────── CART DRAWER ─────────── */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(4px);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  max-width: 100vw;
  background: #111;
  border-left: 1px solid rgba(255, 255, 255, .08);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-hd {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-hd h3 {
  font-size: 19px;
  font-weight: 600;
}

.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--g5);
  display: flex;
  transition: color .2s, transform .25s;
}

.cart-close:hover {
  color: var(--white);
  transform: rotate(90deg);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--g4);
  gap: 12px;
  text-align: center;
}

.cart-empty svg {
  width: 48px;
  height: 48px;
  opacity: .3;
}

.c-item {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--g1);
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .05);
  animation: slideR .3s cubic-bezier(.2, .8, .2, 1);
}

.c-item-img {
  width: 60px;
  height: 60px;
  background: var(--g2);
  border-radius: 10px;
  object-fit: contain;
  padding: 8px;
  flex-shrink: 0;
}

.c-item-info {
  flex: 1;
}

.c-item-name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 3px;
}

.c-item-price {
  font-size: 13px;
  color: var(--accent);
}

.c-item-rm {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--g4);
  padding: 4px;
  transition: color .18s, transform .2s;
}

.c-item-rm:hover {
  color: var(--red);
  transform: scale(1.2);
}

.cart-ft {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.cart-total span {
  font-size: 15px;
  color: var(--g5);
}

.cart-total strong {
  font-size: 22px;
  font-weight: 600;
}


/* ─────────── TOAST ─────────── */

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: rgba(28, 28, 30, .96);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 500;
  z-index: 3000;
  backdrop-filter: blur(24px);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), opacity .3s;
  opacity: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}


/* ─────────── MOBILE MENU ─────────── */

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0, 0, 0, .97);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  display: flex;
}

.mobile-menu a {
  font-size: 30px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  opacity: 0;
  transform: translateY(16px);
  transition: color .2s;
}

.mobile-menu.open a {
  animation: fadeUp .4s cubic-bezier(.2, .8, .2, 1) forwards;
}

.mobile-menu.open a:nth-child(1) { animation-delay: .05s; }
.mobile-menu.open a:nth-child(2) { animation-delay: .12s; }
.mobile-menu.open a:nth-child(3) { animation-delay: .19s; }
.mobile-menu.open a:nth-child(4) { animation-delay: .26s; }

.mobile-menu a:hover {
  color: var(--accent);
}


/* ─────────── SCROLL REVEAL ─────────── */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s cubic-bezier(.2, .8, .2, 1), transform .75s cubic-bezier(.2, .8, .2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.sg .sg-c {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s cubic-bezier(.2, .8, .2, 1), transform .6s cubic-bezier(.2, .8, .2, 1);
}

.sg.in .sg-c:nth-child(1) { opacity: 1; transform: none; transition-delay: .04s; }
.sg.in .sg-c:nth-child(2) { opacity: 1; transform: none; transition-delay: .13s; }
.sg.in .sg-c:nth-child(3) { opacity: 1; transform: none; transition-delay: .22s; }
.sg.in .sg-c:nth-child(4) { opacity: 1; transform: none; transition-delay: .31s; }


/* ─────────── KEYFRAMES ─────────── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes heroPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .65; transform: scale(1.07); }
}

@keyframes orbF {
  0%, 100% { transform: translateY(0) translateX(0); }
  33%       { transform: translateY(-28px) translateX(18px); }
  66%       { transform: translateY(18px) translateX(-14px); }
}

@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes swScroll {
  0%   { opacity: 1; transform: translateY(0); }
  80%  { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; }
}

@keyframes cartPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.6); }
  100% { transform: scale(1); }
}

@keyframes slideR {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: none; }
}

@keyframes marq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ─────────── CONTACT ─────────── */

.contact-section {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 24px;
}

.contact-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--g1);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 20px;
  padding: 22px 32px;
  text-decoration: none;
  color: var(--white);
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s, border-color .3s;
  min-width: 240px;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
  border-color: rgba(255, 255, 255, .15);
}

.contact-card.whatsapp:hover {
  box-shadow: 0 20px 50px rgba(37, 211, 102, .2);
  border-color: rgba(37, 211, 102, .35);
}

.contact-card.email:hover {
  box-shadow: 0 20px 50px rgba(41, 151, 255, .2);
  border-color: rgba(41, 151, 255, .35);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon.wa-icon {
  background: rgba(37, 211, 102, .12);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, .25);
}

.contact-icon.em-icon {
  background: rgba(41, 151, 255, .12);
  color: var(--accent);
  border: 1px solid rgba(41, 151, 255, .25);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--g5);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 15px;
  font-weight: 500;
}


/* ─────────── RATING MODAL ─────────── */

.rating-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s ease;
}

.rating-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.rating-modal {
  background: #1c1c1e;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 20px 20px 0 0;
  padding: 10px 28px 40px;
  width: 100%;
  max-width: 460px;
  text-align: center;
  transform: translateY(100%);
  transition: transform .44s cubic-bezier(.32, 0, .17, 1);
  box-shadow: 0 -12px 60px rgba(0, 0, 0, .6);
  position: relative;
}

.rating-overlay.open .rating-modal {
  transform: translateY(0);
}

.rating-handle {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .18);
  margin: 0 auto 24px;
}

.rating-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, .07);
  border: none;
  cursor: pointer;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g5);
  transition: background .18s, color .18s;
}

.rating-close:hover {
  background: rgba(255, 255, 255, .13);
  color: var(--white);
}

.rating-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.rating-brand-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(41, 151, 255, .12);
  border: 1px solid rgba(41, 151, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.rating-brand-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--accent);
}

.rating-brand-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.02em;
}

.rating-brand-sub {
  font-size: 12px;
  color: var(--g5);
  margin-top: -4px;
}

.rating-divider {
  height: 1px;
  background: rgba(255, 255, 255, .07);
  margin: 18px 0;
}

.rating-prompt {
  font-size: 14px;
  color: var(--g6);
  margin-bottom: 16px;
}

.rating-stars-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 10px;
}

.rstar-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 3px;
  transition: transform .2s cubic-bezier(.34, 1.56, .64, 1);
}

.rstar-btn:hover {
  transform: scale(1.22);
}

.rstar-btn svg {
  width: 38px;
  height: 38px;
  fill: rgba(255, 255, 255, .08);
  stroke: rgba(255, 255, 255, .16);
  stroke-width: 1.2;
  transition: fill .14s, stroke .14s, filter .14s;
}

.rstar-btn.lit svg {
  fill: #ff9f0a;
  stroke: #e08800;
  filter: drop-shadow(0 2px 8px rgba(255, 159, 10, .45));
}

.rating-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--g5);
  min-height: 18px;
  margin-bottom: 20px;
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: color .18s;
}

.rating-label.chosen {
  color: var(--accent);
}

.rating-submit {
  width: 100%;
  height: 50px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--sf);
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, opacity .18s, transform .2s;
}

.rating-submit:hover {
  background: var(--accent2);
  transform: translateY(-1px);
}

.rating-submit:active {
  transform: scale(.98);
}

.rating-submit:disabled {
  opacity: .28;
  cursor: not-allowed;
  transform: none;
}

.rating-thanks {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 8px 0 4px;
}

.rating-thanks h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 0;
}

.rating-thanks p {
  font-size: 13px;
  color: var(--g5);
  margin: 0;
}


/* ─────────── PROCESSING OVERLAY ─────────── */

.proc-overlay {
  position: fixed;
  inset: 0;
  z-index: 9100;
  background: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

.proc-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.proc-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(41, 151, 255, .1);
  border: 1px solid rgba(41, 151, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.proc-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
}

.proc-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 6px;
}

.proc-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, .38);
  margin-bottom: 44px;
}

.proc-spinner-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.proc-spinner {
  width: 48px;
  height: 48px;
  border: 2.5px solid rgba(255, 255, 255, .1);
  border-top-color: rgba(255, 255, 255, .85);
  border-radius: 50%;
  animation: procSpin .85s linear infinite;
}

.proc-tick-svg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  opacity: 0;
}

.proc-tick-path {
  stroke: #30d158;
  stroke-width: 2.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
}

.proc-overlay.done .proc-spinner {
  animation: none;
  border-color: rgba(255, 255, 255, .06);
  border-top-color: rgba(255, 255, 255, .06);
}

.proc-overlay.done .proc-tick-svg {
  opacity: 1;
}

.proc-overlay.done .proc-tick-path {
  animation: procCheck .38s cubic-bezier(.4, 0, .2, 1) .04s forwards;
}

.proc-status {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .02em;
  min-height: 20px;
}

.proc-overlay.done .proc-status {
  color: #30d158;
}

.proc-dots span {
  display: inline-block;
  opacity: 0;
  animation: procDot 1.2s ease-in-out infinite;
}

.proc-dots span:nth-child(2) { animation-delay: .18s; }
.proc-dots span:nth-child(3) { animation-delay: .36s; }

.proc-overlay.done .proc-dots {
  display: none;
}

@keyframes procSpin  { to { transform: rotate(360deg); } }
@keyframes procCheck { to { stroke-dashoffset: 0; } }
@keyframes procDot   { 0%, 80%, 100% { opacity: 0; } 40% { opacity: 1; } }
@keyframes fadeUp    { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }


/* ─────────── RESPONSIVE ─────────── */

@media (max-width: 1000px) {
  .features-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav-links    { display: none; }
  .hamburger    { display: flex; }
  .banner       { grid-template-columns: 1fr; }
  .banner-img   { display: none; }
  .footer-top   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer-top   { grid-template-columns: 1fr; }
  .banner-body  { padding: 40px 32px; }
  section       { padding: 70px 20px; }
  .hero-stats   { gap: 28px; }
  .features-inner { grid-template-columns: 1fr; }
}