:root {
  --charcoal: #1f2937;
  --yellow: #FACC15;
  --offwhite: #FAFAF9;
  --lightgray: #E5E7EB;
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --card: #ffffff;
  --radius-btn: 12px;
  --radius-xl: 1.15rem;
  --radius-lg: .9rem;
  --radius-md: .8rem;
  --shadow: 0 8px 24px rgba(0, 0, 0, .05);
  --container-max: 1100px;
  --header-offset: 3.5rem;
  --shadow-xs: 0 4px 12px rgba(0, 0, 0, .04);
  --shadow-sm: 0 8px 20px rgba(0, 0, 0, .05);
  --shadow-md: 0 12px 28px rgba(0, 0, 0, .08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, .12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, .15);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--offwhite);
  color: var(--charcoal);
  padding-top: calc(var(--header-offset) + env(safe-area-inset-top));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-title {
  font-family: var(--font-sans);
  font-weight: 700;
}

@media (max-width: 767px) {
  :root {
    --header-offset: 3.25rem;
  }
}

.container-narrow {
  max-width: var(--container-max);
}

.text-muted {
  color: rgba(17, 24, 39, .94) !important;
}

.eyebrow {
  letter-spacing: .08em;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .78rem;
}

.heart-accent,
.eyebrow-heart {
  color: rgb(13, 110, 253);
  margin: 0 .35rem;
}

::placeholder {
  color: rgba(17, 24, 39, .78);
}

body.theme-dark ::placeholder {
  color: rgba(241, 245, 249, .82);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  transform: translateY(0);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(1.25) blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 1px 0 rgba(15, 23, 42, .04);
  transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease, transform .18s ease;
}

.site-header.is-hidden {
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid rgba(15, 23, 42, .12);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}

.site-header .navbar {
  padding: .15rem 0;
}

/* Navbar Button Override - Outline Style */
.site-header .navbar .btn-primary {
  background-color: transparent !important;
  border: 2px solid #facc15 !important;
  color: #1f2937 !important;
  box-shadow: none !important;
  padding: 0.5rem 1.25rem;
  line-height: 1.4;
}

.site-header .navbar .btn-primary:hover {
  background-color: #facc15 !important;
  color: #1f2937 !important;
  transform: translateY(-1px);
}

body.theme-dark .site-header .navbar .btn-primary {
  border-color: rgba(250, 204, 21, 0.6) !important;
  color: #f3f4f6 !important;
}

body.theme-dark .site-header .navbar .btn-primary:hover {
  background-color: rgba(250, 204, 21, 0.2) !important;
  border-color: #facc15 !important;
  color: #ffffff !important;
}

@media (max-width: 991px) {
  .site-header .navbar .btn-primary {
    width: 100%;
    margin-top: 1rem;
    text-align: center;
  }
}

.site-header .container,
.site-header .container-narrow {
  min-height: 64px;
  gap: .75rem;
}

.brand {
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--charcoal) !important;
  text-decoration: none;
  font-size: 1.1rem;
}

.brand .dot {
  color: var(--yellow);
}

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
  color: var(--charcoal) !important;
}

.brand-with-tag {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  line-height: 1.05;
  padding-top: 0;
  padding-bottom: 0;
}

.brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  flex-shrink: 0;
}

.nav-purpose-pill {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  padding: .22rem .55rem;
  border-radius: .7rem;
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: -0.01em;
  background: rgba(15, 23, 42, .04);
  color: rgba(15, 23, 42, .84);
  border: 1px solid rgba(15, 23, 42, .12);
  white-space: nowrap;
}

.nav-purpose-pill::before {
  content: "♥";
  font-size: .8rem;
  color: rgb(13, 110, 253);
}

@media (max-width: 576px) {
  .brand-wrap {
    gap: .35rem;
  }

  .nav-purpose-pill {
    font-size: .68rem;
    padding: .18rem .45rem;
  }

  .nav-purpose-pill::before {
    font-size: .78rem;
  }
}

@media (max-width: 480px) {
  .nav-purpose-pill {
    display: none;
  }
}

body.theme-dark .nav-purpose-pill {
  background: rgba(148, 163, 184, .14);
  color: rgba(226, 232, 240, .92);
  border-color: rgba(148, 163, 184, .28);
}

.nav-link {
  color: rgba(15, 23, 42, .92) !important;
  font-weight: 600;
  border-radius: .7rem;
  padding: .45rem .78rem !important;
  font-size: .94rem;
  letter-spacing: .01em;
  position: relative;
  transition: color .2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  left: 0.78rem;
  right: 0.78rem;
  height: 2px;
  background: var(--yellow);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity .25s ease, transform .25s ease;
  border-radius: 1px;
}

.nav-link:hover::after {
  opacity: 0.5;
  transform: scaleX(1);
}

.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cart-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem .65rem;
  border-radius: .7rem;
  border: 1px solid rgba(15, 23, 42, .12);
  background: rgba(255, 255, 255, .8);
}

.nav-cart-link:hover {
  background: rgba(15, 23, 42, .06);
  border-color: rgba(15, 23, 42, .2);
}

.nav-cart-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-cart-icon svg {
  width: 18px;
  height: 18px;
}

body.theme-dark .nav-cart-link {
  background: rgba(15, 23, 42, .7);
  border-color: rgba(148, 163, 184, .3);
}

body.theme-dark .nav-cart-link:hover {
  background: rgba(148, 163, 184, .18);
  border-color: rgba(148, 163, 184, .45);
}

.navbar-toggler {
  border: 1px solid rgba(15, 23, 42, .12) !important;
  border-radius: .7rem !important;
  padding: .45rem .7rem;
  background: rgba(255, 255, 255, .9);
  box-shadow: none;
  transition: box-shadow .18s ease, transform .18s ease;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 .15rem rgba(13, 110, 253, .25);
}

.navbar-toggler:hover {
  transform: translateY(-1px);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(55,65,81,0.92)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar .btn.btn-primary:hover {}

.navbar-nav .nav-link,
.dropdown-menu {
  transition: color .14s ease, background-color .14s ease, transform .18s ease, opacity .18s ease;
}

.dropdown-menu {
  transform: translateY(4px);
  opacity: 0;
  border-radius: 1rem;
  box-shadow: 0 16px 32px rgba(0, 0, 0, .12);
}

.dropdown-menu.show {
  transform: translateY(0);
  opacity: 1;
}

.dropdown-item {
  font-weight: 600;
  border-radius: .65rem;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background: rgba(229, 231, 235, .55);
}

@media (prefers-reduced-motion: reduce) {

  .navbar-nav .nav-link,
  .dropdown-menu {
    transition: none;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: .75rem;
    padding-bottom: 1rem;
    border-radius: 1rem;
    border: 0;
    background: rgba(250, 250, 249, .96);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
    padding: .5rem;
    transition: height .24s ease, box-shadow .24s ease;
    opacity: 1;
    transform: none;
    overflow: hidden;
    will-change: height;
  }

  .nav-mobile {
    max-height: 60vh;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(55, 65, 81, .35) transparent;
  }

  .nav-mobile::-webkit-scrollbar {
    width: 6px;
  }

  .nav-mobile::-webkit-scrollbar-track {
    background: transparent;
  }

  .nav-mobile::-webkit-scrollbar-thumb {
    background: rgba(55, 65, 81, .35);
    border-radius: 999px;
  }

  .navbar-collapse.show,
  .navbar-collapse.is-opening {
    opacity: 1;
    transform: none;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
  }

  .navbar-collapse.collapsing {
    opacity: 1;
    transform: none;
  }

  .navbar-collapse.is-closing {
    opacity: 1;
    transform: none;
  }

  .navbar-nav .nav-link {
    padding: .65rem .95rem !important;
  }

  .navbar-collapse .theme-toggle.list-group-item {
    border: 0;
    border-bottom: 1px solid rgba(229, 231, 235, .35);
    font-weight: 700;
    color: rgba(31, 41, 55, .96);
    border-radius: .85rem;
  }

  .navbar-collapse .theme-toggle.list-group-item:hover,
  .navbar-collapse .theme-toggle.list-group-item:focus {
    background: rgba(229, 231, 235, .45);
  }
}

.navbar-nav {
  gap: .6rem;
}

.cookie-banner {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 1200;
  background: var(--card);
  border: 1px solid rgba(229, 231, 235, .75);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
  border-radius: 12px;
  padding: .85rem 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  margin: 0;
  color: rgba(31, 41, 55, .92);
}

.cookie-banner__actions {
  display: flex;
  gap: .5rem;
  flex-shrink: 0;
}

.cookie-banner .btn-sm {
  padding: .45rem .75rem;
}

body.theme-dark .cookie-banner {
  background: rgba(17, 24, 39, .92);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .4);
}

body.theme-dark .cookie-banner__text {
  color: rgba(229, 231, 235, .92);
}

.navbar .btn {
  box-shadow: none;
  padding: .55rem .9rem;
  font-size: .95rem;
}

.btn {
  border-radius: var(--radius-btn);
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: .75rem 1.05rem;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
}

.btn-primary {
  background: var(--yellow) !important;
  border-color: var(--yellow) !important;
  color: var(--charcoal) !important;
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(229, 231, 235, .95);
  color: var(--charcoal);
}

.btn-outline:hover {
  background: rgba(229, 231, 235, .55);
}

.btn-sm {
  padding: .5rem .9rem;
  font-weight: 800;
}

@media (hover: none) and (pointer: coarse) {

  .nav-link,
  .navbar .btn,
  .btn,
  .footer-links a,
  .brand,
  .navbar-toggler,
  .form-check-label,
  .dropdown-item,
  .list-group-item,
  .theme-toggle,
  .product-link,
  details summary,
  [role="button"] {
    min-height: 44px;
  }

  .nav-link,
  .footer-links a,
  .brand,
  .dropdown-item,
  .list-group-item,
  .theme-toggle,
  .product-link,
  details summary {
    display: inline-flex;
    align-items: center;
  }

  .dropdown-item,
  .list-group-item {
    width: 100%;
  }

  .nav-link {
    padding: .6rem .9rem !important;
  }

  .navbar .btn,
  .btn {
    padding: .85rem 1.15rem;
  }

  .navbar-toggler {
    min-width: 44px;
    padding: .6rem .75rem;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
  }

  .footer-links a {
    padding: .35rem .4rem;
  }

  .form-check-label {
    display: inline-flex;
    align-items: center;
    padding: .35rem 0;
  }

  .product-link {
    padding: .35rem .45rem;
  }

  details summary {
    padding: .5rem .4rem;
  }

  .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.hero {
  padding: 1.675rem 0 2.1rem;
  position: relative;
  overflow: hidden;
}



.hero::before {
  content: "";
  position: absolute;
  inset: -35% -30%;
  background: radial-gradient(closest-side, rgba(15, 23, 42, .05), rgba(15, 23, 42, 0)), radial-gradient(closest-side, rgba(229, 231, 235, .35), rgba(229, 231, 235, 0));
  transform: translate3d(0, 0, 0);
  filter: blur(1px);
  animation: none;
  pointer-events: none;
}

@keyframes heroGlow {

  0%,
  100% {
    transform: translate3d(-2%, -1%, 0) scale(1)
  }

  50% {
    transform: translate3d(2%, 2%, 0) scale(1.02)
  }
}

.hero>.container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(1.85rem, 4vw, 3.75rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
  font-weight: 600;
}

.hero-title::after {
  content: ".";
  color: var(--yellow);
}

.hero p {
  font-size: 1.05rem;
  max-width: 44ch;
  margin: 0 0 1.6rem;
  color: rgba(31, 41, 55, .85);
}

body.theme-dark .hero p {
  color: rgba(226, 232, 240, .88);
}

.home-eyebrow {
  letter-spacing: 0.08em;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: rgba(107, 114, 128, .9);
  display: inline-block;
  position: relative;
  padding-left: 0.75rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
  .home-eyebrow {
    font-size: 0.62rem;
  }
}

.home-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 12px;
  background: rgba(250, 204, 21, .85);
  border-radius: 2px;
}

.text-center .home-eyebrow {
  padding-left: 0;
  padding-right: 0;
}

.text-center .home-eyebrow::before {
  display: none;
}

body.theme-dark .home-eyebrow {
  color: rgba(156, 163, 175, .95);
}

.page-home .hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--offwhite) 85%);
  padding: 1.875rem 0 2.5rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 28px rgba(15, 23, 42, 0.04);
}

body.page-home.theme-dark .hero {
  background: linear-gradient(180deg, rgba(15, 23, 42, .96) 0%, rgba(15, 23, 42, .98) 85%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.35);
}

.page-home .hero h1 {
  font-size: clamp(1.75rem, 3.1vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  max-width: 22ch;
}

.page-home .hero p {
  font-size: 1.02rem;
  line-height: 1.45;
  max-width: 52ch;
  margin-bottom: 1.4rem;
}

@media (max-width: 767px) {
  .page-home .hero p {
    font-size: 0.9rem;
  }
}

.page-home .hero .btn-primary {}

.page-home .hero .btn-outline {
  border-color: rgba(15, 23, 42, .14);
  background: transparent;
}

.hero-image {
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.form-control,
.form-select,
textarea.form-control {
  background: #fff;
  border: 1px solid rgba(229, 231, 235, .95);
  color: var(--charcoal);
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 .1rem rgba(13, 110, 253, .15);
}

.input-icon-group {
  position: relative;
}

.input-icon-group .form-control {
  padding-left: 2.75rem;
}

.input-icon-group .form-select {
  padding-left: 2.75rem;
}

.input-icon-group .form-control.form-control-sm,
.input-icon-group .form-select.form-select-sm {
  padding-left: 2.5rem;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.05rem;
  height: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(107, 114, 128, .75);
  pointer-events: none;
  z-index: 1;
}

.input-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

body.theme-dark .form-control,
body.theme-dark .form-select,
body.theme-dark textarea.form-control {
  background: rgba(17, 24, 39, .9);
  border-color: rgba(255, 255, 255, .12);
  color: #e5e7eb;
}

body.theme-dark .form-control:focus,
body.theme-dark .form-select:focus,
body.theme-dark textarea.form-control:focus {
  border-color: rgba(59, 130, 246, .6);
  box-shadow: 0 0 0 .1rem rgba(59, 130, 246, .35);
}

body.theme-dark .input-icon {
  color: rgba(156, 163, 175, .8);
}

body.theme-dark .form-text {
  color: rgba(229, 231, 235, .78);
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1.1rem;
  margin-top: 1.25rem;
  padding-left: 0;
  list-style: none;
  color: rgba(31, 41, 55, .9);
  font-weight: 600;
}

.hero-bullets li::before {
  content: "-";
  color: rgba(31, 41, 55, .65);
  margin-right: .5rem;
}

.section {
  padding: 3.25rem 0;
}

.swipe-reel {
  position: relative;
  overflow: hidden;
}

.swipe-reel::before {
  content: "";
  position: absolute;
  inset: -40% -10%;
  background: radial-gradient(60% 60% at 15% 15%, rgba(13, 110, 253, .08), rgba(255, 255, 255, 0)),
    radial-gradient(55% 55% at 85% 10%, rgba(250, 204, 21, .12), rgba(255, 255, 255, 0));
  opacity: .8;
  pointer-events: none;
}

.swipe-reel .container {
  position: relative;
  z-index: 1;
}

.swipe-hint {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
}

.swipe-hint::after {
  content: "";
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(13, 110, 253, .6), rgba(250, 204, 21, .45));
}

.swipe-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 1.1rem;
  overflow-x: auto;
  padding: .6rem .35rem 1rem;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 .85rem;
  scroll-behavior: smooth;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 23, 42, .2) transparent;
}

.swipe-track.is-dragging {
  user-select: none;
}

@media (hover: hover) and (pointer: fine) {
  .swipe-track {
    cursor: grab;
  }

  .swipe-track.is-dragging {
    cursor: grabbing;
  }
}

.swipe-track.is-auto {
  scroll-snap-type: x proximity;
  scroll-behavior: auto;
}

.swipe-track.is-focused .swipe-card {
  opacity: .78;
  transform: translateY(2px) scale(.985);
  filter: saturate(.96);
}

.swipe-track.is-focused .swipe-card.is-active {
  opacity: 1;
  transform: translateY(-6px) scale(1.02);
  filter: saturate(1.06);
}

.swipe-track::-webkit-scrollbar {
  height: 8px;
}

.swipe-track::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, .18);
  border-radius: 999px;
}

.swipe-track::-webkit-scrollbar-track {
  background: transparent;
}

.swipe-card {
  --swipe-accent: 13, 110, 253;
  --swipe-ink: 255, 255, 255;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: calc(var(--radius-lg) + .1rem);
  box-shadow: 0 18px 36px rgba(15, 23, 42, .1), 0 1px 0 rgba(255, 255, 255, .85) inset;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease, opacity .25s ease, filter .25s ease;
}

.swipe-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(var(--swipe-accent), .95), rgba(var(--swipe-accent), .3));
  opacity: .75;
  pointer-events: none;
}

.swipe-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(var(--swipe-accent), .12);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, .04);
  opacity: 0;
  transition: opacity .25s ease, box-shadow .25s ease, border-color .25s ease;
  pointer-events: none;
}

.swipe-card:hover,
.swipe-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, .14);
  border-color: rgba(var(--swipe-accent), .25);
}

.swipe-card.is-active {
  border-color: rgba(var(--swipe-accent), .35);
  box-shadow: 0 24px 46px rgba(15, 23, 42, .16), 0 0 0 1px rgba(var(--swipe-accent), .2);
}

.swipe-card:hover::before,
.swipe-card.is-active::before {
  opacity: .85;
}

.swipe-card:hover::after,
.swipe-card.is-active::after {
  opacity: 1;
  border-color: rgba(var(--swipe-accent), .25);
  box-shadow: 0 0 0 1px rgba(var(--swipe-accent), .18), 0 16px 30px rgba(15, 23, 42, .16);
}

.swipe-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #eef2f6;
  border-bottom: 1px solid rgba(15, 23, 42, .06);
}

.swipe-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(var(--swipe-accent), .18), rgba(15, 23, 42, 0) 70%);
  opacity: .25;
  pointer-events: none;
}

.swipe-card.is-active .swipe-media::after {
  opacity: .35;
}

.swipe-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  backface-visibility: hidden;
  transition: transform .35s ease, filter .35s ease;
}

.swipe-card:hover .swipe-media img,
.swipe-card:focus-within .swipe-media img {
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02);
}

.swipe-card.is-active .swipe-media img {
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.03);
}

.swipe-body {
  padding: 1.25rem 1.35rem 1.5rem;
  display: grid;
  gap: .75rem;
}

.swipe-body p {
  line-height: 1.6;
}

.swipe-body .text-muted {
  color: rgba(15, 23, 42, .8) !important;
}

.swipe-head {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: .9rem;
  align-items: center;
}

.swipe-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  padding: .3rem .7rem;
  border-radius: .55rem;
  background: rgba(var(--swipe-accent), .08);
  color: rgba(15, 23, 42, .8);
  border: 1px solid rgba(var(--swipe-accent), .2);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.swipe-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(var(--swipe-accent), .95);
  box-shadow: 0 0 0 2px rgba(var(--swipe-accent), .15);
}

.swipe-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .45), rgba(255, 255, 255, 0) 45%),
    linear-gradient(150deg, rgba(var(--swipe-accent), .98), rgba(var(--swipe-accent), .6));
  color: rgb(var(--swipe-ink));
  border: 1px solid rgba(var(--swipe-accent), .45);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  flex-shrink: 0;
}

.swipe-card:hover .swipe-icon,
.swipe-card:focus-within .swipe-icon {
  transform: translateY(-2px);
}

.swipe-card.is-active .swipe-icon {
  transform: translateY(-2px);
}

.swipe-card:hover .swipe-badge,
.swipe-card:focus-within .swipe-badge {
  background: rgba(var(--swipe-accent), .12);
  border-color: rgba(var(--swipe-accent), .28);
}

.swipe-card.is-active .swipe-badge {
  background: rgba(var(--swipe-accent), .16);
  border-color: rgba(var(--swipe-accent), .35);
}

.swipe-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.9;
}

.swipe-card:nth-child(1) {
  --swipe-accent: 13, 110, 253;
}

.swipe-card:nth-child(2) {
  --swipe-accent: 250, 204, 21;
  --swipe-ink: 15, 23, 42;
}

.swipe-card:nth-child(3) {
  --swipe-accent: 34, 197, 94;
}

.swipe-card:nth-child(4) {
  --swipe-accent: 14, 116, 144;
}

.swipe-card:nth-child(5) {
  --swipe-accent: 249, 115, 22;
}

.swipe-title {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

@media (max-width: 767px) {
  .swipe-track {
    grid-auto-columns: minmax(82%, 1fr);
    gap: .9rem;
    padding: .55rem .75rem 1.1rem;
    scroll-padding: 0 .75rem;
    scrollbar-width: none;
  }

  .swipe-track::-webkit-scrollbar {
    display: none;
  }

  .swipe-card {
    scroll-snap-align: center;
  }

  .swipe-track.is-focused .swipe-card {
    transform: translateY(1px) scale(.99);
  }

  .swipe-track.is-focused .swipe-card.is-active {
    transform: translateY(-4px) scale(1.01);
  }
}

@media (min-width: 992px) {
  .swipe-track {
    grid-auto-columns: minmax(240px, 320px);
    gap: 1.25rem;
    scroll-padding: 0 1.1rem;
    scrollbar-width: none;
  }

  .swipe-track::-webkit-scrollbar {
    display: none;
  }

  .swipe-track.is-focused .swipe-card {
    opacity: .86;
    transform: translateY(1px) scale(.99);
  }

  .swipe-track.is-focused .swipe-card.is-active {
    transform: translateY(-4px) scale(1.01);
  }
}

@media (prefers-reduced-motion: reduce) {

  .swipe-card,
  .swipe-card::after,
  .swipe-media img,
  .swipe-icon {
    transition: none;
    animation: none;
  }
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 6px 12px rgba(15, 23, 42, .07);
  }

  50% {
    transform: translateY(-2px);
    box-shadow: 0 10px 16px rgba(15, 23, 42, .1);
  }
}

