:root {
  color-scheme: dark;
  --bg: #04080c;
  --panel: rgba(18, 25, 31, 0.82);
  --panel-strong: rgba(23, 32, 39, 0.96);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(34, 232, 236, 0.38);
  --text: #f7fbff;
  --muted: #aeb8c3;
  --soft: #71808d;
  --cyan: #23f4ef;
  --blue: #1d86ff;
  --green: #30df68;
  --orange: #ff8a17;
  --red: #ff5364;
  --violet: #7157ff;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* {
  box-sizing: border-box;
}

html {
  background: #d9d4fb;
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 4%, rgba(35, 244, 239, 0.18), transparent 28rem),
    radial-gradient(circle at 78% 12%, rgba(255, 138, 23, 0.09), transparent 22rem),
    linear-gradient(180deg, #090d11 0%, #020508 42%, #000 100%);
  color: var(--text);
  letter-spacing: 0;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0;
}

.desktop-header {
  display: none;
}

.app-frame {
  min-height: 100svh;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  padding: 18px 16px calc(96px + var(--safe-bottom));
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 4%, rgba(35, 244, 239, 0.16), transparent 12rem),
    radial-gradient(circle at 8% 60%, rgba(29, 134, 255, 0.1), transparent 14rem),
    linear-gradient(180deg, #13191f 0%, #090e12 48%, #06090d 100%);
  box-shadow: var(--shadow);
}

.app-frame::before {
  content: "";
  position: fixed;
  inset: 0;
  max-width: 460px;
  margin: auto;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.view {
  display: none;
  animation: viewIn 220ms ease both;
}

.view.is-active {
  display: block;
}

@keyframes viewIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.top-bar,
.detail-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
}

.brand-stack {
  display: grid;
  place-items: center;
  gap: 4px;
}

.logo-mark {
  position: relative;
  width: 44px;
  height: 34px;
}

.logo-mark span {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--cyan), var(--blue) 58%, var(--violet));
  box-shadow: 0 0 22px rgba(35, 244, 239, 0.35);
}

.logo-mark span:nth-child(1) {
  left: 3px;
  top: 7px;
}

.logo-mark span:nth-child(2) {
  left: 18px;
  top: 0;
}

.logo-mark span:nth-child(3) {
  left: 21px;
  top: 17px;
}

.brand-stack strong,
.footer-brand strong {
  font-size: 18px;
  line-height: 1;
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.06);
}

.icon-btn svg,
.bottom-nav svg,
.round-icon svg,
.chip svg,
.footer-trust svg,
.list-row svg,
.feature svg {
  width: 20px;
  height: 20px;
}

.welcome {
  margin: 20px 0 18px;
}

.eyebrow {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  font-size: 18px;
  line-height: 1.25;
}

h3 {
  font-size: 14px;
  line-height: 1.25;
}

p {
  color: var(--muted);
  line-height: 1.45;
}

.search-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 18px;
}

.search-box {
  min-width: 0;
  flex: 1;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  color: var(--muted);
  background: rgba(3, 8, 12, 0.36);
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  box-shadow: inset 0 0 18px rgba(35, 244, 239, 0.05), 0 0 22px rgba(35, 244, 239, 0.08);
}

.search-box input {
  min-width: 0;
  width: 100%;
  color: var(--text);
  background: transparent;
  border: 0;
  outline: 0;
}

.search-box input::placeholder {
  color: #8a98a5;
}

.filter-btn {
  flex: 0 0 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(35, 244, 239, 0.25);
  border-radius: 50%;
}

.chip-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 12px;
  scrollbar-width: none;
}

.chip-row::-webkit-scrollbar,
.product-strip::-webkit-scrollbar {
  display: none;
}

.chip {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
}

.chip.is-active {
  color: #031316;
  background: linear-gradient(135deg, var(--cyan), #37c8ff);
  box-shadow: 0 0 24px rgba(35, 244, 239, 0.28);
}

.hero-card {
  min-height: 132px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 8px;
  align-items: center;
  margin: 8px 0 24px;
  padding: 20px 14px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(125deg, rgba(4, 12, 16, 0.96), rgba(16, 24, 30, 0.74)),
    radial-gradient(circle at 78% 36%, rgba(35, 244, 239, 0.28), transparent 40%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 35%);
  pointer-events: none;
}

.hero-card h2 {
  font-size: 28px;
  margin-bottom: 4px;
}

.hero-card p {
  color: #fff;
  font-size: 13px;
}

.hero-card .primary-btn {
  width: fit-content;
  margin-top: 14px;
  padding: 11px 18px;
}

.hero-art {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 128px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.55));
}

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

