/* KINETAPE ZA — Premium landing (consumer product, non-medical) */
:root {
  --white: #ffffff;
  --off-white: #f5f9ff;
  --mist: #e8f2fc;
  --sky: #c5ddfb;
  --blue-400: #6ba3f5;
  --blue-500: #3b82f6;
  --cobalt: #2563eb;
  --navy: #0f172a;
  --navy-deep: #0a1628;
  --glass: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.8);
  --shadow-soft: 0 24px 80px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 12px 40px rgba(37, 99, 235, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Outfit", var(--font-sans);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--off-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--cobalt);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Particles canvas */
#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.page-wrap {
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 32px rgba(15, 23, 42, 0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-500), var(--cobalt));
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: min(100%, 420px);
}

.nav-links a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.8125rem;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--cobalt);
}

@media (min-width: 900px) {
  .nav-links {
    gap: 1.75rem;
    max-width: none;
  }

  .nav-links a {
    font-size: 0.9375rem;
  }
}

@media (max-width: 520px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--cobalt));
  color: var(--white);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--cobalt);
  border: 1px solid rgba(37, 99, 235, 0.25);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  border-color: var(--cobalt);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
}

/* Hero */
.hero {
  position: relative;
  padding: 7rem 1.5rem 4rem;
  min-height: min(92vh, 900px);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--mist) 45%, var(--sky) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 60%;
  bottom: -20%;
  left: -20%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.9) 0%, transparent 65%);
  pointer-events: none;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-ad {
  background: rgba(15, 23, 42, 0.08);
  color: var(--navy);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.badge-sale {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.35);
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.35);
  }
  50% {
    box-shadow: 0 12px 36px rgba(234, 88, 12, 0.55);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 1rem;
  color: var(--navy-deep);
}

.hero-sub {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.0625rem;
  color: rgba(15, 23, 42, 0.75);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

/* Hero visual cluster */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  aspect-ratio: 1;
}

.hero-glow {
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.45) 0%, rgba(147, 197, 253, 0.15) 45%, transparent 70%);
  filter: blur(20px);
  animation: glow-breathe 4s ease-in-out infinite;
}

@keyframes glow-breathe {
  0%,
  100% {
    opacity: 0.85;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.product-svg-wrap,
.hero-product-photo {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 32px 64px rgba(15, 23, 42, 0.18));
}

.hero-product-photo img {
  width: 100%;
  max-width: min(100%, 440px);
  height: auto;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  border-radius: var(--radius-xl);
}

.checkout-product-thumb {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: contain;
  background: linear-gradient(145deg, var(--mist), var(--white));
  flex-shrink: 0;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.float-card {
  position: absolute;
  z-index: 3;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  animation: float-y 5s ease-in-out infinite;
}

.float-card:nth-child(odd) {
  animation-duration: 6s;
  animation-delay: -1s;
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.fc-1 {
  top: 8%;
  left: -2%;
}
.fc-2 {
  top: 22%;
  right: -4%;
  animation-delay: -2s;
}
.fc-3 {
  bottom: 28%;
  left: -6%;
}
.fc-4 {
  bottom: 12%;
  right: 2%;
}
.fc-5 {
  top: 48%;
  right: -8%;
  font-size: 0.75rem;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--navy);
}

.hero-disclaimer {
  margin-top: 2rem;
  max-width: 520px;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(15, 23, 42, 0.55);
  line-height: 1.5;
}

/* Wave divider */
.wave-divider {
  position: relative;
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: clamp(48px, 8vw, 96px);
}

/* Sections */
.section {
  padding: 4rem 1.5rem;
  position: relative;
}

.section--light {
  background: var(--white);
}

.section--gradient {
  background: linear-gradient(180deg, var(--white) 0%, var(--mist) 100%);
}

.section--navy {
  background: linear-gradient(165deg, var(--navy-deep) 0%, #1e3a5f 50%, var(--cobalt) 100%);
  color: var(--white);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 0.75rem;
  color: inherit;
}

.section-lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  opacity: 0.85;
  font-size: 1rem;
}

.body-copy {
  max-width: 720px;
  margin: 0 auto 1.15rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(15, 23, 42, 0.82);
}

.body-copy:last-child {
  margin-bottom: 0;
}

.section--prose .section-inner {
  max-width: 760px;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.section--navy .glass-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.glass-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
}

.glass-card p {
  margin: 0;
  font-size: 0.9375rem;
  opacity: 0.88;
  line-height: 1.55;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Showcase gallery */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .showcase-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.gallery-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, var(--mist), var(--white));
  box-shadow: var(--shadow-card);
  cursor: zoom-in;
}

.gallery-main > img {
  width: 100%;
  height: auto;
  max-height: min(70vh, 640px);
  object-fit: contain;
  margin: 0 auto;
}

.gallery-main::after {
  content: "";
  position: absolute;
  inset: auto 10% -30% 10%;
  height: 40%;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.25), transparent);
  pointer-events: none;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