.section-title {
  font-size: 2rem;
  letter-spacing: -0.03em;
  margin: 0 0 .35rem;
}

.stat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.stat-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.hero .stat-card {
  background: rgba(255, 255, 255, .92);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
  transition: box-shadow .2s ease;
}

.hero .stat-card:hover,
.hero .stat-card:focus-within {
  transform: none;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.hero .stat-icon {
  background: rgba(13, 110, 253, .12);
  border-color: rgba(13, 110, 253, .18);
  box-shadow: none;
}

.hero .reveal .stat-card {
  opacity: 0;
  transform: translateY(8px);
}

.hero .reveal.is-visible .stat-card {
  opacity: 1;
  transform: none;
  transition: opacity .35s ease, transform .35s ease;
}

.hero .reveal.is-visible .stat-card:nth-child(2) {
  transition-delay: .08s;
}

.hero .reveal.is-visible .stat-card:nth-child(3) {
  transition-delay: .16s;
}

.stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, var(--stat-accent, rgba(13, 110, 253, .18)), rgba(250, 204, 21, .18));
  border: 1px solid rgba(13, 110, 253, .22);
  color: #0d6efd;
  box-shadow: 0 6px 12px rgba(13, 110, 253, .12);
}

.stat-icon svg {
  width: 18px;
  height: 18px;
}

@media (min-width: 768px) {
  .hero .stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .85rem;
  }

  .hero .stat-grid.stat-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero .stat-card {
    padding: .8rem 1rem;
    border-radius: 11px;
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: .25rem .75rem;
    align-items: start;
  }

  .hero .stat-card .stat-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    margin-top: .1rem;
    grid-row: 1 / span 2;
  }

  .hero .stat-card .stat-icon svg {
    width: 16px;
    height: 16px;
  }

  .hero .stat-card .value {
    font-size: 1.1rem;
    line-height: 1.2;
    margin: 0;
  }

  .hero .stat-card .label {
    font-size: .95rem;
    margin: 0;
  }
}

.stat-card .value {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
}

.stat-card .label {
  color: rgba(75, 85, 99, 0.95);
}

.how-card {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 1rem 1.25rem;
  height: 100%;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  background: #fff;
}

.how-step {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0d6efd;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 0.5rem;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25);
}

.section-ice,
.section-sun {
  position: relative;
  overflow: hidden;
  --section-accent-1: rgba(13, 110, 253, .12);
  --section-accent-2: rgba(250, 204, 21, .14);
}

.section-ice {
  background: transparent;
}

.section-sun {
  --section-accent-1: rgba(250, 204, 21, .16);
  --section-accent-2: rgba(13, 110, 253, .1);
  background: transparent;
}

.section-ice::before,
.section-sun::before {
  content: "";
  position: absolute;
  inset: -35% -20% auto -20%;
  height: 70%;
  pointer-events: none;
  z-index: 0;
}

.section-ice::before {
  background: none;
  opacity: 0;
}

.section-sun::before {
  background: none;
  opacity: 0;
}

body.page-home {
  background: var(--offwhite);
}

body.page-home.theme-dark {
  background: #0f172a;
}

.page-home main {
  background: transparent;
}

.page-home main>section {
  background: transparent;
}

.page-home .section-ice,
.page-home .section-sun {
  background: transparent;
}

.page-home .section-ice::before,
.page-home .section-sun::before {
  opacity: 0;
  background: none;
}

.section-ice .container,
.section-sun .container {
  position: relative;
  z-index: 1;
}

.feature-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .92));
  border-color: rgba(13, 110, 253, .12);
  box-shadow: 0 14px 28px rgba(15, 23, 42, .07);
  z-index: 0;
}

.feature-card>* {
  position: relative;
  z-index: 1;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: -45% -30% auto -30%;
  height: 70%;
  background: radial-gradient(circle at 18% 18%, var(--feature-accent, rgba(13, 110, 253, .2)), rgba(255, 255, 255, 0) 60%);
  opacity: .7;
  pointer-events: none;
  z-index: 0;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .6rem;
  background: linear-gradient(140deg, rgba(13, 110, 253, .18), rgba(250, 204, 21, .2));
  color: #0d6efd;
  border: 1px solid rgba(13, 110, 253, .25);
  box-shadow: 0 8px 16px rgba(13, 110, 253, .12);
  animation: iconFloat 7s ease-in-out infinite;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.quote-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(13, 110, 253, .08), rgba(250, 204, 21, .12)), var(--card);
  border-color: rgba(13, 110, 253, .18);
  box-shadow: 0 16px 34px rgba(13, 110, 253, .1);
  z-index: 0;
}

.quote-panel>* {
  position: relative;
  z-index: 1;
}

.quote-panel::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 70%;
  background: radial-gradient(circle at 20% 20%, rgba(13, 110, 253, .2), rgba(255, 255, 255, 0) 55%),
    radial-gradient(circle at 80% 10%, rgba(250, 204, 21, .22), rgba(255, 255, 255, 0) 55%);
  opacity: .6;
  pointer-events: none;
  z-index: 0;
}

.quote-stack {
  display: grid;
  gap: 1rem;
}

.quote-card {
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(13, 110, 253, .14);
  border-radius: .9rem;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .07);
}

.quote-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  color: rgba(13, 110, 253, .7);
  margin-bottom: .35rem;
}

.quote-media {
  position: relative;
  overflow: hidden;
  border-radius: .9rem;
  aspect-ratio: 4 / 3;
  min-height: 280px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, .18);
}

.quote-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.quote-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13, 110, 253, .18), rgba(250, 204, 21, .12), rgba(255, 255, 255, 0));
  opacity: .75;
  pointer-events: none;
}

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

.quote-pill {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(13, 110, 253, .28);
  font-weight: 700;
  font-size: .75rem;
  color: rgba(31, 41, 55, .9);
}

.newsletter-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(13, 110, 253, .1), rgba(250, 204, 21, .12)), var(--card);
  border-color: rgba(13, 110, 253, .18);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .1);
  z-index: 0;
}

.newsletter-panel>* {
  position: relative;
  z-index: 1;
}

.newsletter-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0) 55%);
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}

.faq-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .92));
  border-color: rgba(229, 231, 235, .8);
}

.faq-panel details {
  border-bottom: 1px solid rgba(229, 231, 235, .7);
  padding: .65rem 0;
}

.faq-panel details:last-child {
  border-bottom: 0;
}

.faq-panel summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.faq-panel summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 110, 253, .12);
  border: 1px solid rgba(13, 110, 253, .2);
  color: #0d6efd;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.faq-icon svg {
  width: 12px;
  height: 12px;
}

.faq-panel details[open] summary .faq-icon {
  transform: rotate(180deg);
  background: rgba(13, 110, 253, .18);
  border-color: rgba(13, 110, 253, .35);
}

@media (max-width: 991px) {
  .quote-media {
    min-height: 220px;
    margin-top: .5rem;
  }
}

.products-wrap {
  padding: 3.25rem 0;
  position: relative;
}

.page-home .products-wrap {
  padding: 4rem 0 4.4rem;
  overflow: hidden;
  background: #ffffff;
}

body.theme-dark .page-home .products-wrap {
  background: #0c111b;
}

.page-home .products-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  opacity: 0;
  pointer-events: none;
}

.page-home .products-wrap .container {
  position: relative;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 1.4rem;
  padding: 2rem 2rem 2.4rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
}

body.theme-dark .page-home .products-wrap .container {
  background: #0c111b;
  border-color: rgba(255, 255, 255, .08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .2);
}

.page-home .products-wrap .container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .7) inset;
  pointer-events: none;
}

.page-home .products-wrap .container::after {
  content: "";
  position: absolute;
  left: 2rem;
  right: 2rem;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: rgba(250, 204, 21, .45);
  opacity: .55;
  pointer-events: none;
}

.page-home .products-wrap .reveal {
  margin-bottom: 1.15rem;
}

.page-home .products-wrap .section-title {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
}

.page-home .products-wrap .products-grid {
  margin-top: 1.35rem;
}

.page-home .products-wrap .products-header {
  max-width: 720px;
}

.page-home .products-wrap .products-header p {
  font-size: 1.02rem;
  line-height: 1.55;
}

/* Modern Product Card Design - Full Bleed (Unified) */
.page-home .products-wrap .product-card,
.page-shop .products-grid .product-card {
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.6);
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.page-home .products-wrap .product-card:hover,
.page-shop .products-grid .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  border-color: rgba(250, 204, 21, 0.4);
}

body.theme-dark .page-home .products-wrap .product-card,
body.theme-dark .page-shop .products-grid .product-card {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.08);
}

body.theme-dark .page-home .products-wrap .product-card:hover,
body.theme-dark .page-shop .products-grid .product-card:hover {
  border-color: rgba(250, 204, 21, 0.4);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.3);
}

.page-home .products-wrap .product-media,
.page-shop .products-grid .product-media {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 0;
  background: #f8fafc;
  position: relative;
  width: 100%;
}

body.theme-dark .page-home .products-wrap .product-media,
body.theme-dark .page-shop .products-grid .product-media {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.05);
}

.page-home .products-wrap .product-media img,
.page-shop .products-grid .product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.page-home .products-wrap .product-card:hover .product-media img,
.page-shop .products-grid .product-card:hover .product-media img {
  transform: scale(1.05);
}

.page-home .products-wrap .product-top,
.page-shop .products-grid .product-top {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 10;
  display: flex;
  gap: 0.4rem;
}

.page-home .products-wrap .badge-pill,
.page-shop .products-grid .badge-pill {
  background: rgba(255, 255, 255, 0.95);
  color: #1f2937;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(4px);
  border: none;
}

.page-home .products-wrap .badge-pill.badge-yellow,
.page-shop .products-grid .badge-pill.badge-yellow {
  background: #facc15;
  color: #1f2937;
  border: none;
}

.page-home .products-wrap .product-body,
.page-shop .products-grid .product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.25rem 0.5rem;
  text-align: center;
  align-items: center;
}

.page-home .products-wrap .product-title,
.page-shop .products-grid .product-title {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.4rem;
  color: #111827;
  letter-spacing: -0.015em;
}

body.theme-dark .page-home .products-wrap .product-title,
body.theme-dark .page-shop .products-grid .product-title {
  color: #f3f4f6;
}

.page-home .products-wrap .product-desc,
.page-shop .products-grid .product-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #6b7280;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.theme-dark .page-home .products-wrap .product-desc,
body.theme-dark .page-shop .products-grid .product-desc {
  color: #9ca3af;
}

.page-home .products-wrap .product-footer,
.page-shop .products-grid .product-footer {
  margin-top: auto;
  padding: 0 1.25rem 1.25rem;
  border-top: none;
}

.page-home .products-wrap .product-cta,
.page-shop .products-grid .product-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  align-items: center;
}

.page-home .products-wrap .btn-primary,
.page-shop .products-grid .btn-primary {
  width: 100%;
  min-width: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border-radius: 12px;
  background-color: #facc15 !important;
  color: #1f2937 !important;
  border: none;
  font-weight: 700;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.page-home .products-wrap .btn-primary:hover,
.page-shop .products-grid .btn-primary:hover {
  transform: translateY(-2px);
  background-color: #eab308 !important;
  box-shadow: 0 6px 12px rgba(250, 204, 21, 0.3);
}

.page-home .products-wrap .product-link,
.page-shop .products-grid .product-link {
  width: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  background-color: transparent;
  color: #6b7280;
  /* Gray-500 */
  border: none;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 0.25rem;
}

.page-home .products-wrap .product-link:hover,
.page-shop .products-grid .product-link:hover {
  background-color: transparent;
  color: #000000 !important;
  /* Gray-900 */
  border-color: transparent;
  transform: translateY(-1px);
}


body.theme-dark .page-home .products-wrap .product-link,
body.theme-dark .page-shop .products-grid .product-link {
  color: #9ca3af;
  border-color: transparent;
}

body.theme-dark .page-home .products-wrap .product-link:hover,
body.theme-dark .page-shop .products-grid .product-link:hover {
  background-color: transparent;
  color: #ffffff !important;
}

.btn-in-basket {
  background-color: #f3f4f6 !important;
  color: #374151 !important;
  border: 1px solid #d1d5db !important;
  box-shadow: none !important;
  font-weight: 600;
  cursor: default;
}

.btn-in-basket:hover {
  background-color: #e5e7eb !important;
  transform: none !important;
}

body.theme-dark .btn-in-basket {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #e5e7eb !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Pseudo-elements cleanup from old design */
.page-home .products-wrap .product-card::before,
.page-home .products-wrap .product-card::after,
.page-home .products-wrap .product-media::after {
  content: none;
}

.page-home .products-wrap .product-card__link:focus-visible {
  outline: none;
}



@media (max-width: 991px) {
  .page-home .products-wrap {
    padding: 3.4rem 0 3.7rem;
  }

  .page-home .products-wrap .container {
    padding: 1.6rem 1.4rem 1.9rem;
    border-radius: 1.1rem;
    box-shadow: 0 16px 32px rgba(15, 23, 42, .08);
  }

  .page-home .products-wrap .container::after {
    left: 1.2rem;
    right: 1.2rem;
  }
}

@media (max-width: 767px) {
  .page-home .products-wrap {
    padding: 3rem 0 3.2rem;
  }

  .page-home .products-wrap .container {
    padding: 1.35rem 1.1rem 1.6rem;
    border-radius: 1rem;
    box-shadow: 0 14px 28px rgba(15, 23, 42, .08);
  }

  .page-home .products-wrap .reveal {
    text-align: center;
  }

  .page-home .products-wrap .section-title {
    font-size: clamp(1.85rem, 6vw, 2.2rem);
  }

  .page-home .products-wrap .products-grid {
    margin-top: 1rem;
    padding: .4rem 0 .9rem;
    scroll-padding: 0 .6rem;
  }

  .page-home .products-wrap .container::after {
    left: .9rem;
    right: .9rem;
  }
}

@media (max-width: 575px) {
  .page-home .products-wrap .container {
    padding: 1.25rem 1rem 1.45rem;
  }

  .page-home .products-wrap .container::after {
    left: 1rem;
    right: 1rem;
  }

  .page-home .hero {
    margin-top: -22px !important;
  }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.products-grid .product-card {
  --stagger: 0;
}

.products-grid .product-card:nth-child(2) {
  --stagger: 1;
}

.products-grid .product-card:nth-child(3) {
  --stagger: 2;
}

.products-grid .product-card:nth-child(4) {
  --stagger: 3;
}

.products-grid .product-card:nth-child(5) {
  --stagger: 4;
}

.products-grid .product-card:nth-child(6) {
  --stagger: 5;
}

.products-grid .product-card:nth-child(7) {
  --stagger: 6;
}

.products-grid .product-card:nth-child(8) {
  --stagger: 7;
}

.products-grid .product-card:nth-child(9) {
  --stagger: 8;
}

.products-grid .product-card:nth-child(10) {
  --stagger: 9;
}

.products-grid .product-card:nth-child(11) {
  --stagger: 10;
}

.products-grid .product-card:nth-child(12) {
  --stagger: 11;
}

@media (max-width: 991px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: radial-gradient(120% 90% at 0% 0%, var(--card-accent-soft), var(--card-accent-clear) 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, .1), 0 1px 0 rgba(255, 255, 255, .8) inset;
  --card-accent-soft: rgba(250, 204, 21, .22);
  --card-accent-strong: rgba(250, 204, 21, .6);
  --card-accent-clear: rgba(250, 204, 21, 0);
  padding: 1.4rem 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease, opacity .22s ease;
  cursor: pointer;
}

.product-card.is-loading-hidden {
  visibility: hidden;
  position: absolute;
  pointer-events: none;
}

.product-card.skeleton {
  border-style: dashed;
  cursor: default;
  box-shadow: none;
}

.product-card.skeleton .product-media {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border: 1px solid rgba(15, 23, 42, .08);
}

.product-card .shimmer {
  position: relative;
  overflow: hidden;
}

.product-card .shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .65) 50%, rgba(255, 255, 255, 0) 100%);
  animation: shimmer 1.4s infinite;
}

.skel {
  width: 100%;
  height: .9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  margin-bottom: .5rem;
}

.skel.skel-title {
  height: 1.1rem;
  width: 70%;
}

.skel.skel-line.short {
  width: 55%;
}

.skel.skel-btn {
  height: 2.5rem;
  width: 100%;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(100%)
  }
}

.product-card.reveal {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease, opacity .22s ease;
}

.product-card.reveal:not(.is-visible) {
  transform: translateY(18px) scale(.98);
}

.product-card.reveal.is-visible {
  animation: cardEnter .65s cubic-bezier(.2, .8, .2, 1);
  animation-delay: calc(var(--stagger, 0) * .06s);
}

.product-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--card-accent-strong), var(--card-accent-clear));
  opacity: .65;
  pointer-events: none;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(15, 23, 42, .06);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, .04);
  opacity: 0;
  transition: opacity .25s ease, box-shadow .25s ease, border-color .25s ease;
  pointer-events: none;
}

.product-card.is-link {
  cursor: pointer;
}

.product-card.is-link:focus-visible {
  outline: 3px solid rgba(250, 204, 21, .55);
  outline-offset: 4px;
}

.hero-art {
  min-height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(31, 41, 55, .7);
  position: relative;
  max-width: 640px;
  margin-left: auto;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
}