.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
}

.product-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(126px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding: 2px 2px 12px;
  scrollbar-width: none;
}

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

.product-card {
  min-width: 0;
  padding: 10px 10px 48px;
  position: relative;
  color: var(--text);
  text-align: left;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(35, 244, 239, 0.35);
  box-shadow: 0 12px 24px rgba(35, 244, 239, 0.12);
}

.product-card .product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: contain;
  background: radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.16), transparent 58%);
  border-radius: 20px;
}

.product-card h3 {
  margin-top: 9px;
  min-height: 35px;
}

.price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  margin-top: 3px;
}

.price {
  color: var(--cyan);
  font-weight: 800;
}

.strike {
  color: var(--soft);
  text-decoration: line-through;
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ffc84d;
  font-size: 12px;
  margin-top: 7px;
}

.mini-cart {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #031316;
  background: linear-gradient(135deg, var(--cyan), #37c8ff);
  border-radius: 10px;
}

.mini-wishlist {
  position: absolute;
  right: 50px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.mini-wishlist.in-wishlist {
  color: #ff5b67;
  background: rgba(255, 91, 103, 0.1);
  border-color: rgba(255, 91, 103, 0.2);
}

.mini-wishlist:hover {
  transform: translateY(-1px);
}

.deal-card,
.info-panel,
.cart-item,
.checkout-total,
.support-card,
.list-panel,
.profile-card,
.empty-state {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032));
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.deal-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  padding: 13px;
  border-color: rgba(255, 138, 23, 0.42);
}

.deal-card .round-icon {
  color: var(--orange);
}

.deal-time {
  display: flex;
  gap: 5px;
  color: var(--orange);
  font-weight: 800;
}

.primary-btn,
.secondary-btn,
.danger-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 24px;
  font-weight: 800;
}

.primary-btn {
  color: #021013;
  background: linear-gradient(135deg, var(--cyan), #1d86ff);
  box-shadow: 0 14px 34px rgba(29, 134, 255, 0.22);
}

.secondary-btn {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(35, 244, 239, 0.35);
}

.danger-btn {
  color: #fff;
  background: rgba(255, 83, 100, 0.14);
  border: 1px solid rgba(255, 83, 100, 0.35);
}

.full {
  width: 100%;
}

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

.feature {
  min-height: 82px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 7px;
  padding: 12px 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.feature[data-nav]:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(35, 244, 239, 0.35);
  transform: translateY(-2px);
}

.feature svg {
  color: var(--cyan);
  filter: drop-shadow(0 0 10px rgba(35, 244, 239, 0.45));
}

.feature span {
  font-size: 12px;
  color: var(--muted);
}

.detail-hero {
  padding: 4px 0 14px;
}

.detail-image {
  width: 100%;
  height: min(56vw, 270px);
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.55));
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 8px 0 18px;
}

.stock {
  color: var(--green);
  font-weight: 800;
}

.option-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 0 20px;
}

.option-btn {
  min-height: 52px;
  padding: 8px 6px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.option-btn.is-selected {
  color: var(--cyan);
  border-color: var(--cyan);
  box-shadow: inset 0 0 16px rgba(35, 244, 239, 0.08);
}

.action-dock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
  margin-bottom: 8px;
}

