:root {
  --bg: #fff8f5;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --surface-soft: #fff1ea;
  --surface-accent: #fef6fa;
  --text: #25181c;
  --muted: #6d5c63;
  --border: rgba(37, 24, 28, 0.08);
  --brand: #c72f67;
  --brand-deep: #9f2551;
  --accent: #ff8a3d;
  --teal: #1f9a8a;
  --shadow: 0 24px 55px rgba(84, 24, 43, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #fff9f7 0%, #fff4ef 42%, #fff7f2 100%);
  font-family: Inter, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  position: relative;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.ambient-one {
  width: 320px;
  height: 320px;
  top: -60px;
  right: -60px;
  background: rgba(255, 138, 61, 0.35);
}

.ambient-two {
  width: 260px;
  height: 260px;
  left: -90px;
  top: 220px;
  background: rgba(199, 47, 103, 0.2);
}

.top-strip {
  position: relative;
  z-index: 2;
  padding: 0.85rem 0;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(90deg, #381320, #592339);
}

.app-navbar {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid rgba(37, 24, 28, 0.06);
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.72);
}

.brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand-wrap small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.brand-badge {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 18px 28px rgba(199, 47, 103, 0.22);
}

.nav-pill,
.profile-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 24, 28, 0.08);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-pill:hover,
.profile-trigger:hover {
  transform: translateY(-1px);
  color: var(--text);
  box-shadow: 0 10px 20px rgba(84, 24, 43, 0.08);
}

.btn-brand {
  color: #fff;
  border: none;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 18px 28px rgba(199, 47, 103, 0.18);
}

.btn-brand:hover,
.btn-brand:focus {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-deep), #dd6d2b);
}

.profile-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.profile-fallback {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  font-weight: 700;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.flash-stack,
.page-shell,
.site-footer {
  position: relative;
  z-index: 1;
}

.page-shell {
  min-height: calc(100vh - 220px);
}

.hero-shell,
.feature-strip,
.catalogue-wrap,
.review-strip,
.surface-panel,
.summary-panel,
.auth-showcase,
.auth-panel,
.verify-panel,
.success-panel,
.order-card,
.empty-state,
.page-hero {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-shell,
.auth-showcase,
.auth-panel,
.verify-panel,
.success-panel,
.page-hero {
  padding: 2rem;
}

.hero-shell {
  overflow: hidden;
  position: relative;
}

.hero-shell::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 138, 61, 0.25), transparent 70%);
}

.section-tag,
.tiny-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--brand);
}

.section-tag {
  font-size: 0.8rem;
  margin-bottom: 0.85rem;
}

.tiny-label {
  font-size: 0.72rem;
  margin-bottom: 0.4rem;
}

.hero-title {
  font-size: clamp(2.35rem, 3vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero-copy {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.metric-card {
  min-width: 145px;
  padding: 1rem 1.15rem;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--surface-strong);
}

.metric-card strong {
  display: block;
  font-size: 1.2rem;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual-card {
  position: relative;
}

.hero-image {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 28px;
}

.glass-note {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
}

.feature-strip,
.catalogue-wrap,
.review-strip,
.surface-panel,
.summary-panel,
.order-card,
.page-hero.compact {
  padding: 1.6rem;
}

.highlight-card,
.footer-card,
.testimonial-card,
.mini-testimonial {
  height: 100%;
  padding: 1.4rem;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--surface-strong);
}

.highlight-card i,
.showcase-points i,
.trust-stack i,
.timeline-strip i {
  color: var(--brand);
}

.highlight-card i {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: inline-flex;
}

.catalogue-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.catalogue-tools {
  display: grid;
  gap: 0.75rem;
}

.search-pill {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  min-width: min(100%, 360px);
}

.search-pill input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.filter-chip {
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--text);
  font-weight: 600;
}

.filter-chip.active {
  background: var(--brand-soft, rgba(199, 47, 103, 0.12));
  border-color: rgba(199, 47, 103, 0.24);
  color: var(--brand);
}

.product-card {
  overflow: hidden;
  border-radius: 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 48px rgba(84, 24, 43, 0.14);
}

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

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(199, 47, 103, 0.1);
  color: var(--brand);
  font-weight: 800;
  white-space: nowrap;
}