.hero-art picture {
  display: block;
  width: 100%;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.blur-wrap {
  position: relative;
  max-width: 600px;
}

.blur-edge {
  width: 100%;
  display: block;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 55%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0.3) 83%, rgba(0, 0, 0, 0) 100%);
  filter: blur(0.5px);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 767px) {
  .hero {
    padding: 0.175rem 0 .95rem;
    text-align: center;
  }

  .page-home .hero {
    padding-top: 0.175rem;
  }

  .hero-image {
    box-shadow: none !important;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
  }

  .section-title {
    font-size: clamp(1.6rem, 6.5vw, 2rem);
    line-height: 1.2;
  }

  .eyebrow {
    font-size: .7rem;
    letter-spacing: .1em;
  }

  .home-eyebrow {
    font-size: .7rem;
    padding-left: 0.65rem;
  }

  .home-eyebrow::before {
    width: 2.5px;
    height: 11px;
  }

  p {
    font-size: .98rem;
    line-height: 1.5;
  }

  .small,
  small {
    font-size: .85rem;
  }

  .btn {
    padding: .7rem 1rem;
    font-size: .95rem;
  }

  .form-control,
  .form-select,
  textarea.form-control {
    font-size: .95rem;
  }

  .form-control.form-control-sm,
  .form-select.form-select-sm {
    font-size: .85rem;
  }

  .hero .d-flex {
    width: 100%;
  }

  .hero .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-bullets {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1rem;
  }

  .hero-art {
    margin: .5rem auto 0;
    max-width: 520px;
  }

  .page {
    padding: 0.75rem 0 2.4rem;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: .9rem 1.05rem;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: .3rem .85rem;
    align-items: flex-start;
    text-align: left;
  }

  .stat-card .stat-icon {
    grid-row: 1 / span 2;
    width: 40px;
    height: 40px;
    margin-top: .1rem;
  }

  .stat-card .value {
    font-size: 1.15rem;
    line-height: 1.2;
    margin: 0;
  }

  .stat-card .label {
    font-size: .95rem;
    line-height: 1.35;
    margin: 0;
  }

  .hero .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .7rem;
  }

  .hero .stat-card {
    padding: .7rem .85rem;
    grid-template-columns: 30px 1fr;
    gap: .2rem .6rem;
  }

  .hero .stat-card:last-child {
    grid-column: 1 / -1;
  }

  .hero .stat-grid.stat-grid--two {
    grid-template-columns: 1fr;
  }

  .hero .stat-grid.stat-grid--two .stat-card:last-child {
    grid-column: auto;
  }

  .hero .stat-card .stat-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .hero .stat-card .stat-icon svg {
    width: 14px;
    height: 14px;
  }

  .hero .stat-card .value {
    font-size: 1rem;
  }

  .hero .stat-card .label {
    font-size: .88rem;
  }

  .section {
    padding: 2.2rem 0;
  }

  .products-grid {
    gap: 1.1rem;
  }

  .products-wrap .products-grid {
    grid-auto-flow: column;
    grid-auto-columns: minmax(82%, 1fr);
    grid-template-columns: unset;
    overflow-x: auto;
    overflow-y: hidden;
    padding: .6rem .75rem 1.1rem;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 .75rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .products-wrap .products-grid::-webkit-scrollbar {
    display: none;
  }

  .products-wrap .product-card {
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .page-home .products-wrap .product-cta,
  .page-shop .products-grid .product-cta {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .page-home .products-wrap .product-cta .btn,
  .page-shop .products-grid .product-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .page-home .products-wrap .product-link,
  .page-shop .products-grid .product-link {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .product-card {
    padding: 1.15rem 1.15rem 0.85rem;
  }

  .page-home .products-wrap .product-footer,
  .page-shop .products-grid .product-footer {
    padding-top: 0.5rem;
    gap: 0.4rem;
  }

  .page-home .products-wrap .product-cta,
  .page-shop .products-grid .product-cta {
    gap: 0.35rem;
  }

  .navbar-collapse .list-group .list-group-item .nav-link-icon {
    display: none;
  }

  .product-media {
    aspect-ratio: 16 / 11;
  }

  .product-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-footer .btn {
    width: 100%;
  }

  .topic-filter {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-shop .shop-hero {
    padding: .8rem .75rem;
  }

  .page-shop .shop-hero .shop-hero__eyebrow {
    font-size: .78rem;
    letter-spacing: .08em;
    margin-bottom: .3rem !important;
  }

  .page-shop .shop-hero .shop-hero__subhead {
    font-size: 1rem;
    line-height: 1.45;
    margin-bottom: .3rem !important;
  }

  .page-shop .shop-hero h1 {
    font-size: clamp(2rem, 8vw, 2.6rem);
    line-height: 1.12;
    margin-bottom: .25rem !important;
  }

  .page-shop .shop-hero p {
    max-width: 100%;
  }

  .shop-hero__highlights {
    font-size: .85rem;
    gap: .35rem .6rem;
  }

  .highlight-item {
    padding: .28rem .6rem;
  }

  .highlight-icon {
    width: 18px;
    height: 18px;
  }

  .highlight-icon svg {
    width: 12px;
    height: 12px;
  }

  .page-shop .shop-hero__highlights {
    font-size: .76rem;
    gap: .18rem .3rem;
    margin: .08rem 0 0;
  }

  .page-shop .highlight-item {
    padding: .16rem .45rem;
  }

  .page-shop .highlight-icon {
    width: 12px;
    height: 12px;
  }

  .page-shop .highlight-icon svg {
    width: 8px;
    height: 8px;
  }

  .page-shop .shop-toolbar {
    padding: .42rem .6rem;
    gap: .4rem;
    align-items: flex-start;
    text-align: left;
  }

  .page-shop .shop-toolbar__meta {
    gap: .12rem;
    width: 100%;
    max-width: 100%;
    text-align: left;
  }

  .page-shop .shop-toolbar__meta .fw-semibold {
    font-size: .82rem;
  }

  .page-shop .shop-toolbar__meta .text-muted {
    font-size: .72rem;
  }

  .page-shop .shop-toolbar .form-select-sm {
    font-size: .74rem;
    padding: .3rem 2.05rem .3rem 2.05rem;
    line-height: 1.2;
  }

  .page-shop .shop-toolbar .input-icon {
    width: 12px;
    height: 12px;
    left: .55rem;
  }

  .page-shop .shop-toolbar .input-icon svg {
    width: 12px;
    height: 12px;
  }

  .page-shop .shop-hero__cta {
    margin-top: .45rem;
    gap: .4rem;
  }

  .page-shop .shop-hero__cta .btn {
    padding: .58rem .95rem;
    font-size: .92rem;
  }

  .page-shop .shop-toolbar__sort {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: .35rem;
    width: auto;
    align-self: flex-start;
    justify-items: start;
    justify-content: flex-start;
  }

  .page-shop .shop-toolbar__sort .input-icon-group {
    width: fit-content;
    flex: 0 1 auto;
    min-width: 0;
  }

  .page-shop .shop-toolbar .filter-dropdown {
    flex: 0 1 auto;
    width: fit-content;
  }

  .page-shop .shop-toolbar__sort .form-select-sm {
    width: auto;
  }

  .shop-hero__cta {
    width: 100%;
  }

  .shop-hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-toolbar__meta {
    max-width: 100%;
  }

  .shop-toolbar__sort {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: .65rem;
  }

  .shop-toolbar__sort .input-icon-group {
    flex: 1 1 210px;
  }

  .shop-toolbar__sort .form-select-sm {
    width: 100%;
    min-width: 0;
  }

  .filter-dropdown {
    margin-right: 0;
    flex: 1 1 210px;
  }

  .filter-dropdown .input-icon-group {
    width: 100%;
    min-width: 0;
  }

  .shop-insights {
    margin-top: 1.1rem;
  }

  .shop-stats {
    grid-template-columns: 1fr;
  }

  .shop-insights__grid {
    grid-template-columns: 1fr;
  }

  .shop-metric {
    padding: .85rem;
  }

  .callout,
  .panel {
    padding: 1.35rem 1.2rem;
  }

  footer {
    padding: 1.6rem 0;
  }

  .footer-links {
    justify-content: flex-start;
    gap: .85rem;
  }
}

@media (max-width: 991px) {
  .hero-art {
    max-width: 520px;
    margin: 0.5rem auto 0;
  }

  .hero--stacked {
    text-align: center;
  }

  .page-home .hero h1 {
    max-width: 26ch;
    margin-left: auto;
    margin-right: auto;
  }

  .page-home .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero--stacked .hero-cta {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero--stacked .hero-cta .btn {
    width: 100%;
    max-width: 440px;
    justify-content: center;
  }

  .hero--stacked .hero-cta+.small {
    text-align: center;
  }
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, .12);
  border-color: rgba(15, 23, 42, .16);
}

.product-card:hover::before,
.product-card:focus-within::before {
  opacity: .9;
}

.product-card:hover::after,
.product-card:focus-within::after {
  opacity: 1;
  border-color: rgba(15, 23, 42, .12);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, .06);
}

.product-card.has-accent::before {
  opacity: .95;
}

.product-card.has-accent {
  border-color: rgba(15, 23, 42, .08);
}

.product-card.has-accent:hover,
.product-card.has-accent:focus-within {
  border-color: rgba(15, 23, 42, .18);
  box-shadow: 0 24px 46px rgba(15, 23, 42, .14), 0 0 0 1px var(--card-accent-strong);
}

.product-card.has-accent:hover::after,
.product-card.has-accent:focus-within::after {
  border-color: var(--card-accent-strong);
}

.product-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.product-card__link:focus-visible {
  outline: 3px solid rgba(250, 204, 21, .55);
  outline-offset: 4px;
}

.product-card.has-accent .product-card__link:focus-visible {
  outline-color: var(--card-accent-strong);
}

.product-top {
  display: flex;
  justify-content: flex-end;
  gap: .4rem;
  min-height: 1.4rem;
  margin-bottom: .5rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-weight: 700;
  font-size: .66rem;
  letter-spacing: .04em;
  padding: .22rem .5rem;
  border-radius: .4rem;
  border: 1px solid rgba(15, 23, 42, .12);
  background: rgba(15, 23, 42, .06);
  color: rgba(15, 23, 42, .85);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.product-card:hover .badge-pill,
.product-card:focus-within .badge-pill {
  transform: translateY(-1px);
  border-color: rgba(15, 23, 42, .18);
  background: rgba(15, 23, 42, .1);
}

.badge-pill.badge-yellow {
  background: rgba(250, 204, 21, .22);
  border-color: rgba(250, 204, 21, .5);
  color: #1f2937;
}

.product-media {
  border-radius: .65rem;
  border: 1px solid rgba(15, 23, 42, .08);
  background: linear-gradient(180deg, rgba(248, 250, 252, .92), rgba(241, 245, 249, .82));
  box-shadow: 0 8px 18px rgba(15, 23, 42, .06);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease, filter .35s ease;
}

.product-card:hover .product-media img {
  transform: translateY(-4px) scale(1.02);
  filter: saturate(1.06) contrast(1.02);
}

.product-card:hover .product-media,
.product-card:focus-within .product-media {
  border-color: rgba(15, 23, 42, .14);
  box-shadow: 0 12px 24px rgba(15, 23, 42, .1);
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 90% at 15% 10%, var(--card-accent-soft), var(--card-accent-clear) 60%);
  opacity: .35;
  z-index: 0;
}

@keyframes floatGlow {

  0%,
  100% {
    opacity: .55;
    transform: translateY(-2px) scale(1.02);
  }

  50% {
    opacity: .9;
    transform: translateY(3px) scale(1.05);
  }
}

@keyframes accentRing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes accentGlow {

  0%,
  100% {
    opacity: .45;
    transform: translate3d(-6px, 6px, 0) scale(1);
  }

  50% {
    opacity: .85;
    transform: translate3d(6px, -6px, 0) scale(1.04);
  }
}

@keyframes accentSheen {
  0% {
    background-position: 0% 0%, 100% 0%, 0% 50%;
  }

  50% {
    background-position: 100% 100%, 0% 100%, 100% 50%;
  }

  100% {
    background-position: 0% 0%, 100% 0%, 0% 50%;
  }
}

@keyframes cardEnter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.98);
  }

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

@keyframes impactGlow {

  0%,
  100% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }

  50% {
    transform: translate3d(2%, 1%, 0) scale(1.03);
  }
}

.product-card h3 {
  font-size: 1.22rem;
  letter-spacing: -0.02em;
  margin: 0 0 .55rem;
}

.product-card p {
  margin: 0 0 .65rem;
  color: rgba(15, 23, 42, .88);
  line-height: 1.55;
}

.product-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .55rem;
  margin: 0 0 .85rem;
}

.product-trust .trust-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .6rem;
  border-radius: .55rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .01em;
  background: rgba(15, 23, 42, .06);
  border: 1px solid rgba(15, 23, 42, .12);
  color: rgba(15, 23, 42, .85);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.product-trust .trust-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--card-accent-strong);
  box-shadow: 0 0 0 2px rgba(15, 23, 42, .12);
}

.product-card:hover .trust-chip,
.product-card:focus-within .trust-chip {
  transform: translateY(-1px);
  border-color: rgba(15, 23, 42, .18);
  background: rgba(15, 23, 42, .1);
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .85rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(15, 23, 42, .08);
}

.product-card .btn {
  position: relative;
  z-index: 2;
  font-weight: 700;
  padding: .45rem .95rem;
  border-radius: var(--radius-btn);
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-card .btn.btn-primary {
  box-shadow: none;
}

.product-card:hover .btn.btn-primary,
.product-card:focus-within .btn.btn-primary {
  transform: translateY(-1px);
  box-shadow: none;
}

[data-add-to-cart].btn.btn-primary {
  box-shadow: none;
}

[data-add-to-cart].btn.btn-primary:hover,
[data-add-to-cart].btn.btn-primary:focus {
  box-shadow: none;
}

.product-impact {
  margin-top: .35rem;
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .93rem;
  font-weight: 600;
  color: rgba(22, 101, 52, .9);
}

.product-impact .impact-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, .12), 0 0 12px rgba(34, 197, 94, .3);
}

.product-impact.is-empty {
  color: rgba(31, 41, 55, .88);
  font-weight: 500;
}

.product-impact--compact {
  margin-top: .45rem;
  font-size: .9rem;
  color: rgba(31, 41, 55, .92);
  box-shadow: none;
  padding-left: 0;
}

.product-impact--compact .impact-dot {
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .16), 0 0 8px rgba(34, 197, 94, .25);
}

.product-impact--compact.is-empty {
  color: rgba(75, 85, 99, .9);
}

.product-purchase__actions .btn {
  white-space: nowrap;
}

.page-product .product-purchase {
  border: 1px solid rgba(15, 23, 42, .08);
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .96));
  box-shadow: 0 18px 36px rgba(15, 23, 42, .1);
}

.page-product .product-purchase__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.page-product .product-price {
  flex: 1 1 45%;
  min-width: 220px;
}

.page-product .product-price__value {
  font-size: clamp(1.8rem, 2.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #0f172a;
}

.page-product .product-price__credits {
  font-size: .9rem;
  line-height: 1.35;
  color: rgba(15, 23, 42, .72);
  margin-top: .25rem;
}

.page-product .product-credits-toggle {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .45rem;
  padding: 0;
  min-height: 44px;
  border: 0;
  background: none;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(37, 99, 235, .95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-product .product-credits-toggle:focus-visible {
  outline: 2px solid rgba(37, 99, 235, .35);
  outline-offset: 3px;
}

.page-product .product-credits-info {
  margin-top: .5rem;
  padding: .6rem .75rem;
  border-radius: .65rem;
  border: 1px solid rgba(15, 23, 42, .08);
  background: rgba(15, 23, 42, .03);
  font-size: .85rem;
  color: rgba(51, 65, 85, .9);
}

.page-product .product-purchase__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: .75rem;
  flex: 1 1 45%;
}

.page-product .product-purchase__ctas {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  min-width: 200px;
}

.page-product .product-purchase__ctas .btn {
  min-height: 44px;
}

.page-product .purchase-microcopy {
  font-size: .78rem;
  color: rgba(71, 85, 105, .8);
}

.page-product .qty-stepper {
  display: flex;
  align-items: center;
  gap: .25rem;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: .75rem;
  padding: .25rem;
  background: #fff;
}

.page-product .qty-stepper__btn {
  width: 44px;
  height: 44px;
  border-radius: .6rem;
  border: 1px solid rgba(15, 23, 42, .12);
  background: rgba(248, 250, 252, .9);
  color: #0f172a;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
}

.page-product .qty-stepper__btn:focus-visible {
  outline: 2px solid rgba(15, 23, 42, .25);
  outline-offset: 2px;
}

.page-product .qty-stepper__input:focus {
  box-shadow: none;
}

.page-product .qty-stepper__input::-webkit-outer-spin-button,
.page-product .qty-stepper__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.page-product .qty-stepper__input {
  width: 88px;
  text-align: center;
  border: 0;
  background: transparent;
  font-weight: 700;
  color: #0f172a;
  -moz-appearance: textfield;
}

.page-product .purchase-notes {
  margin-top: 1rem;
  padding: .65rem .85rem;
  border-radius: .75rem;
  border: 1px solid rgba(15, 23, 42, .08);
  background: rgba(248, 250, 252, .9);
}

.page-product .purchase-notes details {
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  padding: .6rem 0;
}

.page-product .purchase-notes details:last-child {
  border-bottom: 0;
}

.page-product .purchase-notes summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  font-size: .92rem;
  font-weight: 600;
  min-height: 44px;
}

.page-product .purchase-notes summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .12);
  background: rgba(15, 23, 42, .04);
  color: rgba(15, 23, 42, .7);
  font-weight: 700;
}

.page-product .purchase-notes details[open] summary::after {
  content: "-";
}

.page-product .purchase-note__body {
  margin-top: .2rem;
}

.page-product .panel-quiet {
  background: rgba(248, 250, 252, .7);
  border: 1px solid rgba(15, 23, 42, .06);
  box-shadow: none;
}

.page-product .product-impact-panel .impact-goal-pill {
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .45rem;
  background: rgba(15, 23, 42, .04);
  border-color: rgba(15, 23, 42, .12);
  color: rgba(15, 23, 42, .72);
}

.page-product .progress-quiet {
  background: rgba(15, 23, 42, .08);
}

.page-product .product-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  padding: .75rem 1rem;
  border-top: 1px solid rgba(15, 23, 42, .12);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 -12px 32px rgba(15, 23, 42, .12);
  transform: translateY(110%);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}

.page-product .product-sticky-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.page-product .product-sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.page-product .product-sticky-bar__price {
  display: flex;
  flex-direction: column;
}

.page-product .product-sticky-bar__value {
  font-weight: 800;
  font-size: 1.1rem;
  color: #0f172a;
}

.page-product .product-sticky-bar__credits {
  font-size: .8rem;
  color: rgba(15, 23, 42, .7);
}

.page-product .product-sticky-bar .btn {
  min-height: 44px;
  padding: .75rem 1.25rem;
}

@media (min-width: 768px) {
  .page-product .product-sticky-bar {
    display: none;
  }
}

@media (max-width: 767px) {
  body.has-sticky-buybar .page {
    padding-bottom: 96px;
  }

  .page-product .product-media {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    border: 0;
    box-shadow: none;
  }

  .page-product .product-media::after {
    opacity: .18;
  }

  .page-product .product-price__value {
    font-size: clamp(1.6rem, 5.8vw, 2rem);
  }

  .page-product .product-price__credits {
    font-size: .85rem;
  }

  .page-product .product-purchase__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .page-product .qty-stepper {
    width: 100%;
    justify-content: space-between;
  }

  .page-product .qty-stepper__input {
    flex: 1 1 auto;
    min-width: 64px;
  }

  .page-product .product-purchase__ctas {
    width: 100%;
  }

  .page-product .purchase-microcopy {
    text-align: center;
  }

  .page-product .product-credits-toggle {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .product-purchase__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-purchase__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: .5rem;
  }

  .product-purchase__qty {
    width: 100%;
  }

  .product-purchase__qty .form-control {
    max-width: 100% !important;
  }

  .product-purchase__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.impact-goal-banner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .96));
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius-xl);
  padding: .85rem 1.05rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, .08);
  margin-bottom: 1rem;
}

.impact-goal-slot {
  margin-top: 1rem;
}

.impact-goal-slot .impact-goal-banner {
  margin: 0;
}

.page-shop .impact-goal-slot {
  margin: .5rem 0 .75rem;
}

.page-shop .impact-goal-slot.is-empty {
  margin: 0;
  padding: 0;
  height: 0;
}

.page-shop .impact-goal-banner {
  padding: .4rem .65rem;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: none;
}

.page-shop .impact-goal-banner::before {
  display: none;
}

.page-shop .impact-goal-banner__top {
  align-items: center;
}

.page-shop .impact-goal-title {
  font-size: .9rem;
  font-weight: 600;
}

.page-shop .impact-goal-sub {
  font-size: .78rem;
  line-height: 1.35;
}

.page-shop .impact-goal-progress {
  height: 4px;
  margin-top: .35rem;
}

.page-shop .impact-goal-meta {
  font-size: .72rem;
  margin-top: .28rem;
}

.page-shop .impact-goal-pill {
  font-size: .55rem;
  padding: .18rem .45rem;
  letter-spacing: .05em;
  background: rgba(15, 23, 42, .06);
  border-color: rgba(15, 23, 42, .12);
  color: rgba(15, 23, 42, .7);
}

.page-shop .impact-goal-banner--inline {
  grid-column: 1 / -1;
  margin: .35rem 0 .55rem;
  width: 100%;
}

.page-shop .impact-goal-progress--empty .progress-bar {
  background: rgba(15, 23, 42, .22);
}

.page-shop .shop-toolbar {
  margin-top: .75rem;
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius-lg);
  padding: .85rem 1.05rem;
  box-shadow: none;
  text-align: left;
}

.page-shop .shop-toolbar__sort {
  flex-wrap: wrap;
  justify-content: flex-start;
}

.page-shop .shop-toolbar .filter-dropdown {
  min-width: 0;
}

.page-shop .shop-toolbar__sort .input-icon-group {
  width: fit-content;
  flex: 0 0 auto;
}

@media (max-width: 767px) {
  .page-shop .impact-goal-banner {
    padding: .35rem .55rem;
  }

  .page-shop .impact-goal-banner__top {
    align-items: flex-start;
  }

  .page-shop .impact-goal-title {
    font-size: .85rem;
  }

  .page-shop .impact-goal-sub {
    font-size: .74rem;
  }

  .page-shop .impact-goal-progress {
    height: 3px;
  }

  .page-shop .impact-goal-pill {
    font-size: .5rem;
    padding: .14rem .4rem;
  }

  .page-shop .impact-goal-meta {
    margin-top: .35rem;
  }
}

.page-shop .products-grid {
  margin-top: .75rem;
  margin-bottom: 1.2rem;
}

.impact-goal-banner::before {
  content: "";
  position: absolute;
  inset: -45% -20% auto -20%;
  height: 70%;
  background: radial-gradient(60% 60% at 12% 15%, rgba(250, 204, 21, .22), rgba(255, 255, 255, 0)),
    radial-gradient(55% 55% at 88% 12%, rgba(13, 110, 253, .14), rgba(255, 255, 255, 0));
  opacity: .65;
  pointer-events: none;
  animation: impactGlow 10s ease-in-out infinite;
}

.impact-goal-banner>* {
  position: relative;
  z-index: 1;
}

.impact-goal-banner__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .9rem;
  flex-wrap: wrap;
  line-height: 1.35;
}

.impact-goal-copy {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  min-width: 0;
  width: 100%;
  text-align: left;
}

.impact-goal-title {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: rgba(15, 23, 42, .95);
  text-align: left;
}

.impact-goal-sub {
  font-size: .85rem;
  color: rgba(15, 23, 42, .65);
  text-align: left;
}

.impact-goal-progress {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  margin-top: .5rem;
  background: rgba(15, 23, 42, .06);
}

.impact-goal-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: .45rem;
  font-size: .82rem;
  color: rgba(15, 23, 42, .6);
}

.impact-goal-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border-radius: 999px;
  padding: .32rem .7rem;
  background: rgba(15, 23, 42, .06);
  color: rgba(15, 23, 42, .86);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  border: 1px solid rgba(15, 23, 42, .12);
}

@media (max-width: 767px) {
  .impact-goal-banner {
    padding: .7rem .85rem;
  }

  .impact-goal-banner__top {
    flex-direction: column;
    gap: .35rem;
  }

  .impact-goal-title {
    font-size: .95rem;
  }

  .impact-goal-sub {
    font-size: .8rem;
  }

  .impact-goal-pill {
    align-self: flex-start;
    font-size: .62rem;
    padding: .3rem .6rem;
  }

  .impact-goal-progress {
    height: 6px;
  }

  .impact-goal-meta {
    font-size: .78rem;
    margin-top: .35rem;
  }
}

.client-banner {
  background: linear-gradient(120deg, rgba(79, 70, 229, .12), rgba(37, 99, 235, .08));
  border: 1px solid rgba(79, 70, 229, .18);
  color: #0f172a;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-weight: 700;
}

.client-banner__balance {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #111827;
}

.client-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(59, 130, 246, .12);
  color: #1d4ed8;
  font-weight: 800;
  font-size: .85rem;
}