.qty-control {
  display: inline-grid;
  grid-template-columns: 34px 34px 34px;
  align-items: center;
  justify-items: center;
  height: 38px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.qty-control button {
  width: 100%;
  height: 100%;
  color: inherit;
  background: transparent;
}

.cart-list {
  display: grid;
  gap: 10px;
}

.cart-item {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
}

.cart-item img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.remove-btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.checkout-total {
  margin-top: 14px;
  padding: 14px;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  color: var(--muted);
}

.summary-row strong {
  color: var(--text);
}

.summary-row.total {
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 14px;
  font-size: 18px;
}

.list-panel {
  overflow: hidden;
  margin: 12px 0 18px;
}

.list-row {
  width: 100%;
  min-height: 66px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  color: var(--text);
  background: transparent;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.list-row:last-child {
  border-bottom: 0;
}

.list-row small,
.profile-card small,
.footer-brand small,
.footer-pitch small,
.footer-contact small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
}

.round-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 38px;
  color: var(--cyan);
  background: rgba(29, 134, 255, 0.12);
  border: 1px solid rgba(35, 244, 239, 0.13);
  border-radius: 12px;
}

.profile-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  margin: 12px 0 18px;
}

.avatar {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: #061015;
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, #d8fbff, var(--cyan) 46%, #1d86ff);
  border-radius: 50%;
}

.reward-hero,
.wallet-card,
.code-card,
.order-card,
.address-card,
.recent-card {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032));
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.reward-hero {
  min-height: 124px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  margin: 14px 0;
  background:
    linear-gradient(135deg, rgba(42, 61, 170, 0.78), rgba(18, 28, 42, 0.7)),
    radial-gradient(circle at 80% 30%, rgba(35, 244, 239, 0.22), transparent 10rem);
}

.code-card {
  padding: 14px;
  margin: 12px 0;
}

.code-card > div {
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  padding: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 12px;
}

.code-card strong {
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.08em;
}

.stat-panel {
  padding: 8px 14px;
}

.wallet-card {
  display: grid;
  grid-template-columns: 1fr 72px;
  gap: 16px;
  align-items: center;
  padding: 18px;
  margin: 14px 0 20px;
  background:
    linear-gradient(135deg, rgba(43, 70, 176, 0.68), rgba(17, 24, 32, 0.78)),
    radial-gradient(circle at 82% 28%, rgba(29, 134, 255, 0.32), transparent 11rem);
}

.wallet-card .primary-btn {
  grid-column: 1 / -1;
}

.order-list,
.address-list,
.recent-list {
  display: grid;
  gap: 12px;
  margin: 14px 0;
}

.order-card,
.address-card {
  padding: 14px;
}

.order-card small,
.address-card small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
}

.order-product {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
}

.order-product img,
.recent-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.status-pill.delivered {
  color: var(--green);
  background: rgba(48, 223, 104, 0.12);
}

.status-pill.shipped {
  color: var(--cyan);
  background: rgba(35, 244, 239, 0.12);
}

.status-pill.confirmed {
  color: #9a83ff;
  background: rgba(113, 87, 255, 0.16);
}

.status-pill.pending {
  color: var(--orange);
  background: rgba(255, 138, 23, 0.14);
}

.status-pill.accepted {
  color: var(--green);
  background: rgba(48, 223, 104, 0.12);
}

.status-pill.declined {
  color: #ff4d6d;
  background: rgba(255, 77, 109, 0.12);
}

.address-head {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.address-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.address-actions .secondary-btn {
  min-height: 38px;
  border-radius: 10px;
}

.recent-card {
  min-height: 94px;
  display: grid;
  grid-template-columns: 82px 1fr 42px;
  gap: 12px;
  align-items: center;
  padding: 10px;
  position: relative;
}

.recent-card .mini-cart {
  position: static;
}

.compact-row {
  border-bottom: 1px solid var(--line);
}

.green {
  color: var(--green);
}

.cyan {
  color: var(--cyan);
}

.red {
  color: var(--red);
}

.radio-dot.checked {
  border-color: var(--cyan);
  box-shadow: inset 0 0 0 4px #10171d, 0 0 0 2px rgba(35, 244, 239, 0.16);
  background: var(--cyan);
}

.switch {
  width: 42px;
  height: 24px;
  position: relative;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: 180ms ease;
}

.switch.is-on {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.switch.is-on::after {
  transform: translateX(18px);
}

.support-hero {
  padding: 18px;
  margin: 16px 0 18px;
  background:
    linear-gradient(135deg, rgba(29, 64, 170, 0.74), rgba(16, 25, 38, 0.72)),
    radial-gradient(circle at 90% 10%, rgba(35, 244, 239, 0.2), transparent 12rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

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

.support-card {
  padding: 13px;
  min-height: 104px;
}

.support-card .round-icon {
  margin-bottom: 10px;
}

.payment-option {
  width: 100%;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 12px;
  color: var(--text);
  text-align: left;
  background: transparent;
  border-bottom: 1px solid var(--line);
}

.payment-option > span:nth-child(2) {
  min-width: 0;
}

.payment-option strong,
.payment-option small {
  display: block;
}

.payment-option small {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.35;
}

.payment-option:last-child {
  border-bottom: 0;
}

#checkout-view .feature-grid {
  margin: 10px 0;
}

#checkout-view .feature {
  min-height: 72px;
}

.radio-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--soft);
}

