:root {
  color-scheme: dark;
  --bg: #05020a;
  --panel: rgba(16, 9, 28, 0.65);
  --panel-solid: #11091e;
  --panel-2: rgba(30, 16, 52, 0.8);
  --line: rgba(215, 183, 255, 0.08);
  --line-glow: rgba(166, 108, 255, 0.3);
  --text: #f5f0ff;
  --muted: #a294b8;
  --blue: #b388ff;
  --blue-2: #d8c2ff;
  --blue-hover: #c5a3ff;
  --success: #00ff9d;
  --success-glow: rgba(0, 255, 157, 0.15);
  --danger: #ff4b68;
  --danger-glow: rgba(255, 75, 104, 0.15);
  --warning: #ffd166;
  --warning-glow: rgba(255, 209, 102, 0.15);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
  --shadow-glow: 0 0 40px rgba(166, 108, 255, 0.08);
  --font-title: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius: 12px;
}

* {
  box-sizing: border-box;
  outline-color: var(--blue);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--bg);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(26, 12, 54, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(93, 46, 158, 0.15) 0%, transparent 45%);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Cybernetic floating glowing orbs */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.35;
  filter: blur(130px);
  pointer-events: none;
  animation: floatOrb 22s infinite alternate ease-in-out;
}

.glow-orb-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(166, 108, 255, 0.38) 0%, rgba(109, 54, 201, 0) 70%);
  top: -10%;
  left: -8%;
  animation-duration: 18s;
}

.glow-orb-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(93, 46, 158, 0.28) 0%, rgba(7, 4, 12, 0) 70%);
  bottom: -15%;
  right: -5%;
  animation-duration: 25s;
}

.glow-orb-3 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.14) 0%, rgba(7, 4, 12, 0) 70%);
  top: 35%;
  left: 45%;
  animation-duration: 22s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -35px) scale(1.08); }
  100% { transform: translate(-25px, 25px) scale(0.92); }
}

/* High Contrast Settings */
body.high-contrast {
  --bg: #000;
  --panel: rgba(12, 4, 22, 0.95);
  --panel-solid: #090312;
  --panel-2: #160a28;
  --line: rgba(215, 183, 255, 0.32);
  --line-glow: rgba(166, 108, 255, 0.6);
  --muted: #e4dbf5;
  --blue: #cca3ff;
  --blue-2: #f2eaff;
}

body.high-contrast .glow-orb {
  opacity: 0.15;
}

/* Scrollbar customization */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #2a1b4d;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #46307a;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
  padding: 0 6vw;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 2, 10, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
}

.brand-text {
  background: linear-gradient(135deg, #fff 40%, var(--blue-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}

.brand:hover .brand-text {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px rgba(166, 108, 255, 0.4));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 6px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  transition: width 0.25s ease;
  border-radius: 4px;
}

.desktop-nav a:hover {
  color: var(--text);
  text-shadow: 0 0 10px rgba(179, 136, 255, 0.25);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(30, 16, 52, 0.45);
  color: var(--muted);
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
}

/* Hide sun/moon icons dynamically based on theme */
body.high-contrast .theme-icon .sun-icon {
  display: none;
}
body:not(.high-contrast) .theme-icon .moon-icon {
  display: none;
}

.icon-button:hover {
  color: var(--text);
  border-color: var(--line-glow);
  background: rgba(30, 16, 52, 0.8);
  box-shadow: 0 0 15px rgba(179, 136, 255, 0.15);
  transform: translateY(-1px);
}

.icon-button:active {
  transform: scale(0.96);
}

.cart-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 44px;
  padding: 0 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(30, 16, 52, 0.45);
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
}

.cart-link:hover {
  border-color: var(--line-glow);
  background: rgba(30, 16, 52, 0.8);
  box-shadow: 0 0 20px rgba(179, 136, 255, 0.18);
  transform: translateY(-1px);
}

.cart-icon {
  color: var(--blue);
}

.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--blue), #805cdb);
  color: #12081c;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 0 10px rgba(179, 136, 255, 0.4);
}

/* Page entry transitions */
.fade-in-container {
  opacity: 0;
  transform: translateY(12px);
  animation: pageFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Base layouts & core spacing */
#app {
  min-height: 72vh;
}

.page {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 40px 0 80px;
}

/* Cinematic Hero Section */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 48px;
  min-height: calc(85vh - 76px);
  padding: 20px 0 60px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.eyebrow {
  display: inline-block;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.85rem;
  text-shadow: 0 0 12px rgba(179, 136, 255, 0.25);
}

h1, h2, h3, h4, p {
  margin-top: 0;
}