.client-banner__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.price {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: rgba(15, 23, 42, .9);
}

.product-card .price {
  display: none;
}

.cc-accent {
  color: rgb(13, 110, 253);
  font-weight: 800;
}

.link-locked {
  position: relative;
  filter: grayscale(1) blur(0.2px);
  pointer-events: none;
  opacity: 0.55;
  cursor: not-allowed;
}

.link-locked::after {
  content: "Locked for client";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 800;
  color: #374151;
  background: rgba(255, 255, 255, 0.7);
  border-radius: inherit;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity .2s ease, transform .2s ease;
  opacity: 0;
  transform: translateY(-2px);
}

.link-locked:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.page-shop {
  position: relative;
  overflow-x: hidden;
}

.page-shop::before {
  content: "";
  position: absolute;
  inset: -25% -10% auto -10%;
  height: 55%;
  background: none;
  pointer-events: none;
  opacity: 0;
}

.page-shop>.container {
  position: relative;
  z-index: 1;
}

.page-shop .shop-hero {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(229, 231, 235, .85);
  border-top: 2px solid rgba(250, 204, 21, .25);
  border-radius: var(--radius-xl);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
  padding: 1.6rem 1.8rem;
  z-index: 0;
}

.page-shop .shop-hero.panel:hover {
  transform: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
}

.page-shop .shop-hero h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  max-width: 26ch;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .03);
}

.page-shop .shop-hero p {
  max-width: 54ch;
  line-height: 1.6;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: rgba(31, 41, 55, .85);
}

.page-shop .shop-hero .shop-hero__eyebrow {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(107, 114, 128, .9);
  display: inline-block;
  position: relative;
  padding-left: .75rem;
}

.page-shop .shop-hero .shop-hero__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 12px;
  background: rgba(250, 204, 21, .85);
  border-radius: 2px;
}

.page-shop .shop-hero .shop-hero__subhead {
  color: rgba(31, 41, 55, .85);
}

.page-shop .shop-hero::after {
  content: none;
}

.page-shop .shop-hero>* {
  position: relative;
  z-index: 1;
}

.shop-hero__content {
  display: flex;
  flex-direction: column;
}

.shop-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .6rem;
  margin: .25rem 0 0;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(15, 23, 42, .7);
}

.highlight-item {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: rgba(13, 110, 253, .08);
  border: 1px solid rgba(13, 110, 253, .12);
}

.highlight-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(13, 110, 253, .12);
  color: #0d6efd;
}

.highlight-icon svg {
  width: 14px;
  height: 14px;
}

.page-shop .highlight-item {
  gap: .4rem;
  padding: .22rem .6rem;
  background: rgba(15, 23, 42, .04);
  border-color: rgba(15, 23, 42, .08);
}

.page-shop .highlight-icon {
  width: 18px;
  height: 18px;
  background: rgba(15, 23, 42, .08);
  color: rgba(15, 23, 42, .6);
}

.page-shop .highlight-icon svg {
  width: 12px;
  height: 12px;
}

.shop-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .65rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .38rem .8rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: .85rem;
  background: rgba(229, 231, 235, .45);
  border: 1px solid rgba(229, 231, 235, .9);
  color: rgba(31, 41, 55, .92);
}

.chip-strong {
  background: rgba(250, 204, 21, .25);
  border-color: rgba(250, 204, 21, .55);
}

.chip-ghost {
  background: rgba(229, 231, 235, .35);
}

.shop-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: .85rem;
  align-items: center;
}

.page-shop .shop-hero__cta .btn-outline {
  border-color: rgba(15, 23, 42, .16);
  color: rgba(15, 23, 42, .7);
  font-weight: 600;
}

.page-shop .shop-hero__cta .btn-outline:hover,
.page-shop .shop-hero__cta .btn-outline:focus-visible {
  border-color: rgba(15, 23, 42, .22);
  background: rgba(15, 23, 42, .03);
  color: rgba(15, 23, 42, .85);
}

.shop-hero__metrics {
  display: grid;
  gap: .6rem;
}

.shop-metric {
  background: var(--card);
  border: 1px solid rgba(229, 231, 235, .9);
  border-radius: var(--radius-xl);
  padding: .8rem .95rem;
  box-shadow: var(--shadow-sm);
}

.shop-metric__label {
  font-size: .9rem;
  font-weight: 700;
  color: rgba(31, 41, 55, .86);
}

.shop-metric__value {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.shop-metric__hint {
  font-size: .92rem;
}

.shop-toolbar {
  margin-top: 1.35rem;
  background: var(--card);
  border: 1px solid rgba(229, 231, 235, .85);
  border-radius: var(--radius-xl);
  padding: 1.1rem 1.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.shop-toolbar__meta {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  flex-wrap: wrap;
  max-width: 520px;
  text-align: left;
}

.shop-toolbar__meta .fw-semibold {
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.shop-toolbar__meta .text-muted {
  line-height: 1.4;
}

.page-shop .shop-toolbar__meta .fw-semibold {
  font-size: .95rem;
}

.page-shop .shop-toolbar__meta .text-muted {
  font-size: .85rem;
  color: rgba(15, 23, 42, .6) !important;
}

.page-shop .shop-toolbar__meta {
  text-align: left;
}

.page-shop .shop-toolbar .form-select-sm {
  min-width: 0;
  width: auto;
  text-align: left;
}

.shop-toolbar__sort {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.shop-toolbar .form-select-sm {
  min-width: 190px;
}

.filter-dropdown {
  min-width: 190px;
}

.filter-dropdown .form-select-sm {
  min-width: 190px;
  text-align: left;
}

.shop-insights {
  margin-top: 1.4rem;
}

.shop-insights__header {
  margin-bottom: .85rem;
}

.shop-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  margin: .75rem 0 1rem;
}

.stat-tile {
  background: var(--card);
  border: 1px solid rgba(229, 231, 235, .9);
  border-radius: var(--radius-lg);
  padding: .85rem 1rem;
  box-shadow: var(--shadow-sm);
}

.stat-tile__value {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.stat-tile__label {
  font-size: .9rem;
  color: rgba(31, 41, 55, .75);
}

.shop-insights__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 991px) {
  .shop-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {

  .shop-stats,
  .shop-insights__grid {
    grid-template-columns: 1fr;
  }
}

.shop-insight-card.panel {
  padding: 1.1rem;
}

.shop-insight-card.panel:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
}

.shop-insight-card__head {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .45rem;
}

.insight-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 110, 253, .1);
  border: 1px solid rgba(13, 110, 253, .2);
  color: #0d6efd;
}

.insight-icon svg {
  width: 18px;
  height: 18px;
}

.shop-mini {
  font-size: .9rem;
  color: rgba(31, 41, 55, .75);
}

.shop-insights__footnote {
  margin-top: .8rem;
}

#shopGrid {
  scroll-margin-top: 120px;
}

.product-meta {
  font-weight: 700;
  display: flex;
  gap: .45rem .75rem;
  flex-wrap: wrap;
  margin: -.15rem 0 .85rem;
  color: rgba(31, 41, 55, .82);
}

.callout {
  background: var(--card);
  border: 1px solid rgba(229, 231, 235, .95);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.callout h2 {
  margin: 0 0 .6rem;
  letter-spacing: -0.03em;
}

.callout p {
  margin: 0 0 1.25rem;
  color: rgba(31, 41, 55, .9);
}

footer {
  padding: 2.25rem 0 90px;
  border-top: 1px solid rgba(229, 231, 235, .85);
}

body.theme-dark .footer-links {
  display: flex;
  gap: 1.25rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(31, 41, 55, .92);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  text-decoration: underline;
}

.page {
  padding: 1.5rem 0 3rem;
}

.page h1 {
  letter-spacing: -0.03em;
}

.page-legal .panel {
  padding: 1.5rem;
}

.legal-embed {
  width: 100%;
  height: 70vh;
  border: 1px solid rgba(229, 231, 235, .95);
  border-radius: var(--radius-lg);
  background: #ffffff;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.legal-content {
  line-height: 1.65;
  color: rgba(31, 41, 55, .9);
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 1.35rem 0 .6rem;
  letter-spacing: -0.01em;
}

.legal-content p {
  margin: 0 0 .85rem;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.2rem;
  margin: 0 0 .9rem;
}

.legal-content li {
  margin-bottom: .5rem;
}

.panel {
  background: var(--card);
  border: 1px solid rgba(229, 231, 235, .95);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 1.6rem;
  transition: transform .18s ease, box-shadow .18s ease;
}

.panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .08);
}

.page-auth {
  position: relative;
  overflow: hidden;
}

.page-auth>.container {
  position: relative;
  z-index: 1;
}

.auth-shell {
  max-width: 760px;
}

.page-auth .auth-hero.panel:hover {
  transform: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
}

.auth-hero>* {
  position: relative;
  z-index: 1;
}

.auth-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .75rem;
  margin-top: .75rem;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(31, 41, 55, .78);
}

body.theme-dark .auth-highlights {
  color: rgba(229, 231, 235, .82);
}

body.theme-dark .auth-alert.alert-danger {
  background: rgba(248, 113, 113, .16);
  border-color: rgba(248, 113, 113, .3);
  color: #fee2e2;
}

.auth-hero .eyebrow {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: .8rem;
}

.password-toggle-wrapper {
  position: relative;
}

.password-toggle-btn {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
  color: rgba(107, 114, 128, .85);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  transition: color .2s ease, background-color .2s ease;
  z-index: 2;
}

.password-toggle-btn:hover {
  color: var(--charcoal);
  background: rgba(229, 231, 235, .5);
}

.password-toggle-btn:focus {
  outline: 2px solid rgba(250, 204, 21, .4);
  outline-offset: 2px;
}

.password-toggle-btn svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke-width: 2;
}

.password-toggle-wrapper .form-control {
  padding-right: 2.75rem;
}

body.theme-dark .password-toggle-btn {
  color: rgba(156, 163, 175, .85);
}

body.theme-dark .password-toggle-btn:hover {
  color: #e5e7eb;
  background: rgba(55, 65, 81, .6);
}

.password-strength-meter {
  margin-top: 0.5rem;
  height: 3px;
  background: rgba(229, 231, 235, .8);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.password-strength-bar {
  height: 100%;
  width: 0;
  transition: width .3s ease, background-color .3s ease;
  border-radius: 999px;
}

.password-strength-bar[data-strength="weak"] {
  width: 25%;
  background: linear-gradient(90deg, #ef4444, #f87171);
}

.password-strength-bar[data-strength="fair"] {
  width: 50%;
  background: linear-gradient(90deg, #f97316, #fb923c);
}

.password-strength-bar[data-strength="good"] {
  width: 75%;
  background: linear-gradient(90deg, #eab308, #facc15);
}

.password-strength-bar[data-strength="strong"] {
  width: 100%;
  background: linear-gradient(90deg, #22c55e, #4ade80);
}

.password-strength-text {
  font-size: .8rem;
  margin-top: 0.35rem;
  font-weight: 600;
  transition: color .3s ease;
}

.password-strength-text[data-strength="weak"] {
  color: #ef4444;
}

.password-strength-text[data-strength="fair"] {
  color: #f97316;
}

.password-strength-text[data-strength="good"] {
  color: #eab308;
}

.password-strength-text[data-strength="strong"] {
  color: #22c55e;
}

body.theme-dark .password-strength-meter {
  background: rgba(55, 65, 81, .6);
}

body.theme-dark .password-strength-text[data-strength="weak"] {
  color: #fca5a5;
}

body.theme-dark .password-strength-text[data-strength="fair"] {
  color: #fdba74;
}

body.theme-dark .password-strength-text[data-strength="good"] {
  color: #fde047;
}

body.theme-dark .password-strength-text[data-strength="strong"] {
  color: #86efac;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: .8rem;
  color: rgba(107, 114, 128, .85);
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  background: rgba(229, 231, 235, .35);
  border-radius: 999px;
  border: 1px solid rgba(229, 231, 235, .6);
  white-space: nowrap;
  flex-shrink: 0;
}

.security-badge svg {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
}

body.theme-dark .security-badge {
  color: rgba(156, 163, 175, .9);
  background: rgba(55, 65, 81, .4);
  border-color: rgba(255, 255, 255, .12);
}

.page-auth .form-control.is-invalid {
  border-color: rgba(239, 68, 68, .6);
}

body.theme-dark .page-auth .form-control.is-invalid {
  border-color: rgba(239, 68, 68, .5);
}

.btn.is-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.btn.is-loading::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 50%;
  left: 50%;
  margin-left: -0.5rem;
  margin-top: -0.5rem;
  border: 2px solid var(--charcoal);
  border-radius: 50%;
  border-top-color: transparent;
  animation: btn-spinner .6s linear infinite;
}

@keyframes btn-spinner {
  to {
    transform: rotate(360deg);
  }
}



@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

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

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

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

@keyframes subtleGlow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(250, 204, 21, .08);
  }

  50% {
    box-shadow: 0 0 40px rgba(250, 204, 21, .14);
  }
}

.page-auth::before {
  content: "";
  position: absolute;
  inset: -30% -15% auto -15%;
  height: 55%;
  background: none;
  pointer-events: none;
  opacity: 0;
  z-index: 0;
}

body.theme-dark .page-auth::before {
  background: none;
  opacity: 0;
}

body.page-signin [data-basket-toast],
body.page-signup [data-basket-toast],
body.page-legal [data-basket-toast],
body.page-admin [data-basket-toast] {
  display: none !important;
  visibility: hidden !important;
}

.auth-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.8rem;
  background: var(--card);
  border: 1px solid rgba(229, 231, 235, .85);
  border-top: 2px solid rgba(250, 204, 21, .25);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
}

body.theme-dark .auth-hero {
  border-color: rgba(255, 255, 255, .08);
  background: rgba(17, 24, 39, .95);
  border: 1px solid rgba(255, 255, 255, .08);
  border-top: 2px solid rgba(250, 204, 21, .35);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
}

.auth-eyebrow {
  letter-spacing: 0.08em;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: rgba(107, 114, 128, .9);
  display: inline-block;
  position: relative;
  padding-left: 0.75rem;
}

.auth-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 12px;
  background: rgba(250, 204, 21, .85);
  border-radius: 2px;
}

body.theme-dark .auth-eyebrow {
  color: rgba(156, 163, 175, .95);
}

.auth-hero .hero-title {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .03);
}

body.theme-dark .auth-hero .hero-title {
  text-shadow: 0 2px 6px rgba(0, 0, 0, .35);
}

.auth-hero>p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: rgba(31, 41, 55, .85);
  line-height: 1.6;
}

body.theme-dark .auth-hero>p {
  color: rgba(226, 232, 240, .88);
}

.auth-panel {
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
  border: 1px solid rgba(229, 231, 235, .85);
  background: var(--card);
  transition: transform .25s cubic-bezier(.4, 0, .2, 1),
    box-shadow .25s cubic-bezier(.4, 0, .2, 1);
}

.auth-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

body.theme-dark .auth-panel {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
  border-color: rgba(255, 255, 255, .08);
  background: rgba(17, 24, 39, .95);
}

body.theme-dark .auth-panel:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, .4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.row .form-group {
  margin-bottom: 0;
}

.row.g-3 {
  row-gap: 1.25rem;
}

.page-auth .form-check {
  padding-left: 1.75rem;
}

.page-auth .form-check-input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  border: 1.5px solid rgba(229, 231, 235, .9);
  transition: all .2s ease;
}

.page-auth .form-check-input:checked {
  background-color: var(--yellow);
  border-color: var(--yellow);
}

.page-auth .form-check-input:focus {
  border-color: rgba(250, 204, 21, .75);
  box-shadow: 0 0 0 .2rem rgba(250, 204, 21, .18);
}

.page-auth .form-check-label {
  font-size: 0.9rem;
  color: rgba(31, 41, 55, .88);
  line-height: 1.5;
}

body.theme-dark .page-auth .form-check-input {
  background-color: rgba(17, 24, 39, .9);
  border-color: rgba(255, 255, 255, .2);
}

body.theme-dark .page-auth .form-check-input:checked {
  background-color: var(--yellow);
  border-color: var(--yellow);
}

body.theme-dark .page-auth .form-check-label {
  color: rgba(226, 232, 240, .90);
}

.page-auth .form-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  color: rgba(31, 41, 55, .92);
  margin-bottom: 0;
}

body.theme-dark .page-auth .form-label {
  color: rgba(226, 232, 240, .95);
}

.page-auth .form-control {
  border: 1px solid rgba(229, 231, 235, .85);
  border-top: 2px solid transparent;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, .025);
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
}

.page-auth .input-icon-group .form-control {
  padding-left: 2.85rem;
}

.page-auth .password-toggle-wrapper .form-control {
  padding-right: 3rem;
}

.page-auth .form-control:focus {
  transform: scale(1.005);
  border-top-color: rgba(250, 204, 21, .5);
  border-color: rgba(250, 204, 21, .75);
  box-shadow: 0 0 0 .25rem rgba(250, 204, 21, .18),
    0 12px 28px rgba(250, 204, 21, .12),
    inset 0 2px 4px rgba(0, 0, 0, .02);
}

.page-auth .form-control::placeholder {
  color: rgba(31, 41, 55, .62);
  font-weight: 500;
  font-style: italic;
}

body.theme-dark .page-auth .form-control {
  border-color: rgba(255, 255, 255, .15);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, .08);
}

body.theme-dark .page-auth .form-control:focus {
  border-top-color: rgba(250, 204, 21, .5);
  border-color: rgba(250, 204, 21, .7);
  box-shadow: 0 0 0 .25rem rgba(250, 204, 21, .22),
    0 12px 28px rgba(250, 204, 21, .15),
    inset 0 2px 4px rgba(0, 0, 0, .05);
}

body.theme-dark .page-auth .form-control::placeholder {
  color: rgba(156, 163, 175, .65);
}

.page-auth .form-control.is-valid {
  border-color: rgba(34, 197, 94, .6);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' 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-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
  box-shadow: 0 0 0 .2rem rgba(34, 197, 94, .12),
    inset 0 2px 4px rgba(0, 0, 0, .02);
}

body.theme-dark .page-auth .form-control.is-valid {
  border-color: rgba(34, 197, 94, .5);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2386efac' 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");
  box-shadow: 0 0 0 .2rem rgba(34, 197, 94, .18),
    inset 0 2px 4px rgba(0, 0, 0, .05);
}

.page-auth .btn-primary {
  position: relative;
  overflow: hidden;
  transition: all .2s cubic-bezier(.4, 0, .2, 1);
}

.page-auth .btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .12);
  opacity: 0;
  transition: opacity .2s ease;
}

.page-auth .btn-primary:hover {
  transform: translateY(-1px);
}

.page-auth .btn-primary:hover::before {
  opacity: 1;
}

.page-auth .btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.forgot-password-link {
  color: rgba(31, 41, 55, .90);
  text-decoration: none;
  position: relative;
  font-weight: 600;
  transition: color .2s ease;
}

.forgot-password-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: rgba(250, 204, 21, .8);
  transition: width .25s ease;
}

.forgot-password-link:hover {
  color: rgba(31, 41, 55, .98);
}

.forgot-password-link:hover::after {
  width: 100%;
}

body.theme-dark .forgot-password-link {
  color: rgba(226, 232, 240, .90);
}

body.theme-dark .forgot-password-link:hover {
  color: rgba(255, 255, 255, .98);
}

.page-auth .alert {
  animation: slideDown .4s cubic-bezier(.4, 0, .2, 1);
}

.auth-alert.alert-success {
  background: rgba(34, 197, 94, .10);
  border-left: 3px solid rgba(250, 204, 21, .6);
  box-shadow: 0 4px 12px rgba(34, 197, 94, .1);
}

