:root {
  --bg: #e9ebef;
  --surface: #f8f9fc;
  --surface-2: #f2f4f7;
  --ink: #101217;
  --muted: #8b9098;
  --muted-2: #6f757f;
  --line: #e3e6ec;
  --accent: #ff643f;
  --accent-strong: #ff5032;
  --dark: #101216;
  --ring: #fb7f63;
  --radius-xl: 32px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --shadow-main: 0 24px 56px rgba(30, 35, 48, 0.18);
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1150px 620px at 12% -14%, #ffffff 0%, transparent 48%),
    radial-gradient(830px 520px at 98% -6%, #d8dde7 0%, transparent 60%),
    var(--bg);
  display: flex;
  justify-content: center;
  padding: 20px 14px 28px;
  position: relative;
  overflow-x: hidden;
}

.ambient {
  position: fixed;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.45;
  z-index: 0;
}

.ambient-one {
  width: 240px;
  height: 240px;
  background: #ffd3bd;
  top: -80px;
  right: -40px;
}

.ambient-two {
  width: 220px;
  height: 220px;
  background: #ced8ee;
  bottom: -90px;
  left: -70px;
}

.app {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
}

.preview-header {
  margin: 0 2px 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-badge {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  border-radius: 22px;
  background: linear-gradient(155deg, #fff5ee 0%, #ffe4d5 100%);
  padding: 4px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.82),
    0 14px 28px rgba(228, 91, 52, 0.24);
}

.brand-mark {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 18px;
  filter: drop-shadow(0 8px 16px rgba(210, 79, 45, 0.28));
}

.brand-copy {
  min-width: 0;
}

.brand-kicker {
  margin: 0;
  width: fit-content;
  font: 800 0.64rem/1 "Manrope", sans-serif;
  letter-spacing: 0.14em;
  color: #813223;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid #ffd1bf;
  background: linear-gradient(135deg, #fff2ea 0%, #ffe2d3 100%);
  padding: 5px 9px;
  position: relative;
  overflow: hidden;
  animation: bogoPulse 2s ease-in-out infinite;
}

.brand-kicker::after {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  width: 34px;
  left: -44px;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
  animation: bogoSweep 2.4s linear infinite;
}

@keyframes bogoPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 117, 75, 0);
  }

  50% {
    box-shadow: 0 8px 16px rgba(255, 117, 75, 0.28);
  }
}

@keyframes bogoSweep {
  0% {
    left: -44px;
  }

  100% {
    left: calc(100% + 44px);
  }
}

.brand-name {
  margin: 6px 0 0;
  font: 800 2.02rem/0.92 "Sora", sans-serif;
  letter-spacing: -0.02em;
  color: #1f232d;
}

.brand-name::after {
  content: ".";
  color: var(--accent);
}

.mode-switch {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 4px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  box-shadow: 0 10px 22px rgba(52, 58, 71, 0.12);
}

.mode-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  font: 700 0.76rem/1 "Manrope", sans-serif;
  color: var(--muted-2);
  padding: 10px 6px;
  cursor: pointer;
  transition: all 0.24s ease;
}

.mode-btn.active {
  background: var(--ink);
  color: #fff;
}