h1 {
  font-family: var(--font-title);
  font-weight: 900;
  max-width: 780px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.6rem, 6.2vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #ffffff 40%, var(--blue-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.05));
}

.hero-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 2.2rem;
}

.hero-actions,
.section-actions,
.cart-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Premium Buttons Styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.95rem;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.btn:active {
  transform: scale(0.97) translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-2) 0%, #7c4dff 100%);
  color: #0b0318;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 16px 36px rgba(124, 77, 255, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 20px 40px rgba(124, 77, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  filter: brightness(1.05);
}

.btn-ghost {
  background: rgba(30, 16, 52, 0.35);
  border: 1px solid var(--line);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: var(--line-glow);
  background: rgba(30, 16, 52, 0.65);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(179, 136, 255, 0.12);
}

.btn-danger {
  background: rgba(255, 75, 104, 0.08);
  border: 1px solid rgba(255, 75, 104, 0.32);
  color: #ff99a6;
  backdrop-filter: blur(10px);
}

.btn-danger:hover {
  background: rgba(255, 75, 104, 0.18);
  border-color: rgba(255, 75, 104, 0.55);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 75, 104, 0.15);
}

.small-btn {
  min-height: 38px;
  padding: 0.35rem 0.95rem;
  font-size: 0.8rem;
  border-radius: 8px;
}

button:disabled,
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.35 !important;
  transform: none !important;
  box-shadow: none !important;
  filter: none !important;
}

/* Cinematic Hero Showcase Box */
.hero-showcase {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: 
    linear-gradient(180deg, rgba(16, 9, 28, 0.3) 0%, var(--bg) 95%),
    url("https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?auto=format&fit=crop&w=1100&q=80") center/cover;
  box-shadow: var(--shadow), var(--shadow-glow);
  display: flex;
  align-items: flex-end;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(179, 136, 255, 0.12), transparent 60%);
  z-index: 0;
}

.hero-product {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.85rem;
  padding: 1.6rem;
  margin: 20px;
  width: calc(100% - 40px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(10, 4, 18, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hero-product strong {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.hero-product span {
  color: var(--blue-2);
  font-weight: 700;
  font-size: 1.05rem;
}

/* Hero stats panel */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.stat {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 10, 32, 0.4);
  backdrop-filter: blur(10px);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.stat:hover {
  border-color: var(--line-glow);
  transform: translateY(-2px);
}

.stat strong {
  display: block;
  font-family: var(--font-title);
  color: var(--blue-2);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.15rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Trust Pillar Items & About features */
.trust-grid,
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 30px 0 60px;
}

.trust-item,
.about-grid div {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 10, 32, 0.45);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.trust-item:hover,
.about-grid div:hover {
  border-color: var(--line-glow);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(179, 136, 255, 0.08);
}

/* Subtle visual glow pill inside card */
.trust-item::after,
.about-grid div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.trust-item:hover::after,
.about-grid div:hover::after {
  opacity: 1;
}

.trust-item strong,
.about-grid strong {
  font-family: var(--font-title);
  color: #fff;
  font-size: 1.12rem;
  font-weight: 700;
}

.trust-item span,
.about-grid span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Section Header Typography */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin: 40px 0 28px;
}

.section-head h2 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #fff, var(--blue-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.about-section {
  padding-top: 40px;
}

/* Advanced Interactive Filters Layout */
.filters {
  display: grid;
  grid-template-columns: 1fr minmax(180px, 240px) minmax(180px, 240px);
  gap: 1.25rem;
  margin: 30px 0;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 10, 32, 0.35);
  backdrop-filter: blur(10px);
}

.field {
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Premium Form Elements */
input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 4, 16, 0.85);
  color: var(--text);
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.25s ease;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23a294b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  background: rgba(18, 10, 32, 0.7);
  box-shadow: 
    0 0 0 3px rgba(179, 136, 255, 0.2),
    inset 0 1px 2px rgba(0,0,0,0.2);
}

