:root {
  --brand-pink: #ff6ec4;
  --brand-purple: #7873f5;
  --brand-blue: #4facfe;
  --brand-green: #43e97b;
  --brand-dark: #1e1e2f;
  --brand-light: #ffffff;
  --image-radius: 14px;
  --product-image-ratio: 1024 / 1538;
  --surface-radius: 18px;
  --surface-shadow: 0 12px 24px rgba(18, 38, 63, 0.08);
  --surface-border: #dbe6f7;
}
html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.cz-banded {
  background: #ffffff;
}

.cz-band {
  padding: 3.5rem 0;
  border-top: 1px solid #e6eef7;
}

.cz-section {
  padding: 3.5rem 0;
}

.cz-band:first-of-type {
  border-top: 0;
}

.cz-banded > .cz-band:nth-of-type(odd):not(.cz-band--custom) {
  background: #ffffff;
}

.cz-banded > .cz-band:nth-of-type(even):not(.cz-band--custom) {
  background: #f7fbff;
}


.cz-panel {
  background: #ffffff;
  border: 1px solid #dbe9ff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--surface-shadow);
}

.cz-panel-tight {
  padding: 1.1rem;
}

.cz-flash {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.cz-navbar {
  border-bottom: 1px solid #e6eef7;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.cz-brand-text {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cz-brand-logo {
  display: block;
  height: 53px;
  width: auto;
  max-width: 266px;
  object-fit: contain;
  object-position: left center;
}

.cz-nav-link {
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-weight: 600;
  color: #1f2a44;
  transition: all 0.2s ease;
}

.cz-nav-link:hover,
.cz-nav-link:focus {
  color: #0d6efd;
  background: #eef6ff;
}

.cz-search .form-control {
  border-radius: 999px;
  border: 1px solid #d5e3f5;
  box-shadow: none;
}

.cz-search .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.cz-search .btn {
  border-radius: 999px;
  font-weight: 600;
}

.cz-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.cz-navbar .cz-cart-btn {
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
}

.cz-navbar .cz-cart-btn:hover,
.cz-navbar .cz-cart-btn:focus {
  background: #eef6ff;
  color: #0d6efd;
}

.cart-qty-stack {
  display: grid;
  gap: 0.2rem;
  min-width: 110px;
}

.cart-qty-form {
  margin: 0;
}

.cart-qty-input {
  max-width: 92px;
  text-align: center;
  border-radius: 10px;
  font-weight: 600;
}

.cart-qty-meta {
  min-height: 1rem;
  line-height: 1.15;
}

.cart-stock-note {
  color: #b54708;
  min-height: 1rem;
  line-height: 1.15;
}

@media (max-width: 575.98px) {
  .cart-page .cart-top-header {
    padding-inline: 0.45rem;
  }
}

.cz-navbar .dropdown-menu {
  border-radius: 14px;
  border: 1px solid #e6eef7;
  box-shadow: 0 16px 30px rgba(18, 38, 63, 0.12);
}

.admin-nav-wrap {
  background: #f3f7ff;
  border-bottom: 1px solid #dbe6f7;
  box-shadow: 0 10px 18px rgba(18, 38, 63, 0.08);
}

.admin-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 0.35rem 0 0.45rem;
}

.admin-nav-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 0.9rem;
  padding: 0.8rem 0 1rem;
}

.admin-nav-group {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #dbe6f7;
  border-radius: 14px;
  padding: 0.65rem 0.72rem 0.5rem;
}

.admin-nav-group.is-active {
  background: linear-gradient(
    155deg,
    rgba(13, 110, 253, 0.1) 0%,
    rgba(79, 172, 254, 0.07) 100%
  );
  border-color: #8fb9ef;
  box-shadow:
    inset 0 0 0 1px rgba(13, 110, 253, 0.18),
    0 10px 20px rgba(13, 110, 253, 0.12);
}

.admin-nav-group-title {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #64748b;
}

.admin-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
}

.admin-nav-kicker {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #64748b;
}

.admin-nav-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2a44;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: #1f2a44;
  font-weight: 600;
  height: 40px;
  padding: 0.42rem 0.72rem;
  font-size: 0.92rem;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #dbe6f7;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.admin-nav-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(18, 38, 63, 0.12);
  color: #0d6efd;
  background: #eef6ff;
}

.admin-nav-link.is-active {
  background: #0d6efd;
  border-color: #0d6efd;
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(13, 110, 253, 0.25);
}

@media (max-width: 991.98px) {
  .admin-nav-grid {
    grid-template-columns: 1fr;
  }

  .admin-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.admin-shell {
  padding-top: 2.4rem !important;
}

.admin-shell .card {
  border: 1px solid #dce8f7;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.admin-shell .card .card-header,
.admin-shell .card .card-body {
  background: #ffffff;
}

.admin-shell .form-control,
.admin-shell .form-select {
  border-radius: 10px;
  border-color: #cdddf0;
}

.admin-shell .form-control:focus,
.admin-shell .form-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.18rem rgba(13, 110, 253, 0.14);
}

.admin-shell .alert {
  border-radius: 12px;
  border-width: 1px;
}

.admin-shell .table > :not(caption) > * > * {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.inventory-action-badge {
  letter-spacing: 0.02em;
  font-weight: 700;
}

.supplier-import-panel {
  border: 1px solid #dbe6f7;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 75%);
}

.supplier-import-panel summary {
  color: #1f2a44;
}

.supplier-import-subtitle {
  max-width: 640px;
}

.supplier-import-picker {
  border: 1px solid #dbe6f7;
  border-radius: 10px;
  background: #ffffff;
  padding: 0.55rem;
}

.supplier-import-options {
  max-height: 210px;
  overflow-y: auto;
  border: 1px solid #e6eef7;
  border-radius: 8px;
  padding: 0.25rem;
  background: #fdfefe;
}

.supplier-import-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.32rem 0.4rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
}

.supplier-import-option:hover {
  background: #f1f7ff;
}

.supplier-import-settings {
  border: 1px solid #dbe6f7;
  border-radius: 10px;
  background: #f8fbff;
  padding: 0.55rem;
}

.supplier-import-field-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #5b708f;
  font-weight: 700;
}

.supplier-import-field-input {
  border-radius: 8px;
  border-color: #cfe0f7;
}

.supplier-import-field-input:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.16rem rgba(13, 110, 253, 0.14);
}

.inventory-notes-expand {
  min-width: 180px;
}

.inventory-notes-summary {
  cursor: pointer;
  color: #1f2a44;
  font-size: 0.85rem;
  max-width: 240px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  list-style: none;
}

.inventory-notes-summary::-webkit-details-marker {
  display: none;
}

.inventory-name-input {
  min-width: 160px;
}

.inventory-table-wrap {
  max-height: 62vh;
}

.inventory-sticky-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #f8fbff;
  box-shadow: inset 0 -1px 0 #dbe6f7;
}

.inventory-supplier-search-wrap {
  min-width: 320px;
}

.inventory-supplier-search-input {
  max-width: 460px;
  min-height: 38px;
  border-radius: 999px;
  border: 1px solid #d5e3f5;
  box-shadow: none;
}

.inventory-supplier-search-input:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

@media (max-width: 767.98px) {
  .inventory-supplier-search-wrap {
    width: 100%;
    min-width: 0;
  }

  .inventory-supplier-search-input {
    max-width: none;
    width: 100%;
  }

  .inventory-table-wrap {
    max-height: none;
    overflow: visible;
  }

  .inventory-responsive-table thead {
    display: none;
  }

  .inventory-responsive-table,
  .inventory-responsive-table tbody,
  .inventory-responsive-table tr,
  .inventory-responsive-table td {
    display: block;
    width: 100%;
  }

  .inventory-responsive-table tr {
    background: #ffffff;
    border: 1px solid #dbe6f7;
    border-radius: 12px;
    padding: 0.4rem 0.5rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 8px 16px rgba(18, 38, 63, 0.08);
  }

  .inventory-responsive-table.table-striped > tbody > tr:nth-of-type(odd) > * {
    background: transparent;
  }

  .inventory-responsive-table td {
    border: 0;
    padding: 0.35rem 0.35rem 0.45rem;
  }

  .inventory-responsive-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 0.2rem;
    font-weight: 700;
  }

  .inventory-responsive-table td .d-flex,
  .inventory-responsive-table td form.d-flex {
    flex-wrap: wrap;
  }

  .inventory-mobile-inline-control {
    display: none !important;
  }

  .inventory-mobile-edit-trigger {
    font-weight: 700;
    text-decoration: none;
  }

  .inventory-sticky-table thead th {
    position: static;
    box-shadow: none;
  }
}

.admin-promo-form .admin-compact-row {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .admin-promo-form .admin-compact-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .admin-promo-form .admin-compact-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


@media (max-width: 767.98px) {
  .admin-nav-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-nav {
    grid-template-columns: 1fr;
  }
}

.admin-compact-form {
  display: grid;
  gap: 1rem;
}

.admin-compact-row {
  display: grid;
  gap: 1rem;
}

.admin-compact-field {
  min-width: 0;
}

.admin-compact-details {
  border: 1px dashed #dbe6f7;
  border-radius: 14px;
  padding: 0.75rem 1rem;
  background: #f8fbff;
}

.admin-compact-details summary {
  cursor: pointer;
  font-weight: 600;
  color: #1f2a44;
  margin-bottom: 0.75rem;
}

.admin-compact-actions {
  display: flex;
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .admin-compact-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .admin-compact-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
  color: #1f2a44;
}

.hero-clean {
  position: relative;
}

.home-hero-title {
  font-size: clamp(2.35rem, 4.8vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 16ch;
  text-wrap: balance;
}

.home-hero-subtitle {
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.55;
  max-width: 58ch;
  font-weight: 500;
}

.hero-image {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.hero-image-placeholder {
  width: 100%;
  min-height: 320px;
  border-radius: 26px;
  background: linear-gradient(135deg, #e7f0ff 0%, #fdf4ff 100%);
  border: 1px dashed #c9d9f4;
}

.home-page > section {
  border-top: 1px solid #e6eef7;
}

.home-page > section:first-of-type {
  border-top: 0;
}

.home-page > section:not(.hero) {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

.home-hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero-logo {
  display: block;
  max-height: 86px;
  width: auto;
  max-width: min(320px, 72vw);
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 6px 14px rgba(18, 38, 63, 0.16));
}


@media (max-width: 768px) {
  .home-page > section {
    background-color: #ffffff;
  }

  .home-page > section:nth-of-type(even) {
    background-color: #f7fbff;
  }

  .home-page > section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.home-promo-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff8f0 0%, #ffffff 100%);
}

.home-promo-section::before,
.home-promo-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  z-index: 0;
}

.home-promo-section::before {
  width: 420px;
  height: 420px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(255, 133, 41, 0.18), transparent 70%);
}

.home-promo-section::after {
  width: 340px;
  height: 340px;
  bottom: -180px;
  left: -100px;
  background: radial-gradient(circle, rgba(222, 77, 95, 0.16), transparent 70%);
}

.home-meet-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.home-meet-card {
  border-radius: 18px;
  padding: 1.35rem 1.5rem;
  border: 1px solid #dbe6f7;
  background:
    radial-gradient(circle at 14% 22%, rgba(13, 110, 253, 0.08), transparent 42%),
    radial-gradient(circle at 84% 78%, rgba(67, 233, 123, 0.08), transparent 46%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 12px 26px rgba(18, 38, 63, 0.1);
}

.home-meet-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: #0d6efd;
  background: rgba(13, 110, 253, 0.12);
  border: 1px solid rgba(13, 110, 253, 0.26);
}

.home-meet-title {
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.35;
  color: #1f2a44;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.home-benefit-section {
  padding-top: 2.35rem;
  padding-bottom: 2.35rem;
}

.home-benefit-section--1 {
  padding-top: 2.7rem;
}

.home-benefit-section--1 {
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
}

.home-benefit-section--2 {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.home-benefit-section--3 {
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.home-benefit-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 110, 253, 0.26);
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-benefit-showcard {
  position: relative;
  border-radius: 20px;
  border: 1px solid #dbe6f7;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 1.15rem 1.2rem 1.25rem;
  box-shadow: 0 14px 28px rgba(18, 38, 63, 0.1);
  overflow: hidden;
}

.home-benefit-showcard--solo {
  max-width: 980px;
  margin: 0 auto;
}

.home-benefit-showcard::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.12), transparent 70%);
}