.payment-option.is-selected {
  outline: 1px solid var(--cyan);
  outline-offset: -1px;
  background: rgba(35, 244, 239, 0.07);
}

.payment-option.is-selected .radio-dot {
  border-color: var(--cyan);
  box-shadow: inset 0 0 0 4px #10171d, 0 0 0 2px rgba(35, 244, 239, 0.16);
  background: var(--cyan);
}

.empty-state {
  padding: 34px 18px;
  text-align: center;
}

.empty-state .round-icon {
  margin: 0 auto 14px;
}

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  width: min(100%, 460px);
  margin: 0 auto;
  padding: 8px 12px calc(8px + var(--safe-bottom));
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background:
    radial-gradient(120% 90% at 50% -20%, rgba(35, 244, 239, 0.26), transparent 38%),
    rgba(8, 14, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  backdrop-filter: blur(18px);
}

.nav-btn {
  min-width: 0;
  min-height: 56px;
  position: relative;
  display: grid;
  place-items: center;
  gap: 4px;
  color: #b6c0c9;
  background: transparent;
  border-radius: 14px;
}

.nav-btn small {
  max-width: 100%;
  overflow: hidden;
  color: currentColor;
  font-size: 11px;
  text-overflow: ellipsis;
}

.nav-btn.is-active {
  color: var(--cyan);
}