/* Gorgeous Product Grid & Premium Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 10, 32, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(215, 183, 255, 0.12), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
  transition: background 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(179, 136, 255, 0.25);
  box-shadow: 
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 30px rgba(179, 136, 255, 0.06);
}

.product-card:hover::before {
  background: linear-gradient(135deg, rgba(179, 136, 255, 0.4), transparent 60%);
}

.product-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #110722;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(18, 10, 32, 0.7) 100%);
  z-index: 1;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-media img {
  transform: scale(1.06);
}

.badge-row {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(179, 136, 255, 0.35);
  border-radius: 99px;
  background: rgba(10, 4, 18, 0.85);
  color: var(--blue-2);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.badge.warn {
  border-color: rgba(255, 209, 102, 0.4);
  color: var(--warning);
  background: rgba(25, 20, 8, 0.85);
  box-shadow: 0 4px 10px rgba(255, 209, 102, 0.08);
}

.badge.danger {
  border-color: rgba(255, 75, 104, 0.4);
  color: var(--danger);
  background: rgba(26, 8, 14, 0.85);
  box-shadow: 0 4px 10px rgba(255, 75, 104, 0.08);
}

.product-body {
  display: flex;
  min-height: 252px;
  flex: 1;
  flex-direction: column;
  padding: 1.35rem;
}

.product-meta {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-title {
  font-family: var(--font-title);
  margin: 0.45rem 0;
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
}

.product-title a:hover {
  color: var(--blue);
}

.product-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.price {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 900;
  font-family: var(--font-title);
  letter-spacing: -0.5px;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Premium Star Rating Visual */
.stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--warning);
}

.stars-svg {
  filter: drop-shadow(0 0 4px rgba(255, 209, 102, 0.3));
}

/* Product Detail Split Page */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.15fr);
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.product-detail-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #110722;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.product-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-panel,
.summary-panel,
.admin-panel,
.faq-item,
.review,
.empty-state {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 10, 32, 0.45);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.detail-panel,
.summary-panel,
.admin-panel,
.empty-state {
  padding: 1.75rem;
}

.detail-panel {
  display: flex;
  flex-direction: column;
}

.detail-panel h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.85rem;
}

.detail-panel p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.detail-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0 0 1.75rem;
  list-style: none;
}

.detail-list li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.95rem;
}

.detail-list strong {
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Sleek Verified Spec Item Checkmark */
.spec-check {
  color: var(--success);
  margin-right: 6px;
}

.notice-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(179, 136, 255, 0.16);
  border-radius: 8px;
  background: rgba(179, 136, 255, 0.04);
  color: var(--blue-2);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.notice-box svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Beautiful masonry reviews layout */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.review {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.review h3 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.15rem;
}

.review p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Multi-Column Cart/Checkout Flow Sheet */
.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 1.5rem;
  align-items: start;
}

.cart-items {
  display: grid;
  gap: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 10, 32, 0.5);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cart-item img {
  width: 110px;
  height: 84px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.06);
}

.cart-item-details {
  display: grid;
  gap: 0.35rem;
}

.cart-item-details strong {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.qty-control button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(30, 16, 52, 0.65);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  transition: all 0.15s ease;
}

.qty-control button:hover {
  border-color: var(--line-glow);
  background: rgba(30, 16, 52, 0.95);
  color: #fff;
}

.qty-control span {
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 20px;
  text-align: center;
}

.cart-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
}

.cart-actions strong {
  font-family: var(--font-title);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
}

.summary-panel {
  position: sticky;
  top: 104px;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.summary-panel h3 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 0.75rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.summary-line strong {
  color: #fff;
}

.summary-line.total {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  font-family: var(--font-title);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.summary-line.total strong {
  color: var(--blue-2);
  text-shadow: 0 0 15px rgba(179, 136, 255, 0.35);
}

.coupon-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  margin: 0.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.coupon-form .field {
  text-transform: none;
  font-weight: 700;
  letter-spacing: 0;
}

/* Interactive Checkout Form */
.checkout-form,
.admin-form {
  display: grid;
  gap: 1.1rem;
}

.form-grid,
.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.crypto-box {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.25rem;
  border: 1px solid rgba(179, 136, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(179, 136, 255, 0.04);
}

.crypto-box strong {
  font-family: var(--font-title);
  color: var(--blue-2);
  font-size: 1.05rem;
  font-weight: 700;
}

.crypto-box span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Success Visual Sheet Layout */
.success-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
  padding: 3rem 2rem;
  border: 1px solid rgba(0, 255, 157, 0.22);
  border-radius: 16px;
  background: rgba(0, 255, 157, 0.04);
  box-shadow: 0 20px 50px rgba(0, 255, 157, 0.03);
  max-width: 680px;
  margin: 20px auto;
}

.success-badge-container {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  background: rgba(0, 255, 157, 0.12);
  border: 1px solid rgba(0, 255, 157, 0.5);
  border-radius: 50%;
  color: var(--success);
  box-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
  margin-bottom: 0.5rem;
}

.success-box h2 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 2rem;
  color: #fff;
  margin: 0;
}

.success-box p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 0 1rem;
}