.product-points,
.trust-stack,
.showcase-points,
.timeline-strip {
  display: grid;
  gap: 0.8rem;
}

.product-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  font-size: 0.92rem;
  color: var(--muted);
}

.product-points span,
.showcase-points div,
.trust-stack div,
.timeline-strip div {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.testimonial-card h3 {
  margin-bottom: 1rem;
}

.mini-testimonial p {
  margin-bottom: 1rem;
  color: var(--muted);
}

.form-control {
  min-height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(37, 24, 28, 0.1);
  padding-right: 3rem;
}

.form-control:focus {
  border-color: rgba(199, 47, 103, 0.45);
  box-shadow: 0 0 0 0.25rem rgba(199, 47, 103, 0.12);
}

.password-wrap {
  position: relative;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 0.95rem;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--muted);
}

.auth-showcase {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(255, 241, 234, 0.95)),
    radial-gradient(circle at top right, rgba(255, 138, 61, 0.18), transparent 45%);
}

.auth-panel,
.verify-panel,
.success-panel,
.wide-panel {
  background: rgba(255, 255, 255, 0.9);
}

.divider {
  position: relative;
  text-align: center;
}

.divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid var(--border);
}

.divider span {
  position: relative;
  display: inline-block;
  padding: 0 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
}

.verify-icon,
.success-icon,
.empty-icon {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: rgba(199, 47, 103, 0.12);
  color: var(--brand);
  font-size: 2rem;
}

.timer-grid,
.success-grid,
.order-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem;
  border-radius: 22px;
  background: var(--surface-soft);
}

.timer-grid small,
.success-grid small,
.order-meta-grid small {
  display: block;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.otp-field {
  letter-spacing: 0.2em;
  font-size: 1.15rem;
}

.cart-row {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
}

.cart-row:first-child {
  padding-top: 0;
}

.cart-row:last-child {
  padding-bottom: 0;
}

.cart-thumb {
  width: 116px;
  height: 116px;
  object-fit: cover;
  border-radius: 24px;
}

.qty-pill {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: var(--surface-soft);
}

.qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--surface-strong);
  font-size: 1.2rem;
  box-shadow: 0 8px 16px rgba(84, 24, 43, 0.08);
}

.qty {
  min-width: 26px;
  text-align: center;
  font-weight: 700;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}

.summary-line.total {
  font-size: 1.12rem;
  font-weight: 700;
}

.sticky-card {
  position: sticky;
  top: 105px;
}

.checkout-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 22px;
  background: var(--surface-soft);
}

.checkout-item-main {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.checkout-item-main img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 18px;
}

.order-card {
  padding: 1.5rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
}

.status-badge.success {
  background: rgba(31, 154, 138, 0.12);
  color: var(--teal);
}

.status-badge.neutral {
  background: rgba(37, 24, 28, 0.08);
  color: #495057;
}

.timeline-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 1rem;
  border-radius: 22px;
  background: var(--surface-soft);
}

.empty-state {
  border-style: dashed;
}

.site-footer {
  border-top: 1px solid rgba(37, 24, 28, 0.06);
  background: rgba(255, 255, 255, 0.54);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.alert {
  border: none;
  border-radius: 18px;
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hidden-product {
  display: none;
}

@media (max-width: 991.98px) {
  .hero-shell,
  .auth-showcase,
  .auth-panel,
  .verify-panel,
  .success-panel,
  .page-hero,
  .surface-panel,
  .summary-panel {
    padding: 1.5rem;
  }

  .sticky-card {
    position: static;
  }

  .catalogue-header {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 767.98px) {
  .hero-title,
  .page-hero h1,
  .success-panel h1,
  .auth-showcase h1,
  .auth-panel h2,
  .verify-panel h2 {
    font-size: 2rem;
  }

  .hero-image {
    min-height: 280px;
  }

  .cart-row {
    grid-template-columns: 1fr;
  }

  .cart-thumb {
    width: 100%;
    height: 220px;
  }

  .product-points,
  .timer-grid,
  .success-grid,
  .order-meta-grid,
  .timeline-strip {
    grid-template-columns: 1fr;
  }

  .checkout-item,
  .checkout-item-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .checkout-item strong {
    align-self: flex-end;
  }
}

/* --- Added storefront + admin layers --- */
.page-shell {
  min-height: 65vh;
}

.nav-pill {
  position: relative;
}

.nav-pill-admin {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.14), rgba(59, 130, 246, 0.12));
}

.profile-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 0;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.profile-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  object-fit: cover;
}

