:root {
  --bg: #050816;
  --bg-soft: #0b1120;
  --bg-card: rgba(15, 23, 42, 0.65);
  --bg-card-strong: rgba(15, 23, 42, 0.82);
  --surface: #0f172a;
  --surface-2: #111c34;
  --text: #e5e7eb;
  --text-soft: #94a3b8;
  --white: #ffffff;
  --primary: #6366f1;
  --primary-2: #8b5cf6;
  --secondary: #22d3ee;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --border: rgba(148, 163, 184, 0.18);
  --border-strong: rgba(99, 102, 241, 0.35);
  --shadow: 0 20px 60px rgba(2, 6, 23, 0.45);
  --shadow-soft: 0 12px 30px rgba(2, 6, 23, 0.25);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1200px;
  --nav-h: 82px;
  --transition: 0.3s ease;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-soft: linear-gradient(135deg, rgba(99, 102, 241, 0.18), rgba(34, 211, 238, 0.14));
  --heading-font: "Rajdhani", sans-serif;
  --body-font: "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  background:
    radial-gradient(circle at top left, rgba(99, 102, 241, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(34, 211, 238, 0.12), transparent 24%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

button {
  cursor: pointer;
  border: none;
}

::selection {
  background: rgba(99, 102, 241, 0.35);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #071021;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 999px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 90px 0;
}

.section-sm {
  padding: 60px 0;
}

.grid {
  display: grid;
  gap: 24px;
}

.text-muted {
  color: var(--text-soft);
}

.text-gradient {
  background: linear-gradient(135deg, #f8fafc, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--secondary);
  font-size: 0.92rem;
}

.section-heading {
  margin: 0 0 12px;
  font-family: var(--heading-font);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.section-subtitle {
  max-width: 720px;
  margin: 0 auto 0 0;
  color: var(--text-soft);
}

.center {
  text-align: center;
}

.center .section-subtitle {
  margin-inline: auto;
}

.glass {
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.84rem;
  line-height: 1;
  white-space: nowrap;
}

.badge-primary {
  background: rgba(99, 102, 241, 0.18);
  color: #c7d2fe;
}

.badge-secondary {
  background: rgba(34, 211, 238, 0.12);
  color: #a5f3fc;
}

.badge-success {
  background: rgba(34, 197, 94, 0.14);
  color: #bbf7d0;
}

.badge-warning {
  background: rgba(245, 158, 11, 0.14);
  color: #fde68a;
}

.badge-danger {
  background: rgba(239, 68, 68, 0.14);
  color: #fecaca;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 0 24px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.22), 0 12px 32px rgba(99, 102, 241, 0.28);
}

.btn-outline {
  border: 1px solid var(--border-strong);
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
  border-color: rgba(34, 211, 238, 0.5);
  background: rgba(34, 211, 238, 0.08);
}

.btn-sm {
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
}

.btn-block {
  width: 100%;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--white);
}

.price {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #ffffff, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-banner {
  padding: 150px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.18), transparent 60%);
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.breadcrumb span {
  color: var(--secondary);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(5, 8, 22, 0.8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--border);
  box-shadow: 0 12px 35px rgba(2, 6, 23, 0.35);
}

.navbar-inner {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
  min-height: 66px;
  padding: 12px 18px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 10px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--gradient);
  box-shadow: 0 0 24px rgba(99, 102, 241, 0.32);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--text-soft);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-link {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--secondary);
  color: var(--bg);
  font-size: 0.78rem;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--white);
}

.hero {
  min-height: calc(100vh - 20px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 70px 0 50px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.8;
}

.hero::before {
  width: 380px;
  height: 380px;
  background: rgba(99, 102, 241, 0.35);
  top: -80px;
  left: -90px;
}

.hero::after {
  width: 340px;
  height: 340px;
  background: rgba(34, 211, 238, 0.2);
  bottom: -110px;
  right: -60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-family: var(--heading-font);
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.hero-copy p {
  max-width: 620px;
  margin: 0 0 28px;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  position: relative;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.stat-box {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.stat-box h3 {
  margin: 0 0 6px;
  font-family: var(--heading-font);
  font-size: 2rem;
  color: var(--white);
}

.category-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.category-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 16px;
}

.category-card i {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: rgba(99, 102, 241, 0.18);
  color: var(--secondary);
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.09);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.product-media {
  position: relative;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.product-body {
  padding: 20px;
}

.product-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.product-card h3 {
  margin: 0 0 10px;
  font-family: var(--heading-font);
  font-size: 1.55rem;
  line-height: 1;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 18px 0;
}

.product-actions {
  display: flex;
  gap: 12px;
}

.features-grid,
.info-grid,
.values-grid,
.trust-grid,
.stats-bar {
  display: grid;
  gap: 24px;
}

.features-grid,
.values-grid,
.trust-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.info-card,
.value-card,
.trust-card,
.contact-card,
.summary-panel,
.checkout-form,
.auth-card,
.story-card,
.tab-panel,
.filter-bar,
.deal-banner {
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.info-card,
.value-card,
.trust-card,
.contact-card {
  padding: 26px;
}

.feature-icon,
.value-icon,
.trust-icon,
.contact-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--gradient-soft);
  border: 1px solid var(--border);
  color: var(--secondary);
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.feature-card h3,
.value-card h3,
.trust-card h3,
.contact-card h3 {
  margin: 0 0 8px;
  font-family: var(--heading-font);
  font-size: 1.6rem;
}

.deal-banner {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(99, 102, 241, 0.16), rgba(34, 211, 238, 0.08)),
    var(--bg-card-strong);
}

.deal-banner::after {
  content: "";
  position: absolute;
  inset: auto -50px -50px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.18), transparent 60%);
  filter: blur(10px);
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.countdown-item {
  min-width: 94px;
  padding: 16px;
  text-align: center;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.countdown-item strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 2rem;
  line-height: 1;
  color: var(--white);
}

.filter-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-tab {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
}

.filter-tab.active {
  color: var(--white);
  background: rgba(99, 102, 241, 0.18);
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.16);
}

.filter-bar {
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.search-box,
.select-box,
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  outline: none;
  transition: var(--transition);
}

.search-box:focus,
.select-box:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.08);
}