/* Premium QR Visual Component */
.checkout-qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  padding: 1.15rem;
  border-radius: var(--radius);
  margin: 0.5rem 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.checkout-qr-mock {
  width: 140px;
  height: 140px;
  border: 6px solid #fff;
  background-image: 
    linear-gradient(45deg, #120824 25%, transparent 25%), 
    linear-gradient(-45deg, #120824 25%, transparent 25%), 
    linear-gradient(45deg, transparent 75%, #120824 75%), 
    linear-gradient(-45deg, transparent 75%, #120824 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  opacity: 0.85;
  border-radius: 4px;
}

.checkout-qr-caption {
  font-size: 0.75rem;
  font-weight: 800;
  color: #120824;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Success screen visual address box */
.payment-address-card {
  width: 100%;
  max-width: 480px;
  background: rgba(10, 4, 18, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.15rem;
  margin-bottom: 1rem;
}

.payment-address-title {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.55rem;
}

.payment-address-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--line);
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
}

.payment-address-value {
  font-family: monospace;
  font-size: 0.92rem;
  color: var(--blue-2);
  word-break: break-all;
  text-align: left;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: rgba(30, 16, 52, 0.8);
  color: var(--muted);
  border: 1px solid var(--line);
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.copy-btn:hover {
  color: #fff;
  border-color: var(--line-glow);
  background: var(--panel-2);
}

.copy-btn:active {
  transform: scale(0.92);
}

/* High Contrast adjustments for success screen */
body.high-contrast .success-box {
  background: #000;
  border-color: var(--success);
}

body.high-contrast .payment-address-card {
  background: #000;
  border-color: var(--line);
}

/* Floating Telegram support pill */
.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 46px;
  padding: 0 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  background: linear-gradient(135deg, var(--blue-2) 0%, #7c4dff 100%);
  color: #0b0318;
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: 
    0 10px 30px rgba(124, 77, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-contact:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 
    0 15px 40px rgba(124, 77, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.floating-contact:active {
  transform: translateY(-1px) scale(0.97);
}

.floating-contact span {
  letter-spacing: 0.2px;
}

/* Futuristic Admin Dashboard Layout */
.admin-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 1.5rem;
}

.admin-panel h3 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.32rem;
  color: #fff;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 0.75rem;
}

.admin-form-group {
  display: grid;
  gap: 0.45rem;
}

.admin-form label {
  font-weight: 700;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.35rem 0;
}

.checkbox-row input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  accent-color: var(--blue);
  cursor: pointer;
}

.admin-note {
  font-size: 0.84rem;
  color: var(--danger);
  background: rgba(255, 75, 104, 0.05);
  border: 1px solid rgba(255, 75, 104, 0.15);
  padding: 0.75rem;
  border-radius: 6px;
  line-height: 1.5;
}

.orders-panel {
  margin-top: 1.5rem;
}

.compact-head {
  align-items: center;
  margin-top: 0;
}

.compact-head h3 {
  margin-bottom: 0;
}

/* Premium Admin Table Rows */
.admin-table {
  display: grid;
  gap: 0.85rem;
}

.admin-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px 90px 140px;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 10, 32, 0.4);
  transition: all 0.2s ease;
}

.admin-row:hover {
  border-color: var(--line-glow);
  background: rgba(18, 10, 32, 0.65);
}

.admin-row strong {
  font-family: var(--font-title);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.admin-row span {
  font-size: 0.95rem;
  font-weight: 500;
}

.admin-row span:nth-child(2) {
  color: var(--blue-2);
  font-weight: 700;
}

.admin-row span:nth-child(3) {
  color: var(--muted);
}

.admin-actions {
  display: flex;
  gap: 0.55rem;
  justify-content: flex-end;
}

/* Dashboard Metric Widget Elements */
.admin-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.metric-card {
  background: rgba(18, 10, 32, 0.45);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  backdrop-filter: blur(10px);
}

.metric-card strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue-2);
  margin-top: 0.25rem;
  text-shadow: 0 0 15px rgba(179, 136, 255, 0.2);
}

.metric-card span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Beautiful Order History Layout */
.order-list {
  display: grid;
  gap: 0.85rem;
}

.order-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 10, 32, 0.4);
  transition: all 0.2s ease;
}

.order-row:hover {
  border-color: var(--line-glow);
  background: rgba(18, 10, 32, 0.65);
}

.order-row div {
  display: grid;
  gap: 0.35rem;
}

.order-row div:last-child {
  justify-items: end;
}

.order-row strong {
  font-family: var(--font-title);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
}

.order-row span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.order-row div:last-child strong {
  color: var(--blue-2);
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(179, 136, 255, 0.15);
}