.profile-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.cart-badge {
  position: absolute;
  top: -0.45rem;
  right: -0.45rem;
  min-width: 1.3rem;
  height: 1.3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14);
}

.flash-stack {
  max-width: 860px;
}

.page-hero.compact {
  padding: 1.75rem 2rem;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.empty-state,
.auth-panel,
.auth-showcase,
.checkout-summary-card,
.cart-table-card,
.order-card,
.address-card,
.admin-panel,
.admin-sidebar {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.auth-panel,
.auth-showcase,
.checkout-summary-card,
.cart-table-card,
.order-card,
.admin-panel,
.admin-sidebar {
  padding: 1.75rem;
}

.auth-showcase {
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(248, 245, 255, 0.85));
}

.showcase-points {
  display: grid;
  gap: 0.95rem;
}

.showcase-points > div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 18px;
}

.showcase-points i,
.empty-icon,
.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.empty-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  font-size: 1.7rem;
  color: var(--brand);
  background: rgba(199, 47, 103, 0.12);
}

.divider {
  position: relative;
  text-align: center;
}

.divider::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1px;
  background: rgba(15, 23, 42, 0.08);
}

.divider span {
  position: relative;
  background: #fff;
  padding: 0 0.8rem;
  color: var(--muted);
}

.password-wrap {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--muted);
  z-index: 4;
}