.home-benefit-showcard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.home-benefit-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.68rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0d6efd;
  background: rgba(13, 110, 253, 0.1);
  border: 1px solid rgba(13, 110, 253, 0.26);
}

.home-benefit-number {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #3b5175;
}

.home-benefit-showcard .text-secondary {
  color: #55637a;
  line-height: 1.55;
}

.home-benefit-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.home-benefit-checklist li {
  position: relative;
  padding-left: 0;
  color: #314767;
  font-weight: 600;
}

.home-benefit-checklist li::before {
  content: none;
}

.home-benefit-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.home-benefit-chip {
  display: inline-flex;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #25395a;
  background: #edf4ff;
  border: 1px solid #d6e5fb;
}

.home-benefit-showcard--1 {
  transform: translateY(0);
}

.home-benefit-showcard--2 {
  transform: translateY(0);
}

.home-benefit-showcard--3 {
  transform: translateY(0);
}

.home-benefit-smart-layout {
  border-width: 2px;
}

.home-benefit-smart-grid {
  display: grid;
  gap: 1rem;
}

.home-benefit-smart-lead .h3 {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.15;
}

.home-benefit-smart-footer {
  display: inline-block;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.35;
}

.home-benefit-smart-points {
  display: grid;
  gap: 0.55rem;
}

.home-benefit-smart-subline {
  color: #5f728f;
  line-height: 1.5;
  max-width: 36ch;
}

.home-benefit-smart-item {
  position: relative;
  padding: 0.62rem 0.8rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid #d6e5fb;
  background: #edf4ff;
  color: #25395a;
}

.home-benefit-smart-item::before {
  content: none;
}

.home-benefit-smart-item--label {
  display: inline-flex;
  width: fit-content;
  padding: 0.28rem 0.7rem;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  border-width: 1px;
  background: #ffffff;
  color: #2f4668;
}

.home-benefit-smart-points--focus {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.home-benefit-smart-points--focus .home-benefit-smart-item {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.96rem;
}

@media (max-width: 575.98px) {
  .home-benefit-smart-points--focus {
    grid-template-columns: 1fr;
  }
}

.home-benefit-smart-item--plain {
  padding-left: 0.8rem;
}

.home-benefit-smart-item--plain::before {
  content: none;
}

.home-benefit-smart-points--copy {
  gap: 0.35rem;
}

.home-benefit-copy-line {
  color: #4c5f7d;
  line-height: 1.6;
  padding-left: 0.85rem;
  border-left: 3px solid rgba(13, 110, 253, 0.22);
}

.home-benefit-copy-line--strong {
  font-weight: 700;
  color: #1f2a44;
}

.home-difference-section {
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}

.home-difference-shell {
  border-radius: 22px;
  border: 1.5px solid rgba(13, 110, 253, 0.24);
  background:
    radial-gradient(circle at 10% 24%, rgba(13, 110, 253, 0.1), transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(13, 110, 253, 0.08), transparent 46%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  box-shadow: 0 14px 24px rgba(18, 38, 63, 0.1);
  padding: clamp(0.85rem, 2vw, 1.2rem);
  text-align: center;
}

.home-difference-text {
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: #1d2e4d;
  text-wrap: balance;
}

.home-benefit-showcard--focus {
  border-width: 2px;
  box-shadow: 0 20px 36px rgba(18, 38, 63, 0.16);
}

.home-benefit-showcard--focus .h4,
.home-benefit-showcard--focus .h5 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 1.18;
}

.home-benefit-showcard--focus .home-benefit-chip-grid {
  gap: 0.55rem;
}

.home-benefit-showcard--focus .home-benefit-chip {
  position: relative;
  padding: 0.48rem 0.9rem 0.48rem 1.2rem;
  font-size: 0.9rem;
  border-width: 1.5px;
}

.home-benefit-showcard--focus .home-benefit-chip::before {
  content: "";
  position: absolute;
  left: 0.62rem;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: currentColor;
  opacity: 0.75;
}

.home-benefit-showcard--focus .fw-semibold {
  font-size: 1.05rem;
}

@media (min-width: 992px) {
  .home-benefit-section--1 .home-benefit-showcard--solo {
    margin-left: 0;
    margin-right: auto;
    max-width: 1040px;
    transform: translateX(-34px);
  }

  .home-benefit-section--2 .home-benefit-showcard--solo {
    margin-left: auto;
    margin-right: 0;
    max-width: 820px;
    transform: translateX(44px);
  }

  .home-benefit-section--3 .home-benefit-showcard--solo {
    margin-left: 0;
    margin-right: auto;
    max-width: 930px;
    transform: translateX(-20px);
  }

  .home-benefit-smart-grid {
    grid-template-columns: minmax(260px, 0.95fr) minmax(340px, 1.05fr);
    align-items: start;
    gap: 1.15rem;
  }
}

@media (min-width: 1200px) {
  .home-benefit-section--1 .home-benefit-showcard--solo {
    transform: translateX(-52px);
  }

  .home-benefit-section--2 .home-benefit-showcard--solo {
    transform: translateX(64px);
  }

  .home-benefit-section--3 .home-benefit-showcard--solo {
    transform: translateX(-30px);
  }
}

@media (max-width: 575.98px) {
  .home-benefit-showcard {
    padding: 1rem;
  }
}

.home-promo-card {
  position: relative;
  z-index: 1;
  border-radius: var(--surface-radius);
  padding: 2.5rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 143, 57, 0.09), transparent 45%),
    radial-gradient(circle at 86% 78%, rgba(222, 77, 95, 0.08), transparent 48%),
    #ffffff;
  border: 1px solid #f8d9bc;
  box-shadow:
    0 18px 34px rgba(18, 38, 63, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.home-promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.65);
  pointer-events: none;
}

.home-promo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #ffede0;
  color: #c45500;
  border: 1px solid rgba(196, 85, 0, 0.35);
  box-shadow:
    0 10px 20px rgba(196, 85, 0, 0.22),
    0 0 0 0 rgba(196, 85, 0, 0.24);
  animation: promoBadgePulse 2.4s ease-in-out infinite;
  margin-bottom: 1rem;
}