/* Interactive Accordion FAQ Layout */
.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.25rem;
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Custom interactive caret for FAQ */
.faq-item summary::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23b388ff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Empty State layouts */
.empty-state {
  color: var(--muted);
  text-align: center;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.empty-state p {
  font-size: 1.1rem;
  margin: 0;
}

/* Beautiful Footer Redesign */
/* ===================== PREMIUM FOOTER ===================== */
.site-footer-premium {
  border-top: 1px solid var(--line);
  background: rgba(4, 2, 8, 0.95);
  backdrop-filter: blur(10px);
  position: relative;
}

.site-footer-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 6vw;
  right: 6vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-glow), transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1fr;
  gap: 3rem;
  padding: 50px 6vw 40px;
  color: var(--muted);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-brand {
  color: var(--text);
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
  max-width: 340px;
  color: var(--muted);
}

.footer-telegram-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(30, 16, 52, 0.3);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  width: fit-content;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 0.25rem;
}

.footer-telegram-btn:hover {
  border-color: var(--blue);
  background: rgba(166, 108, 255, 0.1);
  color: var(--blue-2);
  box-shadow: 0 0 15px rgba(166, 108, 255, 0.12);
  transform: translateY(-1px);
}

.footer-links-col,
.footer-payments-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-col h4,
.footer-payments-col h4 {
  font-family: var(--font-title);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 0.5rem 0;
  position: relative;
  padding-left: 0.85rem;
}

.footer-links-col h4::before,
.footer-payments-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 3px;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(to bottom, var(--blue), var(--blue-2));
  box-shadow: 0 0 8px rgba(166, 108, 255, 0.5);
}

.footer-links-col a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.2s;
}

.footer-links-col a:hover {
  color: var(--blue-2);
  padding-left: 4px;
}

.footer-payments-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Payments glow indicators */
.payment-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  display: inline-block;
}

/* Footer bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 6vw;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.3px;
}

.footer-bottom-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--success);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Responsive footer */
@media (max-width: 990px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 720px) {
  .footer-top {
    padding: 35px 5vw 25px;
  }

  .site-footer-premium {
    padding-bottom: 80px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 1rem 5vw;
  }
}

/* Modern Glowing Toast Message */
.toast {
  position: fixed;
  right: 24px;
  bottom: 84px;
  z-index: 150;
  max-width: min(360px, calc(100vw - 48px));
  padding: 1rem 1.25rem;
  border: 1px solid rgba(179, 136, 255, 0.45);
  border-radius: var(--radius);
  background: rgba(10, 4, 18, 0.95);
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: var(--shadow), 0 0 30px rgba(179, 136, 255, 0.15);
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.toast::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300ff9d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* Tablet & Smaller Layout Responsiveness */
@media (max-width: 990px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 34px;
    min-height: auto;
    padding-top: 30px;
  }

  .hero-copy {
    align-items: center;
  }

  .hero-copy p {
    max-width: 580px;
  }

  .hero-showcase {
    min-height: 420px;
  }

  .split,
  .cart-layout,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-layout {
    gap: 2rem;
  }

  .product-grid,
  .reviews,
  .trust-grid,
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summary-panel {
    position: static;
  }

  .site-footer {
    gap: 2rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: auto;
    flex-wrap: wrap;
    padding: 0.85rem 5vw;
  }

  .desktop-nav {
    order: 3;
    width: 100%;
    justify-content: space-around;
    gap: 0.5rem;
    padding-top: 10px;
    border-top: 1px solid var(--line);
    margin-top: 5px;
  }

  .page {
    width: min(100% - 32px, 1180px);
    padding-top: 24px;
  }

  .hero-stats,
  .filters,
  .product-grid,
  .reviews,
  .trust-grid,
  .about-grid,
  .form-grid,
  .admin-grid,
  .admin-metrics-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 340px;
  }

  .section-head {
    display: grid;
    gap: 0.5rem;
  }

  .cart-item {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 1rem;
  }

  .cart-item img {
    width: 80px;
    height: 72px;
  }

  .cart-item .cart-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.75rem;
  }

  .admin-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: center;
  }
  
  .admin-actions {
    justify-content: center;
  }

  .order-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .order-row div:last-child {
    justify-items: start;
  }

  .site-footer {
    padding-bottom: 94px;
  }

  .floating-contact {
    right: 16px;
    bottom: 16px;
    left: 16px;
    border-radius: 12px;
  }

  .toast {
    bottom: 80px;
    left: 16px;
    right: 16px;
  }
}

/* Premium Grouped Account Table Styles */
.category-block {
  margin-bottom: 3.5rem;
}

.category-block:last-child {
  margin-bottom: 1.5rem;
}