.address-card {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.address-card-default,
.address-choice.active {
  border: 1px solid rgba(199, 47, 103, 0.18);
  box-shadow: 0 18px 44px rgba(199, 47, 103, 0.12);
}

.address-choice {
  display: flex;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  cursor: pointer;
}

.address-radio {
  margin-top: 0.35rem;
}

.cart-thumb,
.admin-thumb {
  width: 3.75rem;
  height: 3.75rem;
  object-fit: cover;
  border-radius: 16px;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(248, 250, 252, 0.92);
  border-radius: 999px;
  padding: 0.35rem 0.55rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.summary-row.total {
  font-size: 1.15rem;
}

.review-card,
.admin-reply-box {
  border-radius: 20px;
}

.review-card {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.admin-reply-box {
  padding: 0.95rem 1rem;
  background: rgba(16, 185, 129, 0.08);
}

.order-card {
  height: 100%;
}

.order-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.order-meta-grid > div {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.94);
}

.order-meta-grid small {
  display: block;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-weight: 700;
}

.status-badge.success {
  background: rgba(16, 185, 129, 0.12);
  color: #0f766e;
}

.status-badge.neutral {
  background: rgba(148, 163, 184, 0.14);
  color: #475569;
}

.site-footer {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.85);
}

.footer-card,
.footer-release {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.release-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(199, 47, 103, 0.08);
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

.support-fab-wrap {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1090;
}

.support-fab {
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 999px;
  border: 0;
  color: #fff;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 22px 36px rgba(15, 23, 42, 0.18);
}

.support-panel {
  position: absolute;
  right: 0;
  bottom: 4.6rem;
  width: min(370px, calc(100vw - 2rem));
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: 0.22s ease;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
}

.support-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.support-panel-header {
  padding: 1rem 1rem 0.85rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.support-panel-body {
  max-height: 320px;
  min-height: 220px;
  overflow-y: auto;
  padding: 1rem;
  background: rgba(248, 250, 252, 0.9);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.support-panel-footer {
  padding: 0.95rem 1rem 1rem;
}

.support-bubble {
  max-width: 88%;
  padding: 0.8rem 1rem;
  border-radius: 18px;
  line-height: 1.45;
}

.support-bubble.assistant {
  align-self: flex-start;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.support-bubble.user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
}

.quick-chip-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.support-chip {
  border: 0;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(199, 47, 103, 0.08);
  color: var(--brand);
  font-weight: 700;
  font-size: 0.84rem;
}

.admin-shell .section-tag {
  margin-bottom: 0.4rem;
}

.admin-sidebar {
  padding: 1.35rem;
}

.admin-nav-list {
  display: grid;
  gap: 0.55rem;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  color: #334155;
  text-decoration: none;
  font-weight: 600;
}

.admin-nav-link.active,
.admin-nav-link:hover {
  background: rgba(199, 47, 103, 0.08);
  color: var(--brand);
}

.admin-panel .panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-stat-card {
  padding: 1.2rem 1.25rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 16px 32px rgba(15,23,42,0.08);
}

.admin-stat-card span,
.admin-stat-card small {
  display: block;
}

.admin-stat-card span,
.admin-stat-card small,
.content-page-body {
  color: var(--muted);
}

.admin-stat-card strong {
  display: block;
  font-size: 1.7rem;
  margin: 0.4rem 0 0.2rem;
}

.admin-accordion-item {
  border: 0;
  background: transparent;
}

.admin-accordion-item .accordion-button,
.admin-accordion-item .accordion-body {
  background: rgba(255,255,255,0.92);
}

.content-page-body {
  line-height: 1.8;
}

@media (max-width: 991.98px) {
  .order-meta-grid {
    grid-template-columns: 1fr;
  }

  .support-panel {
    width: min(380px, calc(100vw - 1rem));
  }
}

/* Premium storefront and security refresh */
.ambient-three {
  width: 300px;
  height: 300px;
  right: 12%;
  bottom: 6%;
  background: rgba(31, 154, 138, 0.14);
}

.text-brand {
  color: var(--brand);
}

.hero-wow {
  background:
    radial-gradient(circle at top right, rgba(255, 209, 102, 0.22), transparent 34%),
    radial-gradient(circle at bottom left, rgba(31, 154, 138, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,247,242,0.92));
}

.hero-showcase-card,
.checkout-summary-card,
.cart-table-card,
.premium-detail-media,
.pack-selector-panel,
.verify-panel-modern,
.admin-mfa-panel,
.pack-pricing-admin-card,
.review-card,
.admin-reply-box,
.address-choice,
.metric-tile,
.highlight-card {
  border: 1px solid rgba(37, 24, 28, 0.08);
  border-radius: 26px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 20px 45px rgba(84, 24, 43, 0.09);
}

.hero-showcase-card,
.checkout-summary-card,
.cart-table-card,
.pack-selector-panel,
.verify-panel-modern,
.admin-mfa-panel,
.pack-pricing-admin-card {
  padding: 1.5rem;
}

.hero-feature-media {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 280px;
  background: linear-gradient(135deg, rgba(199,47,103,0.08), rgba(255,138,61,0.14));
}

.hero-feature-media img,
.product-media img,
.product-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-feature-media img {
  height: 320px;
  border-radius: 22px;
}

.hero-feature-badge,
.product-pack-ribbon,
.pack-range-chip,
.pack-inline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  background: rgba(37, 24, 28, 0.78);
  color: #fff;
  backdrop-filter: blur(10px);
}

.hero-feature-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
}

.hero-feature-points span,
.product-points span,
.order-meta-grid > div {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(199, 47, 103, 0.08);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-feature-points i,
.product-points i {
  color: var(--brand);
}

.metric-tile {
  padding: 1.15rem 1.2rem;
  text-align: center;
}

.metric-tile strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.metric-tile span {
  color: var(--muted);
  font-weight: 600;
}

.highlight-card {
  height: 100%;
  padding: 1.35rem;
}

.highlight-card i {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 0.9rem;
  color: #fff;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.catalogue-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.catalogue-tools {
  display: grid;
  gap: 0.9rem;
  min-width: min(100%, 420px);
}

.search-pill {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(37,24,28,0.08);
  box-shadow: 0 12px 28px rgba(84,24,43,0.06);
}

.search-pill input {
  border: 0;
  outline: none;
  width: 100%;
  background: transparent;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.filter-chip {
  border: 1px solid rgba(37, 24, 28, 0.08);
  background: rgba(255,255,255,0.88);
  color: var(--text);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-weight: 600;
  transition: 0.2s ease;
}

.filter-chip.active,
.filter-chip:hover {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 16px 30px rgba(199,47,103,0.18);
}

.hidden-product {
  display: none !important;
}

.premium-product-card {
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 22px 42px rgba(84,24,43,0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.premium-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 52px rgba(84,24,43,0.14);
}

.product-media {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,249,247,0.9), rgba(255,241,234,0.9));
}

.product-media img {
  height: 250px;
  transition: transform 0.35s ease;
}

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

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
}

.product-pack-ribbon {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: linear-gradient(135deg, rgba(37,24,28,0.84), rgba(89,35,57,0.92));
}

.price-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 16px 30px rgba(199, 47, 103, 0.22);
}

.pack-selector-card {
  border: 1px dashed rgba(199, 47, 103, 0.26);
  border-radius: 22px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,246,240,0.9));
}