body.theme-dark .auth-alert.alert-success {
  border-color: rgba(34, 197, 94, .28);
  color: #d1fae5;
  background: linear-gradient(135deg,
      rgba(34, 197, 94, .18),
      rgba(34, 197, 94, .10));
  border-left-color: rgba(250, 204, 21, .5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
}

.alert-danger li::before {
  content: "⚠ ";
  margin-right: 0.35rem;
  color: rgba(220, 38, 38, .9);
}

body.theme-dark .alert-danger li::before {
  color: rgba(252, 165, 165, .95);
}

.auth-form-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.auth-trust-footer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(229, 231, 235, .6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.trust-text {
  color: rgba(107, 114, 128, .85);
  font-weight: 500;
  white-space: nowrap;
}

body.theme-dark .auth-trust-footer {
  border-top-color: rgba(255, 255, 255, .10);
}

body.theme-dark .trust-text {
  color: rgba(156, 163, 175, .88);
}

@media (min-width: 576px) {
  .auth-hero .d-flex {
    align-items: flex-start;
  }

  .auth-hero .security-badge {
    margin-top: 0.1rem;
  }
}

.auth-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  align-items: center;
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(31, 41, 55, .85);
  padding: 0.45rem 0.8rem;
  background: rgba(229, 231, 235, .35);
  border-radius: 999px;
  border: 1px solid rgba(229, 231, 235, .5);
  transition: all .2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.feature-chip svg {
  width: 0.85rem;
  height: 0.85rem;
  stroke-width: 2.5;
  flex-shrink: 0;
  color: rgba(250, 204, 21, .9);
}

.feature-chip:hover {
  background: rgba(229, 231, 235, .45);
  border-color: rgba(229, 231, 235, .6);
  transform: translateY(-1px);
}

body.theme-dark .feature-chip {
  color: rgba(226, 232, 240, .90);
  background: rgba(55, 65, 81, .4);
  border-color: rgba(255, 255, 255, .12);
}

body.theme-dark .feature-chip svg {
  color: rgba(250, 204, 21, .85);
}

body.theme-dark .feature-chip:hover {
  background: rgba(55, 65, 81, .5);
  border-color: rgba(255, 255, 255, .16);
}

@media (max-width: 991px) {
  .auth-shell {
    max-width: 100%;
  }

  .auth-hero {
    padding: 1.35rem 1.5rem;
  }

  .auth-panel {
    padding: 1.5rem;
  }

  .auth-eyebrow {
    font-size: 0.72rem;
  }

  .auth-hero .hero-title {
    font-size: clamp(1.8rem, 3.5vw, 2.3rem);
  }
}

@media (max-width: 767px) {
  .page-auth {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }

  .auth-hero {
    padding: 1.25rem 1.35rem;
    border-radius: 1rem;
  }

  .auth-panel {
    padding: 1.35rem 1.25rem;
    border-radius: 1rem;
  }

  .auth-hero .hero-title {
    font-size: clamp(1.7rem, 6vw, 2.1rem);
    margin-bottom: 0.65rem;
  }

  .auth-hero>p {
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
  }

  .auth-eyebrow {
    font-size: 0.7rem;
    padding-left: 0.65rem;
  }

  .auth-eyebrow::before {
    width: 2.5px;
    height: 11px;
  }

  .page-auth .form-control {
    padding: 0.95rem 1.05rem;
    font-size: 1rem;
    border-radius: 0.875rem;
  }

  .page-auth .input-icon-group .form-control {
    padding-left: 2.7rem;
  }

  .input-icon {
    left: 0.95rem;
  }

  .input-icon svg {
    width: 1rem;
    height: 1rem;
  }

  .page-auth .password-toggle-wrapper .form-control {
    padding-right: 2.95rem;
  }

  .form-group {
    margin-bottom: 1.25rem;
    gap: 0.55rem;
  }

  .page-auth .form-label {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }

  .page-auth .btn {
    min-height: 48px;
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
  }

  .password-toggle-wrapper .form-control {
    padding-right: 2.85rem;
  }

  .password-toggle-btn {
    right: 0.65rem;
    padding: 0.35rem;
  }

  .password-toggle-btn svg {
    width: 1.05rem;
    height: 1.05rem;
  }

  .security-badge {
    font-size: 0.75rem;
    padding: 0.32rem 0.6rem;
  }

  .security-badge svg {
    width: 0.85rem;
    height: 0.85rem;
  }

  .feature-chip {
    font-size: 0.75rem;
    padding: 0.4rem 0.7rem;
  }

  .feature-chip svg {
    width: 0.8rem;
    height: 0.8rem;
  }

  .auth-features {
    gap: 0.45rem;
    margin-top: 0.85rem;
  }

  .auth-alert {
    font-size: 0.85rem;
    padding: 0.7rem 0.85rem;
  }

  .auth-trust-footer {
    margin-top: 1.25rem;
    padding-top: 1rem;
    font-size: 0.8rem;
  }

  .password-strength-meter {
    margin-top: 0.45rem;
    height: 2.5px;
  }

  .password-strength-text {
    font-size: 0.75rem;
    margin-top: 0.3rem;
  }

  .row.g-3 {
    row-gap: 1.15rem;
  }

  .page-auth .form-check-input {
    width: 1.1rem;
    height: 1.1rem;
  }
}

@media (max-width: 575px) {
  .page-auth {
    padding-top: 1.25rem;
  }

  .auth-shell {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .auth-hero {
    padding: 1.15rem 1.2rem;
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    border-radius: 0.875rem;
  }

  .auth-panel {
    padding: 1.25rem 1.15rem;
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    border-radius: 0.875rem;
  }

  .auth-hero .hero-title {
    font-size: clamp(1.6rem, 7.5vw, 1.95rem);
    line-height: 1.2;
    margin-bottom: 0.6rem;
  }

  .auth-hero>p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
  }

  .auth-eyebrow {
    font-size: 0.68rem;
    margin-bottom: 0.5rem;
  }

  .page-auth .form-control {
    padding: 0.9rem 1rem;
    font-size: 16px;
    border-radius: 0.875rem;
  }

  .page-auth .input-icon-group .form-control {
    padding-left: 2.6rem;
  }

  .input-icon {
    left: 0.9rem;
  }

  .input-icon svg {
    width: 0.95rem;
    height: 0.95rem;
  }

  .page-auth .password-toggle-wrapper .form-control {
    padding-right: 2.85rem;
  }

  .form-group {
    margin-bottom: 1.15rem;
  }

  .page-auth .form-label {
    font-size: 0.72rem;
    margin-bottom: 0.5rem;
  }

  .page-auth .btn {
    min-height: 50px;
    padding: 0.85rem 1.15rem;
    font-size: 0.95rem;
    font-weight: 700;
  }

  .auth-form-actions {
    flex-direction: column;
    gap: 0.65rem;
  }

  .auth-form-actions .btn {
    width: 100%;
  }

  .forgot-password-link {
    width: 100%;
    text-align: center;
    padding: 0.5rem;
    margin: 0;
  }

  .security-badge {
    font-size: 0.72rem;
    padding: 0.3rem 0.55rem;
  }

  .security-badge svg {
    width: 0.8rem;
    height: 0.8rem;
  }

  .feature-chip {
    font-size: 0.72rem;
    padding: 0.38rem 0.65rem;
  }

  .feature-chip svg {
    width: 0.75rem;
    height: 0.75rem;
  }

  .auth-features {
    gap: 0.4rem;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .auth-alert {
    font-size: 0.82rem;
    padding: 0.65rem 0.8rem;
    border-radius: 0.75rem;
  }

  .auth-trust-footer {
    flex-direction: column;
    text-align: center;
    gap: 0.6rem;
    margin-top: 1.15rem;
    padding-top: 0.95rem;
    font-size: 0.78rem;
  }

  .trust-text {
    font-size: 0.78rem;
  }

  .password-strength-text {
    font-size: 0.72rem;
  }

  .form-check {
    margin-top: 1rem;
  }

  .form-check-label {
    font-size: 0.88rem;
  }

  .page-auth .mt-4 {
    margin-top: 1.25rem !important;
  }

  .page-auth .alert.auth-alert {
    margin-bottom: 0.85rem;
  }

  .row.g-3 {
    row-gap: 1.1rem;
  }

  .page-auth .form-check {
    padding-left: 1.6rem;
  }

  .page-auth .form-check-input {
    width: 1.05rem;
    height: 1.05rem;
  }
}

@media (max-width: 375px) {
  .auth-hero {
    padding: 1rem 1.1rem;
  }

  .auth-panel {
    padding: 1.15rem 1rem;
  }

  .auth-hero .hero-title {
    font-size: clamp(1.5rem, 8vw, 1.85rem);
  }

  .auth-eyebrow {
    font-size: 0.65rem;
  }

  .page-auth .form-control {
    padding: 0.85rem 0.95rem;
  }

  .page-auth .btn {
    padding: 0.8rem 1rem;
  }

  .auth-features {
    flex-direction: column;
    align-items: stretch;
  }

  .feature-chip {
    justify-content: center;
  }
}

@media (min-width: 1200px) {
  .auth-shell {
    max-width: 680px;
  }

  .auth-hero {
    padding: 1.6rem 1.8rem;
  }

  .auth-panel {
    padding: 1.75rem;
  }

  .auth-hero .hero-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
  }

  .page-auth .form-control {
    padding: 0.9rem 1.1rem;
  }
}

.page-auth .form-control,
.page-auth .btn,
.password-toggle-btn,
.feature-chip,
.forgot-password-link {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.page-auth .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {

  .page-auth input,
  .page-auth select,
  .page-auth textarea {
    font-size: 16px !important;
  }
}

@media (prefers-reduced-motion: reduce) {

  .page-auth .alert,
  .page-auth .form-control,
  .page-auth .btn-primary,
  .auth-panel,
  .feature-chip,
  .forgot-password-link {
    animation: none !important;
    transition: none !important;
  }
}

@media print {

  .page-auth::before,
  .auth-hero::after {
    display: none;
  }

  .auth-panel {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

.donor-celebrate-wrap {
  position: relative;
}

.donor-celebrate {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .92));
  border: 1px solid rgba(13, 110, 253, .2);
  box-shadow: 0 22px 44px rgba(15, 23, 42, .12), 0 10px 22px rgba(13, 110, 253, .08);
  color: #0f172a;
  isolation: isolate;
  text-align: center;
  padding: 1.55rem;
}

.donor-celebrate .spotlight-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  margin: 0 auto .5rem;
  padding: .28rem .7rem;
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(13, 110, 253, .12);
  color: #1d4ed8;
  border: 1px solid rgba(13, 110, 253, .2);
}

.donor-headline {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.donor-name {
  font-weight: 800;
  color: #1d4ed8;
}

.donor-impact {
  font-size: .95rem;
  color: rgba(31, 41, 55, .86);
}

.donor-meta {
  font-weight: 600;
  color: rgba(71, 85, 105, .88);
}

.donor-impact,
.donor-meta,
.donor-cta {
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.donor-cta {
  color: rgba(31, 41, 55, .82);
}

.donor-cta a {
  color: #1d4ed8;
  text-decoration: none;
}

.donor-cta a:hover {
  text-decoration: underline;
}

.donor-celebrate::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 20% 20%, rgba(13, 110, 253, .2), transparent 45%), radial-gradient(circle at 80% 12%, rgba(250, 204, 21, .22), transparent 42%);
  filter: blur(10px);
  opacity: .5;
  animation: haloGlow 8s ease-in-out infinite;
  pointer-events: none;
}

.donor-celebrate::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13, 110, 253, .12), rgba(255, 255, 255, 0.02), rgba(250, 204, 21, .12));
  mix-blend-mode: soft-light;
  opacity: .5;
  animation: sheen 7s linear infinite;
  pointer-events: none;
}

.donor-celebrate .ribbon {
  position: absolute;
  inset: -20% -20% auto auto;
  height: 120px;
  width: 120px;
  background: radial-gradient(circle at 30% 30%, rgba(13, 110, 253, .35), rgba(13, 110, 253, 0));
  opacity: .35;
  pointer-events: none;
}

.donor-celebrate .sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.donor-celebrate .sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  animation: sparkle 2.5s ease-in-out infinite;
}

.donor-celebrate .sparkle.s1 {
  top: 12%;
  left: 8%;
  animation-delay: .1s;
}

.donor-celebrate .sparkle.s2 {
  top: 18%;
  right: 12%;
  animation-delay: .35s;
}

.donor-celebrate .sparkle.s3 {
  bottom: 10%;
  left: 16%;
  animation-delay: .55s;
}

.donor-celebrate .glow {
  position: absolute;
  inset: -30% -30%;
  background: radial-gradient(circle at 40% 30%, rgba(250, 204, 21, .28), rgba(250, 204, 21, 0));
  pointer-events: none;
  z-index: -1;
}

.donor-celebrate .confetti {
  position: absolute;
  width: 8px;
  height: 16px;
  border-radius: 2px;
  opacity: 0;
  animation: confettiPop 2.4s ease-in-out infinite;
}

.donor-celebrate .confetti-1 {
  left: 6%;
  top: -6%;
  background: #facc15;
  animation-delay: .1s;
}

.donor-celebrate .confetti-2 {
  right: 10%;
  top: -8%;
  background: #0ea5e9;
  animation-delay: .25s;
}

.donor-celebrate .confetti-3 {
  left: 48%;
  top: -10%;
  background: #ef4444;
  animation-delay: .4s;
}

.donor-celebrate .confetti-4 {
  right: 32%;
  top: -12%;
  background: #8b5cf6;
  animation-delay: .18s;
}

.donor-celebrate .confetti-5 {
  left: 28%;
  top: -14%;
  background: #22c55e;
  animation-delay: .3s;
}

.donor-celebrate .confetti-6 {
  right: 18%;
  top: -16%;
  background: #f97316;
  animation-delay: .22s;
}

.donor-celebrate .confetti-7 {
  left: 14%;
  top: -18%;
  background: #ec4899;
  animation-delay: .28s;
}

.donor-celebrate .confetti-8 {
  left: 60%;
  top: -20%;
  background: #22d3ee;
  animation-delay: .32s;
}

.donor-celebrate .confetti-9 {
  right: 24%;
  top: -22%;
  background: #f9a8d4;
  animation-delay: .27s;
}

.donor-medal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff7d6, #facc15);
  border: 1px solid rgba(250, 204, 21, .6);
  color: #0f172a;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(250, 204, 21, .35);
  animation: medalPulse 3s ease-in-out infinite;
}

@keyframes confettiPop {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(0deg) scale(.85);
  }

  12% {
    opacity: 1;
  }

  60% {
    transform: translateY(20px) rotate(22deg) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(44px) rotate(40deg) scale(1.05);
  }
}

@keyframes sparkle {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }

  30% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

@keyframes haloGlow {

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

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

@keyframes sheen {
  0% {
    transform: translateX(-45%);
  }

  100% {
    transform: translateX(45%);
  }
}

@keyframes medalPulse {

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

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

@media (prefers-reduced-motion: reduce) {
  .donor-celebrate .confetti {
    animation: none;
    opacity: 0;
  }

  .donor-celebrate .sparkle {
    animation: none;
  }

  .donor-celebrate::before,
  .donor-celebrate::after {
    animation: none;
  }

  .donor-medal {
    animation: none;
  }
}

.form-control {
  border-radius: 1rem;
  border-color: rgba(229, 231, 235, .95);
  padding: .85rem 1rem;
}

.form-control:focus {
  border-color: rgba(250, 204, 21, .9);
  box-shadow: 0 0 0 .25rem rgba(250, 204, 21, .18);
}

.track-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .65rem;
}

@media (max-width: 575px) {
  .track-steps {
    grid-template-columns: 1fr;
    gap: .5rem;
  }
}

.track-steps li {
  border: 1px solid rgba(229, 231, 235, .95);
  border-radius: 1rem;
  padding: .75rem .9rem;
  background: rgba(229, 231, 235, .25);
  font-weight: 800;
  text-align: center;
  color: rgba(31, 41, 55, .9);
}

.track-steps li.active {
  background: rgba(250, 204, 21, .18);
  border-color: rgba(250, 204, 21, .45);
  color: rgba(31, 41, 55, .98);
}

.track-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1rem;
  margin-top: 1rem;
  font-weight: 700;
  color: rgba(31, 41, 55, .9);
}

/* Preloader - hidden from LCP by default, shown via JS only if needed */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--offwhite);
  display: none;
  /* Hidden by default to prevent LCP impact */
  align-items: center;
  justify-content: center;
  content-visibility: hidden;
  /* Additional hint to browser */
  contain: strict;
  /* Isolate from layout calculations */
  opacity: 0;
  transition: opacity 0.15s ease-in;
}

/* Only show if explicitly enabled via JS for slow connections */
#preloader[data-show="true"] {
  display: flex;
  opacity: 1;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.preloader-logo {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid rgba(229, 231, 235, .95);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* SVG styling instead of img */
.preloader-logo svg {
  width: 60px;
  height: 60px;
  display: block;
}

/* Legacy support for img if fallback is needed */
.preloader-logo img {
  width: 60px;
  height: auto;
  display: block;
}

.dots {
  display: flex;
  gap: .4rem;
}

.dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  animation: bounce 1s infinite ease-in-out;
}

.dots span:nth-child(2) {
  animation-delay: .12s;
}

.dots span:nth-child(3) {
  animation-delay: .24s;
}

@keyframes bounce {

  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: .6
  }

  40% {
    transform: translateY(-8px);
    opacity: 1
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }

  .btn,
  .product-card,
  .product-media,
  .swipe-card,
  .swipe-media img,
  .swipe-icon,
  .swipe-badge,
  .badge-pill,
  .product-trust .trust-chip {
    transition: none !important;
  }

  .product-card.has-accent::before,
  .product-card.has-accent::after {
    animation: none !important;
  }

  .product-card.reveal,
  .product-card.reveal.is-visible {
    animation: none !important;
    transform: none !important;
  }

  .product-media::after {
    animation: none !important;
  }

  .impact-goal-banner::before {
    animation: none !important;
  }

  .swipe-icon {
    animation: none !important;
  }

  .feature-icon {
    animation: none !important;
  }

  .hero .reveal .stat-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .dots span {
    animation: none;
  }

  .hero::before {
    animation: none;
  }
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem .8rem;
  border-radius: .7rem;
  font-weight: 700;
  border: 1px solid rgba(15, 23, 42, .12);
  background: rgba(255, 255, 255, .85);
  color: var(--charcoal);
  line-height: 1;
}

.theme-toggle:hover {
  background: rgba(15, 23, 42, .06);
}

.theme-toggle__icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(250, 204, 21, .18);
}

.theme-toggle__state {
  font-size: .8em;
  color: rgba(31, 41, 55, .86);
}

.theme-toggle.is-active {
  border-color: rgba(250, 204, 21, .65);
  box-shadow: none;
}

.theme-toggle.is-active .theme-toggle__state {
  color: rgba(31, 41, 55, .98);
}

@media (min-width: 992px) {
  .navbar-nav .theme-toggle {
    padding: .35rem .6rem;
    gap: .35rem;
    font-size: .85rem;
  }

  .navbar-nav .theme-toggle__text {
    display: none;
  }

  .navbar-nav .theme-toggle__icon {
    width: 9px;
    height: 9px;
    box-shadow: 0 0 0 4px rgba(250, 204, 21, .16);
  }

  .navbar-nav .theme-toggle__state {
    font-size: .75em;
  }
}

@media (max-width: 575px) {
  .theme-toggle {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 1.7rem;
  }
}

body.theme-dark {
  --offwhite: #0c111b;
  --charcoal: #f1f5f9;
  --card: #111827;
  --lightgray: #1f2937;
  --shadow: 0 16px 38px rgba(0, 0, 0, .38);
  --shadow-sm: 0 12px 28px rgba(0, 0, 0, .32);
  background: var(--offwhite);
  color: var(--charcoal);
}

body.theme-dark .text-muted {
  color: rgba(241, 245, 249, .88) !important;
}

body.theme-dark a:not(.btn):not(.nav-link):not(.dropdown-item) {
  color: #b3d4ff;
}

body.theme-dark .site-header {
  background: rgba(12, 17, 27, .9);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .35);
}

body.theme-dark .site-header.is-scrolled {
  border-bottom: 1px solid rgba(148, 163, 184, .28);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .45);
  background: rgba(12, 17, 27, .96);
  border-color: rgba(255, 255, 255, .12);
}

body.theme-dark .brand {
  color: var(--charcoal);
}

body.theme-dark .brand .dot {
  color: var(--yellow);
}

body.theme-dark .nav-link {
  color: rgba(229, 231, 235, .92) !important;
}

body.theme-dark .nav-link:hover::after {
  opacity: 0.6;
}

body.theme-dark .nav-link.active::after {
  opacity: 1;
}

body.theme-dark .navbar-toggler {
  background: rgba(15, 23, 42, .9);
  border-color: rgba(255, 255, 255, .18) !important;
}

body.theme-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
  body.theme-dark .navbar-collapse {
    background: rgba(12, 17, 27, .95);
    border-color: rgba(255, 255, 255, .12);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .38);
  }
}

body.theme-dark .hero::before {
  background: radial-gradient(closest-side, rgba(59, 130, 246, .14), rgba(59, 130, 246, 0)), radial-gradient(closest-side, rgba(255, 255, 255, .04), rgba(255, 255, 255, 0));
}

body.theme-dark .hero-bullets {
  color: rgba(229, 231, 235, .86);
}

body.theme-dark .hero-bullets li::before {
  color: rgba(229, 231, 235, .62);
}

body.theme-dark .hero-art {
  color: rgba(229, 231, 235, .75);
}

body.theme-dark .product-card {
  border-color: rgba(148, 163, 184, .2);
  background: radial-gradient(120% 90% at 0% 0%, rgba(15, 23, 42, .6), rgba(15, 23, 42, 0) 60%),
    linear-gradient(180deg, rgba(15, 23, 42, .96), rgba(10, 15, 25, .96));
  box-shadow: 0 20px 40px rgba(0, 0, 0, .55);
}

body.theme-dark .product-card::before {
  opacity: .75;
}

body.theme-dark .product-card::after {
  border-color: rgba(148, 163, 184, .14);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .45);
}