.category-title-header {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.pill-glow {
  width: 4px;
  height: 1.35rem;
  display: inline-block;
  border-radius: 4px;
  background: linear-gradient(to bottom, #d7b7ff, #8a2be2);
  box-shadow: 0 0 12px rgba(166, 108, 255, 0.85);
  margin-right: 0.85rem;
}

.accounts-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 9, 28, 0.45);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), var(--shadow-glow);
}

.table-header-row {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 0.8fr;
  gap: 1rem;
  padding: 1.1rem 1.75rem;
  border-bottom: 1px solid var(--line);
  background: rgba(30, 16, 52, 0.45);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.table-body {
  display: flex;
  flex-direction: column;
}

.account-row-item {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 0.8fr;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.account-row-item:last-child {
  border-bottom: none;
}

.account-row-item:hover {
  background: rgba(30, 16, 52, 0.25);
  box-shadow: inset 4px 0 0 var(--blue);
}

.product-identity {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.product-icon-container {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(30, 16, 52, 0.6);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.category-icon-svg {
  color: var(--blue-2);
}

.category-icon-svg.ai-glow {
  filter: drop-shadow(0 0 6px rgba(215, 183, 255, 0.5));
}

.category-icon-svg.mail-glow {
  filter: drop-shadow(0 0 6px rgba(166, 108, 255, 0.5));
}

.category-icon-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9px;
}

.category-icon-img.ai-glow-img {
  filter: drop-shadow(0 0 6px rgba(166, 108, 255, 0.6));
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-icon-container:hover .category-icon-img.ai-glow-img {
  transform: scale(1.12);
}

.category-icon-img.mail-glow-img {
  filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.6));
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-icon-container:hover .category-icon-img.mail-glow-img {
  transform: scale(1.12);
}

.category-icon-img.yahoo-glow-img {
  filter: drop-shadow(0 0 6px rgba(166, 0, 255, 0.6));
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-icon-container:hover .category-icon-img.yahoo-glow-img {
  transform: scale(1.12);
}

.product-name-desc {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.product-name-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.product-title-link {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  transition: all 0.2s ease;
  letter-spacing: -0.2px;
}

.product-title-link:hover {
  color: var(--blue);
  text-shadow: 0 0 10px rgba(179, 136, 255, 0.25);
}

.featured-badge {
  min-height: 20px;
  padding: 0 0.55rem;
  font-size: 0.62rem;
  background: rgba(166, 108, 255, 0.12);
  border: 1px solid rgba(166, 108, 255, 0.35);
  color: var(--blue-2);
  letter-spacing: 0.5px;
  font-weight: 800;
}

.product-short-desc {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 520px;
}

.stock-status-cell {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.stock-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--danger);
  box-shadow: 0 0 10px var(--danger);
  display: inline-block;
}

.stock-badge-dot.active {
  background-color: var(--success);
  box-shadow: 0 0 10px var(--success);
}

.stock-text-value {
  font-size: 0.95rem;
  color: var(--muted);
}

.stock-text-value.in-stock strong {
  color: #fff;
  font-weight: 700;
}

.stock-text-value.out-of-stock {
  color: var(--danger);
  font-weight: 600;
}

.price-cell {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.price-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 800;
  display: none;
}

.price-amount {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.buy-action-cell {
  display: flex;
  justify-content: flex-end;
}

.buy-table-btn {
  width: 100%;
  max-width: 110px;
  height: 40px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

/* High Contrast mode adjustments for tables */
body.high-contrast .accounts-table {
  background: #000;
  border-color: var(--line);
}

body.high-contrast .table-header-row {
  background: rgba(30, 16, 52, 0.85);
  border-bottom-color: var(--line);
}

body.high-contrast .account-row-item {
  border-bottom-color: var(--line);
}

body.high-contrast .account-row-item:hover {
  background: rgba(30, 16, 52, 0.5);
}

body.high-contrast .product-icon-container {
  background: #000;
  border-color: var(--line);
}

/* Responsive Table Rules */
@media (max-width: 820px) {
  .product-short-desc {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .category-block {
    margin-bottom: 2.2rem;
  }
  
  .category-title-header {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .table-header-row {
    display: none; /* Hide headers on smaller screens */
  }
  
  .account-row-item {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    padding: 1.35rem 1.25rem;
  }
  
  .product-identity {
    gap: 1rem;
  }
  
  .product-icon-container {
    width: 40px;
    height: 40px;
  }
  
  .product-title-link {
    font-size: 1.1rem;
  }
  
  .stock-status-cell {
    justify-content: space-between;
    background: rgba(30, 16, 52, 0.25);
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--line);
  }
  
  .stock-status-cell::before {
    content: "Stock Status";
    font-size: 0.74rem;
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .price-cell {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: rgba(30, 16, 52, 0.25);
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--line);
  }
  
  .price-label {
    display: inline-block;
  }
  
  .buy-action-cell {
    justify-content: stretch;
  }
  
  .buy-table-btn {
    max-width: 100%;
    width: 100%;
    height: 44px;
  }
}

/* ==========================================================================
   PREMIUM CHECKOUT STEPPER, SIMULATOR & MY ORDERS STYLES
   ========================================================================== */

/* 1. Low Stock pulsing badge */
.stock-badge-dot.warning {
  background-color: var(--warning);
  box-shadow: 0 0 10px var(--warning);
  animation: warningStockPulse 1.6s infinite alternate ease-in-out;
}

@keyframes warningStockPulse {
  0% { transform: scale(1); opacity: 0.8; box-shadow: 0 0 4px var(--warning); }
  100% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px var(--warning); }
}

/* 2. Checkout Stepper UI */
.checkout-stepper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.step-indicator::before {
  content: "";
  position: absolute;
  top: 15px;
  left: -50%;
  right: -50%;
  height: 2px;
  background: var(--line);
  z-index: -1;
}

.step-indicator:first-child::before {
  left: 50%;
}

.step-indicator:last-child::before {
  right: 50%;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--panel-solid);
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  color: var(--muted);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-indicator.active .step-number {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--bg);
  box-shadow: 0 0 15px rgba(166, 108, 255, 0.4);
}

.step-indicator.active .step-label {
  color: var(--text);
}

.step-indicator.completed .step-number {
  background: var(--success-glow);
  border-color: var(--success);
  color: var(--success);
}

.step-indicator.completed .step-label {
  color: var(--success);
}

.step-indicator.completed::before,
.step-indicator.active::before {
  background: var(--blue);
}

.step-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.step-panel.active {
  display: block;
}

/* Crypto Selection Grid */
.crypto-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.crypto-card {
  background: rgba(30, 16, 52, 0.25);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.crypto-card:hover {
  border-color: var(--line-glow);
  background: rgba(30, 16, 52, 0.45);
  transform: translateY(-2px);
}

.crypto-card.selected {
  border-color: var(--blue);
  background: rgba(166, 108, 255, 0.1);
  box-shadow: 0 0 20px rgba(166, 108, 255, 0.15);
}

.crypto-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.crypto-card.selected .crypto-card-icon {
  background: var(--blue);
  color: var(--bg);
  box-shadow: 0 0 10px var(--blue);
}

.crypto-card-name {
  font-weight: 700;
  font-size: 0.85rem;
}

.crypto-card-network {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 3. Blockchain Simulator UI */
.blockchain-portal {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.radar-container {
  width: 110px;
  height: 110px;
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px dashed var(--line-glow);
  animation: radarPulse 4s infinite linear;
}

.radar-circle-2 {
  position: absolute;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  border: 1.5px solid var(--blue);
  opacity: 0.4;
  animation: radarPulse 3s infinite linear reverse;
}

.radar-core {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 25px var(--blue);
  animation: corePulse 2s infinite alternate ease-in-out;
}

@keyframes radarPulse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes corePulse {
  0% { transform: scale(0.95); box-shadow: 0 0 15px var(--blue); }
  100% { transform: scale(1.08); box-shadow: 0 0 30px var(--blue); }
}

.blockchain-status-text {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.blockchain-console {
  width: 100%;
  background: #07030e;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  font-family: monospace;
  font-size: 0.8rem;
  text-align: left;
  color: #cda9ff;
  height: 150px;
  overflow-y: auto;
  margin: 1.5rem 0;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
}

.console-line {
  margin: 0.25rem 0;
  line-height: 1.4;
  animation: consoleLineIn 0.3s ease forwards;
  opacity: 0;
  transform: translateY(4px);
}

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

.console-marker-info { color: var(--blue); }
.console-marker-tx { color: #f2eaff; }
.console-marker-ok { color: var(--success); }

/* QR Code & Scan styles */
.checkout-qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
  background: rgba(5, 2, 10, 0.4);
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.checkout-qr-img {
  background: white;
  padding: 8px;
  border-radius: 8px;
  display: block;
}

/* 4. Instant Delivery Credentials Box */
.delivery-box {
  width: 100%;
  margin-top: 1.5rem;
  text-align: left;
}

.delivery-box h3 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.account-credential-card {
  background: rgba(16, 9, 28, 0.5);
  border: 1px solid var(--line-glow);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.account-credential-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--blue), var(--success));
}

.credential-header {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue-2);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.credential-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(5, 2, 10, 0.8);
  border: 1px solid var(--line);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.credential-label {
  font-size: 0.75rem;
  color: var(--muted);
  min-width: 70px;
  text-transform: uppercase;
  font-weight: 700;
}

.credential-value {
  flex: 1;
  font-family: monospace;
  font-size: 0.85rem;
  word-break: break-all;
}

.copy-btn-small {
  background: transparent;
  color: var(--muted);
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s;
}

.copy-btn-small:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.instruction-alert {
  background: rgba(255, 209, 102, 0.05);
  border: 1px solid rgba(255, 209, 102, 0.2);
  border-radius: 6px;
  padding: 0.75rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #ffe6a3;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.bulk-credentials-box {
  width: 100%;
  height: 100px;
  background: rgba(5, 2, 10, 0.8);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.75rem;
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--text);
  resize: none;
  margin-bottom: 0.5rem;
}

/* 5. My Orders Page Timeline UI */
.order-history-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.order-history-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.3s;
}

.order-history-card:hover {
  border-color: rgba(166, 108, 255, 0.25);
  box-shadow: var(--shadow-glow);
}

.order-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.order-number-date h4 {
  font-family: var(--font-title);
  margin: 0;
  font-size: 1.1rem;
}

.order-number-date span {
  font-size: 0.75rem;
  color: var(--muted);
}

.order-status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.order-status-badge.delivered {
  background: var(--success-glow);
  color: var(--success);
  border: 1px solid var(--success);
}

.order-status-badge.pending {
  background: rgba(255, 209, 102, 0.1);
  color: var(--warning);
  border: 1px solid var(--warning);
}

.order-timeline {
  display: flex;
  justify-content: space-between;
  margin: 1.5rem 0;
  padding: 0 1rem;
  position: relative;
}

.order-timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--line);
  z-index: 1;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  position: relative;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--panel-solid);
  border: 2px solid var(--line);
  transition: all 0.3s;
}

.timeline-step.active .timeline-dot {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 10px var(--blue);
}

.timeline-step.completed .timeline-dot {
  background: var(--success);
  border-color: var(--success);
  box-shadow: 0 0 10px var(--success);
}

.timeline-text {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
  color: var(--muted);
}

.timeline-step.active .timeline-text { color: var(--text); }
.timeline-step.completed .timeline-text { color: var(--success); }

/* Responsive tweaks */
@media (max-width: 600px) {
  .checkout-stepper {
    flex-direction: row;
    gap: 0.25rem;
  }
  
  .step-label {
    font-size: 0.6rem;
    letter-spacing: 0px;
  }
  
  .order-timeline {
    padding: 0;
  }
  
  .timeline-text {
    font-size: 0.55rem;
  }
}

/* ==========================================================================
   PREMIUM CHECKOUT FORM REDESIGN
   ========================================================================== */

.checkout-form-premium {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: var(--shadow), 0 0 40px rgba(166, 108, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.checkout-form-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2), var(--success));
  opacity: 0.8;
}

.checkout-section-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--blue-2);
  margin-bottom: 1rem;
}