.pack-selector-card .form-select,
.pack-pricing-admin-card .form-control,
.pack-selector-panel .form-control,
.pack-selector-panel .form-select {
  border-radius: 16px;
  border-color: rgba(37,24,28,0.12);
  min-height: 52px;
}

.premium-detail-media {
  position: sticky;
  top: 110px;
}

.premium-detail-media img {
  height: 460px;
  object-fit: cover;
}

.pack-range-chip {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  background: linear-gradient(135deg, rgba(199,47,103,0.92), rgba(255,138,61,0.92));
}

.pack-selector-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,245,240,0.95));
}

.pack-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.pack-option-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 140px;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(37,24,28,0.1);
  background: rgba(255,255,255,0.86);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pack-option-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(199,47,103,0.28);
  box-shadow: 0 16px 32px rgba(199,47,103,0.1);
}

.pack-option-tile.active {
  border-color: rgba(199,47,103,0.4);
  background: linear-gradient(180deg, rgba(255,246,242,0.98), rgba(255,255,255,0.96));
  box-shadow: 0 22px 38px rgba(199,47,103,0.14);
}

.pack-option-radio {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.pack-title {
  font-size: 1.02rem;
  font-weight: 800;
}

.pack-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand);
}

.pack-inline-badge {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(37,24,28,0.08);
}

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

.cart-table-premium thead th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  border-bottom-width: 1px;
}

.cart-thumb,
.admin-thumb {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(84,24,43,0.12);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.summary-row.total {
  font-size: 1.15rem;
  font-weight: 800;
}

.address-choice {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 1rem 1rem 0.95rem;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.address-choice:hover,
.address-choice.active {
  transform: translateY(-1px);
  border-color: rgba(199,47,103,0.3);
  box-shadow: 0 18px 34px rgba(199,47,103,0.1);
}

.address-radio {
  margin-top: 0.35rem;
  accent-color: var(--brand);
}

.review-card {
  padding: 1.15rem 1.15rem 1rem;
}

.admin-reply-box {
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, rgba(255,249,247,0.98), rgba(255,243,238,0.94));
}

.verify-panel-modern,
.admin-mfa-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,245,240,0.95));
}

.password-wrap {
  position: relative;
}

.password-wrap .password-toggle {
  position: absolute;
  top: 50%;
  right: 0.85rem;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--muted);
  z-index: 4;
}

.support-fab {
  width: auto;
  min-width: 3.7rem;
  padding: 0 1rem;
  gap: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.support-panel-head,
.support-panel-header {
  padding: 1rem 1rem 0.85rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-pill,
.nav-pill-admin {
  background: rgba(255,255,255,0.96);
}

.pack-pricing-admin-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,247,242,0.96));
}

.pack-pricing-admin-card h6 {
  font-weight: 800;
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

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

@media (max-width: 991.98px) {
  .catalogue-header {
    flex-direction: column;
    align-items: stretch;
  }

  .catalogue-tools {
    min-width: 100%;
  }

  .premium-detail-media {
    position: relative;
    top: 0;
  }

  .premium-detail-media img,
  .hero-feature-media img {
    height: 320px;
  }
}

@media (max-width: 767.98px) {
  .hero-shell,
  .auth-showcase,
  .auth-panel,
  .verify-panel,
  .success-panel,
  .page-hero,
  .hero-showcase-card,
  .checkout-summary-card,
  .cart-table-card,
  .pack-selector-panel,
  .verify-panel-modern,
  .admin-mfa-panel {
    padding: 1.25rem;
  }

  .pack-option-grid {
    grid-template-columns: 1fr;
  }

  .product-media,
  .product-media img {
    min-height: 220px;
    height: 220px;
  }

  .support-fab span {
    display: none;
  }
}