body.theme-dark .stat-card {
  background: rgba(24, 30, 46, 0.95);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

body.theme-dark .stat-icon {
  background: linear-gradient(140deg, rgba(59, 130, 246, .25), rgba(250, 204, 21, .22));
  border-color: rgba(59, 130, 246, .4);
  color: #bfdbfe;
  box-shadow: 0 8px 16px rgba(37, 99, 235, .3);
}

body.theme-dark .stat-card .label {
  color: rgba(229, 231, 235, 0.9);
}

body.theme-dark .how-card {
  background: rgba(17, 24, 39, 0.85);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

body.theme-dark .section-ice {
  background: transparent;
}

body.theme-dark .section-sun {
  background: transparent;
}

body.theme-dark .section-ice::before {
  background: none;
  opacity: 0;
}

body.theme-dark .section-sun::before {
  background: none;
  opacity: 0;
}

body.page-home.theme-dark main {
  background: transparent;
}

body.page-home.theme-dark .products-wrap {
  background: #0f172a;
}

body.page-home.theme-dark .products-wrap::before {
  background: none;
  opacity: 0;
}

body.page-home.theme-dark .products-wrap .container {
  background: rgba(15, 23, 42, .92);
  border-color: rgba(255, 255, 255, .08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
}

body.page-home.theme-dark .products-wrap .container::before {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .06) inset;
}

body.page-home.theme-dark .products-wrap .container::after {
  background: rgba(250, 204, 21, .35);
  opacity: .45;
}

body.page-home.theme-dark .products-wrap .product-card {
  background: rgba(15, 23, 42, .92);
  border-color: rgba(255, 255, 255, .08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .45);
}

body.page-home.theme-dark .products-wrap .product-card::before {
  background: rgba(255, 255, 255, .18);
  opacity: .65;
}

body.page-home.theme-dark .products-wrap .product-card:hover,
body.page-home.theme-dark .products-wrap .product-card:focus-within {
  box-shadow: 0 14px 30px rgba(0, 0, 0, .45);
  border-color: rgba(255, 255, 255, .08);
}

body.page-home.theme-dark .products-wrap .product-media {
  background: rgba(15, 23, 42, .75);
  border-color: rgba(255, 255, 255, .1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .4);
}

body.page-home.theme-dark .products-wrap .badge-pill {
  background: rgba(15, 23, 42, .9);
  border-color: rgba(255, 255, 255, .18);
  color: rgba(229, 231, 235, .9);
  box-shadow: 0 3px 8px rgba(0, 0, 0, .35);
}

body.page-home.theme-dark .products-wrap .badge-pill.badge-yellow {
  background: rgba(250, 204, 21, .2);
  border-color: rgba(250, 204, 21, .35);
  color: rgba(250, 250, 249, .95);
}

body.page-home.theme-dark .products-wrap .product-card:hover .badge-pill,
body.page-home.theme-dark .products-wrap .product-card:focus-within .badge-pill {
  background: rgba(15, 23, 42, .9);
  border-color: rgba(255, 255, 255, .18);
  color: rgba(229, 231, 235, .9);
  box-shadow: 0 3px 8px rgba(0, 0, 0, .35);
}

body.page-home.theme-dark .products-wrap .product-card:hover .badge-pill.badge-yellow,
body.page-home.theme-dark .products-wrap .product-card:focus-within .badge-pill.badge-yellow {
  background: rgba(250, 204, 21, .2);
  border-color: rgba(250, 204, 21, .35);
  color: rgba(250, 250, 249, .95);
}

body.page-home.theme-dark .products-wrap .product-bestfor,
body.page-home.theme-dark .products-wrap .product-desc {
  color: rgba(226, 232, 240, .82);
}

body.page-home.theme-dark .products-wrap .product-meta {
  color: rgba(148, 163, 184, .8);
}

body.page-home.theme-dark .products-wrap .product-meta span::before {
  background: rgba(148, 163, 184, .55);
}

body.page-home.theme-dark .products-wrap .product-link {
  color: rgba(226, 232, 240, .9);
}

body.page-home.theme-dark .products-wrap .product-impact-line {
  color: rgba(148, 163, 184, .85);
}

body.theme-dark .page-shop .products-grid .product-card {
  background: rgba(17, 24, 39, .95);
  border-color: rgba(255, 255, 255, .08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
}

body.theme-dark .page-shop .products-grid .product-card::before {
  background: rgba(255, 255, 255, .15);
  opacity: .6;
}

body.theme-dark .page-shop .products-grid .product-card:hover,
body.theme-dark .page-shop .products-grid .product-card:focus-within {
  box-shadow: 0 6px 20px rgba(0, 0, 0, .4);
  border-color: rgba(255, 255, 255, .12);
}

body.theme-dark .page-shop .products-grid .product-card.has-accent:hover,
body.theme-dark .page-shop .products-grid .product-card.has-accent:focus-within {
  border-color: rgba(250, 204, 21, .2);
}

body.theme-dark .page-shop .products-grid .product-media {
  background: rgba(15, 23, 42, .6);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}

body.theme-dark .page-shop .products-grid .product-card:hover .product-media,
body.theme-dark .page-shop .products-grid .product-card:focus-within .product-media {
  border-color: rgba(255, 255, 255, .16);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .35);
}

body.theme-dark .page-shop .products-grid .badge-pill {
  background: rgba(17, 24, 39, .95);
  border-color: rgba(255, 255, 255, .2);
  color: rgba(229, 231, 235, .95);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}

body.theme-dark .page-shop .products-grid .badge-pill.badge-yellow {
  background: rgba(250, 204, 21, .2);
  border-color: rgba(250, 204, 21, .4);
  color: rgba(254, 252, 232, .98);
}

body.theme-dark .page-shop .products-grid .product-card:hover .badge-pill,
body.theme-dark .page-shop .products-grid .product-card:focus-within .badge-pill {
  background: rgba(17, 24, 39, 1);
  border-color: rgba(255, 255, 255, .25);
  color: rgba(229, 231, 235, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, .35);
}

body.theme-dark .page-shop .products-grid .product-card:hover .badge-pill.badge-yellow,
body.theme-dark .page-shop .products-grid .product-card:focus-within .badge-pill.badge-yellow {
  background: rgba(250, 204, 21, .3);
  border-color: rgba(250, 204, 21, .5);
  color: rgba(254, 252, 232, 1);
}

body.theme-dark .page-shop .products-grid .product-title {
  color: rgba(248, 250, 252, .98);
}

body.theme-dark .page-shop .products-grid .product-bestfor {
  color: rgba(156, 163, 175, .88);
}

body.theme-dark .page-shop .products-grid .product-desc {
  color: rgba(209, 213, 219, .85);
}

body.theme-dark .page-shop .products-grid .product-footer {
  border-top-color: rgba(255, 255, 255, .08);
}

body.theme-dark .page-shop .products-grid .product-link {
  color: rgba(209, 213, 219, .9);
}

body.theme-dark .page-shop .products-grid .product-link:hover {
  color: rgba(248, 250, 252, 1);
}

body.page-home.theme-dark main>section {
  background: transparent;
}

body.page-home.theme-dark .section-ice,
body.page-home.theme-dark .section-sun {
  background: transparent;
}

body.page-home.theme-dark .section-ice::before,
body.page-home.theme-dark .section-sun::before {
  opacity: 0;
  background: none;
}

body.theme-dark .feature-card {
  background: linear-gradient(180deg, rgba(15, 23, 42, .96), rgba(15, 23, 42, .88));
  border-color: rgba(59, 130, 246, .25);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .4);
}

body.theme-dark .feature-card::after {
  opacity: .45;
}

body.theme-dark .feature-icon {
  color: #bfdbfe;
  background: linear-gradient(140deg, rgba(59, 130, 246, .28), rgba(250, 204, 21, .2));
  border-color: rgba(59, 130, 246, .4);
  box-shadow: 0 10px 18px rgba(59, 130, 246, .18);
}

body.theme-dark .quote-panel {
  background: linear-gradient(135deg, rgba(59, 130, 246, .2), rgba(250, 204, 21, .12)), rgba(15, 23, 42, .92);
  border-color: rgba(59, 130, 246, .3);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .48);
}

body.theme-dark .quote-card {
  background: rgba(12, 17, 27, .9);
  border-color: rgba(59, 130, 246, .25);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .4);
}

body.theme-dark .quote-label {
  color: rgba(191, 219, 254, .9);
}

body.theme-dark .quote-pill {
  background: rgba(12, 17, 27, .9);
  color: rgba(229, 231, 235, .92);
  border-color: rgba(59, 130, 246, .45);
}

body.theme-dark .newsletter-panel {
  background: linear-gradient(140deg, rgba(59, 130, 246, .2), rgba(250, 204, 21, .16)), rgba(15, 23, 42, .92);
  border-color: rgba(59, 130, 246, .35);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .48);
}

body.theme-dark .faq-panel {
  background: linear-gradient(180deg, rgba(15, 23, 42, .96), rgba(15, 23, 42, .88));
  border-color: rgba(255, 255, 255, .12);
}

body.theme-dark .faq-panel details {
  border-bottom-color: rgba(255, 255, 255, .12);
}

body.theme-dark .faq-icon {
  color: #bfdbfe;
  background: rgba(59, 130, 246, .2);
  border-color: rgba(59, 130, 246, .4);
}

body.theme-dark .swipe-card {
  border-color: rgba(148, 163, 184, .2);
  background: linear-gradient(180deg, rgba(15, 23, 42, .96), rgba(10, 15, 25, .96));
  box-shadow: 0 18px 34px rgba(0, 0, 0, .55);
}

body.theme-dark .swipe-card::before {
  background: linear-gradient(90deg, rgba(var(--swipe-accent), .8), rgba(var(--swipe-accent), .35));
  opacity: .6;
}

body.theme-dark .swipe-card::after {
  border-color: rgba(var(--swipe-accent), .2);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, .3);
}

body.theme-dark .swipe-card:hover,
body.theme-dark .swipe-card:focus-within {
  border-color: rgba(var(--swipe-accent), .32);
  box-shadow: 0 22px 40px rgba(0, 0, 0, .65);
}

body.theme-dark .swipe-track.is-focused .swipe-card {
  opacity: .72;
  filter: saturate(.95);
}

body.theme-dark .swipe-track.is-focused .swipe-card.is-active {
  opacity: 1;
  filter: saturate(1.04);
}

body.theme-dark .swipe-card.is-active {
  border-color: rgba(var(--swipe-accent), .42);
  box-shadow: 0 24px 44px rgba(0, 0, 0, .7), 0 0 0 1px rgba(var(--swipe-accent), .24);
}

body.theme-dark .swipe-card.is-active::after {
  border-color: rgba(var(--swipe-accent), .32);
  box-shadow: 0 0 0 1px rgba(var(--swipe-accent), .2), 0 16px 32px rgba(0, 0, 0, .6);
}

body.theme-dark .swipe-media {
  background: rgba(15, 23, 42, .7);
  border-bottom: 1px solid rgba(148, 163, 184, .14);
}

body.theme-dark .swipe-media::after {
  background: linear-gradient(180deg, rgba(var(--swipe-accent), .25), rgba(15, 23, 42, 0) 70%);
  opacity: .3;
}

body.theme-dark .swipe-card.is-active .swipe-media::after {
  opacity: .4;
}

body.theme-dark .swipe-body .text-muted {
  color: rgba(226, 232, 240, .82) !important;
}

body.theme-dark .swipe-icon {
  color: rgb(var(--swipe-ink));
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .2), rgba(255, 255, 255, 0) 45%),
    linear-gradient(150deg, rgba(var(--swipe-accent), .9), rgba(var(--swipe-accent), .5));
  border-color: rgba(var(--swipe-accent), .4);
}

body.theme-dark .swipe-badge {
  background: rgba(var(--swipe-accent), .18);
  color: rgba(226, 232, 240, .9);
  border-color: rgba(var(--swipe-accent), .28);
}

body.theme-dark .swipe-badge::before {
  box-shadow: 0 0 0 2px rgba(var(--swipe-accent), .25);
}

body.theme-dark .swipe-card.is-active .swipe-badge {
  background: rgba(var(--swipe-accent), .28);
  color: rgba(226, 232, 240, .95);
  border-color: rgba(var(--swipe-accent), .4);
}

body.theme-dark .swipe-card:hover .swipe-badge,
body.theme-dark .swipe-card:focus-within .swipe-badge {
  background: rgba(var(--swipe-accent), .24);
  border-color: rgba(var(--swipe-accent), .36);
}

body.theme-dark .swipe-card:hover .swipe-icon,
body.theme-dark .swipe-card:focus-within .swipe-icon {}

body.theme-dark .swipe-card.is-active .swipe-icon {}

body.theme-dark .swipe-hint {
  color: rgba(229, 231, 235, .82);
}

body.theme-dark .swipe-track {
  scrollbar-color: rgba(255, 255, 255, .2) transparent;
}

body.theme-dark .swipe-track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .18);
}

body.theme-dark .product-card.has-accent {
  border-color: rgba(148, 163, 184, .2);
}

body.theme-dark .product-card.has-accent::before {
  opacity: .9;
}

body.theme-dark .product-card:hover,
body.theme-dark .product-card:focus-within {
  box-shadow: 0 22px 44px rgba(0, 0, 0, .6);
  border-color: rgba(148, 163, 184, .28);
}

body.theme-dark .product-card.has-accent:hover,
body.theme-dark .product-card.has-accent:focus-within {
  border-color: rgba(148, 163, 184, .32);
  box-shadow: 0 24px 46px rgba(0, 0, 0, .65), 0 0 0 1px var(--card-accent-strong);
}

body.theme-dark .product-card.has-accent:hover::after,
body.theme-dark .product-card.has-accent:focus-within::after {
  border-color: var(--card-accent-strong);
}

body.theme-dark .product-card p {
  color: rgba(229, 231, 235, .9);
}

body.theme-dark .product-trust .trust-chip {
  background: rgba(148, 163, 184, .14);
  border-color: rgba(148, 163, 184, .28);
  color: rgba(226, 232, 240, .92);
}

body.theme-dark .product-trust .trust-chip::before {
  box-shadow: 0 0 0 2px rgba(148, 163, 184, .22);
}

body.theme-dark .product-card:hover .trust-chip,
body.theme-dark .product-card:focus-within .trust-chip {
  border-color: rgba(148, 163, 184, .36);
  background: rgba(148, 163, 184, .2);
}

body.theme-dark .product-footer {
  border-top: 1px solid rgba(148, 163, 184, .22);
}

body.theme-dark .price {
  color: rgba(226, 232, 240, .95);
}

body.theme-dark .product-card .btn.btn-primary {
  box-shadow: none;
}

body.theme-dark .product-card:hover .btn.btn-primary,
body.theme-dark .product-card:focus-within .btn.btn-primary {
  box-shadow: none;
}

body.theme-dark .product-media {
  border-color: rgba(148, 163, 184, .2);
  background: linear-gradient(180deg, rgba(15, 23, 42, .85), rgba(12, 17, 27, .88));
}

body.theme-dark .product-media::after {
  background: radial-gradient(120% 90% at 15% 10%, rgba(148, 163, 184, .2), rgba(15, 23, 42, 0) 60%);
  opacity: .3;
}

body.theme-dark .product-impact {
  color: rgba(187, 247, 208, .9);
}

body.theme-dark .product-impact.is-empty {
  color: rgba(226, 232, 240, .88);
}

body.theme-dark .product-impact--compact {
  color: rgba(229, 231, 235, .9);
}

body.theme-dark .product-impact--compact.is-empty {
  color: rgba(226, 232, 240, .86);
}

body.theme-dark .impact-goal-banner {
  background: linear-gradient(135deg, rgba(15, 23, 42, .96), rgba(30, 41, 59, .96));
  border-color: rgba(255, 255, 255, .08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .48);
}

body.theme-dark .impact-goal-banner::before {
  background: radial-gradient(60% 60% at 12% 15%, rgba(250, 204, 21, .2), rgba(12, 17, 27, 0)),
    radial-gradient(55% 55% at 88% 12%, rgba(59, 130, 246, .2), rgba(12, 17, 27, 0));
  opacity: .5;
}

body.theme-dark .impact-goal-progress {
  background: rgba(255, 255, 255, .08);
}

body.theme-dark .impact-goal-pill {
  background: rgba(255, 255, 255, .08);
  color: rgba(226, 232, 240, .9);
  border-color: rgba(255, 255, 255, .18);
}

body.theme-dark .impact-goal-title {
  color: rgba(226, 232, 240, .96);
}

body.theme-dark .impact-goal-sub,
body.theme-dark .impact-goal-meta {
  color: rgba(148, 163, 184, .85);
}

body.theme-dark .badge-pill {
  background: rgba(148, 163, 184, .14);
  border-color: rgba(148, 163, 184, .28);
  color: rgba(226, 232, 240, .92);
}

body.theme-dark .badge-pill.badge-yellow {
  background: rgba(250, 204, 21, .24);
  border-color: rgba(250, 204, 21, .5);
  color: #0f172a;
}

body.theme-dark .product-media img {
  filter: brightness(.98);
}

body.theme-dark .product-meta {
  color: rgba(229, 231, 235, .82);
}

body.theme-dark .chip {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .22);
  color: rgba(229, 231, 235, .94);
}

body.theme-dark .chip-strong {
  background: rgba(250, 204, 21, .26);
  border-color: rgba(250, 204, 21, .55);
  color: #0f172a;
}

body.theme-dark .page-shop::before {
  background: none;
  opacity: 0;
}

body.theme-dark .page-shop .shop-hero {
  background: rgba(17, 24, 39, .95);
  border: 1px solid rgba(255, 255, 255, .08);
  border-top: 2px solid rgba(250, 204, 21, .35);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
}

body.theme-dark .page-shop .shop-hero .shop-hero__eyebrow {
  color: rgba(156, 163, 175, .95);
}

body.theme-dark .page-shop .shop-hero .shop-hero__eyebrow::before {
  background: rgba(250, 204, 21, .85);
}

body.theme-dark .page-shop .shop-hero h1 {
  text-shadow: 0 2px 6px rgba(0, 0, 0, .35);
}

body.theme-dark .page-shop .shop-hero p,
body.theme-dark .page-shop .shop-hero .shop-hero__subhead {
  color: rgba(226, 232, 240, .88);
}

body.theme-dark .page-shop .shop-hero::after {
  content: none;
}

body.theme-dark .page-shop .impact-goal-banner {
  background: rgba(15, 23, 42, .92);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: none;
}

body.theme-dark .page-shop .impact-goal-banner::before {
  display: none;
}

body.theme-dark .page-shop .impact-goal-pill {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .14);
  color: rgba(226, 232, 240, .82);
}

body.theme-dark .page-shop .impact-goal-progress {
  background: rgba(255, 255, 255, .06);
}

body.theme-dark .page-shop .shop-toolbar {
  background: rgba(17, 24, 39, .95);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
}

body.theme-dark .page-shop .shop-toolbar__meta .fw-semibold {
  color: rgba(248, 250, 252, .98);
}

body.theme-dark .page-shop .shop-toolbar__meta .text-muted {
  color: rgba(156, 163, 175, .85) !important;
}

body.theme-dark .shop-hero__highlights {
  color: rgba(226, 232, 240, .86);
}

body.theme-dark .highlight-item {
  background: rgba(59, 130, 246, .14);
  border-color: rgba(59, 130, 246, .28);
}

body.theme-dark .highlight-icon {
  background: rgba(59, 130, 246, .22);
  color: #bfdbfe;
}

body.theme-dark .insight-icon {
  background: rgba(59, 130, 246, .22);
  border-color: rgba(59, 130, 246, .32);
  color: #bfdbfe;
}

body.theme-dark .shop-metric,
body.theme-dark .shop-toolbar {
  background: rgba(17, 24, 39, .92);
  border-color: rgba(255, 255, 255, .1);
}

body.theme-dark .shop-metric__label {
  color: rgba(229, 231, 235, .82);
}

body.theme-dark .stat-tile {
  background: rgba(17, 24, 39, .92);
  border-color: rgba(255, 255, 255, .1);
}

body.theme-dark .stat-tile__label,
body.theme-dark .shop-mini {
  color: rgba(226, 232, 240, .82);
}

body.theme-dark .callout,
body.theme-dark .panel {
  border-color: rgba(255, 255, 255, .08);
  background: rgba(17, 24, 39, .9);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .34);
}

body.theme-dark .panel:hover,
body.theme-dark .callout:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, .45);
}

body.theme-dark .callout p,
body.theme-dark .panel .text-muted {
  color: rgba(229, 231, 235, .9);
}

body.theme-dark .donor-celebrate {
  background: linear-gradient(140deg, rgba(15, 23, 42, .96), rgba(17, 24, 39, .9));
  border-color: rgba(59, 130, 246, .35);
  box-shadow: 0 22px 46px rgba(0, 0, 0, .55), 0 10px 22px rgba(59, 130, 246, .2);
  color: #e5e7eb;
}

body.theme-dark .donor-celebrate::before {
  opacity: .4;
}

body.theme-dark .donor-celebrate::after {
  opacity: .4;
}

body.theme-dark .donor-celebrate .spotlight-pill {
  background: rgba(59, 130, 246, .2);
  color: #bfdbfe;
  border-color: rgba(59, 130, 246, .4);
}

body.theme-dark .donor-headline {
  color: #e5e7eb;
}

body.theme-dark .donor-name {
  color: #bfdbfe;
}

body.theme-dark .donor-impact {
  color: rgba(226, 232, 240, .9);
}

body.theme-dark .donor-meta {
  color: rgba(203, 213, 225, .9);
}

body.theme-dark .donor-cta {
  color: rgba(226, 232, 240, .9);
}

body.theme-dark .donor-cta a {
  color: #bfdbfe;
}

body.theme-dark .donor-medal {
  background: linear-gradient(145deg, rgba(255, 255, 255, .95), rgba(250, 204, 21, .75));
  border-color: rgba(250, 204, 21, .45);
  color: #0f172a;
}

body.theme-dark footer {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

body.theme-dark .footer-links a {
  color: rgba(229, 231, 235, .9);
}

body.theme-dark .footer-links a:hover {
  text-decoration: underline;
}

body.theme-dark .btn-outline {
  border-color: rgba(255, 255, 255, .35);
  color: #f3f4f6;
}

body.theme-dark .btn-outline:hover {
  background: rgba(255, 255, 255, .16);
}

body.theme-dark .btn-primary {
  color: #1f2937 !important;
}

body.theme-dark .btn-primary:hover {}

body.theme-dark .form-control {
  background: rgba(17, 24, 39, .9);
  border-color: rgba(255, 255, 255, .15);
  color: #e5e7eb;
}

body.theme-dark .form-control:focus {
  border-color: rgba(250, 204, 21, .8);
  box-shadow: 0 0 0 .25rem rgba(250, 204, 21, .18);
}

body.theme-dark .track-steps li {
  border-color: rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .04);
  color: rgba(229, 231, 235, .88);
}