@keyframes promoBadgePulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow:
      0 10px 20px rgba(196, 85, 0, 0.22),
      0 0 0 0 rgba(196, 85, 0, 0.24);
  }
  50% {
    transform: translateY(-1px);
    box-shadow:
      0 14px 24px rgba(196, 85, 0, 0.28),
      0 0 0 8px rgba(196, 85, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-promo-badge {
    animation: none;
  }
}

.home-promo-image {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(18, 38, 63, 0.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.home-promo-card:hover .home-promo-image {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 20px 34px rgba(18, 38, 63, 0.2);
}

.home-promo-card .btn.btn-primary {
  background: linear-gradient(135deg, #ff7a1f 0%, #de4d5f 100%);
  border-color: #d24959;
  box-shadow: 0 12px 24px rgba(222, 77, 95, 0.3);
}

.home-promo-card .btn.btn-primary:hover,
.home-promo-card .btn.btn-primary:focus {
  transform: translateY(-1px);
  box-shadow: 0 15px 28px rgba(222, 77, 95, 0.36);
}

.home-promo-card .btn.btn-outline-primary {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(210, 73, 89, 0.45);
}

.home-promo-card .btn.btn-outline-primary:hover,
.home-promo-card .btn.btn-outline-primary:focus {
  background: #fff4f2;
  border-color: rgba(210, 73, 89, 0.7);
}

.home-promo-image-placeholder {
  width: 100%;
  min-height: 280px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffe5c7 0%, #fff6ed 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 164, 85, 0.3);
}

.home-promo-countdown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.36rem 0.72rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #7a2e00;
  background: linear-gradient(180deg, #fff6ee 0%, #ffe8d8 100%);
  border: 1px solid rgba(196, 85, 0, 0.35);
  box-shadow: 0 8px 16px rgba(196, 85, 0, 0.18);
}


.home-feature-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
  border: 1px solid #dce9ff;
  border-radius: var(--surface-radius);
  padding: 1.25rem;
  box-shadow: var(--surface-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(18, 38, 63, 0.12);
}

.home-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  color: #0d6efd;
  background: rgba(13, 110, 253, 0.12);
}

.home-cta-band {
  background: linear-gradient(135deg, #0d6efd 0%, #4facfe 45%, #43e97b 100%);
}

.affiliate-cta-section {
  background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.affiliate-cta-card {
  border-radius: var(--surface-radius);
  padding: 2rem;
  background: linear-gradient(140deg, #0d6efd 0%, #4facfe 55%, #43e97b 100%);
  box-shadow: 0 20px 35px rgba(13, 110, 253, 0.18);
}

.affiliate-cta-card .d-flex.justify-content-between {
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.affiliate-stat-label {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.affiliate-stat-value {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.affiliate-chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.6rem;
}

.affiliate-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1f2a44;
  background: #f3f6fb;
  border: 1px solid #e1e8f5;
}
.testimonial-card {
  background: #ffffff;
  border-radius: var(--surface-radius);
  padding: 1.5rem;
  box-shadow: var(--surface-shadow);
  height: 100%;
}

.testimonial-quote {
  font-size: 1.05rem;
  color: #223047;
  margin-bottom: 1.25rem;
}

.home-reviews-section {
  position: relative;
}

.home-reviews-head {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid color-mix(in srgb, var(--theme-primary) 20%, #dbe6f7);
}

.home-reviews-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0.3rem 0.72rem;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--theme-pill-text);
  background: var(--theme-pill-bg);
  border: 1px solid var(--theme-pill-border);
}

.home-reviews-average {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: color-mix(in srgb, var(--theme-nav-link) 88%, #0f172a);
  background: color-mix(in srgb, var(--theme-primary) 10%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--theme-primary) 26%, #dbe6f7);
}

.home-testimonial-card {
  border: 1px solid color-mix(in srgb, var(--theme-primary) 22%, #dbe6f7);
  background:
    linear-gradient(
      150deg,
      color-mix(in srgb, var(--theme-primary) 7%, #ffffff) 0%,
      color-mix(in srgb, var(--theme-accent) 6%, #ffffff) 100%
    );
  box-shadow: 0 12px 22px rgba(var(--theme-primary-rgb), 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home-testimonial-card:hover {
  transform: none;
  border-color: color-mix(in srgb, var(--theme-primary) 34%, #cbd5e1);
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--theme-primary) 24%, #dbe6f7),
    0 16px 26px rgba(var(--theme-primary-rgb), 0.18);
}

.home-testimonial-card:focus-within {
  border-color: color-mix(in srgb, var(--theme-primary) 34%, #cbd5e1);
  box-shadow: 0 16px 26px rgba(var(--theme-primary-rgb), 0.18);
}

.home-testimonial-quote {
  color: color-mix(in srgb, var(--theme-nav-link) 90%, #0f172a);
  line-height: 1.55;
}

.home-testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 0.25rem;
  margin-bottom: 0.45rem;
}

.home-testimonial-name {
  color: color-mix(in srgb, var(--theme-nav-link) 88%, #0f172a);
}

.home-testimonial-rating {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.24rem 0.62rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--theme-pill-text);
  background: var(--theme-pill-bg);
  border: 1px solid var(--theme-pill-border);
}

.home-testimonial-product {
  color: color-mix(in srgb, var(--theme-nav-link) 72%, #64748b);
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.footer {
  background: #f4f8ff;
  border-top: 1px solid #dbe6f7;
  padding: 1.6rem 0 1rem;
  color: #1f2a44;
}

.footer-shell {
  display: grid;
  gap: 1.2rem;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

.footer-tagline {
  color: #4a5568;
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
}

.footer-social-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  color: #b21f5a;
  background: rgba(236, 72, 153, 0.12);
  border: 1px solid rgba(236, 72, 153, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-social-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(178, 31, 90, 0.18);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-title {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #748099;
  margin-bottom: 0.25rem;
}

.footer-link {
  text-decoration: none;
  color: #1f2a44;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
  color: #0d6efd;
  transform: translateX(2px);
}

.footer-bottom {
  margin-top: 1.2rem;
  padding-top: 0.75rem;
  border-top: 1px solid #dbe6f7;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: #6b7280;
  font-size: 0.8rem;
}

.footer-note {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .footer-shell {
    grid-template-columns: 1.2fr repeat(3, minmax(140px, 1fr));
    align-items: start;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.product-list-card {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid #d8e8ff;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(248, 252, 255, 0.86) 100%
  );
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-list-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.15)
  );
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.product-list-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 22px rgba(24, 46, 78, 0.1);
}

.product-list-card:hover::before {
  opacity: 1;
}

.product-list-card .row {
  position: relative;
  z-index: 1;
}

.products-list-section {
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 60%);
  border: 1px solid #e3efff;
  box-shadow: 0 14px 26px rgba(18, 38, 63, 0.08);
}

.product-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.product-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0d6efd;
  background: rgba(13, 110, 253, 0.12);
}

.product-pill-alt {
  color: #0f5132;
  background: rgba(25, 135, 84, 0.12);
}

.product-pill-muted {
  color: #4a5568;
  background: #eef2f7;
}

.price-original {
  text-decoration: line-through;
  color: #8a97a6;
  font-weight: 500;
}

.price-discounted {
  color: #d64500;
  font-weight: 700;
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #fff0e6;
  color: #c24a00;
}

.product-list-card .col-md-3 {
  display: flex;
}

.product-list-card .col-md-3 > a {
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.product-list-card .card-body {
  padding: 1rem;
}

.product-review-editor {
  margin-top: 0.15rem;
}

.product-review-editor > summary {
  list-style: none;
}

.product-review-editor > summary::-webkit-details-marker {
  display: none;
}

.product-review-toggle {
  border-radius: 999px;
  font-weight: 600;
}

.product-review-editor[open] .product-review-form {
  padding: 0.8rem;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--theme-primary) 24%, #dbe6f7);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--theme-primary) 6%, #ffffff) 0%,
    #ffffff 100%
  );
}

.product-review-textarea {
  resize: vertical;
  min-height: 130px;
}

.product-list-image {
  width: 100%;
  height: auto;
  aspect-ratio: var(--product-image-ratio);
  display: block;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
  border-radius: var(--image-radius);
  background: transparent;
}

.products-fun-hero {
  border-radius: 14px;
  padding: 1rem 1.1rem;
  background: linear-gradient(135deg, #0d6efd 0%, #4facfe 45%, #43e97b 100%);
  box-shadow: 0 10px 20px rgba(13, 110, 253, 0.18);
}

.products-fun-kicker {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.products-fun-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.product-title-link {
  color: #0b4da2;
  transition: color 0.2s ease;
}

.product-title-link:hover {
  color: #0d6efd;
}

.product-price-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0;
  border-radius: 0;
  color: #0f315a;
  background: transparent;
  border: 0;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  position: relative;
}

.product-price-pill::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #0d6efd 0%, #43e97b 100%);
  opacity: 0.45;
}

.recently-viewed-card {
  border: 1px solid #dbe8fb;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  max-width: 160px;
  margin: 0 auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.recently-viewed-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(18, 38, 63, 0.12);
}




.recently-viewed-card .card-body {
  padding: 0.55rem 0.65rem 0.65rem;
}

.recently-viewed-image {
  width: 100%;
  height: auto;
  aspect-ratio: var(--product-image-ratio);
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: var(--image-radius);
  background: transparent;
}

.recently-viewed-title {
  font-size: 0.86rem;
  line-height: 1.25;
}

.recently-viewed-description {
  font-size: 0.73rem;
  line-height: 1.3;
  min-height: 0;
}

.recently-viewed-price {
  font-size: 0.82rem;
}

.recently-viewed-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1f2a44;
  background: #e9eff7;
}

.product-details-page {
  max-width: 900px;
  position: relative;
}

.product-details-card {
  max-width: 700px;
  margin: 0 auto;
}

.product-hero-card {
  border: 1px solid #d8e7ff;
  overflow: hidden;
}

.product-hero-card .col-md-5 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.product-details-image {
  width: 100%;
  height: auto;
  aspect-ratio: var(--product-image-ratio);
  display: block;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
  border-radius: var(--image-radius);
  background: transparent;
}

.product-info-card {
  border: 1px solid #d9e9ff;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-info-card:hover {
  transform: translateY(-3px) rotate(-0.2deg);
  box-shadow: 0 12px 20px rgba(24, 46, 78, 0.08);
}

.product-info-text {
  white-space: pre-line;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.34rem 0.78rem;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: color-mix(in srgb, var(--theme-primary) 72%, #14243f);
  background:
    linear-gradient(
      130deg,
      color-mix(in srgb, var(--theme-primary) 10%, transparent) 0%,
      color-mix(in srgb, var(--theme-accent) 8%, transparent) 100%
    ),
    linear-gradient(
    90deg,
    color-mix(in srgb, var(--theme-primary) 12%, #ffffff) 0%,
    color-mix(in srgb, var(--theme-accent) 12%, #ffffff) 100%
  );
  border: 1px solid color-mix(in srgb, var(--theme-primary) 28%, #dbe6f7);
  box-shadow: 0 8px 14px rgba(var(--theme-primary-rgb), 0.12);
}

.product-tag::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--theme-primary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--theme-primary) 18%, transparent);
}

.product-tag--favorite {
  color: color-mix(in srgb, var(--theme-nav-link) 84%, #0f172a);
  background:
    linear-gradient(
      130deg,
      color-mix(in srgb, var(--theme-primary) 18%, #ffffff) 0%,
      color-mix(in srgb, var(--theme-accent) 14%, #ffffff) 100%
    );
}

.product-tag--favorite::before {
  background: color-mix(in srgb, var(--theme-primary) 72%, #ffffff);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--theme-primary) 18%, transparent),
    0 0 12px rgba(var(--theme-primary-rgb), 0.28);
}

.product-tag--zero {
  color: color-mix(in srgb, var(--theme-primary) 78%, #10223d);
  background:
    linear-gradient(
      130deg,
      color-mix(in srgb, var(--theme-accent-2) 20%, #ffffff) 0%,
      color-mix(in srgb, var(--theme-primary) 12%, #ffffff) 100%
    );
}

.product-tag--zero::before {
  background: color-mix(in srgb, var(--theme-accent-2) 78%, var(--theme-primary));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--theme-accent-2) 18%, transparent);
}

.product-vibe-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  background: var(--theme-gradient-intense);
  color: var(--theme-on-intense);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 20px rgba(var(--theme-primary-rgb), 0.2);
}

.product-vibe-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  opacity: 0.9;
}

.product-vibe-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--theme-on-intense) 20%, transparent);
  border: 1px solid color-mix(in srgb, var(--theme-on-intense) 42%, transparent);
  font-size: 0.75rem;
  font-weight: 700;
}

.product-reviews-section {
  border: 1px solid color-mix(in srgb, var(--theme-primary) 24%, #dbe6f7);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--theme-primary) 4%, #ffffff) 0%,
    #ffffff 100%
  );
  border-radius: 14px;
  padding: 1rem;
}

.product-reviews-header {
  margin-bottom: 0.85rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid color-mix(in srgb, var(--theme-primary) 18%, #dbe6f7);
}

.product-review-card {
  border: 1px solid color-mix(in srgb, var(--theme-primary) 22%, #dbe6f7);
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--theme-primary) 5%, #ffffff) 0%,
    color-mix(in srgb, var(--theme-accent) 4%, #ffffff) 100%
  );
  border-radius: 12px;
  padding: 0.9rem 1rem;
  box-shadow: 0 10px 18px rgba(var(--theme-primary-rgb), 0.08);
}

.product-review-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
}

.product-review-name {
  color: color-mix(in srgb, var(--theme-nav-link) 88%, #0f172a);
}

.product-review-date {
  font-size: 0.76rem;
  color: color-mix(in srgb, var(--theme-nav-link) 68%, #64748b);
}

.product-review-rating {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--theme-pill-text);
  background: var(--theme-pill-bg);
  border: 1px solid var(--theme-pill-border);
}

.product-review-comment {
  font-size: 0.92rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--theme-nav-link) 88%, #1e293b);
  margin-top: 0.2rem;
}

.product-review-comment--muted {
  color: color-mix(in srgb, var(--theme-nav-link) 62%, #64748b);
  font-style: italic;
}

.admin-image-frame {
  width: 100%;
  height: 140px;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: var(--image-radius);
  background: #f8f9fa;
}

.about-intro-section {
  background: linear-gradient(180deg, #fff8fd 0%, #f3f9ff 55%, #f3fff8 100%);
  position: relative;
  overflow: hidden;
}

.about-intro-section::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  top: -70px;
  right: -70px;
  background: radial-gradient(circle, rgba(255, 110, 196, 0.18), transparent 70%);
}

.about-intro-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  left: -90px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(67, 233, 123, 0.18), transparent 70%);
}

.about-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--theme-pill-text);
  background: var(--theme-pill-bg);
  border: 1px solid var(--theme-pill-border);
}

.about-image-wrap {
  border-radius: var(--image-radius);
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(18, 38, 63, 0.12);
  height: 420px;
}

.about-intro-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Home hero should preserve full uploaded artwork without desktop cropping. */
.home-page .about-intro-section .about-image-wrap {
  position: relative;
  height: auto;
  min-height: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 18px;
  border: 0;
  background: linear-gradient(
    160deg,
    color-mix(in srgb, var(--theme-primary, #0d6efd) 8%, #ffffff),
    color-mix(in srgb, var(--theme-accent, #43e97b) 8%, #ffffff)
  );
  box-shadow: none;
}

.home-page .about-intro-section .about-image-wrap::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 24px;
  background: linear-gradient(
    140deg,
    color-mix(in srgb, var(--theme-primary, #0d6efd) 12%, transparent),
    color-mix(in srgb, var(--theme-accent, #43e97b) 10%, transparent)
  );
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}

.home-page .about-intro-section .about-intro-image {
  position: relative;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  border: 0;
  box-shadow: none;
}

.home-page .about-intro-section .about-kicker {
  box-shadow: 0 10px 22px rgba(13, 110, 253, 0.15);
}

.home-page .about-intro-section .about-stat-chip {
  border: 1px solid rgba(148, 163, 184, 0.34);
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}

.home-page .about-intro-section .btn.btn-primary {
  box-shadow: 0 14px 28px rgba(13, 110, 253, 0.28);
}

.home-page .about-intro-section .btn.btn-outline-primary {
  background: #ffffff;
  border-color: rgba(13, 110, 253, 0.42);
}

.home-page .about-intro-section .btn.btn-outline-primary:hover,
.home-page .about-intro-section .btn.btn-outline-primary:focus {
  background: #eef5ff;
  border-color: rgba(13, 110, 253, 0.62);
}

@media (max-width: 991.98px) {
  .hero {
    min-height: 75vh;
  }

  .about-intro-image {
    height: 100%;
  }

  .about-image-wrap {
    height: 300px;
  }

  .product-list-image,
  .product-details-image,
  .recently-viewed-image {
    aspect-ratio: var(--product-image-ratio);
    height: auto;
  }
}

@media (max-width: 767.98px) {
  .about-intro-section .about-image-wrap {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .about-intro-section .about-intro-image {
    height: auto;
    max-height: 70vh;
    object-fit: contain;
  }

  .product-list-image,
  .product-details-image,
  .recently-viewed-image {
    aspect-ratio: var(--product-image-ratio);
    height: auto;
  }

  .products-page .products-list-section {
    padding: 0.7rem;
  }

  .products-page .product-list-card {
    max-width: 340px;
  }

  .products-page .product-list-card .card-body {
    padding: 0.85rem;
  }
}

.about-section-title {
  position: relative;
  padding-bottom: 0.6rem;
}

.about-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 3px;
  border-radius: 99px;
  background: #0d6efd;
}

.about-panel {
  background: #ffffff;
  border: 1px solid #dbe9ff;
  border-top: 4px solid #4facfe;
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 8px 20px rgba(18, 38, 63, 0.05);
}

.about-value-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
  border: 1px solid #dfe9f7;
  border-radius: 14px;
  padding: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(18, 38, 63, 0.08);
}

.about-promise-section {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 70%);
}

.about-promise-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.4rem;
  border: 1px solid #e3efff;
  box-shadow: 0 12px 24px rgba(18, 38, 63, 0.08);
}

.about-promise-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d6efd;
  background: rgba(13, 110, 253, 0.12);
  margin-bottom: 0.75rem;
}

.about-stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #1f3a5f;
  background: linear-gradient(90deg, #e8f2ff 0%, #e8fff4 100%);
  border: 1px solid #cfe4ff;
  box-shadow:
    0 6px 14px rgba(18, 38, 63, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-stat-chip:hover {
  transform: translateY(-1px);
  box-shadow:
    0 10px 18px rgba(18, 38, 63, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.about-value-tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0d6efd;
}

.affiliate-page {
  max-width: 1100px;
}

.affiliate-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #0d6efd;
  background: rgba(13, 110, 253, 0.12);
  border: 1px solid #cfe1ff;
}

.affiliate-stat-card {
  border: 1px solid #d8e8ff;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

.affiliate-earnings-card {
  border: 1px solid #cfe8d9;
  color: #ffffff;
  background: linear-gradient(135deg, #0d6efd 0%, #4facfe 45%, #43e97b 100%);
}

.affiliate-earnings-card .small {
  color: rgba(255, 255, 255, 0.92) !important;
}

.admin-shell .affiliate-earnings-card .card-body {
  background: transparent;
}

.affiliate-join-page {
  max-width: 980px;
}

.affiliate-join-hero {
  position: relative;
  background:
    radial-gradient(circle at 10% 15%, rgba(79, 172, 254, 0.2), transparent 35%),
    radial-gradient(circle at 90% 10%, rgba(67, 233, 123, 0.2), transparent 35%),
    linear-gradient(150deg, #ffffff 0%, #f4f9ff 58%, #f3fff8 100%);
  border: 1px solid #d6e8ff;
}

.affiliate-join-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #0d6efd;
  background: rgba(13, 110, 253, 0.12);
  border: 1px solid #cfe1ff;
}

.affiliate-join-benefit {
  border: 1px solid #dbe9ff;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  border-radius: 12px;
  padding: 0.95rem;
  box-shadow: 0 8px 18px rgba(16, 43, 78, 0.05);
}

.affiliate-join-benefit-title {
  color: #0e417c;
  font-weight: 700;
}

.affiliate-join-btn {
  border: 0;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, #0d6efd 0%, #4facfe 45%, #43e97b 100%);
  box-shadow: 0 10px 20px rgba(13, 110, 253, 0.25);
}

.affiliate-join-btn:hover {
  color: #fff;
  transform: translateY(-1px);
}

.goals-page {
  max-width: 980px;
}

.goals-hero {
  padding: 1.2rem 1rem;
  border-radius: 16px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 110, 196, 0.22), transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(67, 233, 123, 0.22), transparent 40%),
    linear-gradient(120deg, #f9fbff 0%, #f5faff 45%, #f8fff9 100%);
  border: 1px solid #d6e9ff;
  box-shadow: 0 10px 22px rgba(16, 43, 78, 0.06);
}

.goals-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.45rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0d5ecf;
  background: rgba(13, 110, 253, 0.12);
}

.goals-add-card {
  border: 1px solid #dbe9ff;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  border-radius: 16px;
}

.goals-add-btn {
  border: 0;
  font-weight: 700;
  background: linear-gradient(135deg, #0d6efd 0%, #4facfe 45%, #43e97b 100%);
  box-shadow: 0 8px 18px rgba(13, 110, 253, 0.22);
}

.goals-add-btn:hover {
  transform: translateY(-1px);
}

.goals-board-title {
  color: #0f315a;
}

.goals-accordion-item {
  border: 1px solid #d7e8ff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.65rem;
}

.goals-accordion .accordion-button {
  font-weight: 700;
  color: #0d3b73;
  background: linear-gradient(90deg, #eef5ff 0%, #eefdf3 100%);
}

.goal-item-card {
  border: 1px solid #dbe9ff;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.goal-item-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(20, 48, 82, 0.08);
}

.goal-progress-track {
  height: 1.15rem;
  border-radius: 999px;
  background: #e6f0ff;
}

.goal-progress-bar {
  font-size: 0.72rem;
  font-weight: 700;
  background: linear-gradient(90deg, #0d6efd 0%, #4facfe 50%, #43e97b 100%);
  animation: progressGlow 2.2s ease-in-out infinite;
}

@keyframes progressGlow {
  0%,
  100% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.35);
  }
}

.store-locator-page {
  background: #ffffff;
}

.store-locator-hero {
  background:
    radial-gradient(circle at 15% 15%, rgba(79, 172, 254, 0.18), transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(255, 110, 196, 0.18), transparent 40%),
    linear-gradient(150deg, #ffffff 0%, #f4f9ff 55%, #f3fff8 100%);
  border-bottom: 1px solid #e4eefb;
}

.store-locator-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #0d6efd;
  background: rgba(13, 110, 253, 0.12);
  border: 1px solid #cfe1ff;
}

.store-locator-search {
  border-radius: 16px;
  border: 1px solid #dbe9ff;
}

.store-locator-card {
  border-radius: var(--surface-radius);
  border: 1px solid #dbe9ff;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
  box-shadow: var(--surface-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-locator-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(18, 38, 63, 0.12);
}

.store-locator-card-body {
  padding: 1.2rem 1.25rem;
}

.store-locator-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
  border: 1px solid #dbe9ff;
  background: linear-gradient(135deg, #ffffff 0%, #f3f8ff 60%, #f7fffb 100%);
  box-shadow: 0 12px 26px rgba(18, 38, 63, 0.08);
}

.store-locator-heading-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.35rem;
}

.store-locator-pill {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #0d6efd;
  background: rgba(13, 110, 253, 0.12);
  border: 1px solid #cfe1ff;
}

.store-locator-count {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1f2a44;
  background: #ffffff;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  border: 1px solid #e4eefb;
}

.store-locator-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 22px;
  border: 1px solid #e1ecff;
  background: linear-gradient(140deg, #ffffff 0%, #f5faff 55%, #f4fff9 100%);
  box-shadow: 0 16px 30px rgba(18, 38, 63, 0.08);
}

.store-locator-cta-main {
  padding: 0.5rem;
}

.store-locator-cta-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #0b6b3a;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.3);
  margin-bottom: 0.75rem;
}

.store-locator-cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.store-locator-cta-card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: var(--surface-radius);
  background: #ffffff;
  border: 1px solid var(--surface-border);
  box-shadow: var(--surface-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-locator-cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(18, 38, 63, 0.12);
}

.store-locator-cta-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0d6efd;
  background: rgba(13, 110, 253, 0.12);
  border: 1px solid #cfe1ff;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .store-locator-cta {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
  }
}

/* Theme system overrides (restored) */
:root {
  --theme-primary: #0d6efd;
  --theme-primary-rgb: 13, 110, 253;
  --theme-accent: #4facfe;
  --theme-accent-2: #43e97b;
  --theme-bg-odd: #ffffff;
  --theme-bg-even: #f7fbff;
  --theme-navbar-bg: rgba(255, 255, 255, 0.96);
  --theme-navbar-border: #e6eef7;
  --theme-nav-link: #1f2a44;
  --theme-nav-link-hover-bg: #eef6ff;
  --theme-nav-link-hover: #0d6efd;
  --theme-panel-bg: #ffffff;
  --theme-panel-border: #dbe9ff;
  --theme-admin-wrap-bg: #f3f7ff;
  --theme-admin-wrap-border: #dbe6f7;
  --theme-admin-active-bg: #0d6efd;
  --theme-admin-active-text: #ffffff;
  --theme-gradient-soft: linear-gradient(180deg, #f7fbff 0%, #ffffff 80%);
  --theme-gradient-warm: linear-gradient(180deg, #fff8f2 0%, #ffffff 80%);
  --theme-gradient-card: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
  --theme-gradient-intense: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-accent) 42%, var(--theme-accent-2) 100%);
  --theme-border-soft: #dbe6f7;
  --theme-border-card: #dbe9ff;
  --theme-pill-bg: rgba(var(--theme-primary-rgb), 0.12);
  --theme-pill-border: rgba(var(--theme-primary-rgb), 0.25);
  --theme-pill-text: var(--theme-primary);
  --theme-tone-soft-text: #0d6efd;
  --theme-tone-soft-bg: rgba(13, 110, 253, 0.12);
  --theme-tone-soft-border: rgba(13, 110, 253, 0.28);
  --theme-tone-strong-text: #0d6efd;
  --theme-tone-strong-bg: rgba(13, 110, 253, 0.16);
  --theme-tone-strong-border: rgba(13, 110, 253, 0.38);
  --theme-on-intense: #ffffff;
  --theme-on-intense-muted: rgba(255, 255, 255, 0.86);
}

body[data-site-theme="ocean"] {
  --theme-primary: #0d6efd;
  --theme-primary-rgb: 13, 110, 253;
  --theme-accent: #4facfe;
  --theme-accent-2: #43e97b;
  --theme-tone-soft-text: #0d6efd;
  --theme-tone-soft-bg: rgba(13, 110, 253, 0.12);
  --theme-tone-soft-border: rgba(13, 110, 253, 0.28);
  --theme-tone-strong-text: #0d6efd;
  --theme-tone-strong-bg: rgba(13, 110, 253, 0.16);
  --theme-tone-strong-border: rgba(13, 110, 253, 0.38);
}

body[data-site-theme="sunset"] {
  --theme-primary: #f9c36e;
  --theme-primary-rgb: 249, 195, 110;
  --theme-accent: #ffe09d;
  --theme-accent-2: #ffc1a4;
  --theme-bg-even: #fffbf4;
  --theme-nav-link-hover-bg: #fff7e6;
  --theme-panel-border: #f8e7cb;
  --theme-admin-wrap-bg: #fff9ef;
  --theme-admin-wrap-border: #f8e5c7;
  --theme-admin-active-bg: #f9c36e;
  --theme-gradient-soft: linear-gradient(180deg, #fffbf4 0%, #ffffff 80%);
  --theme-gradient-warm: linear-gradient(180deg, #fff6e6 0%, #ffffff 80%);
  --theme-gradient-card: linear-gradient(180deg, #ffffff 0%, #fffbf4 100%);
  --theme-border-soft: #f8e5c7;
  --theme-border-card: #f8e7cb;
  --theme-tone-soft-text: #f7b94f;
  --theme-tone-soft-bg: rgba(247, 185, 79, 0.14);
  --theme-tone-soft-border: rgba(247, 185, 79, 0.34);
  --theme-tone-strong-text: #f7b94f;
  --theme-tone-strong-bg: rgba(247, 185, 79, 0.16);
  --theme-tone-strong-border: rgba(247, 185, 79, 0.38);
  --theme-on-intense: #fff9f5;
  --theme-on-intense-muted: rgba(255, 249, 245, 0.9);
}

body[data-site-theme="forest"] {
  --theme-primary: #1f8a5b;
  --theme-primary-rgb: 31, 138, 91;
  --theme-accent: #2fbf71;
  --theme-accent-2: #9ed26a;
  --theme-bg-even: #f4fbf7;
  --theme-nav-link-hover-bg: #e8f7ef;
  --theme-panel-border: #cfe8d8;
  --theme-admin-wrap-bg: #edf8f1;
  --theme-admin-wrap-border: #cfe8d8;
  --theme-admin-active-bg: #1f8a5b;
  --theme-gradient-soft: linear-gradient(180deg, #f4fbf7 0%, #ffffff 80%);
  --theme-gradient-warm: linear-gradient(180deg, #eefaf3 0%, #ffffff 80%);
  --theme-gradient-card: linear-gradient(180deg, #ffffff 0%, #f5fbf7 100%);
  --theme-border-soft: #cfe8d8;
  --theme-border-card: #cfe8d8;
  --theme-tone-soft-text: #1f8a5b;
  --theme-tone-soft-bg: rgba(31, 138, 91, 0.14);
  --theme-tone-soft-border: rgba(31, 138, 91, 0.34);
  --theme-tone-strong-text: #1f8a5b;
  --theme-tone-strong-bg: rgba(31, 138, 91, 0.16);
  --theme-tone-strong-border: rgba(31, 138, 91, 0.38);
  --theme-on-intense: #f4fff8;
  --theme-on-intense-muted: rgba(244, 255, 248, 0.9);
}

body[data-site-theme="mango"] {
  --theme-primary: #ff9800;
  --theme-primary-rgb: 255, 152, 0;
  --theme-accent: #ffb74d;
  --theme-accent-2: #ffcc80;
  --theme-bg-even: #fff8ef;
  --theme-nav-link-hover-bg: #fff1dd;
  --theme-panel-border: #ffe0b2;
  --theme-admin-wrap-bg: #fff7e8;
  --theme-admin-wrap-border: #ffe0b2;
  --theme-admin-active-bg: #ff9800;
  --theme-gradient-soft: linear-gradient(180deg, #fff8ef 0%, #ffffff 80%);
  --theme-gradient-warm: linear-gradient(180deg, #fff1dd 0%, #ffffff 80%);
  --theme-gradient-card: linear-gradient(180deg, #ffffff 0%, #fff8ef 100%);
  --theme-border-soft: #ffe0b2;
  --theme-border-card: #ffe0b2;
  --theme-tone-soft-text: #ff9800;
  --theme-tone-soft-bg: rgba(255, 152, 0, 0.14);
  --theme-tone-soft-border: rgba(255, 152, 0, 0.34);
  --theme-tone-strong-text: #ff9800;
  --theme-tone-strong-bg: rgba(255, 152, 0, 0.16);
  --theme-tone-strong-border: rgba(255, 152, 0, 0.38);
  --theme-on-intense: #fffdf9;
  --theme-on-intense-muted: rgba(255, 253, 249, 0.9);
}

body[data-site-theme="grape"] {
  --theme-primary: #c53a4b;
  --theme-primary-rgb: 197, 58, 75;
  --theme-accent: #de5665;
  --theme-accent-2: #b23f60;
  --theme-bg-even: #fff2f7;
  --theme-nav-link-hover-bg: #ffe7f1;
  --theme-panel-border: #f2c7d8;
  --theme-admin-wrap-bg: #fff0f6;
  --theme-admin-wrap-border: #f2c7d8;
  --theme-admin-active-bg: #c23a63;
  --theme-gradient-soft: linear-gradient(180deg, #fff2f7 0%, #ffffff 80%);
  --theme-gradient-warm: linear-gradient(180deg, #ffe7f1 0%, #ffffff 80%);
  --theme-gradient-card: linear-gradient(180deg, #ffffff 0%, #fff3f8 100%);
  --theme-border-soft: #f2c7d8;
  --theme-border-card: #f2c7d8;
  --theme-tone-soft-text: #c53a4b;
  --theme-tone-soft-bg: rgba(197, 58, 75, 0.14);
  --theme-tone-soft-border: rgba(197, 58, 75, 0.34);
  --theme-tone-strong-text: #c53a4b;
  --theme-tone-strong-bg: rgba(197, 58, 75, 0.16);
  --theme-tone-strong-border: rgba(197, 58, 75, 0.38);
  --theme-on-intense: #fff8fb;
  --theme-on-intense-muted: rgba(255, 248, 251, 0.9);
}

body[data-site-theme] {
  --bs-primary: var(--theme-primary);
  --bs-primary-rgb: var(--theme-primary-rgb);
  --bs-link-color: var(--theme-primary);
  --bs-link-hover-color: var(--theme-primary);
  --theme-nav-link-hover: var(--theme-primary);
  --theme-nav-link-hover-bg: color-mix(in srgb, var(--theme-primary) 12%, #ffffff);
}

body[data-site-theme] .cz-navbar {
  border-bottom-color: var(--theme-navbar-border) !important;
  background: var(--theme-navbar-bg) !important;
}

body[data-site-theme] .cz-nav-link {
  color: var(--theme-nav-link) !important;
}

body[data-site-theme] .cz-nav-link:hover,
body[data-site-theme] .cz-nav-link:focus {
  color: var(--theme-nav-link-hover) !important;
  background: var(--theme-nav-link-hover-bg) !important;
}

body[data-site-theme] .cz-navbar .dropdown-menu {
  border-color: var(--theme-border-soft);
  background: var(--theme-panel-bg);
}

body[data-site-theme] .cz-navbar .dropdown-item:hover,
body[data-site-theme] .cz-navbar .dropdown-item:focus {
  color: var(--theme-primary);
  background: var(--theme-pill-bg);
}

body[data-site-theme] .cz-navbar .navbar-toggler {
  border-color: var(--theme-pill-border);
}

body[data-site-theme] .cz-navbar .navbar-toggler-icon {
  background-image: none;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 2px;
  background:
    linear-gradient(var(--theme-primary), var(--theme-primary)) center 25% / 100% 2px no-repeat,
    linear-gradient(var(--theme-primary), var(--theme-primary)) center 50% / 100% 2px no-repeat,
    linear-gradient(var(--theme-primary), var(--theme-primary)) center 75% / 100% 2px no-repeat;
}

body[data-site-theme] .admin-nav-wrap {
  background: var(--theme-admin-wrap-bg);
  border-bottom-color: var(--theme-admin-wrap-border);
}

body[data-site-theme] .admin-nav-group {
  background: color-mix(in srgb, var(--theme-panel-bg) 82%, #ffffff) !important;
  border-color: color-mix(in srgb, var(--theme-primary) 26%, #dbe6f7) !important;
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--theme-primary) 10%, transparent),
    0 8px 18px rgba(var(--theme-primary-rgb), 0.08) !important;
}

body[data-site-theme] .admin-nav-group.is-active {
  background:
    linear-gradient(
      160deg,
      color-mix(in srgb, var(--theme-primary) 16%, #ffffff) 0%,
      color-mix(in srgb, var(--theme-accent) 12%, #ffffff) 100%
    ) !important;
  border-color: color-mix(in srgb, var(--theme-primary) 44%, #dbe6f7) !important;
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--theme-primary) 26%, transparent),
    0 12px 24px rgba(var(--theme-primary-rgb), 0.16) !important;
}

body[data-site-theme] .admin-nav-group-title {
  color: color-mix(in srgb, var(--theme-primary) 66%, #4b5563) !important;
}

body[data-site-theme] .admin-nav-link.is-active {
  background: var(--theme-admin-active-bg);
  border-color: var(--theme-admin-active-bg);
  color: var(--theme-admin-active-text);
}

body[data-site-theme] .home-page .btn-primary,
body[data-site-theme] .products-page .btn-primary,
body[data-site-theme] .about-page .btn-primary,
body[data-site-theme] .affiliate-page .btn-primary,
body[data-site-theme] .cart-page .btn-primary,
body[data-site-theme] .btn-primary {
  background: var(--theme-gradient-intense) !important;
  border-color: rgba(var(--theme-primary-rgb), 0.65) !important;
  color: var(--theme-on-intense) !important;
  box-shadow: 0 10px 22px rgba(var(--theme-primary-rgb), 0.22) !important;
}

body[data-site-theme] .btn-outline-primary,
body[data-site-theme] .btn-outline-secondary {
  border-color: var(--theme-primary) !important;
  color: var(--theme-primary) !important;
}

body[data-site-theme] .btn-outline-primary:hover,
body[data-site-theme] .btn-outline-primary:focus,
body[data-site-theme] .btn-outline-secondary:hover,
body[data-site-theme] .btn-outline-secondary:focus {
  background: var(--theme-pill-bg) !important;
  color: var(--theme-primary) !important;
  border-color: var(--theme-primary) !important;
}

body[data-site-theme] .cz-search-btn {
  color: var(--theme-primary) !important;
  border: 1px solid var(--theme-primary) !important;
  color: var(--theme-primary) !important;
  background-color: transparent !important;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: none !important;
}

body[data-site-theme] .cz-search-btn:hover,
body[data-site-theme] .cz-search-btn:focus,
body[data-site-theme] .cz-search-btn:focus-visible,
body[data-site-theme] .cz-search-btn:active,
body[data-site-theme] .cz-search-btn.active,
body[data-site-theme] .cz-search-btn.show {
  color: var(--theme-primary) !important;
  border-color: var(--theme-primary) !important;
  background-color: var(--theme-pill-bg) !important;
  background-image: none !important;
  box-shadow: 0 0 0 0.14rem rgba(var(--theme-primary-rgb), 0.16) !important;
}

body[data-site-theme] .text-primary,
body[data-site-theme] .link-primary,
body[data-site-theme] a:hover,
body[data-site-theme] a:focus-visible {
  color: var(--theme-primary) !important;
}

body[data-site-theme] .home-feature-card,
body[data-site-theme] .about-panel,
body[data-site-theme] .about-value-card,
body[data-site-theme] .about-promise-card,
body[data-site-theme] .store-locator-card,
body[data-site-theme] .store-locator-cta,
body[data-site-theme] .store-locator-cta-card,
body[data-site-theme] .affiliate-stat-card,
body[data-site-theme] .goal-item-card,
body[data-site-theme] .goals-add-card,
body[data-site-theme] .product-list-card,
body[data-site-theme] .products-list-section,
body[data-site-theme] .table-responsive.cz-panel,
body[data-site-theme] .supplier-import-panel,
body[data-site-theme] .supplier-import-settings,
body[data-site-theme] .supplier-import-picker {
  background: var(--theme-gradient-card) !important;
  border-color: var(--theme-border-card) !important;
}

body[data-site-theme] .home-promo-section,
body[data-site-theme] .affiliate-cta-section,
body[data-site-theme] .about-intro-section,
body[data-site-theme] .about-promise-section,
body[data-site-theme] .affiliate-page,
body[data-site-theme] .affiliate-join-page,
body[data-site-theme] .affiliate-join-hero,
body[data-site-theme] .goals-hero {
  background: var(--theme-gradient-soft);
}

body[data-site-theme] .home-cta-band,
body[data-site-theme] .affiliate-cta-card,
body[data-site-theme] .affiliate-join-btn,
body[data-site-theme] .products-fun-hero,
body[data-site-theme] .affiliate-page .affiliate-earnings-card,
body[data-site-theme] .goals-add-btn,
body[data-site-theme] .goal-progress-bar,
body[data-site-theme] .cz-cart-btn {
  background: var(--theme-gradient-intense) !important;
  color: var(--theme-on-intense) !important;
  box-shadow: 0 10px 22px rgba(var(--theme-primary-rgb), 0.22) !important;
}

body[data-site-theme] .affiliate-page .affiliate-earnings-card .small,
body[data-site-theme] .products-fun-kicker,
body[data-site-theme] .products-fun-hero h2 {
  color: var(--theme-on-intense-muted) !important;
}

body[data-site-theme] .home-feature-icon,
body[data-site-theme] .about-kicker,
body[data-site-theme] .about-value-tag,
body[data-site-theme] .about-stat-chip,
body[data-site-theme] .affiliate-kicker,
body[data-site-theme] .affiliate-join-kicker,
body[data-site-theme] .goals-kicker,
body[data-site-theme] .store-locator-kicker,
body[data-site-theme] .store-locator-cta-kicker,
body[data-site-theme] .store-locator-cta-icon,
body[data-site-theme] .admin-nav-kicker {
  color: var(--theme-pill-text) !important;
  background: var(--theme-pill-bg) !important;
  border-color: var(--theme-pill-border) !important;
}

body[data-site-theme] .about-stat-chip {
  background: linear-gradient(
    120deg,
    color-mix(in srgb, var(--theme-primary) 14%, #ffffff) 0%,
    color-mix(in srgb, var(--theme-accent) 12%, #ffffff) 100%
  ) !important;
  color: var(--theme-nav-link) !important;
  border-color: color-mix(in srgb, var(--theme-primary) 24%, #ffffff) !important;
  box-shadow:
    0 8px 16px rgba(var(--theme-primary-rgb), 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

body[data-site-theme] .about-stat-chip:hover {
  box-shadow:
    0 12px 22px rgba(var(--theme-primary-rgb), 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

body[data-site-theme] .store-locator-hero {
  background: var(--theme-gradient-soft) !important;
  border-bottom-color: var(--theme-border-soft) !important;
}

body[data-site-theme="ocean"] .store-locator-hero {
  background:
    radial-gradient(circle at 15% 15%, rgba(79, 172, 254, 0.2), transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(67, 233, 123, 0.2), transparent 40%),
    linear-gradient(150deg, #ffffff 0%, #f4f9ff 55%, #f3fff8 100%) !important;
}

body[data-site-theme="sunset"] .store-locator-hero {
  background:
    radial-gradient(circle at 15% 15%, rgba(243, 154, 58, 0.22), transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(222, 77, 95, 0.22), transparent 40%),
    linear-gradient(150deg, #fff8f2 0%, #fff0df 55%, #ffe9ea 100%) !important;
}

body[data-site-theme="forest"] .store-locator-hero {
  background:
    radial-gradient(circle at 15% 15%, rgba(47, 174, 99, 0.2), transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(139, 198, 92, 0.22), transparent 40%),
    linear-gradient(150deg, #f5fbf7 0%, #eaf8ef 55%, #f2fae6 100%) !important;
}

body[data-site-theme] .form-control:focus,
body[data-site-theme] .form-select:focus,
body[data-site-theme] .form-check-input:focus {
  border-color: var(--theme-primary) !important;
  box-shadow: 0 0 0 0.18rem rgba(var(--theme-primary-rgb), 0.18) !important;
}

body[data-site-theme] .form-check-input:checked {
  background-color: var(--theme-primary);
  border-color: var(--theme-primary);
}

body[data-site-theme] .badge.text-bg-primary,
body[data-site-theme] .bg-primary,
body[data-site-theme] .nav-pills .nav-link.active,
body[data-site-theme] .page-item.active .page-link {
  background: var(--theme-primary) !important;
  border-color: var(--theme-primary) !important;
  color: var(--theme-on-intense) !important;
}

body[data-site-theme] .page-link {
  color: var(--theme-primary);
}

body[data-site-theme] .page-link:hover,
body[data-site-theme] .page-link:focus {
  color: var(--theme-primary);
  background: var(--theme-pill-bg);
  border-color: var(--theme-pill-border);
}

/* Scene enforcer: neutralize legacy hardcoded blue/green gradients */
body[data-site-theme] .home-page,
body[data-site-theme] .about-page,
body[data-site-theme] .products-page,
body[data-site-theme] .affiliate-page,
body[data-site-theme] .store-locator-page,
body[data-site-theme] .goals-page,
body[data-site-theme] .cart-page {
  background: var(--theme-bg-odd) !important;
}

body[data-site-theme] .about-intro-section,
body[data-site-theme] .home-promo-section,
body[data-site-theme] .affiliate-cta-section,
body[data-site-theme] .affiliate-join-page,
body[data-site-theme] .affiliate-join-hero,
body[data-site-theme] .products-list-section,
body[data-site-theme] .goals-hero,
body[data-site-theme] .store-locator-cta,
body[data-site-theme] .supplier-import-panel,
body[data-site-theme] .supplier-import-settings {
  background: var(--theme-gradient-soft) !important;
  border-color: var(--theme-border-soft) !important;
}

body[data-site-theme] .home-feature-card,
body[data-site-theme] .home-promo-card,
body[data-site-theme] .about-panel,
body[data-site-theme] .about-value-card,
body[data-site-theme] .about-promise-card,
body[data-site-theme] .affiliate-stat-card,
body[data-site-theme] .goal-item-card,
body[data-site-theme] .goals-add-card,
body[data-site-theme] .store-locator-card,
body[data-site-theme] .store-locator-cta-card,
body[data-site-theme] .store-locator-heading,
body[data-site-theme] .product-list-card,
body[data-site-theme] .product-info-card,
body[data-site-theme] .recently-viewed-card,
body[data-site-theme] .table-responsive.cz-panel,
body[data-site-theme] .supplier-import-picker,
body[data-site-theme] .supplier-import-options {
  background: var(--theme-gradient-card) !important;
  border-color: var(--theme-border-card) !important;
}

body[data-site-theme] .hero-image-placeholder,
body[data-site-theme] .home-promo-image-placeholder {
  background: var(--theme-gradient-card) !important;
  border-color: var(--theme-border-soft) !important;
}

body[data-site-theme] .goal-progress-bar,
body[data-site-theme] .products-fun-hero,
body[data-site-theme] .affiliate-page .affiliate-earnings-card,
body[data-site-theme] .home-cta-band,
body[data-site-theme] .affiliate-cta-card {
  background: var(--theme-gradient-intense) !important;
}

/* Navbar cart button: force active scene colors */
body[data-site-theme] .cz-navbar .cz-cart-btn.btn.btn-primary {
  background: var(--theme-gradient-intense) !important;
  border-color: rgba(var(--theme-primary-rgb), 0.68) !important;
  color: var(--theme-on-intense) !important;
  box-shadow: 0 10px 20px rgba(var(--theme-primary-rgb), 0.24) !important;
}

body[data-site-theme] .cz-navbar .cz-cart-btn.btn.btn-primary:hover,
body[data-site-theme] .cz-navbar .cz-cart-btn.btn.btn-primary:focus {
  color: var(--theme-on-intense) !important;
  background: var(--theme-gradient-intense) !important;
  filter: brightness(1.04);
}

body[data-site-theme] .cz-navbar .cz-cart-btn .badge,
body[data-site-theme] .cz-navbar .cz-cart-btn .text-bg-light,
body[data-site-theme] .cz-navbar .cz-cart-btn .text-primary {
  background: #ffffff !important;
  color: var(--theme-primary) !important;
  border: 1px solid rgba(var(--theme-primary-rgb), 0.2);
}

/* Theme page visual previews */
.theme-choice-card {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.theme-choice-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(18, 38, 63, 0.1);
}

.theme-preview {
  height: 56px;
  border-radius: 10px;
  border: 1px solid #dbe6f7;
}

.theme-preview-ocean {
  background: linear-gradient(135deg, #0d6efd 0%, #4facfe 48%, #43e97b 100%);
}

.theme-preview-sunset {
  background: linear-gradient(135deg, #f9c36e 0%, #ffe09d 48%, #ffc1a4 100%);
}

.theme-preview-forest {
  background: linear-gradient(135deg, #1f8a5b 0%, #2fbf71 48%, #9ed26a 100%);
}

.theme-preview-mango {
  background: linear-gradient(135deg, #ff9800 0%, #ffb74d 48%, #ffcc80 100%);
}

.theme-preview-grape {
  background: linear-gradient(135deg, #c53a4b 0%, #de5665 48%, #b23f60 100%);
}

.theme-preview-swatches {
  display: flex;
  gap: 0.45rem;
}

.theme-swatch {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.theme-swatch-soft {
  width: 34px;
  border-radius: 999px;
}

/* Neutral UI mode: no gradients, theme colors only from admin scheme variables */
body[data-site-theme] {
  --theme-gradient-soft: var(--theme-bg-even);
  --theme-gradient-warm: var(--theme-bg-even);
  --theme-gradient-card: var(--theme-panel-bg);
  --theme-gradient-intense: var(--theme-primary);
}

body[data-site-theme] * {
  background-image: none;
}

body[data-site-theme] .home-page,
body[data-site-theme] .about-page,
body[data-site-theme] .products-page,
body[data-site-theme] .affiliate-page,
body[data-site-theme] .store-locator-page,
body[data-site-theme] .goals-page,
body[data-site-theme] .cart-page,
body[data-site-theme] .cz-banded,
body[data-site-theme] .cz-band,
body[data-site-theme] .cz-section {
  background: var(--theme-bg-odd) !important;
  border-color: var(--theme-border-soft) !important;
}

body[data-site-theme] .home-promo-section,
body[data-site-theme] .about-intro-section,
body[data-site-theme] .affiliate-cta-section,
body[data-site-theme] .affiliate-join-page,
body[data-site-theme] .affiliate-join-hero,
body[data-site-theme] .products-list-section,
body[data-site-theme] .goals-hero,
body[data-site-theme] .store-locator-hero,
body[data-site-theme] .store-locator-cta,
body[data-site-theme] .supplier-import-panel,
body[data-site-theme] .supplier-import-settings {
  background: var(--theme-bg-even) !important;
  border-color: var(--theme-border-soft) !important;
}

body[data-site-theme] .home-feature-card,
body[data-site-theme] .home-promo-card,
body[data-site-theme] .about-panel,
body[data-site-theme] .about-value-card,
body[data-site-theme] .about-promise-card,
body[data-site-theme] .affiliate-stat-card,
body[data-site-theme] .affiliate-page .card,
body[data-site-theme] .goal-item-card,
body[data-site-theme] .goals-add-card,
body[data-site-theme] .store-locator-card,
body[data-site-theme] .store-locator-cta-card,
body[data-site-theme] .store-locator-heading,
body[data-site-theme] .product-list-card,
body[data-site-theme] .product-info-card,
body[data-site-theme] .recently-viewed-card,
body[data-site-theme] .cz-panel,
body[data-site-theme] .table-responsive.cz-panel,
body[data-site-theme] .supplier-import-picker,
body[data-site-theme] .supplier-import-options,
body[data-site-theme] .theme-choice-card {
  background: var(--theme-panel-bg) !important;
  border-color: var(--theme-border-card) !important;
  box-shadow: 0 8px 18px rgba(18, 38, 63, 0.06) !important;
}

body[data-site-theme] .home-cta-band,
body[data-site-theme] .affiliate-cta-card,
body[data-site-theme] .affiliate-join-btn,
body[data-site-theme] .products-fun-hero,
body[data-site-theme] .affiliate-page .affiliate-earnings-card,
body[data-site-theme] .goals-add-btn,
body[data-site-theme] .goal-progress-bar,
body[data-site-theme] .cz-cart-btn,
body[data-site-theme] .btn-primary {
  background: var(--theme-primary) !important;
  color: var(--theme-on-intense) !important;
  border-color: rgba(var(--theme-primary-rgb), 0.55) !important;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
}

body[data-site-theme] .btn-primary:hover,
body[data-site-theme] .btn-primary:focus,
body[data-site-theme] .btn-primary:focus-visible {
  background: color-mix(in srgb, var(--theme-primary) 84%, #000000) !important;
  border-color: rgba(var(--theme-primary-rgb), 0.72) !important;
  color: var(--theme-on-intense) !important;
  box-shadow: 0 12px 24px rgba(var(--theme-primary-rgb), 0.28) !important;
}

body[data-site-theme] .btn-primary:active,
body[data-site-theme] .btn-primary.active {
  background: color-mix(in srgb, var(--theme-primary) 78%, #000000) !important;
  border-color: rgba(var(--theme-primary-rgb), 0.76) !important;
  transform: translateY(1px);
  box-shadow: 0 8px 16px rgba(var(--theme-primary-rgb), 0.24) !important;
}

/* Keep navbar cart aligned with regular nav links */
body[data-site-theme] .cz-navbar .cz-cart-btn {
  background: transparent !important;
  color: var(--theme-nav-link) !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

body[data-site-theme] .cz-navbar .cz-cart-btn:hover,
body[data-site-theme] .cz-navbar .cz-cart-btn:focus {
  background: var(--theme-nav-link-hover-bg) !important;
  color: var(--theme-nav-link-hover) !important;
}

body[data-site-theme] .btn-outline-primary,
body[data-site-theme] .btn-outline-secondary,
body[data-site-theme] .cz-search-btn {
  color: var(--theme-primary) !important;
  border-color: var(--theme-primary) !important;
}

body[data-site-theme] .btn-outline-primary:hover,
body[data-site-theme] .btn-outline-primary:focus,
body[data-site-theme] .btn-outline-secondary:hover,
body[data-site-theme] .btn-outline-secondary:focus,
body[data-site-theme] .cz-search-btn:hover,
body[data-site-theme] .cz-search-btn:focus,
body[data-site-theme] .cz-search-btn:active {
  background: var(--theme-pill-bg) !important;
  color: var(--theme-primary) !important;
  border-color: var(--theme-primary) !important;
}

body[data-site-theme] .cz-search-btn {
  background: var(--theme-primary) !important;
  color: var(--theme-on-intense) !important;
  border-color: rgba(var(--theme-primary-rgb), 0.58) !important;
}

body[data-site-theme] .cz-search-btn:hover,
body[data-site-theme] .cz-search-btn:focus,
body[data-site-theme] .cz-search-btn:active {
  background: color-mix(in srgb, var(--theme-primary) 86%, #000000) !important;
  color: var(--theme-on-intense) !important;
  border-color: rgba(var(--theme-primary-rgb), 0.64) !important;
}

body[data-site-theme] .home-feature-icon,
body[data-site-theme] .about-kicker,
body[data-site-theme] .about-value-tag,
body[data-site-theme] .about-stat-chip,
body[data-site-theme] .affiliate-kicker,
body[data-site-theme] .affiliate-join-kicker,
body[data-site-theme] .goals-kicker,
body[data-site-theme] .store-locator-kicker,
body[data-site-theme] .store-locator-cta-kicker,
body[data-site-theme] .store-locator-cta-icon,
body[data-site-theme] .admin-nav-kicker,
body[data-site-theme] .affiliate-chip,
body[data-site-theme] .home-promo-badge {
  background: var(--theme-pill-bg) !important;
  color: var(--theme-pill-text) !important;
  border-color: var(--theme-pill-border) !important;
}

body[data-site-theme] .home-page .home-promo-badge {
  background: var(--theme-gradient-intense) !important;
  color: var(--theme-on-intense) !important;
  border-color: color-mix(in srgb, var(--theme-primary) 68%, #0f172a) !important;
  box-shadow:
    0 10px 20px rgba(var(--theme-primary-rgb), 0.3),
    0 0 0 0 rgba(var(--theme-primary-rgb), 0.24) !important;
}

body[data-site-theme] .home-page .home-promo-countdown {
  color: color-mix(in srgb, var(--theme-primary) 75%, #1f2a44) !important;
  background: color-mix(in srgb, var(--theme-primary) 10%, #ffffff) !important;
  border-color: color-mix(in srgb, var(--theme-primary) 34%, #ffffff) !important;
  box-shadow: 0 8px 16px rgba(var(--theme-primary-rgb), 0.2) !important;
}

body[data-site-theme] .home-page .home-promo-section::before {
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--theme-primary) 20%, transparent),
    transparent 70%
  ) !important;
}

body[data-site-theme] .home-page .home-promo-section::after {
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--theme-accent) 18%, transparent),
    transparent 70%
  ) !important;
}

body[data-site-theme] .home-page .home-promo-card .btn.btn-primary {
  background: var(--theme-gradient-intense) !important;
  color: var(--theme-on-intense) !important;
  border-color: color-mix(in srgb, var(--theme-primary) 74%, #0f172a) !important;
  box-shadow: 0 12px 24px rgba(var(--theme-primary-rgb), 0.32) !important;
}

body[data-site-theme] .home-page .home-promo-card .btn.btn-primary:hover,
body[data-site-theme] .home-page .home-promo-card .btn.btn-primary:focus {
  box-shadow: 0 16px 30px rgba(var(--theme-primary-rgb), 0.4) !important;
}

body[data-site-theme] .home-page .home-promo-card .btn.btn-outline-primary {
  background: color-mix(in srgb, var(--theme-primary) 8%, #ffffff) !important;
  border-color: color-mix(in srgb, var(--theme-primary) 38%, #ffffff) !important;
  color: color-mix(in srgb, var(--theme-primary) 72%, #1f2a44) !important;
}

body[data-site-theme] .home-page .home-promo-card .btn.btn-outline-primary:hover,
body[data-site-theme] .home-page .home-promo-card .btn.btn-outline-primary:focus {
  background: color-mix(in srgb, var(--theme-primary) 14%, #ffffff) !important;
  border-color: color-mix(in srgb, var(--theme-primary) 54%, #ffffff) !important;
}

body[data-site-theme] .about-intro-section::before,
body[data-site-theme] .about-intro-section::after {
  background: none !important;
  content: none !important;
}

body[data-site-theme] .about-cta-section {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--theme-primary) 88%, #000000) 0%,
    var(--theme-primary) 50%,
    color-mix(in srgb, var(--theme-accent) 80%, #ffffff) 100%
  ) !important;
  border-top-color: rgba(var(--theme-primary-rgb), 0.35) !important;
  border-bottom-color: rgba(var(--theme-primary-rgb), 0.35) !important;
}

body[data-site-theme] .about-cta-section h2,
body[data-site-theme] .about-cta-section p,
body[data-site-theme] .about-cta-section .text-white-50 {
  color: #ffffff !important;
}

body[data-site-theme] .about-cta-section .btn.btn-primary {
  background: #ffffff !important;
  color: var(--theme-primary) !important;
  border-color: #ffffff !important;
}

body[data-site-theme] .about-cta-section .btn.btn-outline-light {
  background: transparent !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.82) !important;
}

body[data-site-theme] .about-cta-section .btn.btn-outline-light:hover,
body[data-site-theme] .about-cta-section .btn.btn-outline-light:focus {
  background: rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
}

/* Final primary cleanup: prevent any remaining Bootstrap default blue */
body[data-site-theme] .text-primary,
body[data-site-theme] [class*="text-primary"],
body[data-site-theme] .link-primary,
body[data-site-theme] .btn-link,
body[data-site-theme] .btn-link:focus,
body[data-site-theme] .btn-link:hover,
body[data-site-theme] .btn-link:active {
  color: var(--theme-primary) !important;
}

body[data-site-theme] .btn-link,
body[data-site-theme] .btn-link:hover,
body[data-site-theme] .btn-link:focus,
body[data-site-theme] .btn-link:active {
  border-color: transparent !important;
  background: transparent !important;
}

body[data-site-theme] .border-primary,
body[data-site-theme] [class*="border-primary"] {
  border-color: var(--theme-primary) !important;
}

body[data-site-theme] .bg-primary,
body[data-site-theme] [class*="bg-primary"],
body[data-site-theme] .badge.text-bg-primary {
  background-color: var(--theme-primary) !important;
  color: var(--theme-on-intense) !important;
}

body[data-site-theme] .nav-link.active,
body[data-site-theme] .dropdown-item.active {
  color: var(--theme-on-intense) !important;
  background-color: var(--theme-primary) !important;
}

/* Hard lock for about-kicker across all pages/contexts */
body[data-site-theme] .about-kicker,
body[data-site-theme] span.about-kicker,
body[data-site-theme] p.about-kicker,
body[data-site-theme] .about-page .about-kicker,
body[data-site-theme] .home-page .about-kicker,
body[data-site-theme] .contact-page .about-kicker {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0.35rem 0.8rem !important;
  border-radius: 999px !important;
  background-color: var(--theme-pill-bg) !important;
  color: var(--theme-pill-text) !important;
  border: 1px solid var(--theme-pill-border) !important;
  background-image: none !important;
}

/* Home content theming: make key value text/cards visibly follow scheme */
body[data-site-theme] .home-page .about-stat-chip {
  background: color-mix(in srgb, var(--theme-primary) 12%, #ffffff) !important;
  color: var(--theme-nav-link) !important;
  border-color: color-mix(in srgb, var(--theme-primary) 30%, #ffffff) !important;
}

body[data-site-theme] .home-page .home-feature-card {
  border-color: color-mix(in srgb, var(--theme-primary) 24%, #ffffff) !important;
  box-shadow: 0 10px 18px rgba(var(--theme-primary-rgb), 0.1) !important;
}

body[data-site-theme] .home-page .home-feature-icon {
  background: color-mix(in srgb, var(--theme-primary) 14%, #ffffff) !important;
  color: var(--theme-primary) !important;
  border-color: color-mix(in srgb, var(--theme-primary) 34%, #ffffff) !important;
}

body[data-site-theme] .home-page .home-feature-card h3,
body[data-site-theme] .home-page .home-feature-card .h5,
body[data-site-theme] .home-page .home-feature-card .h6 {
  color: color-mix(in srgb, var(--theme-primary) 74%, #1f2a44) !important;
}

body[data-site-theme] .home-page .home-feature-card .text-secondary,
body[data-site-theme] .home-page .home-feature-card p {
  color: color-mix(in srgb, var(--theme-nav-link) 76%, #6b7280) !important;
}

body[data-site-theme] .home-page .home-feature-card .text-dark,
body[data-site-theme] .home-page .home-feature-card .fw-semibold {
  color: color-mix(in srgb, var(--theme-primary) 62%, #1f2a44) !important;
}

body[data-site-theme] .home-page .affiliate-chip {
  background: color-mix(in srgb, var(--theme-primary) 10%, #ffffff) !important;
  color: color-mix(in srgb, var(--theme-primary) 72%, #1f2a44) !important;
  border-color: color-mix(in srgb, var(--theme-primary) 30%, #ffffff) !important;
  box-shadow: 0 8px 14px rgba(var(--theme-primary-rgb), 0.1) !important;
}

/* About page exact elements requested: force scheme styling */
body[data-site-theme] .about-page .about-kicker,
body[data-site-theme] .about-page .about-stat-chip,
body[data-site-theme] .about-page .about-promise-icon,
body[data-site-theme] .about-page .about-value-tag {
  background: var(--theme-pill-bg) !important;
  color: var(--theme-pill-text) !important;
  border: 1px solid var(--theme-pill-border) !important;
  background-image: none !important;
}

/* Consolidated theme chips: soft accent surfaces */
body[data-site-theme] .about-page .about-kicker,
body[data-site-theme] .home-page .about-kicker,
body[data-site-theme] .contact-page .about-kicker,
body[data-site-theme] .about-page .about-stat-chip,
body[data-site-theme] .about-page .about-promise-icon,
body[data-site-theme] .about-page .about-value-tag,
body[data-site-theme] .store-locator-page .store-locator-kicker,
body[data-site-theme] .store-locator-page .store-locator-cta-kicker,
body[data-site-theme] .store-locator-page .store-locator-pill,
body[data-site-theme] .store-locator-page .store-locator-cta-icon,
body[data-site-theme] .admin-nav-kicker,
body[data-site-theme] .footer .footer-social-chip,
body[data-site-theme] .footer .footer-social-chip:visited {
  color: var(--theme-tone-soft-text) !important;
  background: var(--theme-tone-soft-bg) !important;
  border-color: var(--theme-tone-soft-border) !important;
}

body[data-site-theme] .admin-nav-kicker {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0.28rem 0.65rem !important;
  border-radius: 999px !important;
  border-width: 1px !important;
  border-style: solid !important;
}

/* Footer: fully scheme-driven */
body[data-site-theme] .footer {
  background: var(--theme-bg-even) !important;
  border-top: 1px solid var(--theme-border-soft) !important;
  color: var(--theme-nav-link) !important;
}

body[data-site-theme] .footer-title {
  color: color-mix(in srgb, var(--theme-nav-link) 70%, #64748b) !important;
}

body[data-site-theme] .footer-tagline,
body[data-site-theme] .footer-bottom {
  color: color-mix(in srgb, var(--theme-nav-link) 72%, #6b7280) !important;
}

body[data-site-theme] .footer-link {
  color: var(--theme-nav-link) !important;
}

body[data-site-theme] .footer-link:hover,
body[data-site-theme] .footer-link:focus {
  color: var(--theme-primary) !important;
}

body[data-site-theme] .footer-social-chip:hover {
  box-shadow: 0 8px 16px rgba(var(--theme-primary-rgb), 0.22) !important;
}

body[data-site-theme] .footer-note {
  color: color-mix(in srgb, var(--theme-primary) 70%, var(--theme-nav-link)) !important;
}

body[data-site-theme] .footer .footer-title {
  color: var(--theme-tone-soft-text) !important;
}

/* Footer section headers: cleaner look */
body[data-site-theme] .footer .footer-title {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 0.55rem;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid color-mix(in srgb, var(--theme-primary) 36%, #ffffff);
  background: transparent !important;
}

/* Home cards: align visual style with About cards */
body[data-site-theme] .home-page .home-feature-card {
  position: relative;
  background: var(--theme-panel-bg) !important;
  border: 1px solid color-mix(in srgb, var(--theme-primary) 22%, #dfe9f7) !important;
  border-top: 4px solid color-mix(in srgb, var(--theme-primary) 42%, #ffffff) !important;
  border-radius: 14px !important;
  padding: 1.25rem !important;
  box-shadow: 0 8px 20px rgba(18, 38, 63, 0.05) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body[data-site-theme] .home-page .home-feature-card:hover {
  transform: translateY(-3px) !important;
  border-color: color-mix(in srgb, var(--theme-primary) 32%, #dfe9f7) !important;
  border-top-color: color-mix(in srgb, var(--theme-primary) 56%, #ffffff) !important;
  box-shadow:
    inset 0 3px 0 color-mix(in srgb, var(--theme-primary) 44%, #ffffff),
    0 10px 22px rgba(18, 38, 63, 0.08) !important;
}

body[data-site-theme] .home-page .product-list-card:hover,
body[data-site-theme] .products-page .product-list-card:hover {
  border-color: color-mix(in srgb, var(--theme-primary) 32%, #dbe6f7) !important;
  box-shadow:
    inset 0 2px 0 color-mix(in srgb, var(--theme-primary) 42%, #ffffff),
    0 12px 22px rgba(var(--theme-primary-rgb), 0.18) !important;
}

/* Home card text: match About card typography and tone */
body[data-site-theme] .home-page .home-feature-card h3,
body[data-site-theme] .home-page .home-feature-card .h5,
body[data-site-theme] .home-page .home-feature-card .h6 {
  color: var(--theme-nav-link) !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

body[data-site-theme] .home-page .home-feature-card p,
body[data-site-theme] .home-page .home-feature-card .text-secondary {
  color: color-mix(in srgb, var(--theme-nav-link) 70%, #6b7280) !important;
}

body[data-site-theme] .home-page .home-feature-card .text-dark,
body[data-site-theme] .home-page .home-feature-card .fw-semibold {
  color: var(--theme-nav-link) !important;
}

body[data-site-theme] .home-page .home-hero-title {
  color: color-mix(in srgb, var(--theme-nav-link) 85%, #0f172a) !important;
  text-shadow: 0 8px 24px rgba(var(--theme-primary-rgb), 0.16);
}

body[data-site-theme] .home-page .home-hero-subtitle {
  color: color-mix(in srgb, var(--theme-nav-link) 70%, #475569) !important;
}

body[data-site-theme] .home-page .home-meet-card {
  background:
    radial-gradient(
      circle at 12% 20%,
      color-mix(in srgb, var(--theme-primary) 18%, transparent),
      transparent 45%
    ),
    radial-gradient(
      circle at 86% 80%,
      color-mix(in srgb, var(--theme-accent) 18%, transparent),
      transparent 50%
    ),
    var(--theme-panel-bg) !important;
  border-color: color-mix(in srgb, var(--theme-primary) 24%, #dbe6f7) !important;
  box-shadow: 0 14px 28px rgba(var(--theme-primary-rgb), 0.16) !important;
}

body[data-site-theme] .home-page .home-meet-kicker {
  color: var(--theme-tone-strong-text) !important;
  background: var(--theme-tone-strong-bg) !important;
  border-color: var(--theme-tone-strong-border) !important;
}

body[data-site-theme] .home-page .home-meet-title {
  color: color-mix(in srgb, var(--theme-nav-link) 88%, #111827) !important;
}

body[data-site-theme] .home-page .home-benefit-kicker {
  color: var(--theme-tone-strong-text) !important;
  background: var(--theme-tone-strong-bg) !important;
  border-color: var(--theme-tone-strong-border) !important;
}

body[data-site-theme] .home-page .home-reviews-kicker {
  color: var(--theme-tone-strong-text) !important;
  background: var(--theme-tone-strong-bg) !important;
  border-color: var(--theme-tone-strong-border) !important;
}

body[data-site-theme] .home-page .home-benefit-section--1 {
  background: linear-gradient(180deg, var(--theme-bg-odd) 0%, var(--theme-bg-even) 100%) !important;
}

body[data-site-theme] .home-page .home-benefit-section--2 {
  background: linear-gradient(180deg, var(--theme-bg-even) 0%, var(--theme-bg-odd) 100%) !important;
}

body[data-site-theme] .home-page .home-benefit-section--3 {
  background: linear-gradient(180deg, var(--theme-bg-odd) 0%, var(--theme-bg-even) 100%) !important;
}

body[data-site-theme] .home-page .home-benefit-showcard {
  background: var(--theme-panel-bg) !important;
  border-color: color-mix(in srgb, var(--theme-primary) 24%, #dbe6f7) !important;
  box-shadow: 0 12px 24px rgba(var(--theme-primary-rgb), 0.12) !important;
}

body[data-site-theme] .home-page .home-benefit-showcard--focus {
  border-color: color-mix(in srgb, var(--theme-primary) 46%, #dbe6f7) !important;
  box-shadow: 0 22px 40px rgba(var(--theme-primary-rgb), 0.22) !important;
}

body[data-site-theme] .home-page .home-benefit-smart-layout {
  border-color: color-mix(in srgb, var(--theme-primary) 45%, #dbe6f7) !important;
  box-shadow: 0 18px 34px rgba(var(--theme-primary-rgb), 0.18) !important;
}

body[data-site-theme] .home-page .home-benefit-showcard::after {
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--theme-primary) 24%, transparent),
    transparent 70%
  ) !important;
}

body[data-site-theme] .home-page .home-benefit-showcard h3,
body[data-site-theme] .home-page .home-benefit-showcard .h4,
body[data-site-theme] .home-page .home-benefit-showcard .h5,
body[data-site-theme] .home-page .home-benefit-showcard .fw-semibold {
  color: var(--theme-nav-link) !important;
}

body[data-site-theme] .home-page .home-benefit-showcard .text-secondary {
  color: color-mix(in srgb, var(--theme-nav-link) 74%, #64748b) !important;
}

body[data-site-theme] .home-page .home-benefit-badge {
  color: var(--theme-tone-strong-text) !important;
  background: var(--theme-tone-strong-bg) !important;
  border-color: var(--theme-tone-strong-border) !important;
}

body[data-site-theme] .home-page .home-benefit-number {
  color: color-mix(in srgb, var(--theme-primary) 60%, var(--theme-nav-link)) !important;
}

body[data-site-theme] .home-page .home-benefit-checklist li {
  color: color-mix(in srgb, var(--theme-nav-link) 86%, #334155) !important;
}

body[data-site-theme] .home-page .home-benefit-checklist li::before {
  background: var(--theme-primary) !important;
}

body[data-site-theme] .home-page .home-benefit-chip {
  color: color-mix(in srgb, var(--theme-nav-link) 88%, #0f172a) !important;
  background: color-mix(in srgb, var(--theme-primary) 9%, #ffffff) !important;
  border-color: color-mix(in srgb, var(--theme-primary) 25%, #dbe6f7) !important;
}

body[data-site-theme] .home-page .home-benefit-smart-footer {
  color: color-mix(in srgb, var(--theme-primary) 65%, var(--theme-nav-link)) !important;
}

body[data-site-theme] .home-page .home-benefit-smart-item {
  color: color-mix(in srgb, var(--theme-nav-link) 88%, #0f172a) !important;
  background: color-mix(in srgb, var(--theme-primary) 12%, #ffffff) !important;
  border-color: color-mix(in srgb, var(--theme-primary) 34%, #dbe6f7) !important;
}

body[data-site-theme] .home-page .home-benefit-smart-subline {
  color: color-mix(in srgb, var(--theme-nav-link) 72%, #64748b) !important;
}

body[data-site-theme] .home-page .home-benefit-smart-item--label {
  color: color-mix(in srgb, var(--theme-primary) 70%, var(--theme-nav-link)) !important;
  background: color-mix(in srgb, var(--theme-primary) 10%, #ffffff) !important;
  border-color: color-mix(in srgb, var(--theme-primary) 40%, #dbe6f7) !important;
}

body[data-site-theme] .home-page .home-benefit-copy-line {
  color: color-mix(in srgb, var(--theme-nav-link) 78%, #64748b) !important;
  border-left-color: color-mix(in srgb, var(--theme-primary) 42%, #dbe6f7) !important;
}

body[data-site-theme] .home-page .home-benefit-copy-line--strong {
  color: color-mix(in srgb, var(--theme-primary) 68%, var(--theme-nav-link)) !important;
}

body[data-site-theme] .home-page .home-difference-shell {
  border-color: color-mix(in srgb, var(--theme-primary) 40%, #dbe6f7) !important;
  background:
    radial-gradient(
      circle at 10% 24%,
      color-mix(in srgb, var(--theme-primary) 16%, transparent),
      transparent 44%
    ),
    radial-gradient(
      circle at 88% 78%,
      color-mix(in srgb, var(--theme-primary) 12%, transparent),
      transparent 48%
    ),
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--theme-primary) 9%, #ffffff) 0%,
      color-mix(in srgb, var(--theme-panel-bg) 94%, #ffffff) 100%
    ) !important;
  box-shadow: 0 14px 24px rgba(var(--theme-primary-rgb), 0.16) !important;
}

body[data-site-theme] .home-page .home-difference-text {
  color: color-mix(in srgb, var(--theme-primary) 74%, #14243f) !important;
}

body[data-site-theme] .home-page .home-benefit-showcard--focus .home-benefit-chip {
  background: color-mix(in srgb, var(--theme-primary) 14%, #ffffff) !important;
  border-color: color-mix(in srgb, var(--theme-primary) 34%, #dbe6f7) !important;
}

body[data-site-theme] .thank-you-dark-btn {
  background: color-mix(in srgb, var(--theme-primary) 86%, #b45309) !important;
  border-color: color-mix(in srgb, var(--theme-primary) 78%, #9a3412) !important;
  color: var(--theme-on-intense) !important;
  box-shadow: 0 10px 18px rgba(var(--theme-primary-rgb), 0.26) !important;
}

body[data-site-theme] .thank-you-dark-btn:hover,
body[data-site-theme] .thank-you-dark-btn:focus,
body[data-site-theme] .thank-you-dark-btn:focus-visible {
  background: color-mix(in srgb, var(--theme-primary) 80%, #9a3412) !important;
  border-color: color-mix(in srgb, var(--theme-primary) 72%, #7c2d12) !important;
  color: var(--theme-on-intense) !important;
  box-shadow: 0 12px 22px rgba(var(--theme-primary-rgb), 0.3) !important;
}

body[data-site-theme] .thank-you-dark-btn:active,
body[data-site-theme] .thank-you-dark-btn.active {
  background: color-mix(in srgb, var(--theme-primary) 76%, #7c2d12) !important;
  border-color: color-mix(in srgb, var(--theme-primary) 68%, #7c2d12) !important;
  color: var(--theme-on-intense) !important;
}

body[data-site-theme] .thank-you-review-btn {
  background: #055160 !important;
  border-color: #044551 !important;
  color: #ffffff !important;
}

body[data-site-theme] .thank-you-review-btn:hover,
body[data-site-theme] .thank-you-review-btn:focus,
body[data-site-theme] .thank-you-review-btn:focus-visible {
  background: #066579 !important;
  border-color: #055160 !important;
  color: #ffffff !important;
}

body[data-site-theme] .thank-you-review-btn:active,
body[data-site-theme] .thank-you-review-btn.active {
  background: #044551 !important;
  border-color: #033742 !important;
  color: #ffffff !important;
}

.admin-floating-alert {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1085;
  width: min(420px, calc(100vw - 24px));
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--theme-border-strong);
  background: var(--theme-surface-elevated);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  color: var(--theme-text-primary);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.admin-floating-alert.is-success {
  border-color: rgba(25, 135, 84, 0.6);
}

.admin-floating-alert.is-error {
  border-color: rgba(220, 53, 69, 0.65);
}

.admin-floating-alert.is-hiding {
  opacity: 0;
  transform: translateY(8px);
}

.admin-floating-alert__body {
  min-width: 0;
  flex: 1;
}

.admin-floating-alert__title {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.admin-floating-alert__message {
  font-size: 0.92rem;
  line-height: 1.3;
}

.admin-floating-alert__close {
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0;
  opacity: 0.75;
  cursor: pointer;
}

.admin-floating-alert__close:hover {
  opacity: 1;
}

@media (max-width: 575.98px) {
  .admin-floating-alert {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
    padding: 10px 12px;
  }
}