.nav-btn.is-active svg {
  filter: drop-shadow(0 0 9px rgba(35, 244, 239, 0.75));
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 11px;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  color: #041014;
  background: var(--orange);
  border-radius: 999px;
  font-size: 10px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(92px + var(--safe-bottom));
  z-index: 50;
  width: min(300px, calc(100% - 32px));
  padding: 12px 14px;
  color: var(--text);
  text-align: center;
  background: rgba(9, 15, 20, 0.94);
  border: 1px solid rgba(35, 244, 239, 0.28);
  border-radius: 14px;
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  transition: 180ms ease;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.desktop-footer {
  display: none;
}

@media (min-width: 760px) {
  html {
    background: #080b0f;
  }

  body {
    padding: 0 22px;
  }

  .site-shell {
    display: grid;
    gap: 28px;
    width: min(100%, 1180px);
  }

  .desktop-header {
    position: sticky;
    top: 0;
    z-index: 25;
    display: grid;
    grid-template-columns: auto auto minmax(260px, 1fr) auto;
    gap: 22px;
    align-items: center;
    min-height: 82px;
    padding: 12px 0;
    background: rgba(4, 8, 12, 0.84);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
  }

  .desktop-brand,
  .desktop-nav,
  .desktop-actions {
    display: flex;
    align-items: center;
  }

  .desktop-brand {
    gap: 12px;
  }

  .desktop-brand strong {
    display: block;
    font-size: 20px;
  }

  .desktop-brand small {
    color: var(--muted);
  }

  .desktop-nav {
    gap: 6px;
  }

  .desktop-nav a {
    padding: 10px 13px;
    color: var(--muted);
    border-radius: 8px;
    font-weight: 700;
  }

  .desktop-nav a:hover,
  .desktop-nav a.is-active {
    color: var(--cyan);
    background: rgba(255, 255, 255, 0.05);
  }

  .desktop-search {
    min-width: 0;
    height: 46px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
  }

  .desktop-search input {
    min-width: 0;
    width: 100%;
    color: var(--text);
    background: transparent;
    border: 0;
    outline: 0;
  }

  .desktop-actions {
    gap: 10px;
  }

  .app-frame {
    max-width: none;
    min-height: auto;
    width: 100%;
    padding: 24px 0 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  .app-frame::before {
    display: none;
  }

  .top-bar {
    display: none;
  }

  .detail-bar {
    min-height: 64px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
  }

  .detail-bar h2 {
    font-size: 28px;
  }

  .welcome {
    max-width: 620px;
    margin: 14px 0 22px;
  }

  .welcome h1,
  #search-view h1,
  .detail-hero h1 {
    font-size: 52px;
    line-height: 1.02;
  }

  .welcome p {
    font-size: 18px;
  }

  #home-view > .search-row {
    display: none;
  }

  #home-view .chip-row {
    max-width: 720px;
  }

  .hero-card {
    min-height: 320px;
    grid-template-columns: 0.9fr 1.1fr;
    padding: 42px;
    border-radius: 8px;
  }

  .hero-card h2 {
    font-size: 56px;
  }

  .hero-card p {
    font-size: 18px;
  }

  .hero-card .primary-btn {
    min-height: 52px;
    padding: 0 24px;
    border-radius: 8px;
  }

  .hero-art {
    max-height: 280px;
  }

  .section-head {
    margin-top: 28px;
  }

  .section-head h2 {
    font-size: 26px;
  }

  .product-strip {
    grid-auto-flow: initial;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: visible;
    gap: 16px;
  }

  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .product-card {
    border-radius: 8px;
    padding: 14px 14px 56px;
  }

  .product-card .product-image {
    border-radius: 8px;
  }

  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .deal-card,
  .info-panel,
  .cart-item,
  .checkout-total,
  .support-card,
  .list-panel,
  .profile-card,
  .empty-state,
  .reward-hero,
  .wallet-card,
  .code-card,
  .order-card,
  .address-card,
  .recent-card {
    border-radius: 8px;
  }

  .profile-card {
    max-width: 560px;
  }

  #account-view .list-panel,
  #settings-view .list-panel,
  #support-view .list-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #account-view .list-row,
  #settings-view .list-row,
  #support-view .list-row {
    border-right: 1px solid var(--line);
  }

  .wallet-card {
    max-width: 640px;
  }

  .order-list,
  .address-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recent-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  #product-view {
    display: none;
  }

  #product-view.is-active {
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(360px, 1fr);
    gap: 34px;
    align-items: start;
  }

  #product-view .detail-bar {
    grid-column: 1 / -1;
  }

  .reviews-container-box {
    grid-column: 1 / -1;
  }

  .detail-image {
    height: 420px;
  }

  .action-dock {
    position: static;
  }

  .bottom-nav {
    display: none;
  }

  .desktop-footer {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 24px 0 28px;
  }

  .footer-subscribe,
  .footer-grid,
  .footer-trust,
  .footer-bottom {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .footer-subscribe {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1.2fr;
    gap: 24px;
    align-items: center;
    padding: 28px 34px;
  }

  .footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .footer-brand.small {
    margin-bottom: 18px;
  }

  .footer-pitch {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-left: 22px;
    border-left: 1px solid var(--line);
  }

  .subscribe-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .subscribe-form input {
    min-width: 0;
    color: var(--text);
    background: transparent;
    border: 0;
    outline: 0;
    padding: 0 12px;
  }

  .subscribe-form button {
    min-height: 42px;
    padding: 0 18px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, #19b8ff, #176cff);
    border-radius: 8px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.85fr 1.18fr 1fr 1.15fr 1.7fr;
    gap: 24px;
    margin-top: 22px;
    padding: 34px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .footer-about p,
  .footer-contact p {
    font-size: 14px;
  }

  .social-row {
    display: flex;
    gap: 12px;
    margin-top: 24px;
  }

  .social-row a {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 11px;
  }

  .footer-links h2,
  .footer-contact h2 {
    margin-bottom: 16px;
    font-size: 13px;
    text-transform: uppercase;
  }

  .footer-links a {
    display: block;
    color: var(--muted);
    font-size: 14px;
    padding: 7px 0;
  }

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

  .footer-contact p {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    margin-bottom: 18px;
    line-height: 1.45;
  }

  .footer-trust {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding: 22px 34px;
    border-radius: 0;
    border-top: 0;
  }

  .footer-trust span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 700;
  }

  .footer-trust svg {
    color: var(--blue);
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 0 0;
    color: var(--muted);
    background: transparent;
    border: 0;
    font-size: 13px;
  }
}