@media (min-width: 480px) {
  .gallery-thumbs {
    gap: 0.75rem;
  }
}

.gallery-thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
  background: var(--mist);
}

.gallery-thumb:hover,
.gallery-thumb.is-active {
  border-color: var(--cobalt);
  transform: scale(1.02);
}

/* Steps */
.steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: var(--shadow-soft);
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-500), var(--cobalt));
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* City cards */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}

.city-pill {
  padding: 0.85rem 1rem;
  text-align: center;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  font-size: 0.875rem;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.review-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-soft);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--blue-500));
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: 0.9375rem;
}

.review-loc {
  font-size: 0.8125rem;
  opacity: 0.65;
}

.stars {
  color: #fbbf24;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

/* Offer / countdown */
.offer-banner {
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.offer-banner::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12), transparent 45%);
  pointer-events: none;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.countdown-item {
  min-width: 4.5rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.2);
  font-variant-numeric: tabular-nums;
}

.countdown-item span {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
}

.countdown-item small {
  font-size: 0.7rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stock-bar {
  max-width: 360px;
  margin: 1rem auto 0;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.stock-bar-fill {
  height: 100%;
  width: 38%;
  border-radius: inherit;
  background: linear-gradient(90deg, #fbbf24, #f97316);
  animation: stock-pulse 3s ease-in-out infinite;
}

@keyframes stock-pulse {
  0%,
  100% {
    opacity: 0.85;
  }
  50% {
    opacity: 1;
  }
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.faq-item summary {
  padding: 1.15rem 0;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--cobalt);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1.15rem;
  font-size: 0.9375rem;
  opacity: 0.85;
  padding-right: 2rem;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-disclaimer {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  opacity: 0.7;
  line-height: 1.6;
}

/* Legal / inner pages */
.page-hero {
  padding: 6.5rem 1.5rem 2.5rem;
  background: linear-gradient(180deg, var(--mist) 0%, var(--white) 100%);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 0.5rem;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.page-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}

.page-content p,
.page-content li {
  font-size: 0.9375rem;
  color: rgba(15, 23, 42, 0.88);
}

.page-content ul {
  padding-left: 1.25rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 23, 42, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  cursor: zoom-out;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img,
.lightbox svg {
  max-height: 90vh;
  max-width: 100%;
}

/* Checkout */
.checkout-page {
  padding-top: 5rem;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--off-white), var(--mist));
}

.checkout-layout {
  max-width: 1040px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr 380px;
    align-items: start;
  }
}

.checkout-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.checkout-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 1.25rem;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-row.has-error input,
.form-row.has-error select {
  border-color: #dc2626;
}

.error-msg {
  font-size: 0.75rem;
  color: #dc2626;
  margin-top: 0.25rem;
  display: none;
}

.form-row.has-error .error-msg {
  display: block;
}

.form-grid-2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 500px) {
  .form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.price-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.price-line.total {
  font-weight: 700;
  font-size: 1.125rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  margin-top: 0.75rem;
}

.price-strike {
  text-decoration: line-through;
  opacity: 0.55;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 1rem 0;
  font-size: 0.875rem;
}

.checkbox-row input {
  margin-top: 0.2rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  opacity: 0.85;
}

.order-success {
  text-align: center;
  padding: 3rem 1.5rem;
  display: none;
}

.order-success.is-visible {
  display: block;
}

.order-success h2 {
  font-family: var(--font-display);
  color: var(--cobalt);
}

.checkout-form-hidden {
  display: none !important;
}

.quantity-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
}

.qty-btn:hover {
  border-color: var(--cobalt);
  color: var(--cobalt);
}

#qty {
  font-size: 1.25rem;
  font-weight: 700;
  min-width: 2rem;
  text-align: center;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: rgba(15, 23, 42, 0.65);
}