body.theme-dark .track-steps li.active {
  background: rgba(250, 204, 21, .16);
  border-color: rgba(250, 204, 21, .42);
  color: #fff;
}

body.theme-dark .track-meta {
  color: rgba(229, 231, 235, .88);
}

body.theme-dark #preloader {
  background: var(--offwhite);
}

body.theme-dark .preloader-logo {
  background: rgba(17, 24, 39, .9);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .45);
}

body.theme-dark .dots span {
  background: var(--yellow);
}

body.theme-dark .theme-toggle {
  background: rgba(15, 23, 42, .72);
  border-color: rgba(148, 163, 184, .35);
  color: #e5e7eb;
}

body.theme-dark .theme-toggle:hover {
  background: rgba(148, 163, 184, .16);
}

body.theme-dark .theme-toggle__state {
  color: rgba(229, 231, 235, .86);
}

.table>:not(caption)>*>* {
  background-color: transparent;
}

body.theme-dark .table {
  color: #e5e7eb;
}

body.theme-dark .table th,
body.theme-dark .table td {
  border-color: rgba(255, 255, 255, .1);
}

body.theme-dark .table thead th {
  background: rgba(24, 30, 46, .92);
  color: #f8fafc;
}

body.theme-dark .table tbody tr {
  background: rgba(17, 24, 39, .88);
}

body.theme-dark .table-hover>tbody>tr:hover>* {
  background: rgba(255, 255, 255, .06);
}

body.theme-dark .table-striped>tbody>tr:nth-of-type(odd)>* {
  background: rgba(255, 255, 255, .03);
}

details summary {
  cursor: pointer;
  list-style: none;
  padding: .25rem .25rem;
  border-radius: .5rem;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

body.theme-dark details summary {
  color: rgba(229, 231, 235, .9);
}

body.theme-dark details summary:focus-visible {
  outline: 2px solid rgba(250, 204, 21, .75);
}

.navbar-collapse .list-group .list-group-item {
  border: 0;
  border-bottom: 1px solid rgba(229, 231, 235, .35);
  padding: .9rem 1rem;
  font-weight: 700;
  color: rgba(31, 41, 55, .96);
  display: flex;
  align-items: center;
  gap: .65rem;
}

.navbar-collapse .list-group .list-group-item .nav-link-text {
  flex: 1;
}

.navbar-collapse .list-group .list-group-item .nav-link-badge {
  margin-left: auto;
}

.navbar-collapse .list-group .list-group-item .nav-link-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 110, 253, .12);
  border: 1px solid rgba(13, 110, 253, .2);
  color: #0d6efd;
  flex-shrink: 0;
}

.navbar-collapse .list-group .list-group-item .nav-link-icon svg {
  width: 16px;
  height: 16px;
}

.navbar-collapse .list-group .list-group-item:last-child {
  border-bottom: 0;
}

.navbar-collapse .list-group .list-group-item:focus,
.navbar-collapse .list-group .list-group-item:hover {
  background: rgba(229, 231, 235, .45);
}

.nav-mobile .list-group-item {
  background: transparent;
  color: rgba(31, 41, 55, .96);
}

body.theme-dark .navbar-collapse .list-group .list-group-item {
  color: rgba(229, 231, 235, .9);
  border-color: rgba(255, 255, 255, .08);
}

body.theme-dark .navbar-collapse .list-group .list-group-item .nav-link-icon {
  background: rgba(59, 130, 246, .2);
  border-color: rgba(59, 130, 246, .4);
  color: #bfdbfe;
}

body.theme-dark .navbar-collapse .list-group .list-group-item:hover {
  background: rgba(255, 255, 255, .06);
}

body.theme-dark .navbar-collapse.show {
  box-shadow: 0 14px 30px rgba(0, 0, 0, .45);
}

body.theme-dark .nav-mobile .list-group-item {
  background: transparent;
  color: rgba(229, 231, 235, .9);
  border-color: rgba(255, 255, 255, .08);
}

body.theme-dark .nav-mobile .list-group-item:hover,
body.theme-dark .nav-mobile .list-group-item:focus {
  background: rgba(255, 255, 255, .06);
}

body.theme-dark .navbar-collapse .theme-toggle.list-group-item {
  color: rgba(229, 231, 235, .9);
  border-color: rgba(255, 255, 255, .08);
  background: transparent;
}

body.theme-dark .navbar-collapse .theme-toggle.list-group-item:hover,
body.theme-dark .navbar-collapse .theme-toggle.list-group-item:focus {
  background: rgba(255, 255, 255, .06);
}

body.theme-dark.page-product .product-purchase {
  background: linear-gradient(180deg, rgba(15, 23, 42, .95), rgba(17, 24, 39, .92));
  border-color: rgba(255, 255, 255, .1);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .5);
}

body.theme-dark.page-product .product-price__value {
  color: rgba(226, 232, 240, .96);
}

body.theme-dark.page-product .product-price__credits {
  color: rgba(148, 163, 184, .9);
}

body.theme-dark.page-product .product-credits-toggle {
  color: rgba(191, 219, 254, .95);
}

body.theme-dark.page-product .product-credits-info {
  background: rgba(15, 23, 42, .7);
  border-color: rgba(255, 255, 255, .12);
  color: rgba(226, 232, 240, .9);
}

body.theme-dark.page-product .qty-stepper {
  background: rgba(15, 23, 42, .8);
  border-color: rgba(255, 255, 255, .12);
}

body.theme-dark.page-product .qty-stepper__btn {
  background: rgba(15, 23, 42, .9);
  border-color: rgba(255, 255, 255, .12);
  color: rgba(226, 232, 240, .9);
}

body.theme-dark.page-product .qty-stepper__input {
  color: rgba(226, 232, 240, .95);
}

body.theme-dark.page-product .purchase-notes {
  background: rgba(15, 23, 42, .75);
  border-color: rgba(255, 255, 255, .12);
}

body.theme-dark.page-product .purchase-notes details {
  border-bottom-color: rgba(255, 255, 255, .12);
}

body.theme-dark.page-product .purchase-notes summary::after {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  color: rgba(226, 232, 240, .85);
}

body.theme-dark.page-product .panel-quiet {
  background: rgba(15, 23, 42, .7);
  border-color: rgba(255, 255, 255, .12);
}

body.theme-dark.page-product .product-impact-panel .impact-goal-pill {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
  color: rgba(226, 232, 240, .85);
}

body.theme-dark.page-product .progress-quiet {
  background: rgba(255, 255, 255, .12);
}

body.theme-dark.page-product .product-sticky-bar {
  background: rgba(15, 23, 42, .96);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: 0 -12px 32px rgba(0, 0, 0, .5);
}

body.theme-dark.page-product .product-sticky-bar__value {
  color: rgba(226, 232, 240, .95);
}

body.theme-dark.page-product .product-sticky-bar__credits {
  color: rgba(148, 163, 184, .8);
}

@media (max-width: 767px) {

  .container,
  .container-narrow {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-art {
    padding: 1.6rem;
    min-height: 220px;
  }

  .quote-panel {
    padding: 1.1rem;
  }

  .quote-card {
    padding: .85rem;
  }

  .quote-media {
    min-height: 200px;
    border-radius: .8rem;
  }

  .quote-pill {
    font-size: .68rem;
    padding: .3rem .55rem;
  }

  .newsletter-panel {
    padding: 1.1rem;
  }

  .page-auth .auth-shell {
    max-width: 100%;
  }

  .page-auth .auth-hero,
  .page-auth .auth-panel {
    padding: 1.1rem;
  }

  .page-auth .auth-hero .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

  .page-auth form .d-flex {
    flex-direction: column;
    align-items: stretch;
  }

  .page-auth form .d-flex .btn {
    width: 100%;
    justify-content: center;
  }

  .page-auth form .d-flex .ms-auto {
    margin-left: 0 !important;
    align-self: flex-start;
  }

  footer {
    text-align: center;
  }

  footer .footer-links {
    display: flex;
    justify-content: center;
    gap: .75rem;
    flex-wrap: wrap;
  }

  .page-shop .shop-hero,
  .page-auth .auth-hero,
  .page-checkout .checkout-hero {
    width: calc(100% + 2rem);
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }

  .page-home .hero .hero-art {
    width: calc(100% + 2rem);
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }

  .page-home .hero .hero-image {
    border-radius: 0;
  }

  .legal-embed {
    height: 60vh;
  }
}

@media (max-width: 575px) {
  .hero-art {
    padding: 1.35rem;
    min-height: 200px;
  }

  .section {
    padding: 1.9rem 0;
  }

  .callout,
  .panel {
    padding: 1.1rem;
  }

  .quote-media {
    min-height: 180px;
  }

  .page-auth .auth-hero,
  .page-auth .auth-panel {
    padding: 1rem;
  }

  .legal-embed {
    height: 55vh;
  }
}

.site-footer {
  background: rgba(249, 250, 251, 0.85);
  border-top: 1px solid rgba(229, 231, 235, 0.85);
  padding: 3.5rem 0 1.5rem;
  margin-top: 4rem;
}

body.theme-dark .site-footer {
  background: rgba(15, 23, 42, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
}

body.theme-dark .footer-content {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .footer-logo {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, 0.96);
}

body.theme-dark .footer-brand .footer-logo {
  color: rgba(248, 250, 252, 0.96);
}

.footer-mission {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(75, 85, 99, 0.92);
  margin: 0;
}

body.theme-dark .footer-mission {
  color: rgba(209, 213, 219, 0.88);
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(75, 85, 99, 0.95);
  margin-bottom: 1rem;
}

body.theme-dark .footer-heading {
  color: rgba(156, 163, 175, 0.95);
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-menu li {
  margin: 0;
}

.footer-menu a {
  color: rgba(55, 65, 81, 0.92);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-block;
  position: relative;
}

.footer-menu a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: rgba(250, 204, 21, 0.85);
  transition: width 0.25s ease;
}

.footer-menu a:hover {
  color: rgba(15, 23, 42, 0.98);
  transform: translateX(2px);
}

.footer-menu a:hover::after {
  width: 100%;
}

body.theme-dark .footer-menu a {
  color: rgba(209, 213, 219, 0.9);
}

body.theme-dark .footer-menu a:hover {
  color: rgba(248, 250, 252, 0.98);
}

.footer-status {
  font-size: 0.85rem;
  color: rgba(107, 114, 128, 0.85);
  font-weight: 500;
  display: inline-block;
}

body.theme-dark .footer-status {
  color: rgba(156, 163, 175, 0.85);
}

.footer-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(75, 85, 99, 0.92);
  margin: 0;
}

body.theme-dark .footer-text {
  color: rgba(209, 213, 219, 0.88);
}

.footer-bottom {
  padding-top: 1.5rem;
}

.footer-copyright {
  font-size: 0.9rem;
  color: rgba(107, 114, 128, 0.9);
  font-weight: 600;
}

body.theme-dark .footer-copyright {
  color: rgba(156, 163, 175, 0.9);
}

.footer-meta {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-secure {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(107, 114, 128, 0.88);
  font-weight: 500;
}

.footer-secure svg {
  width: 16px;
  height: 16px;
  color: rgba(250, 204, 21, 0.85);
}

body.theme-dark .footer-secure {
  color: rgba(156, 163, 175, 0.88);
}

body.theme-dark .footer-secure svg {
  color: rgba(250, 204, 21, 0.9);
}

@media (max-width: 991px) {
  .site-footer {
    padding: 3rem 0 1.25rem;
  }

  .footer-content {
    padding-bottom: 1.75rem;
  }

  .footer-meta {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 2.5rem 0 1.25rem;
    text-align: left;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-meta {
    justify-content: center;
    margin-top: 0.75rem;
  }

  .footer-heading {
    margin-bottom: 0.85rem;
  }
}

@media (max-width: 575px) {
  .site-footer {
    padding: 2rem 0 1rem;
  }

  .footer-content {
    padding-bottom: 1.5rem;
  }

  .footer-brand .footer-logo {
    font-size: 1.25rem;
  }

  .footer-mission,
  .footer-text {
    font-size: 0.85rem;
  }

  .footer-heading {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .footer-menu {
    gap: 0.5rem;
  }

  .footer-menu a {
    font-size: 0.9rem;
  }
}

@media (hover: none) and (pointer: coarse) {
  .footer-menu a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.4rem;
  }

  .footer-secure {
    min-height: 44px;
    padding: 0.35rem 0.4rem;
  }
}

.scroll-hint {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  border: none;
}

.scroll-hint.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-hint:hover {
  transform: translateY(-3px) scale(1.08);
}

.scroll-hint svg {
  width: 20px;
  height: 20px;
  animation: bounceArrow 1.5s ease-in-out infinite;
}

@keyframes bounceArrow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 767px) {
  .scroll-hint {
    bottom: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
  }
}

body.theme-dark .scroll-hint {
  background: var(--yellow);
  color: var(--charcoal);
}

body.theme-dark .scroll-hint:hover {}

/* ======================================================================
   COMPONENT UNIFICATION (v19 refactor)
   - Standardize identical patterns on Donate / Sign-in / Sign-up
   - Introduce: .panel-hero + .eyebrow--bar
   ====================================================================== */

/* Eyebrow variant with left accent bar (replaces .home-eyebrow/.auth-eyebrow/.shop-hero__eyebrow) */
.eyebrow--bar {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(107, 114, 128, .9);
}

.eyebrow--bar::before {
  content: "";
  width: 3px;
  height: 12px;
  background: rgba(250, 204, 21, .85);
  border-radius: 2px;
  flex-shrink: 0;
}

.text-center .eyebrow--bar {
  padding-left: 0;
  padding-right: 0;
}

.text-center .eyebrow--bar::before {
  display: none;
}

body.theme-dark .eyebrow--bar {
  color: rgba(156, 163, 175, .95);
}

/* Shared panel-style hero card */
.panel-hero {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(229, 231, 235, .85);
  border-top: 2px solid rgba(250, 204, 21, .25);
  border-radius: var(--radius-xl);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
  padding: 1.6rem 1.8rem;
  z-index: 0;
}

.panel-hero.panel:hover {
  transform: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
}

.panel-hero>* {
  position: relative;
  z-index: 1;
}

.panel-hero::after {
  content: "";
  position: absolute;
  top: -35%;
  right: -25%;
  width: 420px;
  height: 420px;
  background: none;
  pointer-events: none;
  z-index: 0;
}

body.theme-dark .panel-hero::after {
  opacity: 0.65;
  background: radial-gradient(circle at center, rgba(250, 204, 21, .12), rgba(250, 204, 21, 0) 70%);
}

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

.panel-hero .hero-title {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  max-width: 26ch;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .03);
}

.panel-hero__subhead,
.panel-hero>p:not(.eyebrow),
.panel-hero .panel-hero__content>p:not(.eyebrow) {
  max-width: 54ch;
  line-height: 1.6;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: rgba(31, 41, 55, .85);
}

body.theme-dark .panel-hero {
  background: rgba(17, 24, 39, .95);
  border: 1px solid rgba(255, 255, 255, .08);
  border-top: 2px solid rgba(250, 204, 21, .35);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
}

body.theme-dark .panel-hero .hero-title {
  text-shadow: 0 2px 6px rgba(0, 0, 0, .35);
}

body.theme-dark .panel-hero__subhead,
body.theme-dark .panel-hero>p:not(.eyebrow),
body.theme-dark .panel-hero .panel-hero__content>p:not(.eyebrow) {
  color: rgba(226, 232, 240, .88);
}

/* Responsive parity: keep the same full-bleed behavior the old .auth-hero/.shop-hero had */
@media (max-width: 767px) {
  .page-auth .panel-hero {
    padding: 1.1rem;
  }

  .page-auth .panel-hero .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

  .page-shop .panel-hero,
  .page-auth .panel-hero {
    width: calc(100% + 2rem);
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }
}

@media (max-width: 575px) {
  .page-auth .panel-hero {
    padding: 1.1rem;
  }
}

/* ========================================
   Box Items - Customizable item selection
   ======================================== */
.product-items {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}

.box-item-row {
  padding: 1rem 0;
  border-bottom: 1px solid var(--lightgray);
}

.box-item-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

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

.box-item-checkbox {
  cursor: pointer;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.375rem;
  border: 2px solid #d1d5db;
  transition: all 0.15s ease;
}

.box-item-checkbox:hover {
  border-color: var(--color-primary, #2563eb);
}

.box-item-checkbox:checked {
  background-color: var(--color-primary, #2563eb);
  border-color: var(--color-primary, #2563eb);
}

.box-item-checkbox:focus {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}

.box-item-qty {
  min-width: 140px;
}

.qty-stepper-sm {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.25rem;
}

.qty-stepper-sm .qty-stepper__input {
  width: 60px;
  text-align: center;
  padding: 0.375rem 0.5rem;
  border: 1px solid var(--lightgray);
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

.qty-stepper-sm .qty-stepper__btn {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid var(--lightgray);
  border-radius: 0.375rem;
  background: white;
  color: var(--charcoal);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
}

.qty-stepper-sm .qty-stepper__btn:hover {
  background: var(--offwhite);
  border-color: #9ca3af;
}

.qty-stepper-sm .qty-stepper__btn:active {
  background: var(--lightgray);
}

.qty-stepper-sm .qty-stepper__btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

#boxItemsTotal {
  background: linear-gradient(to bottom, transparent, rgba(37, 99, 235, 0.02));
  padding-top: 1rem;
  border-radius: 0.5rem;
}

#boxItemsTotalAmount {
  color: var(--color-primary, #2563eb);
}

/* Fix for "Add to My Donation $x" button - make price badge cohesive with button design */
.btn-primary .badge.bg-white.text-primary,
.btn-primary #bottomButtonPrice {
  background: rgba(31, 41, 55, 0.12) !important;
  color: var(--charcoal) !important;
  border: 1px solid rgba(31, 41, 55, 0.18);
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}

.btn-primary:hover .badge.bg-white.text-primary,
.btn-primary:hover #bottomButtonPrice {
  background: rgba(31, 41, 55, 0.16) !important;
  border-color: rgba(31, 41, 55, 0.22);
}

/* Dark theme support */
body.theme-dark .btn-primary .badge.bg-white.text-primary,
body.theme-dark .btn-primary #bottomButtonPrice {
  background: rgba(31, 41, 55, 0.3) !important;
  color: #1f2937 !important;
  border-color: rgba(31, 41, 55, 0.4);
}

body.theme-dark .btn-primary:hover .badge.bg-white.text-primary,
body.theme-dark .btn-primary:hover #bottomButtonPrice {
  background: rgba(31, 41, 55, 0.4) !important;
  border-color: rgba(31, 41, 55, 0.5);
}

.spinner-border-sm {
  width: 1.5rem;
  height: 1.5rem;
  border-width: 0.15em;
}

@media (max-width: 767px) {
  .box-item-row .d-flex {
    flex-direction: column;
    gap: 0.75rem !important;
  }

  .box-item-qty {
    width: 100%;
    min-width: auto;
  }

  .qty-stepper-sm {
    max-width: 200px;
  }
}

/* How It Works Page Styles */
.page-how-it-works .page {
  padding-top: 0px;
}

.page-how-it-works .hero {
  padding-top: 10px;
}

/* Fix hero section center alignment on desktop */
.hero--stacked {
  text-align: center;
}

.hero--stacked h1,
.hero--stacked .hero-title {
  margin-left: auto;
  margin-right: auto;
}

.hero--stacked .eyebrow--bar {
  display: inline-block;
  padding-left: 0.75rem;
}

.hero--stacked .eyebrow--bar::before {
  display: block !important;
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 12px;
  background: rgba(250, 204, 21, .85);
  border-radius: 2px;
}

/* Enhanced Process Timeline with Interactive States */
.process-timeline {
  display: grid;
  gap: 2.5rem;
  padding: 2.5rem 0;
  position: relative;
}

.process-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.5rem;
  align-items: start;
  position: relative;
  opacity: 1;
  transform: translateX(0);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:not(.is-visible) {
  opacity: 0;
  transform: translateX(-20px);
}

.process-step__number {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(13, 110, 253, .14), rgba(250, 204, 21, .18));
  border: 2px solid rgba(13, 110, 253, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d6efd;
  font-weight: 800;
  font-size: 1.75rem;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 16px rgba(13, 110, 253, .12);
  cursor: pointer;
}

.process-step__number::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(13, 110, 253, .3), rgba(250, 204, 21, .3));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.process-step:hover .process-step__number,
.process-step.is-active .process-step__number {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 28px rgba(13, 110, 253, .22);
  border-color: rgba(13, 110, 253, .4);
}

.process-step:hover .process-step__number::before,
.process-step.is-active .process-step__number::before {
  opacity: 1;
}

.process-step__content {
  padding: 0.5rem 0;
}

.process-step__content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--charcoal);
  letter-spacing: -0.015em;
  transition: color 0.2s ease;
}

.process-step:hover .process-step__content h3,
.process-step.is-active .process-step__content h3 {
  color: #0d6efd;
}

.process-step__content p {
  color: rgba(31, 41, 55, .82);
  margin: 0 0 0.85rem;
  line-height: 1.6;
  font-size: 1rem;
}

.process-step__details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease,
    margin-top 0.35s ease;
  margin-top: 0;
}

.process-step.is-expanded .process-step__details {
  max-height: 400px;
  opacity: 1;
  margin-top: 1rem;
}

.process-step__details-content {
  padding: 1.25rem 1.35rem;
  background: linear-gradient(135deg, rgba(13, 110, 253, .035), rgba(250, 204, 21, .055));
  border-radius: 12px;
  border: 1px solid rgba(13, 110, 253, .12);
  box-shadow: 0 4px 12px rgba(13, 110, 253, .06);
}