.empty-state {
  padding: 50px 24px;
  text-align: center;
  border-radius: 24px;
  border: 1px dashed rgba(148, 163, 184, 0.28);
  color: var(--text-soft);
  display: none;
}

.empty-state.show {
  display: block;
}

.product-detail {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
}

.product-gallery,
.product-info {
  padding: 24px;
  border-radius: 26px;
}

.product-gallery img.main-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 22px;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.thumb-row img {
  height: 110px;
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid transparent;
}

.thumb-row img.active {
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.12);
}

.product-info h1 {
  margin: 12px 0 8px;
  font-family: var(--heading-font);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
}

.inline-badges,
.product-detail-actions,
.qty-control {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.qty-control {
  margin: 18px 0;
}

.qty-box {
  display: inline-flex;
  align-items: center;
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.qty-box button {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.qty-box input {
  width: 60px;
  height: 46px;
  border: none;
  text-align: center;
  background: transparent;
  color: var(--white);
}

.tabs-wrap {
  margin-top: 34px;
}

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--text-soft);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.tab-btn.active {
  color: var(--white);
  background: rgba(99, 102, 241, 0.18);
  border-color: rgba(99, 102, 241, 0.45);
}

.tab-panel {
  padding: 24px;
  display: none;
}

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

.cart-layout,
.checkout-layout,
.story-grid,
.contact-layout {
  display: grid;
  gap: 28px;
}

.cart-layout {
  grid-template-columns: 1.4fr 0.8fr;
}

.checkout-layout {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.story-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.contact-layout {
  grid-template-columns: 0.9fr 1.1fr;
}

.cart-list,
.summary-panel,
.checkout-form,
.auth-card,
.story-card {
  padding: 26px;
}

.cart-row {
  display: grid;
  grid-template-columns: 100px 1.3fr 0.8fr 0.8fr 1fr 46px;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
}

.cart-row + .cart-row {
  margin-top: 16px;
}

.cart-row img {
  width: 100px;
  height: 78px;
  object-fit: cover;
  border-radius: 14px;
}

.cart-title h3 {
  margin: 0 0 6px;
  font-family: var(--heading-font);
  font-size: 1.4rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  color: var(--text-soft);
}

.summary-line.total {
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--white);
  font-weight: 700;
}

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

.payment-card {
  position: relative;
}

.payment-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.payment-card label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
  transition: var(--transition);
}

.payment-card input:checked + label {
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.08);
  background: rgba(34, 211, 238, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.96rem;
  color: var(--text-soft);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.auth-page {
  min-height: calc(100vh - var(--nav-h) - 170px);
  display: grid;
  place-items: center;
  padding: 60px 0;
}

.auth-card {
  width: min(100%, 520px);
}

.auth-card h1 {
  margin: 0 0 8px;
  font-family: var(--heading-font);
  font-size: 3rem;
}

.auth-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin: 16px 0 0;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
}

.stats-bar {
  grid-template-columns: repeat(4, 1fr);
}

.stats-item {
  padding: 24px;
  text-align: center;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.stats-item h3 {
  margin: 0 0 6px;
  font-family: var(--heading-font);
  font-size: 2.4rem;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.footer {
  margin-top: 60px;
  padding: 70px 0 30px;
  border-top: 1px solid var(--border);
  background: rgba(4, 9, 20, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 0.9fr;
  gap: 24px;
}

.footer h4 {
  margin: 0 0 14px;
  font-family: var(--heading-font);
  font-size: 1.45rem;
}

.footer-links li + li {
  margin-top: 10px;
}

.payment-badges,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.payment-badge {
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--white);
  font-weight: 700;
}

.social-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

.image-placeholder {
  border-radius: 24px;
  overflow: hidden;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 998;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.toast-wrap {
  position: fixed;
  top: 95px;
  right: 16px;
  z-index: 1200;
  display: grid;
  gap: 12px;
}

.toast {
  min-width: 280px;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: slideInRight 0.3s ease forwards;
}

.toast.success {
  background: rgba(34, 197, 94, 0.18);
}

.toast.error {
  background: rgba(239, 68, 68, 0.18);
}

.toast.info {
  background: rgba(99, 102, 241, 0.18);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1500;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  width: min(100%, 460px);
  padding: 30px;
  border-radius: 26px;
  text-align: center;
  border: 1px solid var(--border);
  background: var(--bg-card-strong);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.modal-icon {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  font-size: 2rem;
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
}

.table-wrap {
  overflow-x: auto;
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
}

.orders-table th,
.orders-table td {
  padding: 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.dashboard-stat {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.dashboard-stat h3 {
  margin: 8px 0 4px;
  font-family: var(--heading-font);
  font-size: 2rem;
}

.link-inline {
  color: var(--secondary);
}