.phone-frame {
  height: clamp(700px, calc(100vh - 132px), 820px);
  background: linear-gradient(160deg, #fbfcff 0%, #f5f7fa 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-main);
  border: 1px solid #eef1f6;
  padding: 14px;
  overflow: hidden;
  position: relative;
}

.screen {
  display: none;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  position: relative;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
}

.screen::-webkit-scrollbar {
  display: none;
}

.screen.active {
  display: flex;
  flex-direction: column;
  animation: rise 0.32s ease;
}

@keyframes rise {
  from {
    transform: translateY(8px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.top-row {
  display: flex;
  align-items: center;
  gap: 10px;
  position: sticky;
  top: 0;
  z-index: 15;
  padding: 2px 0 10px;
  background: linear-gradient(180deg, #f9fbff 74%, rgba(249, 251, 255, 0));
}

.search-shell {
  height: 44px;
  flex: 1;
  border-radius: 18px;
  background: var(--surface-2);
  border: 1px solid #edf0f4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
}

.search-shell input {
  border: 0;
  background: transparent;
  width: 100%;
  font: 600 0.88rem/1 "Manrope", sans-serif;
  color: #424c5d;
}

.search-shell input:focus {
  outline: 0;
}

.search-shell:focus-within {
  border-color: #c9d6ea;
  box-shadow: 0 0 0 3px rgba(120, 151, 202, 0.16);
}

.icon-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--surface-2);
  display: grid;
  place-items: center;
  color: #20242d;
  cursor: pointer;
  position: relative;
}

.icon-btn.ghost {
  background: #f6f7f9;
  border: 1px solid #eaedf2;
}

.icon {
  width: 18px;
  height: 18px;
  display: block;
}

.icon-muted {
  color: #8a9098;
}

.section-label {
  margin: 16px 0 10px;
  font: 700 0.83rem/1 "Manrope", sans-serif;
}

.catalog-banners {
  margin: 4px 0 12px;
}

.banner-carousel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding-bottom: 2px;
}

.banner-carousel::-webkit-scrollbar {
  display: none;
}

.banner-card {
  min-width: 100%;
  border: 1px solid #e6eaf2;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 8px 18px rgba(34, 49, 73, 0.1);
  min-height: 168px;
}

.banner-card img {
  display: block;
  width: 100%;
  height: 168px;
  object-fit: cover;
  object-position: center;
}

.banner-caption {
  margin: 0;
  padding: 8px 10px 9px;
  font: 700 0.72rem/1.2 "Manrope", sans-serif;
  color: #41506a;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category {
  border: 1px solid #dce3ee;
  background: #fff;
  border-radius: 999px;
  padding: 8px 11px;
  font: 700 0.72rem/1 "Manrope", sans-serif;
  color: #455061;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.category.active {
  border-color: #a8bbd3;
  color: #1f2b3c;
  background: linear-gradient(120deg, #eef4fb 0%, #f9fcff 100%);
  box-shadow: 0 6px 12px rgba(124, 151, 188, 0.2);
}

.categories .loading-note {
  width: 100%;
  grid-column: auto;
}

.thumb {
  width: 30px;
  height: 22px;
  border-radius: 8px;
  display: inline-block;
}

.thumb-apple {
  background: radial-gradient(circle at 18% 20%, #ffd2bd 0%, #ff8768 43%, #cc5f44 100%);
}

.thumb-samsung {
  background: linear-gradient(135deg, #4f586a 0%, #1b1f27 100%);
}

.thumb-huawei {
  background: linear-gradient(135deg, #4a4f57 0%, #171a1f 100%);
}

.split-row {
  margin: 16px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-title {
  margin: 0;
  font: 800 1rem/1 "Sora", sans-serif;
}

.sort {
  border: 0;
  background: transparent;
  color: #6f7480;
  font: 700 0.76rem/1 "Manrope", sans-serif;
}

.product-grid {
  display: grid;
  gap: 14px;
}

.category-group {
  display: grid;
  gap: 9px;
}

.category-group-title {
  margin: 0;
  font: 800 0.9rem/1.2 "Sora", sans-serif;
  color: #3b4657;
}

.category-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.loading-note {
  margin: 0;
  grid-column: 1 / -1;
  border: 1px dashed #d6dbe4;
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  color: #7d838d;
  font: 700 0.76rem/1.35 "Manrope", sans-serif;
}

.product-card {
  border: 1px solid #ebedf2;
  border-radius: 16px;
  background: linear-gradient(160deg, #f4f6fa 0%, #fcfcfd 100%);
  padding: 10px;
  text-align: left;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-card.active {
  border-color: #ffbeab;
  box-shadow: 0 8px 20px rgba(235, 97, 58, 0.16);
}

.product-card .art {
  width: 100%;
  height: 104px;
  border-radius: 14px;
  margin-bottom: 8px;
  position: relative;
  background: #eef1f6;
  overflow: hidden;
}

.product-card .art.has-image {
  background: #ffffff;
}

.product-art-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #fff;
}

.art-airpods::before,
.art-airpods::after,
.art-headphones::before,
.art-watch::before,
.art-speaker::before {
  content: "";
  position: absolute;
}

.art-airpods::before {
  width: 28px;
  height: 36px;
  background: #fefefe;
  border-radius: 14px;
  left: 25%;
  top: 22px;
  box-shadow: 22px 0 0 #f6f7f9;
}

.art-airpods::after {
  width: 38px;
  height: 16px;
  border-radius: 10px 10px 14px 14px;
  border: 2px solid #d9dde5;
  left: calc(50% - 19px);
  top: 53px;
}

.art-headphones {
  background: linear-gradient(155deg, #ffe4dc 0%, #f7f0ef 72%);
}

.art-headphones::before {
  width: 54px;
  height: 26px;
  border: 6px solid #d65648;
  border-bottom: 0;
  border-radius: 52px 52px 0 0;
  left: calc(50% - 27px);
  top: 16px;
}

.art-headphones::after {
  width: 16px;
  height: 30px;
  background: #eaa093;
  border-radius: 10px;
  left: calc(50% - 22px);
  top: 43px;
  box-shadow: 28px 0 0 #e1a195;
}

.art-watch {
  background: linear-gradient(145deg, #f0f6ef 0%, #e4ebe1 100%);
}

.art-watch::before {
  width: 66px;
  height: 36px;
  border-radius: 18px;
  background: #344236;
  left: calc(50% - 33px);
  top: 28px;
  box-shadow: inset 0 0 0 5px #5c705c;
}

.art-speaker {
  background: linear-gradient(145deg, #e8eaed 0%, #f8f9fa 100%);
}

.art-speaker::before {
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: #14171b;
  left: calc(50% - 31px);
  top: 14px;
  box-shadow: 0 12px 22px rgba(16, 18, 23, 0.22);
}

.product-name {
  margin: 0 0 7px;
  font: 800 0.8rem/1.3 "Manrope", sans-serif;
  color: #36454f;
  min-height: 3.1em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bogo-mini-chip {
  margin: 0 0 8px;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid #ffd4c4;
  background: linear-gradient(135deg, #fff5ef 0%, #ffe2d2 100%);
  color: #8d3a2b;
  font: 800 0.57rem/1 "Manrope", sans-serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 7px;
  position: relative;
  overflow: hidden;
}

.bogo-mini-chip::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  width: 26px;
  left: -32px;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0));
  animation: bogoSweep 2.8s linear infinite;
}

.stock-clearance-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 5px;
  margin: 0 0 8px;
  border-radius: 999px;
  border: 1px solid #b9d8f3;
  background: linear-gradient(135deg, #d9ecff 0%, #bfdeff 100%);
  color: #2f5f86;
  font: 800 0.5rem/1 "Sora", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 6px;
  box-shadow: 0 8px 14px rgba(134, 176, 216, 0.32);
  overflow: hidden;
  animation: clearancePulse 1.7s ease-in-out infinite;
}

.stock-clearance-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6ea8dc;
  box-shadow: 0 0 0 rgba(110, 168, 220, 0.6);
  animation: clearanceBlink 1.6s ease-out infinite;
}

.stock-clearance-badge::after {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  width: 18px;
  left: -22px;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0));
  animation: clearanceSweep 2.1s linear infinite;
}

@keyframes clearancePulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

@keyframes clearanceSweep {
  0% {
    left: -22px;
  }

  100% {
    left: calc(100% + 22px);
  }
}

@keyframes clearanceBlink {
  0% {
    box-shadow: 0 0 0 0 rgba(110, 168, 220, 0.55);
  }

  70% {
    box-shadow: 0 0 0 7px rgba(110, 168, 220, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(110, 168, 220, 0);
  }
}

.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 800 0.9rem/1 "Sora", sans-serif;
}

.meta-row strong {
  font-weight: 700;
}

.rating {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  font: 700 0.78rem/1 "Manrope", sans-serif;
}

.rating::before {
  content: "*";
  color: #f7af2d;
  font-size: 0.8rem;
}

.bottom-nav {
  margin-top: auto;
  background: #111318;
  border-radius: 18px;
  padding: 10px 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  position: sticky;
  bottom: 0;
  z-index: 14;
}

.nav-item {
  border: 0;
  background: transparent;
  color: #9ba1ab;
  border-radius: 11px;
  padding: 7px 2px;
  font: 700 0.62rem/1 "Manrope", sans-serif;
}

.nav-item.active {
  color: #ff7853;
}

.screen-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 15;
  padding: 2px 0 10px;
  background: linear-gradient(180deg, #f9fbff 74%, rgba(249, 251, 255, 0));
}

.with-badge .badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ff3f3f;
  color: #fff;
  font: 700 0.58rem/16px "Manrope", sans-serif;
  border: 2px solid #fff;
}

.with-badge .badge.cart-badge-pop {
  animation: cartBadgePop 0.55s cubic-bezier(0.2, 0.9, 0.3, 1.35);
}

#productCartShortcut.cart-shortcut-glow {
  animation: cartShortcutGlow 0.82s ease;
}

@keyframes cartBadgePop {
  0% {
    transform: scale(0.8);
  }

  55% {
    transform: scale(1.28);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes cartShortcutGlow {
  0% {
    box-shadow: 0 0 0 rgba(66, 122, 238, 0);
    border-color: #eaedf2;
  }

  50% {
    box-shadow: 0 0 0 7px rgba(66, 122, 238, 0.2);
    border-color: #6694ea;
  }

  100% {
    box-shadow: 0 0 0 rgba(66, 122, 238, 0);
    border-color: #eaedf2;
  }
}

.hero {
  margin-top: 10px;
  border-radius: 24px;
  background: radial-gradient(180px 100px at 50% 18%, #fff7e9 0%, #f4f0dc 100%);
  border: 1px solid #efebdf;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.hero-media {
  width: 100%;
  height: 230px;
  margin-top: 18px;
  padding: 12px;
}

.hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(35, 40, 48, 0.2));
}

.hero-image.is-gif {
  filter: none;
}

.hero-image.empty {
  object-fit: cover;
  opacity: 0.55;
  filter: none;
}

.ring {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 178px;
  height: 52px;
  border: 2px dashed var(--ring);
  border-radius: 90px / 28px;
  display: grid;
  place-items: center;
  color: #494f58;
  font: 700 0.82rem/1 "Manrope", sans-serif;
}

.ring span {
  background: #fff;
  padding: 2px 8px;
  border-radius: 10px;
}

.gallery-panel,
.variant-panel {
  margin-top: 10px;
}

.gallery-label,
.variant-label {
  margin: 0 0 7px;
  font: 800 0.76rem/1 "Manrope", sans-serif;
  color: #576171;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.thumbs-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.thumbs-strip::-webkit-scrollbar {
  display: none;
}

.thumb-btn {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  border: 1px solid #dfe5ee;
  background: #fff;
  padding: 3px;
  flex: 0 0 auto;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.thumb-btn.active {
  border-color: #ff8d68;
  box-shadow: 0 8px 14px rgba(233, 104, 63, 0.22);
  transform: translateY(-1px);
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  border-radius: 9px;
  object-fit: contain;
  background: #fff;
  display: block;
}

.variant-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-chip {
  border: 1px solid #d8dee8;
  border-radius: 999px;
  background: #fff;
  padding: 6px 10px 6px 7px;
  color: #48505e;
  font: 700 0.74rem/1 "Manrope", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.variant-chip.active {
  border-color: #ff8d68;
  color: #1f2733;
  background: linear-gradient(130deg, #fff1eb 0%, #fff 80%);
  box-shadow: 0 6px 14px rgba(243, 109, 67, 0.18);
}

.variant-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #cfd4de;
}

.product-copy h2 {
  margin: 12px 0 3px;
  font: 800 clamp(1.04rem, 4.7vw, 1.34rem)/1.24 "Sora", sans-serif;
  color: #36454f;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
  text-wrap: balance;
  position: relative;
}

.product-copy h2::after {
  content: "";
  display: block;
  width: 66px;
  height: 3px;
  border-radius: 999px;
  margin-top: 7px;
  background: linear-gradient(90deg, #6f7d86 0%, #a5afb6 100%);
}

.subtitle {
  margin: 0;
  color: #8b9099;
  font: 600 0.76rem/1.4 "Manrope", sans-serif;
}

.pricing {
  margin-top: 11px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.pricing strong {
  color: #f54d2f;
  font: 800 1.72rem/1 "Sora", sans-serif;
}

.reviews {
  font: 700 0.8rem/1 "Manrope", sans-serif;
  color: #6e7480;
  margin-top: 9px;
  white-space: nowrap;
}

.reviews::before {
  content: "* ";
  color: #f5b33e;
}

.pricing-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mrp-price {
  display: inline-block;
  width: fit-content;
  position: relative;
  color: #8a909a;
  font: 700 0.84rem/1 "Manrope", sans-serif;
  letter-spacing: 0.01em;
}

.mrp-price.is-discounted::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, #ffae84 0%, #ff5939 42%, #ff8a61 100%);
  box-shadow: 0 0 8px rgba(255, 101, 67, 0.32);
  transform-origin: left center;
  animation: mrpStrike 2.1s cubic-bezier(0.33, 1, 0.68, 1) infinite;
}

.mrp-price.is-discounted::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff7d57;
  box-shadow: 0 0 14px rgba(255, 98, 62, 0.56);
  animation: mrpSpark 2.1s cubic-bezier(0.33, 1, 0.68, 1) infinite;
}

@keyframes mrpStrike {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }

  28% {
    transform: scaleX(1);
    opacity: 1;
  }

  72% {
    transform: scaleX(1);
    opacity: 1;
  }

  100% {
    transform: scaleX(1.02);
    opacity: 0;
  }
}

@keyframes mrpSpark {
  0% {
    left: -4px;
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  76% {
    left: calc(100% - 4px);
    opacity: 1;
  }

  100% {
    left: calc(100% - 4px);
    opacity: 0;
  }
}

.offers-panel {
  margin-top: 14px;
  border-top: 1px solid #e8ebf1;
  border-bottom: 1px solid #e8ebf1;
  padding: 11px 0 10px;
}

.offers-heading {
  margin: 0 0 8px;
  color: #2d8a45;
  font: 800 0.78rem/1 "Manrope", sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.offers-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.offers-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  font: 700 0.76rem/1.3 "Manrope", sans-serif;
  color: #2e3440;
}

.offer-badge {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2fa858;
  color: #fff;
  display: grid;
  place-items: center;
  font: 800 0.66rem/1 "Sora", sans-serif;
}

.offers-list strong {
  color: #1f6ecc;
}

.credibility-grid {
  margin-top: 10px;
  border: 1px solid #e3e8f1;
  border-radius: 14px;
  padding: 9px 8px;
  background: #f8fafc;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.credibility-item {
  text-align: center;
  padding: 4px 2px;
}

.cred-icon {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  margin: 0 auto 5px;
  background: linear-gradient(145deg, #edf2f8 0%, #ffffff 100%);
  border: 1px solid #d5deea;
  color: #2d476f;
  display: grid;
  place-items: center;
  font: 800 0.5rem/1 "Sora", sans-serif;
}

.credibility-item p {
  margin: 0;
  color: #0c5f86;
  font: 800 0.58rem/1.25 "Manrope", sans-serif;
}

.trust-banner {
  margin-top: 10px;
  border: 1px solid #d9e7ff;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
  text-align: center;
  padding: 13px 10px;
}

.trust-title {
  margin: 0;
  color: #1974e2;
  font: 800 1.03rem/1.2 "Sora", sans-serif;
}

.trust-subtitle {
  margin: 5px 0 0;
  color: #5d6673;
  font: 700 0.8rem/1.3 "Manrope", sans-serif;
}

.seller-note {
  margin-top: 10px;
  border: 1px solid #e2e6ed;
  border-radius: 11px;
  background: #fff;
  padding: 10px 12px;
}

.seller-line {
  margin: 0;
  color: #2e3745;
  font: 700 0.8rem/1.25 "Manrope", sans-serif;
}

.seller-line strong {
  color: #0e1622;
}

.seller-rating {
  margin: 6px 0 0;
  color: #606977;
  font: 800 0.74rem/1 "Manrope", sans-serif;
}

.product-delivery-panel {
  margin-top: 10px;
  border: 1px solid #dce6f5;
  border-radius: 12px;
  background: linear-gradient(140deg, #f4f9ff 0%, #ffffff 100%);
  padding: 10px;
}

.product-delivery-panel h3 {
  margin: 0;
  color: #1f3d66;
  font: 800 0.8rem/1.15 "Sora", sans-serif;
}

.product-delivery-fields {
  margin-top: 8px;
  display: grid;
  gap: 7px;
}

.product-delivery-fields input {
  width: 100%;
  height: 36px;
  border: 1px solid #c7d7ef;
  border-radius: 10px;
  background: #fff;
  color: #1f3757;
  font: 700 0.72rem/1 "Manrope", sans-serif;
  padding: 0 10px;
}

.product-delivery-fields input:focus {
  outline: 0;
  border-color: #6f98dd;
  box-shadow: 0 0 0 2px rgba(77, 129, 214, 0.18);
}

.product-delivery-fields button {
  height: 35px;
  border: 1px solid #bcd0ef;
  border-radius: 10px;
  background: #fff;
  color: #2b4d7c;
  font: 800 0.7rem/1 "Manrope", sans-serif;
  cursor: pointer;
}

.product-pincode-status {
  margin: 8px 0 0;
  font: 800 0.68rem/1.3 "Manrope", sans-serif;
  color: #285986;
}

.product-pincode-status[data-state="success"] {
  color: #1f7b4a;
}

.product-pincode-status[data-state="error"] {
  color: #b23d33;
}
.benefits {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.benefits div {
  border: 1px solid #eceff4;
  background: #fff;
  border-radius: 13px;
  padding: 9px 10px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.benefits p {
  margin: 0;
  font: 700 0.73rem/1.3 "Manrope", sans-serif;
  color: #737984;
}

.details {
  margin-top: 12px;
}

.details h3 {
  margin: 0 0 5px;
  font: 800 0.88rem/1 "Sora", sans-serif;
}

.details > p {
  margin: 0;
  font: 600 0.76rem/1.45 "Manrope", sans-serif;
  color: #7e858f;
}

.desc-content {
  margin: 0;
  display: grid;
  gap: 9px;
}

.desc-block {
  border: 1px solid #ebeff6;
  border-radius: 12px;
  background: #fff;
  padding: 10px 11px;
}

.desc-heading {
  margin: 0 0 7px;
  font: 800 0.79rem/1.2 "Sora", sans-serif;
  color: #1f5fb7;
}

.desc-paragraph {
  margin: 0;
  color: #566173;
  font: 600 0.76rem/1.45 "Manrope", sans-serif;
}

.desc-paragraph em {
  color: #414d61;
}

.desc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.desc-list li {
  position: relative;
  padding-left: 16px;
  color: #4f5b6d;
  font: 700 0.75rem/1.35 "Manrope", sans-serif;
}

.desc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a7ff 0%, #3972d6 100%);
}

.desc-strong {
  color: #1f2e46;
  font-weight: 800;
}

.desc-em {
  color: #35506e;
  font-style: italic;
  font-weight: 700;
}

.desc-accent {
  color: #cf4d34;
  font-weight: 800;
}

.sticky-footer {
  margin-top: auto;
  background: #111318;
  border-radius: 20px;
  padding: 9px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: sticky;
  bottom: 0;
  z-index: 14;
}

.bookmark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid #2f333c;
  background: #191c22;
  color: #fff;
  display: grid;
  place-items: center;
  position: relative;
  overflow: visible;
}

.bookmark.cart-added {
  animation: cartBtnPop 0.5s ease;
}

.cart-added-chip {
  position: absolute;
  left: 50%;
  bottom: 46px;
  transform: translateX(-50%);
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid #bcead8;
  background: linear-gradient(135deg, #e9fff6 0%, #f8fffc 100%);
  color: #1c7a56;
  font: 800 0.56rem/1 "Sora", sans-serif;
  letter-spacing: 0.02em;
  padding: 5px 7px;
  box-shadow: 0 10px 16px rgba(22, 137, 95, 0.24);
  pointer-events: none;
  animation: cartChipRise 0.9s ease forwards;
}

@keyframes cartBtnPop {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes cartChipRise {
  0% {
    opacity: 0;
    transform: translate(-50%, 5px) scale(0.9);
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -22px) scale(1);
  }
}

.swipe-buy {
  flex: 1;
  height: 42px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ff7049 0%, #ff522f 100%);
  user-select: none;
}

.swipe-buy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.swipe-label,
.swipe-done {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font: 800 0.9rem/1 "Sora", sans-serif;
  letter-spacing: 0.01em;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.swipe-done {
  opacity: 0;
}

.swipe-buy.done .swipe-label {
  opacity: 0;
}

.swipe-buy.done .swipe-done {
  opacity: 1;
}

.swipe-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 11px;
  background: #13161d;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: grab;
  touch-action: none;
  transition: left 0.22s ease;
  z-index: 2;
}

.swipe-buy.dragging .swipe-thumb {
  cursor: grabbing;
  transition: none;
}

.swipe-thumb .icon {
  width: 16px;
  height: 16px;
}

#screen-catalog {
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
}

#screen-product {
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
}

#screen-checkout {
  padding-bottom: calc(78px + env(safe-area-inset-bottom));
}

#screen-auth {
  padding-bottom: calc(18px + env(safe-area-inset-bottom));
}

.mini-text {
  font: 700 0.78rem/1 "Manrope", sans-serif;
  color: #555b65;
}

.checkout-title {
  margin: 10px 0 12px;
  font: 800 1.34rem/1.1 "Sora", sans-serif;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.payment-option {
  border: 1px solid #dce3ee;
  border-radius: 12px;
  background: #fff;
  text-align: left;
  padding: 9px 9px 10px;
  color: #424b58;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  position: relative;
  overflow: hidden;
}

.payment-option.hidden {
  display: none;
}

.payment-option::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -42%;
  width: 38%;
  height: 140%;
  transform: skewX(-24deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
  opacity: 0;
  pointer-events: none;
}

.payment-option.active {
  border-color: #6a8ee6;
  background: linear-gradient(135deg, #f1f6ff 0%, #ffffff 100%);
  box-shadow: 0 8px 16px rgba(84, 123, 213, 0.18);
  transform: translateY(-1px);
}

.payment-name {
  margin: 0;
  font: 800 0.73rem/1.2 "Sora", sans-serif;
  color: #1e2f4f;
}

.payment-copy {
  margin: 6px 0 0;
  font: 700 0.65rem/1.25 "Manrope", sans-serif;
  color: #5d6878;
}

.payment-tag {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 7px;
  margin-bottom: 7px;
  font: 800 0.52rem/1 "Sora", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.payment-tag-prepaid {
  color: #23684f;
  background: #e1f9ef;
  border: 1px solid #bdebd7;
}

.payment-tag-cod {
  color: #7c5433;
  background: #fff1df;
  border: 1px solid #f7d9b5;
}

.cashfree-option.active {
  border-color: #28b083;
  background: linear-gradient(135deg, #e9fff6 0%, #ffffff 75%);
  box-shadow: 0 10px 18px rgba(37, 173, 124, 0.22);
  animation: paymentGlow 1.6s ease-in-out infinite;
}

.cashfree-option.active .payment-name {
  color: #0f5d43;
}

.cashfree-option.active .payment-copy {
  color: #2b7a63;
}

.cod-option.active {
  border-color: #f09f65;
  background: linear-gradient(135deg, #fff3e6 0%, #ffffff 75%);
  box-shadow: 0 10px 18px rgba(236, 148, 82, 0.2);
}

.cod-option.active .payment-name {
  color: #7a461d;
}

.cod-option.active .payment-copy {
  color: #8c603d;
}

.payment-option.active::before {
  opacity: 1;
  animation: paymentSweep 2s linear infinite;
}

.payment-option.payment-pop {
  animation: paymentPop 0.42s ease;
}

@keyframes paymentSweep {
  0% {
    left: -42%;
  }

  100% {
    left: 112%;
  }
}

@keyframes paymentPop {
  0% {
    transform: scale(0.97);
  }

  60% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes paymentGlow {
  0%,
  100% {
    box-shadow: 0 10px 18px rgba(37, 173, 124, 0.2);
  }

  50% {
    box-shadow: 0 14px 22px rgba(37, 173, 124, 0.32);
  }
}

.prepay-banner {
  margin-top: 10px;
  border: 1px solid #ffd0bb;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff2eb 0%, #fff8f4 100%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
}

.prepay-banner.active {
  animation: prepayGlow 1.6s ease-in-out infinite;
}

.prepay-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff633e;
  box-shadow: 0 0 0 rgba(255, 99, 62, 0.45);
  animation: prepayPing 1.4s ease-out infinite;
}

.prepay-banner p {
  margin: 0;
  color: #8a3d2e;
  font: 800 0.73rem/1.3 "Manrope", sans-serif;
}

.checkout-login-note {
  margin: 10px 0 0;
  color: #647086;
  font: 700 0.73rem/1.3 "Manrope", sans-serif;
}

.guest-checkout-panel {
  margin-top: 10px;
  border: 1px solid #dfe8f6;
  border-radius: 14px;
  background: linear-gradient(135deg, #f3f8ff 0%, #fbfdff 100%);
  padding: 11px;
}

.guest-checkout-panel.hidden {
  display: none;
}

.guest-checkout-panel h3 {
  margin: 0;
  font: 800 0.82rem/1.1 "Sora", sans-serif;
  color: #243654;
}

.guest-checkout-copy {
  margin: 5px 0 0;
  color: #5f7092;
  font: 700 0.7rem/1.35 "Manrope", sans-serif;
}

.guest-fields {
  margin-top: 8px;
  display: grid;
  gap: 8px;
}

.guest-fields label {
  display: grid;
  gap: 4px;
}

.guest-fields span {
  color: #5f6f88;
  font: 700 0.68rem/1 "Manrope", sans-serif;
}

.guest-fields input {
  width: 100%;
  height: 38px;
  border: 1px solid #d8e1ef;
  border-radius: 10px;
  padding: 0 10px;
  font: 700 0.75rem/1 "Manrope", sans-serif;
  color: #1f2a3d;
  background: #fff;
}

.shipping-card {
  border: 1px solid #dce4f3;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  display: grid;
  gap: 7px;
}

.shipping-step-badge {
  display: inline-block;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid #d2def0;
  background: #f2f7ff;
  padding: 4px 8px;
  color: #41608f;
  font: 800 0.64rem/1 "Manrope", sans-serif;
}

.shipping-card strong {
  color: #223553;
  font: 800 0.83rem/1 "Sora", sans-serif;
}

.shipping-card small {
  color: #6e809e;
  font: 700 0.67rem/1.25 "Manrope", sans-serif;
}

.shipping-step-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.shipping-step-btn {
  height: 36px;
  border-radius: 10px;
  border: 1px solid #d4deed;
  background: #fff;
  color: #2e3f58;
  font: 800 0.72rem/1 "Manrope", sans-serif;
  cursor: pointer;
}

.shipping-step-btn.active {
  border-color: #2f7fff;
  background: linear-gradient(135deg, #2f7fff 0%, #2159d8 100%);
  color: #fff;
}

.shipping-step-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.shipping-summary-card {
  border: 1px solid #dbe6f5;
  border-radius: 10px;
  background: #f8fbff;
  padding: 8px;
  color: #2f415d;
  font: 700 0.7rem/1.35 "Manrope", sans-serif;
}

.shipping-summary-card.hidden {
  display: none;
}

.shipping-extra-email {
  margin-top: 2px;
}

.shipping-extra-email span {
  color: #5f6f88;
  font: 700 0.68rem/1 "Manrope", sans-serif;
}

.hidden {
  display: none !important;
}

.checkout-cart-section {
  margin-top: 12px;
  border: 1px solid #e6ebf2;
  border-radius: 15px;
  background: #fff;
  padding: 10px;
}

.checkout-cart-title {
  margin: 0;
  font: 800 0.83rem/1 "Sora", sans-serif;
  color: #273042;
}

.checkout-cart-items {
  margin-top: 8px;
  display: grid;
  gap: 8px;
  max-height: 220px;
  overflow: auto;
}

.checkout-cart-item {
  border: 1px solid #e7ecf4;
  border-radius: 12px;
  padding: 8px;
  background: #f8fbff;
  display: grid;
  gap: 6px;
}

.checkout-cart-name {
  margin: 0;
  font: 800 0.76rem/1.3 "Manrope", sans-serif;
  color: #263145;
}

.checkout-cart-meta {
  margin: 3px 0 0;
  font: 700 0.68rem/1.2 "Manrope", sans-serif;
  color: #5f6e83;
}

.checkout-cart-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.checkout-cart-controls button {
  border: 1px solid #d4deee;
  background: #fff;
  border-radius: 9px;
  height: 25px;
  min-width: 25px;
  font: 800 0.72rem/1 "Manrope", sans-serif;
  color: #304057;
  cursor: pointer;
  padding: 0 8px;
}

.checkout-cart-controls span {
  min-width: 18px;
  text-align: center;
  font: 800 0.76rem/1 "Manrope", sans-serif;
  color: #27364d;
}

.cart-empty-note {
  margin: 0;
  font: 700 0.72rem/1.3 "Manrope", sans-serif;
  color: #6d7b90;
}

.checkout-status {
  margin: 10px 2px 0;
  font: 700 0.73rem/1.3 "Manrope", sans-serif;
  color: #3f5f97;
}

.checkout-status[data-state="error"] {
  color: #b9382b;
}

.checkout-status[data-state="success"] {
  color: #247647;
}

.inline-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: #1f6dcc;
  font: 800 0.73rem/1 "Manrope", sans-serif;
  cursor: pointer;
}

@keyframes prepayGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 127, 93, 0);
  }

  50% {
    box-shadow: 0 10px 20px rgba(255, 127, 93, 0.22);
  }
}

@keyframes prepayPing {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 99, 62, 0.5);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 99, 62, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 99, 62, 0);
  }
}

.address {
  margin-top: 14px;
  border: 1px solid #ebeef3;
  border-radius: 16px;
  background: #f4f5f8;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.address h3 {
  margin: 0 0 6px;
  font: 800 0.82rem/1 "Sora", sans-serif;
}

.address p {
  margin: 0;
  color: #727881;
  font: 600 0.76rem/1.35 "Manrope", sans-serif;
}

.edit {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
}

.totals {
  margin-top: auto;
  background: #111318;
  border-radius: 16px;
  padding: 14px 13px;
}

.totals div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #e5e7eb;
  font: 700 0.8rem/1.2 "Manrope", sans-serif;
}

.totals div + div {
  margin-top: 12px;
}

.totals strong {
  color: #fff;
}

.checkout-discount-row span {
  color: #d2d8e2;
}

.checkout-discount-row strong {
  color: #6be3a7;
}

.confirm {
  margin-top: 12px;
  margin-bottom: 10px;
  min-height: 52px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(135deg, #ff734e 0%, #ff4f33 100%);
  color: #fff;
  font: 800 0.96rem/1.15 "Sora", sans-serif;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 18px rgba(255, 89, 54, 0.32);
  cursor: pointer;
}

.confirm:disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.auth-shell {
  margin-top: 10px;
  border: 1px solid #e6ebf2;
  border-radius: 18px;
  background: #fff;
  padding: 14px;
}

.auth-title {
  margin: 0;
  font: 800 1.2rem/1.1 "Sora", sans-serif;
}

.auth-subtitle {
  margin: 6px 0 0;
  color: #707989;
  font: 700 0.74rem/1.35 "Manrope", sans-serif;
}

.auth-field {
  margin-top: 12px;
  display: grid;
  gap: 5px;
}

.auth-field span {
  color: #626b7a;
  font: 700 0.7rem/1 "Manrope", sans-serif;
}

.auth-field input {
  width: 100%;
  height: 44px;
  border: 1px solid #dce3ee;
  border-radius: 12px;
  padding: 0 12px;
  color: #212833;
  font: 700 0.82rem/1 "Manrope", sans-serif;
}

.auth-primary {
  margin-top: 14px;
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #2f7fff 0%, #2159d8 100%);
  color: #fff;
  font: 800 0.86rem/1 "Sora", sans-serif;
  cursor: pointer;
}

.auth-secondary {
  margin-top: 8px;
  width: 100%;
  height: 42px;
  border: 1px solid #dce4f1;
  border-radius: 12px;
  background: #f8fafd;
  color: #2f3948;
  font: 700 0.8rem/1 "Manrope", sans-serif;
  cursor: pointer;
}

.auth-status {
  margin: 10px 0 0;
  font: 700 0.72rem/1.35 "Manrope", sans-serif;
  color: #4d6287;
}

.auth-status[data-state="error"] {
  color: #b13f34;
}

.auth-status[data-state="success"] {
  color: #1f7b4a;
}

.auth-logout {
  display: none;
}

.auth-logout.show {
  display: block;
}

.auth-primary:disabled,
.auth-secondary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.with-badge .badge.empty {
  opacity: 0.58;
}

.auth-benefits {
  margin-top: 12px;
  border: 1px solid #e7ebf3;
  border-radius: 14px;
  background: #f8fafe;
  padding: 11px 12px;
  display: grid;
  gap: 7px;
}

.auth-benefits p {
  margin: 0;
  color: #4e596b;
  font: 700 0.72rem/1.3 "Manrope", sans-serif;
  position: relative;
  padding-left: 14px;
}

.auth-benefits p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3b78dc;
}

.account-dashboard {
  margin-top: 12px;
  border: 1px solid #dfe6f4;
  border-radius: 16px;
  background: linear-gradient(150deg, #f4f8ff 0%, #ffffff 100%);
  padding: 11px;
  display: grid;
  gap: 9px;
}

.account-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.account-head h3 {
  margin: 0;
  color: #243756;
  font: 800 0.88rem/1.2 "Sora", sans-serif;
}

.account-refresh {
  height: 28px;
  border: 1px solid #d2def0;
  border-radius: 9px;
  background: #fff;
  color: #334967;
  font: 700 0.66rem/1 "Manrope", sans-serif;
  padding: 0 10px;
  cursor: pointer;
}

.account-refresh:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.account-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.account-metric {
  margin: 0;
  border: 1px solid #dbe5f4;
  border-radius: 12px;
  background: #fff;
  padding: 8px 6px;
  text-align: center;
}

.account-metric span {
  display: block;
  color: #1d2f4a;
  font: 800 1rem/1 "Sora", sans-serif;
}

.account-metric p {
  margin: 4px 0 0;
  color: #62718a;
  font: 700 0.63rem/1.2 "Manrope", sans-serif;
}

.account-block {
  border: 1px solid #e2e9f5;
  border-radius: 12px;
  background: #fff;
  padding: 9px;
}

.account-block h4 {
  margin: 0 0 6px;
  color: #25344d;
  font: 800 0.75rem/1.1 "Sora", sans-serif;
}

.account-list {
  display: grid;
  gap: 7px;
}

.account-empty {
  margin: 0;
  color: #687791;
  font: 700 0.67rem/1.35 "Manrope", sans-serif;
}

.account-item {
  border: 1px solid #e7edf8;
  border-radius: 10px;
  background: #f8fbff;
  padding: 8px;
  display: grid;
  gap: 4px;
}

.account-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.account-item strong {
  color: #1f2f49;
  font: 800 0.7rem/1.1 "Sora", sans-serif;
}

.account-item small {
  color: #6c7b92;
  font: 700 0.62rem/1.25 "Manrope", sans-serif;
}

.account-item p {
  margin: 0;
  color: #415067;
  font: 700 0.67rem/1.3 "Manrope", sans-serif;
}

.account-item-price {
  color: #213550;
  font: 800 0.68rem/1.1 "Sora", sans-serif;
}

.account-status {
  border-radius: 999px;
  padding: 3px 7px;
  color: #2f4f7e;
  background: #dce9ff;
  font: 800 0.52rem/1 "Sora", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.account-status.pending,
.account-status.paid,
.account-status.confirmed {
  color: #2d4d7f;
  background: #dbe8ff;
}

.account-status.shipped {
  color: #1f6586;
  background: #d7f0ff;
}

.account-status.delivered {
  color: #1f7d4a;
  background: #d8f4e6;
}

.account-status.cancelled {
  color: #983a3a;
  background: #f7dddd;
}

.account-tracking-note {
  color: #4d5f78;
}

@media (min-width: 480px) {
  .phone-frame {
    height: 810px;
  }
}

.order-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: linear-gradient(160deg, rgba(12, 18, 30, 0.9) 0%, rgba(19, 28, 45, 0.92) 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 18px;
}

.order-success-overlay[hidden] {
  display: none;
}

.order-success-bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.6;
  animation: orderGlow 3.2s ease-in-out infinite;
}

.order-success-bg-one {
  width: 260px;
  height: 260px;
  background: #3cc08f;
  top: -70px;
  left: -40px;
}

.order-success-bg-two {
  width: 300px;
  height: 300px;
  background: #3d8bff;
  right: -70px;
  bottom: -90px;
  animation-delay: 0.7s;
}

.order-success-card {
  position: relative;
  width: min(410px, calc(100vw - 30px));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 246, 255, 0.94) 100%);
  box-shadow: 0 26px 46px rgba(0, 0, 0, 0.34);
  padding: 24px 20px 20px;
  text-align: center;
  animation: orderCardIn 0.42s ease;
}

.order-success-check {
  width: 80px;
  height: 80px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 32% 26%, #86f3c4 0%, #22b06f 72%);
  color: #fff;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.22),
    0 18px 30px rgba(34, 177, 110, 0.34);
  animation: orderPulse 1.45s ease-in-out infinite;
}

.order-success-check svg {
  width: 36px;
  height: 36px;
}

.order-success-card h2 {
  margin: 0;
  color: #16253d;
  font: 800 1.52rem/1.1 "Sora", sans-serif;
}

.order-success-card p {
  margin: 11px 0 0;
  color: #384e6f;
  font: 700 0.9rem/1.45 "Manrope", sans-serif;
}

.order-success-card button {
  margin-top: 18px;
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #2f7fff 0%, #2159d8 100%);
  color: #fff;
  font: 800 0.9rem/1 "Sora", sans-serif;
  letter-spacing: 0.01em;
  cursor: pointer;
}

@keyframes orderCardIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes orderPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      inset 0 0 0 2px rgba(255, 255, 255, 0.22),
      0 18px 30px rgba(34, 177, 110, 0.34);
  }

  50% {
    transform: scale(1.06);
    box-shadow:
      inset 0 0 0 2px rgba(255, 255, 255, 0.22),
      0 22px 34px rgba(34, 177, 110, 0.42);
  }
}

@keyframes orderGlow {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.06);
  }
}