@media (min-width: 1040px) {
  .site-shell {
    width: min(100%, 1180px);
  }

  .app-frame {
    max-width: none;
  }
}

@media (max-width: 360px) {
  .app-frame {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-card h2 {
    font-size: 24px;
  }

  .product-grid {
    gap: 9px;
  }

  .product-card {
    border-radius: 20px;
  }
}

/* --- Premium Immersive Auth Views (Login & Signup) --- */
.auth-mode .desktop-header,
.auth-mode .desktop-footer,
.auth-mode .bottom-nav,
.auth-mode footer {
  display: none !important;
}

.auth-view-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 40px);
  padding: 20px;
  background: radial-gradient(circle at 10% 20%, rgba(26, 32, 53, 1) 0%, rgba(11, 14, 26, 1) 90%);
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.auth-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(25, 184, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.auth-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.auth-logo strong {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}

.auth-logo .logo-mark {
  width: 28px;
  height: 28px;
}

.auth-card h2 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.auth-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 30px;
}

.auth-input-group {
  position: relative;
  margin-bottom: 20px;
  text-align: left;
}

.auth-input-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #8892b0;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.auth-input-group input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #fff;
  font-size: 14.5px;
  outline: none;
  transition: all 0.25s ease;
}

.auth-input-group input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 10px rgba(32, 223, 189, 0.15);
}

.auth-forgot {
  display: block;
  text-align: right;
  font-size: 13px;
  color: var(--cyan);
  margin-top: -10px;
  margin-bottom: 25px;
  text-decoration: none;
}

.auth-btn {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 800;
  color: #000;
  background: linear-gradient(135deg, #20dfbd, #00bfff);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(32, 223, 189, 0.25);
}

.auth-divider {
  display: flex;
  align-items: center;
  margin: 25px 0;
  color: var(--muted);
  font-size: 12px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.auth-divider span {
  padding: 0 10px;
}

.auth-social {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.social-btn {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.06);
}

.auth-switch {
  font-size: 14px;
  color: var(--muted);
}

.auth-switch a {
  color: var(--cyan);
  font-weight: 700;
  text-decoration: none;
}

/* Premium Product Detail Enhancements */
/* --- Amazon/Flipkart Image Viewer Styling --- */
.product-media-viewer {
  display: flex;
  gap: 16px;
  margin: 15px auto 25px;
  width: 100%;
  max-width: 580px;
  box-sizing: border-box;
}

.desktop-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.thumb-btn {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  border: 2px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  padding: 0;
  transition: all 0.2s ease;
}

.thumb-btn:hover, .thumb-btn.is-active {
  border-color: var(--cyan);
  box-shadow: 0 0 8px rgba(35, 244, 239, 0.3);
  transform: scale(1.03);
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-video-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 20px;
  z-index: 2;
}

.main-viewport-container {
  flex: 1;
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--line-strong);
  box-shadow: 0 0 25px rgba(35, 244, 239, 0.15), var(--shadow);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-viewport-container img, .main-viewport-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mobile-swipe-dots {
  display: none;
}

@media (max-width: 768px) {
  .product-media-viewer {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .desktop-thumbnails {
    display: none;
  }

  .main-viewport-container {
    width: 100%;
    max-width: 320px;
    height: 360px;
  }

  .mobile-swipe-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
  }

  .dot-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .dot-indicator.is-active {
    background: var(--cyan);
    transform: scale(1.2);
    box-shadow: 0 0 6px var(--cyan);
  }
}

.video-overlay-avatar {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  box-shadow: 0 0 10px rgba(35, 244, 239, 0.5);
  overflow: hidden;
  z-index: 10;
  background: var(--bg);
}
.video-overlay-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay-share {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(18, 25, 31, 0.75);
  border: 1px solid var(--line);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: all 0.2s ease;
}
.video-overlay-share:hover {
  background: var(--cyan);
  color: #000;
  box-shadow: 0 0 10px var(--cyan);
}

.video-overlay-share svg {
  width: 16px;
  height: 16px;
}

.video-play-btn-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  z-index: 5;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.video-play-btn-overlay .play-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--red);
  border: 2px solid #fff;
}