.checkout-section-header svg {
  color: var(--blue);
  flex-shrink: 0;
}

.checkout-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkout-field {
  position: relative;
}

.checkout-field-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.checkout-required {
  color: var(--danger);
  font-weight: 800;
  font-size: 0.85rem;
}

.checkout-optional {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.7rem;
  text-transform: lowercase;
  letter-spacing: 0;
  background: rgba(255, 255, 255, 0.04);
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid var(--line);
}

.checkout-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-glow), transparent);
  margin: 1.75rem 0;
}

/* Crypto card check mark */
.crypto-card-check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.crypto-card.selected .crypto-card-check {
  opacity: 1;
  transform: scale(1);
}

/* Enhanced crypto card hover glow */
.crypto-card.selected {
  border-color: var(--blue);
  background: rgba(166, 108, 255, 0.1);
  box-shadow: 0 0 20px rgba(166, 108, 255, 0.15), inset 0 0 20px rgba(166, 108, 255, 0.03);
}

/* Submit button */
.checkout-submit-btn {
  width: 100%;
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 0.85rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.checkout-submit-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transition: left 0.6s ease;
}

.checkout-submit-btn:hover::after {
  left: 120%;
}

/* Trust strip */
.checkout-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.3px;
}

.checkout-trust-strip svg {
  color: var(--success);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 600px) {
  .checkout-fields-grid {
    grid-template-columns: 1fr;
  }
  
  .checkout-form-premium {
    padding: 1.5rem 1.25rem;
  }
  
  .checkout-trust-strip {
    flex-direction: column;
    text-align: center;
    gap: 0.35rem;
  }
}