.process-step__details ul {
  margin: 0;
  padding-left: 1.5rem;
  list-style: none;
}

.process-step__details li {
  position: relative;
  margin-bottom: 0.7rem;
  color: rgba(31, 41, 55, .85);
  font-size: 0.94rem;
  line-height: 1.65;
}

.process-step__details li:last-child {
  margin-bottom: 0;
}

.process-step__details li::before {
  content: "✓";
  position: absolute;
  left: -1.5rem;
  color: #0d6efd;
  font-weight: 700;
  font-size: 0.9rem;
}

.process-step__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0d6efd;
  background: none;
  border: none;
  padding: 0.5rem 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.process-step__toggle:hover {
  gap: 0.65rem;
  color: #0b5ed7;
}

.process-step__toggle:focus {
  outline: 2px solid rgba(13, 110, 253, .3);
  outline-offset: 2px;
  border-radius: 4px;
}

.process-step__toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step.is-expanded .process-step__toggle svg {
  transform: rotate(180deg);
}

/* Connector line with animated progress */
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 36px;
  top: 80px;
  width: 2px;
  height: calc(100% + 2.5rem);
  background: linear-gradient(180deg,
      rgba(13, 110, 253, .35) 0%,
      rgba(13, 110, 253, .18) 50%,
      rgba(13, 110, 253, .08) 100%);
  transform-origin: top;
  animation: lineGrow 0.6s ease-out forwards;
  animation-delay: calc(var(--step-index, 0) * 0.15s);
}

@keyframes lineGrow {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}


/* Box Content Categories with Hover Effects */
.box-category {
  text-align: center;
  padding: 1.5rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  position: relative;
}

.box-category::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(13, 110, 253, .06), rgba(250, 204, 21, .08));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.box-category:hover {
  transform: translateY(-4px);
}

.box-category:hover::before {
  opacity: 1;
}

.box-category__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(145deg, rgba(13, 110, 253, .12), rgba(250, 204, 21, .16));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d6efd;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 14px rgba(13, 110, 253, .1);
  position: relative;
}

.box-category:hover .box-category__icon {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 12px 24px rgba(13, 110, 253, .18);
}

.box-category__icon svg {
  width: 30px;
  height: 30px;
  transition: all 0.35s ease;
}

.box-category:hover .box-category__icon svg {
  transform: scale(1.1);
}

.box-category__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--charcoal);
  position: relative;
  transition: color 0.2s ease;
  letter-spacing: -0.01em;
}

.box-category:hover .box-category__title {
  color: #0d6efd;
}

.box-category__desc {
  font-size: 0.95rem;
  color: rgba(31, 41, 55, .78);
  margin: 0;
  line-height: 1.65;
  position: relative;
}

/* Animated Counter Stats */
.stat-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(13, 110, 253, .75), rgba(250, 204, 21, .75));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card .value {
  font-size: 2.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0d6efd, #facc15);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  transition: transform 0.25s ease;
}

.stat-card:hover .value {
  transform: scale(1.02);
}

/* Enhanced FAQ with smooth interactions */
.faq-panel details {
  border-radius: 12px;
  border: 1px solid rgba(229, 231, 235, .5);
  margin-bottom: 0.65rem;
  background: #ffffff;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-panel details:last-child {
  margin-bottom: 0;
}

.faq-panel details:hover {
  border-color: rgba(13, 110, 253, .28);
  box-shadow: 0 4px 12px rgba(13, 110, 253, .06);
}

.faq-panel details[open] {
  border-color: rgba(13, 110, 253, .35);
  box-shadow: 0 6px 16px rgba(13, 110, 253, .1);
}

.faq-panel summary {
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.025rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.2s ease;
  user-select: none;
}

.faq-panel summary:hover {
  background: rgba(13, 110, 253, .035);
  color: #0d6efd;
}

.faq-panel details[open] summary {
  background: rgba(13, 110, 253, .055);
  color: #0d6efd;
  border-bottom: 1px solid rgba(13, 110, 253, .12);
}

.faq-panel summary:focus {
  outline: 2px solid rgba(13, 110, 253, .3);
  outline-offset: -2px;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon svg {
  width: 100%;
  height: 100%;
}

details[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-panel details>div {
  padding: 1.15rem 1.25rem;
  animation: fadeInDown 0.3s ease-out;
  color: rgba(31, 41, 55, .85);
  line-height: 1.65;
}

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

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

/* Scroll hint indicator */
.scroll-hint {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  box-shadow: 0 8px 20px rgba(250, 204, 21, .3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
}

.scroll-hint.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-hint:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 12px 28px rgba(250, 204, 21, .45);
}

.scroll-hint svg {
  width: 20px;
  height: 20px;
  animation: bounceArrow 1.5s ease-in-out infinite;
}

@keyframes bounceArrow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

/* Desktop layout */
@media (min-width: 992px) {
  .process-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .process-step {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .process-step__number {
    margin: 0 auto 1.25rem;
  }

  .process-step__content {
    padding: 0;
  }

  /* Horizontal connector */
  .process-step:not(:last-child)::after {
    left: calc(50% + 48px);
    top: 36px;
    width: calc(100% - 96px);
    height: 2px;
    background: linear-gradient(90deg,
        rgba(13, 110, 253, .35) 0%,
        rgba(13, 110, 253, .18) 50%,
        rgba(13, 110, 253, .08) 100%);
  }
}

/* Mobile optimizations */
@media (max-width: 767px) {
  .process-step__number {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
    border-radius: 16px;
  }

  .process-step {
    grid-template-columns: 64px 1fr;
    gap: 1.25rem;
  }

  .process-step:not(:last-child)::after {
    left: 32px;
    top: 72px;
  }

  .scroll-hint {
    bottom: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
  }

  .box-category {
    padding: 1.25rem;
  }

  .box-category__icon {
    width: 56px;
    height: 56px;
  }

  .box-category__icon svg {
    width: 26px;
    height: 26px;
  }
}

/* Dark theme support */
body.theme-dark .process-step__number {
  background: rgba(59, 130, 246, .2);
  border-color: rgba(59, 130, 246, .4);
  color: #60a5fa;
}

body.theme-dark .process-step__content h3 {
  color: rgba(229, 231, 235, .95);
}

body.theme-dark .process-step:hover .process-step__content h3,
body.theme-dark .process-step.is-active .process-step__content h3 {
  color: #60a5fa;
}

body.theme-dark .process-step__content p {
  color: rgba(226, 232, 240, .88);
}

body.theme-dark .process-step::after {
  background: linear-gradient(180deg,
      rgba(59, 130, 246, .3) 0%,
      rgba(59, 130, 246, .15) 50%,
      rgba(59, 130, 246, .08) 100%);
}

body.theme-dark .process-step__details-content {
  background: linear-gradient(135deg, rgba(59, 130, 246, .08), rgba(250, 204, 21, .1));
  border-color: rgba(59, 130, 246, .25);
}

body.theme-dark .box-category__icon {
  background: rgba(59, 130, 246, .18);
  color: #60a5fa;
}

body.theme-dark .box-category__title {
  color: rgba(229, 231, 235, .95);
}

body.theme-dark .box-category:hover .box-category__title {
  color: #60a5fa;
}

body.theme-dark .box-category__desc {
  color: rgba(226, 232, 240, .85);
}

body.theme-dark .faq-panel details {
  background: rgba(17, 24, 39, .9);
  border-color: rgba(255, 255, 255, .12);
}

body.theme-dark .faq-panel details:hover {
  border-color: rgba(59, 130, 246, .4);
}

body.theme-dark .faq-panel details[open] {
  border-color: rgba(59, 130, 246, .5);
}

body.theme-dark .faq-panel summary:hover {
  background: rgba(59, 130, 246, .08);
  color: #60a5fa;
}

body.theme-dark .faq-panel details[open] summary {
  background: rgba(59, 130, 246, .12);
  color: #60a5fa;
  border-bottom-color: rgba(59, 130, 246, .2);
}

/* Password Strength Meter */
.password-strength-meter {
  height: 4px;
  background-color: rgba(229, 231, 235, 0.5);
  border-radius: 2px;
  margin-top: 0.5rem;
  overflow: hidden;
  position: relative;
}

.password-strength-bar {
  height: 100%;
  width: 0;
  border-radius: 2px;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.password-strength-bar[data-strength="weak"] {
  width: 33%;
  background-color: #ef4444;
}

.password-strength-bar[data-strength="medium"] {
  width: 66%;
  background-color: #f59e0b;
}

.password-strength-bar[data-strength="strong"] {
  width: 100%;
  background-color: #10b981;
}

.password-strength-text {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  color: rgba(107, 114, 128, 0.8);
  font-weight: 500;
  text-align: right;
  min-height: 1.2em;
}

.password-strength-text[data-strength="weak"] {
  color: #ef4444;
}

.password-strength-text[data-strength="medium"] {
  color: #f59e0b;
}

.password-strength-text[data-strength="strong"] {
  color: #10b981;
}

/* Premium UI Polish - Page Transitions */
.reveal {
  animation: revealUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
  transform: translateY(20px);
}

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

/* Glassmorphism for Auth Panels */
.auth-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

body.theme-dark .auth-panel {
  background: rgba(17, 24, 39, 0.7);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* Smooth Focus States */
*:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

/* Premium Homepage Overhaul */

/* General Typography & Atmosphere */
body.page-home {
  background-color: #FAFAF9;
  /* Warm off-white base */
}

/* Hero Section */
.page-home .hero {
  padding: 2rem 0 5rem;
  /* Top padding to prevent eyebrow from being hidden under nav */
  background: white;
  /* Clean start */
  position: relative;
  overflow: hidden;
}

.page-home .hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(250, 204, 21, 0.03), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.page-home .hero .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: #64748B;
  /* Slight blueprint slate */
  margin-bottom: 1rem;
}

.page-home .hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #111827;
  /* Deep charcoal */
  margin-bottom: 1.25rem;
}

.page-home .hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #4B5563;
  font-weight: 400;
  max-width: 540px;
  margin-bottom: 2rem;
}

.page-home .hero-cta .btn {
  padding: 0.9rem 1.6rem;
  font-size: 1rem;
  border-radius: 50px;
  /* Pill shape for modern feel */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.page-home .hero-cta .btn-primary {
  box-shadow: 0 10px 20px -5px rgba(250, 204, 21, 0.4);
  /* Glow effect */
}

/* Product Cards - Elevated */
.products-grid {
  gap: 2rem;
}

.product-card {
  border: none;
  background: white;
  border-radius: 20px;
  /* Softer corners */
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.product-media {
  aspect-ratio: 4/3;
}

.product-media img {
  transition: transform 0.6s ease;
}

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

.product-body {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6B7280;
}

.product-footer {
  padding: 0 1.5rem 1.5rem;
  background: transparent;
  border: none;
}

.product-cta .btn-primary {
  width: 100%;
  border-radius: 12px;
  font-weight: 600;
  padding: 0.75rem;
}

/* Section Rhythm */
.section-sun {
  background: linear-gradient(180deg, #FAFAF9 0%, #FFF 100%);
}

.newsletter-panel {
  border-radius: 24px;
  background: #111827;
  /* Dark luxury contrast */
  color: white;
}

.newsletter-panel .section-title {
  color: white;
}

.newsletter-panel .text-muted {
  color: #9CA3AF !important;
}

.newsletter-panel .btn-primary {
  background: #FACC15;
  color: #111827;
  border: none;
}

/* Footer Polish */
.site-footer {
  background: #FFFFFF;
  border-top: 1px solid #F3F4F6;
  padding-top: 4rem;
}

.footer-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9CA3AF;
  margin-bottom: 1.5rem;
}

.footer-brand .brand {
  font-size: 1.5rem;
}

/* Mobile Hero Image Optimization */
@media (max-width: 991px) {
  .hero-image {
    max-height: 320px;
    object-fit: cover;
    width: 100%;
  }
}

/* === GLOBAL DESIGN UNIFICATION === */
/* Global Design Unification - Extending Premium Homepage Design */

/* General Typography & Atmosphere - Apply to ALL pages */
body {
  background-color: #FAFAF9;
  /* Warm off-white base - applied globally */
}

/* Hero Section - Generic styles for all pages */
.hero {
  padding: 0 0 5rem;
  /* Consistent hero padding across all pages */
  background: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(250, 204, 21, 0.03), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: #64748B;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #111827;
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #4B5563;
  font-weight: 400;
  max-width: 540px;
  margin-bottom: 2rem;
}

/* Button Enhancements - Global */
.btn {
  padding: 0.9rem 1.6rem;
  font-size: 1rem;
  border-radius: 50px;
  /* Pill shape globally */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.btn-primary {
  box-shadow: 0 10px 20px -5px rgba(250, 204, 21, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -5px rgba(250, 204, 21, 0.5);
}

/* Newsletter Panel - Dark luxury (applies anywhere) */
.newsletter-panel {
  border-radius: 24px;
  background: #111827;
  color: white;
}

.newsletter-panel .section-title {
  color: white;
}

.newsletter-panel .text-muted {
  color: #9CA3AF !important;
}

.newsletter-panel .btn-primary {
  background: #FACC15;
  color: #111827;
  border: none;
}

/* Footer Polish - Global */
.site-footer {
  background: #FFFFFF;
  border-top: 1px solid #F3F4F6;
  padding-top: 4rem;
}

.footer-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9CA3AF;
  margin-bottom: 1.5rem;
}

.footer-brand .brand {
  font-size: 1.5rem;
}

/* Mobile Hero Image Optimization - Global */
@media (max-width: 991px) {
  .hero-image {
    max-height: 320px;
    object-fit: cover;
    width: 100%;
  }
}


/* === DARK THEME ENHANCEMENTS FOR PREMIUM DESIGN === */

/* Body - Dark theme background */
body.theme-dark {
  background-color: #0f172a;
  /* Deep slate instead of off-white */
}

/* Hero Section - Dark theme */
body.theme-dark .hero {
  background: #1e293b;
  /* Darker slate for hero */
}

body.theme-dark .hero::before {
  background: radial-gradient(circle at 50% 50%, rgba(250, 204, 21, 0.05), transparent 60%);
}

body.theme-dark .hero h1 {
  color: #f1f5f9;
  /* Light slate text */
}

body.theme-dark .hero p {
  color: #cbd5e1;
  /* Lighter slate-gray */
}

body.theme-dark .hero .eyebrow {
  color: #94a3b8;
  /* Muted slate */
}

/* Buttons - Dark theme */
body.theme-dark .btn-outline {
  border-color: rgba(255, 255, 255, 0.2);
  color: #f1f5f9;
  background: transparent;
}

body.theme-dark .btn-outline:hover {
  border-color: rgba(250, 204, 21, 0.5);
  background: rgba(250, 204, 21, 0.1);
}

/* Product Cards - Dark theme */
body.theme-dark .product-card {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.theme-dark .product-card:hover {
  border-color: rgba(250, 204, 21, 0.3);
}

body.theme-dark .product-title {
  color: #f1f5f9;
}

body.theme-dark .product-desc {
  color: #94a3b8;
}

/* Newsletter Panel - Already dark, ensure contrast */
body.theme-dark .newsletter-panel {
  background: #0f172a;
  border: 1px solid rgba(250, 204, 21, 0.2);
}

/* Footer - Dark theme */
body.theme-dark .site-footer {
  background: #1e293b;
  border-top-color: rgba(255, 255, 255, 0.1);
}

body.theme-dark .footer-heading {
  color: #64748b;
}

/* Section backgrounds - Dark theme */
body.theme-dark .section-sun {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

body.theme-dark .section-ice {
  background: transparent;
}

/* Panels and Cards - Dark theme */
body.theme-dark .panel {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.1);
}

body.theme-dark .callout {
  background: #1e293b;
  border-color: rgba(250, 204, 21, 0.2);
}

/* Text colors - Dark theme */
body.theme-dark .text-muted {
  color: #94a3b8 !important;
}

body.theme-dark .section-title {
  color: #f1f5f9;
}

/* Auth panels - glassmorphism for dark */
body.theme-dark .auth-panel {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Ensure form controls work in dark mode */
body.theme-dark .form-control,
body.theme-dark .form-select {
  background: #334155;
  border-color: rgba(255, 255, 255, 0.2);
  color: #f1f5f9;
}

body.theme-dark .form-control:focus,
body.theme-dark .form-select:focus {
  background: #334155;
  border-color: #facc15;
}

body.theme-dark .form-control::placeholder {
  color: #64748b;
}

/* Products Section Enhancement */
.products-wrap {
  padding: 4rem 0 5rem;
}

.products-header {
  margin-bottom: 3rem;
}

.products-header .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.products-header .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111827;
  margin-bottom: 1rem;
}

.products-header p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #64748b;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

body.theme-dark .products-header .section-title {
  color: #f1f5f9;
}

body.theme-dark .products-header p {
  color: #94a3b8;
}

/* ========================================
   DONATE PAGE HERO & TOOLBAR REDESIGN
   ======================================== */

/* Donate Hero Section */
.donate-hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--offwhite) 85%);
  padding: 1.75rem 0 1.25rem;
  margin-bottom: 0.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.03);
}

.donate-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(250, 204, 21, 0.12), transparent 60%);
  pointer-events: none;
}

.donate-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(13, 110, 253, 0.06), transparent 55%);
  pointer-events: none;
}

body.theme-dark .donate-hero {
  background: linear-gradient(180deg, rgba(15, 23, 42, .96) 0%, rgba(15, 23, 42, .98) 85%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

body.theme-dark .donate-hero::before {
  background: radial-gradient(ellipse, rgba(250, 204, 21, 0.08), transparent 60%);
}

body.theme-dark .donate-hero::after {
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.06), transparent 55%);
}

.donate-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.donate-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.25);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(31, 41, 55, 0.88);
  margin-bottom: 1rem;
}

.donate-hero .eyebrow::before {
  content: "♥";
  color: #0d6efd;
  font-size: 0.85rem;
}

body.theme-dark .donate-hero .eyebrow {
  background: rgba(250, 204, 21, 0.1);
  border-color: rgba(250, 204, 21, 0.2);
  color: rgba(226, 232, 240, 0.9);
}

.donate-hero .hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 0.65rem;
  color: var(--charcoal);
}

.donate-hero .hero-title::after {
  content: ".";
  color: var(--yellow);
}

body.theme-dark .donate-hero .hero-title {
  color: #f1f5f9;
}

.donate-hero__subhead {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(31, 41, 55, 0.72);
  max-width: 460px;
  margin: 0 auto 1.15rem;
}

body.theme-dark .donate-hero__subhead {
  color: rgba(203, 213, 225, 0.85);
}

/* Donate Hero Stats */
.donate-hero__stats {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.donate-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

body.theme-dark .donate-stat {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(148, 163, 184, 0.15);
}

.donate-stat__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.2), rgba(250, 204, 21, 0.08));
  color: #ca8a04;
}

.donate-stat__icon svg {
  width: 14px;
  height: 14px;
}

.donate-stat__text {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(31, 41, 55, 0.72);
}

.donate-stat__text strong {
  font-weight: 800;
  color: var(--charcoal);
}

body.theme-dark .donate-stat__text {
  color: rgba(203, 213, 225, 0.9);
}

body.theme-dark .donate-stat__text strong {
  color: #f1f5f9;
}

/* Shop Toolbar Redesign */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  margin-bottom: 1.5rem;
}

body.theme-dark .shop-toolbar {
  background: rgba(30, 41, 59, 0.75);
  border-color: rgba(148, 163, 184, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.shop-toolbar__sort {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.shop-toolbar__count {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(31, 41, 55, 0.7);
}

body.theme-dark .shop-toolbar__count {
  color: rgba(148, 163, 184, 0.9);
}

.shop-toolbar .form-select {
  min-width: 140px;
  padding: 0.5rem 2rem 0.5rem 2.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background-color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.shop-toolbar .form-select:hover {
  border-color: rgba(250, 204, 21, 0.5);
}

.shop-toolbar .form-select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.15);
}

body.theme-dark .shop-toolbar .form-select {
  background-color: rgba(51, 65, 85, 0.8);
  border-color: rgba(148, 163, 184, 0.2);
  color: #e2e8f0;
}

.shop-toolbar .input-icon-group {
  position: relative;
}

.shop-toolbar .input-icon {
  left: 0.7rem;
  color: rgba(107, 114, 128, 0.7);
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  .donate-hero {
    padding: 1.5rem 0 1.25rem;
    margin-bottom: 0.25rem;
  }

  .donate-hero .hero-title {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
  }

  .donate-hero__subhead {
    font-size: 0.82rem;
    color: rgba(31, 41, 55, 0.6);
    margin-bottom: 0.9rem;
    max-width: 320px;
  }

  .donate-hero .eyebrow {
    font-size: 0.65rem;
    padding: 0.35rem 0.7rem;
  }

  .donate-hero__stats {
    gap: 0.5rem;
  }

  .donate-stat {
    padding: 0.35rem 0.55rem;
    border-radius: 8px;
  }

  .donate-stat__icon {
    width: 20px;
    height: 20px;
    border-radius: 6px;
  }

  .donate-stat__icon svg {
    width: 10px;
    height: 10px;
  }

  .donate-stat__text {
    font-size: 0.72rem;
    color: rgba(31, 41, 55, 0.55);
  }

  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    gap: 0.65rem;
    border-radius: 14px;
  }

  .shop-toolbar__sort {
    flex-direction: column;
    gap: 0.5rem;
  }

  .shop-toolbar .form-select {
    width: 100%;
    min-width: unset;
  }

  .shop-toolbar__count {
    text-align: center;
    width: 100%;
  }
}