.video-play-btn-overlay .play-icon-circle svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  color: #fff;
  margin-left: 4px;
}

/* Badge pills styling */
.badge-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 16px;
}

.badge-pill {
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.badge-pill.premium {
  border-color: rgba(35, 244, 239, 0.3);
  color: var(--cyan);
}

/* Live viewers stat */
.live-viewer-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--muted);
  background: rgba(48, 223, 104, 0.05);
  border: 1px solid rgba(48, 223, 104, 0.15);
  padding: 8px 14px;
  border-radius: 12px;
  margin: 10px 0 15px;
  width: 100%;
}

.live-viewer-pulsar {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulseGreen 1.8s infinite ease-in-out;
}

@keyframes pulseGreen {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 12px var(--green); }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* Select model premium custom dropdown */
.premium-select-container {
  position: relative;
  width: 100%;
  margin: 8px 0 18px;
}

.premium-select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(18, 25, 31, 0.85);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  font-size: 14.5px;
  cursor: pointer;
  appearance: none;
  transition: all 0.2s ease;
}
.premium-select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 10px rgba(35, 244, 239, 0.15);
}

.premium-select-container::after {
  content: "▾";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  font-size: 16px;
}

/* Colors Circular Previews */
.color-circles-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 18px;
}

.color-circle-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  padding: 0;
  transition: all 0.25s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.color-circle-btn:hover {
  transform: scale(1.15);
}
.color-circle-btn.is-active {
  border-color: var(--cyan);
  transform: scale(1.15);
  box-shadow: 0 0 10px var(--cyan);
}

/* Qty count input row style */
.qty-row-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 15px 0;
}
.qty-row-wrapper label {
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
}

/* Reviews and Ratings Engine styling */
.reviews-container-box {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.reviews-summary-panel {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 25px;
}

.reviews-overall-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.reviews-overall-score h3 {
  font-size: 34px;
  font-weight: 800;
  margin: 0;
  color: var(--text);
  line-height: 1;
}

.reviews-overall-score .stars-rating {
  color: var(--orange);
  font-size: 14px;
  margin: 6px 0;
}

.reviews-overall-score span {
  font-size: 11px;
  color: var(--soft);
}

.reviews-distribution-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}

.reviews-distribution-row {
  display: grid;
  grid-template-columns: 14px 10px 1fr 28px;
  gap: 8px;
  align-items: center;
  font-size: 11.5px;
  color: var(--muted);
}

.reviews-distribution-bar-bg {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.reviews-distribution-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #ffb236);
  border-radius: 3px;
}

/* Reviews listings */
.reviews-list-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.review-card-item {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.review-card-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-card-meta {
  flex: 1;
}

.review-card-meta h4 {
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-card-verified-badge {
  font-size: 10px;
  padding: 1px 5px;
  background: rgba(48, 223, 104, 0.1);
  border: 1.5px solid rgba(48, 223, 104, 0.3);
  color: var(--green);
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
}

.review-card-meta span {
  font-size: 10.5px;
  color: var(--soft);
}

.review-card-rating {
  color: var(--orange);
  font-size: 12px;
}

.review-card-comment {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 10px 0;
}

.review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--soft);
}

.review-card-like-btn {
  background: transparent;
  color: var(--soft);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 6px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.review-card-like-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--cyan);
}
.review-card-like-btn svg {
  width: 12px;
  height: 12px;
}

/* Write review form box */
.write-review-card-form {
  background: rgba(18, 25, 31, 0.8);
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 15px rgba(35, 244, 239, 0.1);
  border-radius: 16px;
  padding: 18px;
  margin-top: 25px;
}

.write-review-card-form h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--cyan);
  margin-top: 0;
  margin-bottom: 15px;
}

.rating-stars-picker-row {
  display: flex;
  gap: 6px;
  margin: 6px 0 16px;
}

.rating-star-picker-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.15);
  font-size: 26px;
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s ease, color 0.15s ease;
}
.rating-star-picker-btn.selected {
  color: var(--orange);
  text-shadow: 0 0 10px rgba(255, 138, 23, 0.4);
}
.rating-star-picker-btn:hover {
  transform: scale(1.2);
}

