body {
  background: var(--surface-page);
  color: var(--text-primary);
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1200;
}

.cookie-banner-card {
  background: var(--surface-card);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  box-shadow: 0 16px 34px color-mix(in srgb, var(--neutral-800) 14%, transparent);
  padding: .85rem .95rem;
}

.cookie-banner-title {
  font-weight: 800;
  color: var(--brand-secondary);
  margin-bottom: .25rem;
}

.top-ticker {
  background: var(--brand-secondary);
  color: var(--neutral-0);
  overflow: hidden;
  border-bottom: 1px solid color-mix(in srgb, var(--neutral-0) 18%, transparent);
  position: sticky;
  top: 0;
  z-index: 1055;
  min-height: 34px;
}

.top-ticker-track {
  display: flex;
  min-width: max-content;
  gap: 0;
  padding: .4rem 0;
  animation: ticker-scroll 16s linear infinite;
  font-size: .86rem;
  font-weight: 600;
}

.top-ticker-track span {
  white-space: nowrap;
  padding-right: 2rem;
}

.navbar.sticky-top {
  top: 34px;
  z-index: 1045;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-33.333%)
  }
}

.hero-medical {
  background:
    radial-gradient(860px 300px at 80% 0%, color-mix(in srgb, var(--brand-secondary) 10%, transparent), transparent 60%),
    radial-gradient(700px 260px at 10% 0%, color-mix(in srgb, var(--brand-primary) 12%, transparent), transparent 60%),
    var(--surface-card);
  border-bottom: 1px solid var(--border-default);
}

.home-value-strip {
  padding: .95rem 0;
  background: #f7f9fd;
}

.home-value-grid {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.home-value-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .75rem 1rem;
  min-height: 84px;
  background: #fff;
  border: 1px solid var(--border-default);
}

.home-value-item+.home-value-item {
  border-left: 0;
}

.home-value-icon {
  font-size: 1.35rem;
  color: #1b56d6;
  flex: 0 0 auto;
}

.home-value-item h2 {
  margin: 0 0 .1rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: #1f2d4d;
}

.home-value-item p {
  margin: 0;
  font-size: .9rem;
  color: #5f6f86;
}

@media (max-width: 991.98px) {
  .home-value-grid {
    width: 100%;
    display: flex;
    overflow-x: auto;
    gap: .6rem;
    padding: 0 .75rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .home-value-item {
    min-width: 290px;
    border-radius: 12px;
    border-left: 1px solid var(--border-default);
    scroll-snap-align: start;
  }

  .home-value-item+.home-value-item {
    border-left: 1px solid var(--border-default);
  }
}

.services-marquee-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: grab;
  touch-action: pan-x;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-marquee-wrap::-webkit-scrollbar {
  display: none;
}

.services-marquee-wrap.is-dragging {
  cursor: grabbing;
}

.services-edge-wrap {
  width: 100%;
  overflow: hidden;
}

.services-marquee-track {
  display: flex;
  align-items: center;
  gap: .55rem;
  width: max-content;
  padding: .4rem 0;
  will-change: transform;
  animation: services-marquee 34s linear infinite;
}

.services-marquee-wrap:hover .services-marquee-track,
.services-marquee-wrap.is-paused .services-marquee-track,
.services-marquee-wrap.is-dragging .services-marquee-track,
.services-marquee-wrap:focus-within .services-marquee-track {
  animation-play-state: paused;
}

.service-pill-card {
  min-width: 320px;
  flex: 0 0 auto;
  max-width: 360px;
  border: 0;
  border-radius: 0;
  padding: .4rem .5rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  background: transparent;
}

.service-pill-card>i {
  font-size: 1.25rem;
  color: #1b56d6;
  flex: 0 0 auto;
}

.service-pill-content h3 {
  margin: 0 0 .1rem;
  font-size: .97rem;
  font-weight: 700;
  color: #1f2d4d;
}

.service-pill-content p {
  margin: 0;
  font-size: .84rem;
  color: #5f6f86;
  line-height: 1.35;
}

.service-marquee-dot {
  font-size: 1.15rem;
  line-height: 1;
  color: #8ea2c8;
  opacity: .9;
  transform: translateY(-1px);
}

.section-view-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .34rem .82rem;
  border: 1px solid #cfe0ff;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 700;
  color: #1b56d6;
  background: #f8fbff;
  text-decoration: none;
  transition: .18s ease;
}

.section-view-link:hover {
  border-color: #1b56d6;
  color: #17449f;
  background: #eef4ff;
}

.service-pill-link {
  margin-left: auto;
  white-space: nowrap;
  font-size: .78rem;
  font-weight: 700;
  color: #1b56d6;
  text-decoration: none;
}

.service-pill-link:hover {
  color: #17449f;
}

.review-cta-card {
  border: 1px solid var(--border-default) !important;
}

@keyframes services-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 767.98px) {
  .top-ticker {
    min-height: 32px;
  }

  .navbar.sticky-top {
    top: 32px;
  }

  .services-marquee-track {
    animation-duration: 25s;
    gap: .35rem;
    padding: .35rem 0;
  }

  .service-pill-card {
    min-width: 270px;
    flex: 0 0 auto;
    max-width: 290px;
    padding: .35rem .35rem;
  }

  .service-pill-content h3 {
    font-size: .92rem;
  }

  .service-pill-content p {
    font-size: .8rem;
  }
}

.section-sculpt {
  position: relative;
}

.section-sculpt::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 22px;
  pointer-events: none;
  opacity: .7;
}

/* Home refresh: solid, clean, no decorative gradient overlays */
.hero-medical {
  background: var(--surface-card);
}

.section-sculpt::before {
  content: none !important;
  animation: none !important;
}

.section-sculpt-a,
.section-sculpt-b,
.section-sculpt-c,
.section-sculpt-d,
.section-sculpt-e,
.section-sculpt-f,
.section-sculpt-g,
.trust-section {
  background: var(--surface-page) !important;
}

.offer-slide-overlay {
  background: linear-gradient(180deg, transparent 48%, rgba(6, 20, 46, 0.65) 100%);
}

.offer-caption-glass {
  background: rgba(9, 31, 70, 0.8);
  backdrop-filter: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.wellness-cta-pro {
  background: var(--surface-card);
  border: 1px solid var(--border-default);
}

.wellness-cta-pro::after,
.trust-card::after,
.service-slide-card::after {
  content: none !important;
}

.services-slider {
  background: var(--surface-card);
  border: 1px solid var(--border-default);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--neutral-800) 10%, transparent);
}

.service-slide-card {
  min-height: 250px;
  background: var(--surface-card);
}

.service-slide-card::before {
  width: 5px;
  background: var(--brand-primary);
}

.service-icon-lg {
  background: var(--surface-page);
  border: 1px solid var(--border-default);
  box-shadow: none;
}

.service-points li {
  background: var(--surface-page);
  border: 1px solid var(--border-default);
}

/* SB Admin polish pass */
.sb-shell {
  background: #f3f6fb;
}

.sb-sidebar {
  background: linear-gradient(180deg, #17449f 0%, #1f56f2 100%) !important;
}

.sb-topbar {
  background: #ffffff !important;
  border-bottom: 1px solid #dbe6f7 !important;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.sb-page-head h1 {
  font-weight: 800;
  color: #1f2d4d;
}

.sb-shell .card {
  border-radius: 12px;
  border: 1px solid #dbe6f7 !important;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06) !important;
}

.sb-kpi-card {
  background: #ffffff;
  border-left: 4px solid #1f56f2 !important;
  padding: 1rem 1rem 1rem 1.05rem;
}

.sb-kpi-card--success {
  border-left-color: #2bb673 !important;
}

.sb-kpi-card--warning {
  border-left-color: #f59e0b !important;
}

.sb-kpi-card--danger {
  border-left-color: #ef4444 !important;
}

.sb-kpi-card .sb-kpi-label {
  font-weight: 700;
  letter-spacing: .02em;
  color: #64748b;
  text-transform: uppercase;
  font-size: .73rem;
}

.sb-kpi-value {
  font-size: 1.7rem;
  font-weight: 800;
  color: #1f2d4d;
}

.section-sculpt-a::before {
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand-primary) 10%, transparent), transparent 78%);
}

.section-sculpt-b::before {
  background:
    radial-gradient(38px 16px at 8% 0%, color-mix(in srgb, var(--brand-primary) 16%, transparent), transparent 70%),
    radial-gradient(42px 16px at 50% 0%, color-mix(in srgb, var(--brand-secondary) 12%, transparent), transparent 72%),
    radial-gradient(40px 16px at 92% 0%, color-mix(in srgb, var(--brand-primary) 16%, transparent), transparent 70%);
}

.section-sculpt-c::before {
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand-secondary) 12%, transparent), transparent 78%);
}

.section-sculpt-d::before,
.section-sculpt-e::before,
.section-sculpt-f::before,
.section-sculpt-g::before {
  background:
    linear-gradient(90deg, transparent 0%, color-mix(in srgb, var(--brand-primary) 18%, transparent) 20%, color-mix(in srgb, var(--brand-secondary) 12%, transparent) 50%, color-mix(in srgb, var(--brand-primary) 18%, transparent) 80%, transparent 100%);
}

/* New: Subtle Glow Animation for sections */
@keyframes section-glow {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}

.section-sculpt::before {
  animation: section-glow 4s ease-in-out infinite;
}

/* Enhanced Product Card Aesthetics */
.card.h-100.shadow-sm.border-0 {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent !important;
}

.card.h-100.shadow-sm.border-0:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--neutral-800) 12%, transparent) !important;
  border-color: color-mix(in srgb, var(--brand-primary) 20%, transparent) !important;
}

.card.h-100.shadow-sm.border-0 .card-img-top {
  transition: transform 0.5s ease;
}

.product-card-shell {
  overflow: hidden;
}

.product-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  padding: 12px;
  background: #fff;
  border-bottom: 1px solid color-mix(in srgb, var(--border-default) 88%, #fff);
}

.product-card-media .card-img-top {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.card.h-100.shadow-sm.border-0:hover .card-img-top {
  transform: scale(1.05);
}

#heroImageSlider .carousel-item img {
  height: 420px;
  object-fit: cover;
}

#heroImageSlider .carousel-caption {
  background: color-mix(in srgb, var(--neutral-800) 72%, transparent);
  border-radius: 12px;
  padding: 12px 14px;
}

#heroImageSlider .carousel-caption h5,
#heroImageSlider .carousel-caption p {
  color: var(--neutral-0);
}

.hero-panel {
  position: relative;
  border: 1px solid var(--border-default);
}

.hero-panel-image {
  height: 420px;
  object-fit: cover;
}

.hero-panel-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: color-mix(in srgb, var(--neutral-800) 74%, transparent);
  color: var(--neutral-0);
  border-radius: 12px;
  padding: 12px 14px;
}

.offer-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
  pointer-events: none;
}

.offer-slide-frame {
  min-height: 560px;
  background:
    radial-gradient(circle at top right, rgba(34, 204, 243, 0.18), transparent 30%),
    linear-gradient(180deg, #f6fbff 0%, #edf6ff 100%);
  overflow: hidden;
}

.offer-slider-shell {
  max-height: 560px;
}

.offer-slide-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}

.offer-slide-image {
  position: relative;
  z-index: 0;
  height: 560px;
  object-fit: cover;
  object-position: center center;
  background: var(--surface-card);
}

.offer-caption-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

.offer-slide-cta {
  position: relative;
  z-index: 4;
}

.category-tile {
  display: flex;
  min-height: 86px;
  border: 1px solid var(--border-default);
  border-radius: 14px;
  background: var(--surface-card);
  color: var(--brand-secondary);
  font-weight: 700;
  padding: 10px;
  text-align: center;
  box-shadow: 0 5px 16px color-mix(in srgb, var(--neutral-800) 5%, transparent);
}

.category-tile:hover {
  border-color: color-mix(in srgb, var(--brand-secondary) 38%, var(--border-default));
}

.category-showcase-card {
  border: 1px solid color-mix(in srgb, var(--brand-primary) 20%, var(--border-default));
  border-radius: 16px;
  padding: 14px;
  background: var(--surface-card);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--neutral-800) 7%, transparent);
}

.category-product-mini {
  border: 1px solid var(--border-default);
  border-radius: 14px;
  background: var(--surface-card);
  overflow: hidden;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--neutral-800) 4%, transparent);
  transition: all 0.3s ease;
  position: relative;
}

.category-product-mini:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--neutral-800) 8%, transparent);
  border-color: color-mix(in srgb, var(--brand-primary) 15%, transparent);
}

.category-product-mini img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.category-product-mini:hover img {
  transform: scale(1.08);
}

.product-card-compact .card-img-top {
  height: 100%;
  object-fit: contain;
}

.product-card-compact .card-title {
  font-size: .9rem;
  line-height: 1.35;
  margin-bottom: .4rem;
}

.product-card-compact .card-body {
  padding: .7rem .75rem .55rem;
}

.product-card-compact .card-footer {
  padding: .2rem .75rem .7rem;
}

.product-card-compact .btn {
  font-size: .78rem;
  padding: .34rem .5rem;
}

.global-search-card {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--brand-primary) 6%, var(--surface-card)) 0%, var(--surface-card) 100%);
  border: 1px solid color-mix(in srgb, var(--brand-primary) 18%, var(--border-default));
  box-shadow: 0 8px 20px color-mix(in srgb, var(--neutral-800) 6%, transparent);
}

.category-marquee {
  overflow: hidden;
  border: 1px solid var(--border-default);
  background: var(--surface-card);
  border-radius: 14px;
  padding: 14px 0;
}

.category-track {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  padding: 0 12px;
  animation: category-scroll 28s linear infinite;
}

.feature-chip {
  border: 1px solid var(--border-default);
  border-radius: 999px;
  padding: 9px 14px;
  background: color-mix(in srgb, var(--brand-primary) 8%, var(--neutral-0));
  color: var(--brand-secondary);
  font-weight: 600;
  white-space: nowrap;
}

@keyframes category-scroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.service-grid .service-card {
  border: 1px solid color-mix(in srgb, var(--brand-primary) 18%, var(--border-default));
  border-radius: 16px;
  background: var(--surface-card);
  padding: 16px;
  box-shadow: 0 8px 22px color-mix(in srgb, var(--neutral-800) 7%, transparent);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
}

.service-grid .service-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 74px;
  height: 74px;
  border-bottom-left-radius: 18px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--brand-primary) 18%, transparent), transparent 72%);
}

.service-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.service-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-secondary);
  font-size: 1rem;
  border: 1px solid color-mix(in srgb, var(--brand-primary) 28%, var(--border-default));
  background: linear-gradient(160deg, color-mix(in srgb, var(--brand-primary) 18%, var(--surface-card)), color-mix(in srgb, var(--brand-secondary) 10%, var(--surface-card)));
}

.service-desc {
  position: relative;
  z-index: 1;
}

.services-slider {
  border-radius: 24px;
  border: 1px solid color-mix(in srgb, var(--brand-primary) 22%, var(--border-default));
  background:
    radial-gradient(560px 220px at 0% 0%, color-mix(in srgb, var(--brand-primary) 13%, transparent), transparent 70%),
    radial-gradient(560px 260px at 100% 100%, color-mix(in srgb, var(--brand-secondary) 10%, transparent), transparent 72%),
    var(--surface-card);
  box-shadow: 0 20px 56px color-mix(in srgb, var(--neutral-800) 11%, transparent);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.services-slider:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--brand-secondary) 30%, var(--border-default));
  box-shadow: 0 30px 74px color-mix(in srgb, var(--neutral-800) 15%, transparent);
}

.services-slider .carousel-inner {
  padding: 0;
}

.service-slide-card {
  position: relative;
  padding: 30px 28px 26px;
  min-height: 286px;
  display: grid;
  gap: 18px;
}

.service-slide-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 7px;
  background: linear-gradient(180deg, var(--brand-primary), var(--brand-secondary));
}

.service-slide-card::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 18px;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand-primary) 8%, transparent);
  pointer-events: none;
}

.service-slide-head {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.service-slide-head h3 {
  font-size: clamp(1.08rem, 1.8vw, 1.36rem);
  color: var(--brand-secondary);
  letter-spacing: -.01em;
}

.service-slide-head p {
  color: var(--text-muted) !important;
  max-width: 68ch;
}

.service-icon-lg {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--brand-secondary);
  border: 1px solid color-mix(in srgb, var(--brand-primary) 28%, var(--border-default));
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--brand-primary) 18%, var(--surface-card)), color-mix(in srgb, var(--brand-secondary) 11%, var(--surface-card)));
  box-shadow: 0 12px 24px color-mix(in srgb, var(--brand-secondary) 12%, transparent);
  transition: transform .35s ease, box-shadow .35s ease;
  flex-shrink: 0;
}

.service-slide-card:hover .service-icon-lg {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 18px 28px color-mix(in srgb, var(--brand-secondary) 16%, transparent);
}

.service-points {
  margin-top: 0;
  padding-left: 0;
  color: var(--text-primary);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  position: relative;
  z-index: 1;
}

.service-points li {
  margin-bottom: 0;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--brand-primary) 16%, var(--border-default));
  background: color-mix(in srgb, var(--brand-primary) 5%, var(--surface-card));
  border-radius: 10px;
  padding: 9px 11px 9px 30px;
  font-size: .93rem;
  line-height: 1.42;
}

.service-points li::before {
  content: "✦";
  color: var(--brand-primary);
  position: absolute;
  left: -1.2rem;
  font-size: 0.8em;
  filter: drop-shadow(0 0 4px var(--brand-primary));
}

.services-slider .carousel-control-prev,
.services-slider .carousel-control-next {
  display: none;
}

.services-slider .carousel-control-prev-icon,
.services-slider .carousel-control-next-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: color-mix(in srgb, var(--brand-secondary) 94%, transparent);
  background-size: 50% 50%;
  box-shadow: 0 10px 18px color-mix(in srgb, var(--neutral-800) 22%, transparent);
  transition: transform .2s ease, filter .2s ease;
}

.services-slider .carousel-control-prev:hover .carousel-control-prev-icon,
.services-slider .carousel-control-next:hover .carousel-control-next-icon {
  transform: scale(1.1);
  filter: brightness(1.06);
}

.services-indicators {
  margin-bottom: .88rem;
}

.services-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background-color: color-mix(in srgb, var(--brand-secondary) 34%, transparent);
  transition: all 0.3s ease;
}

.services-indicators .active {
  width: 30px;
  border-radius: 999px;
  background-color: var(--brand-secondary);
}

.services-head {
  margin-bottom: .9rem !important;
}

.services-head h2 {
  letter-spacing: -.01em;
}

.services-nav-btn {
  min-width: 92px;
}

/* Override for corrupted glyph in legacy block */
.service-points li::before {
  content: "\2713";
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .76rem;
  font-weight: 900;
  opacity: .95;
  filter: none;
}

/* Premium Animations for Active Slide */
.services-slider .carousel-item.active .service-slide-head {
  animation: slideFadeUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.services-slider .carousel-item.active .service-points {
  animation: slideFadeUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.1s both;
}

.services-slider .carousel-item.active .btn {
  animation: slideFadeUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.2s both;
}

@keyframes slideFadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.wellness-cta-pro {
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--brand-secondary) 20%, var(--border-default));
  background:
    radial-gradient(420px 180px at 95% 8%, color-mix(in srgb, var(--brand-primary) 18%, transparent), transparent 70%),
    radial-gradient(380px 180px at 5% 90%, color-mix(in srgb, var(--brand-secondary) 9%, transparent), transparent 70%),
    var(--surface-card);
}

.wellness-cta-pro::after {
  content: '';
  position: absolute;
  top: -26px;
  right: -26px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand-primary) 16%, transparent);
}

.wellness-cta-actions {
  max-width: 380px;
  margin-left: auto;
}

.service-grid .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px color-mix(in srgb, var(--neutral-800) 11%, transparent);
  border-color: color-mix(in srgb, var(--brand-secondary) 32%, var(--border-default));
}

.services-marquee {
  overflow: hidden;
  border: 1px solid var(--border-default);
  background: var(--surface-card);
  border-radius: 14px;
  padding: 14px 0;
}

.services-track {
  display: flex;
  gap: 12px;
  min-width: max-content;
  padding: 0 12px;
  animation: services-scroll 20s linear infinite;
}

.service-chip {
  border: 1px solid var(--border-default);
  background: color-mix(in srgb, var(--brand-secondary) 8%, var(--neutral-0));
  color: var(--brand-secondary);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
  white-space: nowrap;
}

@keyframes services-scroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* 2026-03 home polish: text-led trust/services + cleaner ticker */
.top-ticker {
  background: var(--brand-secondary);
  color: var(--neutral-0);
  border-bottom: 0;
}

.top-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: max-content;
  padding: .45rem 0;
  animation: dvTickerLoop 26s linear infinite;
  will-change: transform;
}

.top-ticker-track span {
  position: relative;
  white-space: nowrap;
  padding: 0 1.35rem;
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .01em;
}

.top-ticker-track span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: color-mix(in srgb, var(--brand-primary) 78%, var(--neutral-0));
}

@keyframes dvTickerLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.why-choose-wrap {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 1.5rem;
  align-items: start;
}

.why-choose-intro {
  padding-right: .5rem;
}

.why-choose-list {
  border-left: 2px solid color-mix(in srgb, var(--brand-primary) 32%, var(--border-default));
  padding-left: 1.1rem;
}

.why-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: .75rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--border-default);
}

.why-item:last-child {
  border-bottom: 0;
}

.why-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: var(--brand-secondary);
  background: color-mix(in srgb, var(--brand-primary) 10%, var(--surface-card));
}

.services-rail {
  border: 1px solid var(--border-default);
  border-radius: 16px;
  background: var(--surface-card);
}

.service-line {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: .9rem;
  padding: 1rem 1rem;
  border-bottom: 1px solid var(--border-default);
  align-items: center;
}

.service-line:last-child {
  border-bottom: 0;
}

.service-line-head {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}

.service-line-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-secondary);
  border: 1px solid color-mix(in srgb, var(--brand-primary) 28%, var(--border-default));
  background: var(--surface-page);
  flex-shrink: 0;
}

.service-line-points {
  margin: 0;
  padding-left: 1rem;
  color: var(--text-muted);
  font-size: .9rem;
}

.service-line-points li {
  margin-bottom: .25rem;
}

.service-line-points li:last-child {
  margin-bottom: 0;
}

.service-line-cta {
  justify-self: end;
}

@media (max-width: 991px) {
  .why-choose-wrap {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .why-choose-list {
    border-left: 0;
    padding-left: 0;
    border-top: 2px solid color-mix(in srgb, var(--brand-primary) 32%, var(--border-default));
    padding-top: .4rem;
  }

  .service-line {
    grid-template-columns: 1fr;
    gap: .65rem;
  }

  .service-line-cta {
    justify-self: start;
  }
}

@media (max-width: 991px) {
  #heroImageSlider .carousel-item img {
    height: 320px;
  }

  .category-track {
    animation-duration: 22s;
  }

  .navbar .navbar-collapse {
    position: fixed;
    left: 10px;
    right: 10px;
    top: 96px;
    max-height: calc(100vh - 180px);
    overflow: auto;
    background: var(--surface-card);
    border: 1px solid var(--border-default);
    border-radius: 14px;
    margin-top: .5rem;
    padding: .75rem;
    box-shadow: 0 16px 34px color-mix(in srgb, var(--neutral-800) 14%, transparent);
  }

  .navbar .nav-link {
    padding: .55rem .45rem;
    font-weight: 600;
  }

  .navbar .btn {
    width: 100%;
  }

  body {
    padding-bottom: 74px;
  }

  .floating-whatsapp {
    bottom: 88px !important;
  }

  .back-to-top {
    bottom: 88px !important;
  }

  .offer-slide-frame {
    min-height: 400px;
  }

  .offer-slider-shell {
    max-height: 400px;
  }

  .offer-slide-image {
    height: 400px;
  }

  .offer-caption-glass {
    max-width: 100%;
  }

  .wellness-cta-actions {
    max-width: none;
    margin-left: 0;
  }

  .service-grid .service-card {
    background:
      linear-gradient(180deg, color-mix(in srgb, var(--brand-primary) 6%, var(--surface-card)) 0%, var(--surface-card) 100%);
  }

  .category-product-mini img {
    height: 112px;
  }

  .product-card-compact .card-img-top {
    height: 145px;
  }

  .service-slide-card {
    padding: 18px 16px 14px;
    min-height: 268px;
    gap: 12px;
  }

  .services-slider .carousel-inner {
    padding: 0;
  }

  .service-slide-card::before {
    width: 5px;
  }

  .service-slide-card::after {
    width: 80px;
    height: 80px;
    right: 10px;
    top: 10px;
  }

  .service-icon-lg {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .service-slide-head {
    align-items: flex-start;
    gap: 12px;
  }

  .service-slide-head h3 {
    font-size: 1.15rem;
  }

  .service-points {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-points li {
    font-size: .88rem;
    padding: 8px 10px 8px 28px;
  }

  .services-slider .carousel-control-prev,
  .services-slider .carousel-control-next {
    display: none;
  }
}

.list-unstyled li {
  margin-bottom: .35rem;
}

footer a {
  text-decoration: none;
}

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

.app-footer {
  background: var(--brand-secondary);
  color: var(--neutral-0);
  border-top: 0 !important;
}

.app-footer .text-muted {
  color: color-mix(in srgb, var(--neutral-0) 82%, transparent) !important;
}

.app-footer a {
  color: var(--neutral-0);
}

.app-footer a:hover {
  color: var(--brand-accent);
}

.app-footer hr {
  border-color: color-mix(in srgb, var(--neutral-0) 28%, transparent);
}

.footer-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  align-items: center;
  gap: 1rem 1.5rem;
  width: 100%;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--neutral-0) 18%, transparent);
}

.footer-newsletter-copy {
  max-width: none;
}

.footer-newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: .75rem;
  width: 100%;
  max-width: none;
}

.footer-newsletter-form .form-control {
  min-height: 44px;
  width: 100%;
}

.footer-newsletter-form .btn {
  min-height: 44px;
  padding-inline: 1rem;
  white-space: nowrap;
}
.footer-social {
  width: 100%;
  margin-top: 1rem;
  padding-top: .95rem;
  border-top: 1px solid color-mix(in srgb, var(--neutral-0) 18%, transparent);
}

.footer-social-links {
  gap: .55rem !important;
}
@media (max-width: 767.98px) {
  .dv-mobile-table thead {
    display: none;
  }

  .dv-mobile-table,
  .dv-mobile-table tbody,
  .dv-mobile-table tr,
  .dv-mobile-table td {
    display: block;
    width: 100%;
  }

  .dv-mobile-table tr {
    border: 1px solid var(--border-default);
    border-radius: 12px;
    margin-bottom: .7rem;
    background: var(--surface-card);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--neutral-800) 5%, transparent);
  }

  .dv-mobile-table td {
    border: 0;
    padding: .5rem .75rem;
  }

  .dv-mobile-table td::before {
    content: attr(data-label);
    display: block;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--text-muted);
    margin-bottom: .15rem;
    font-weight: 700;
  }
}

.sticky-notes {
  position: fixed;
  right: 14px;
  bottom: 14px;
  width: min(320px, calc(100vw - 28px));
  background: #fff9b8;
  border: 1px solid #d7c865;
  border-radius: 10px;
  padding: 10px;
  z-index: 1060;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.sticky-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f4e67b;
  color: #2a2a2a;
  border-radius: 8px;
  padding: 6px 8px;
  margin-bottom: 8px;
}

.sticky-notes-toggle {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 1060;
  border: 0;
  border-radius: 999px;
  height: 40px;
  padding: 0 14px;
  background: #f4e67b;
  color: #2a2a2a;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .2);
}

.sticky-notes textarea {
  background: #fffde1;
}

.feature-box {
  background: var(--surface-card);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  padding: 18px;
  font-weight: 600;
  box-shadow: 0 5px 18px color-mix(in srgb, var(--neutral-800) 6%, transparent);
}

.home-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .42rem .9rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--brand-secondary) 18%, var(--border-default));
  background: #fff;
  color: var(--brand-secondary);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.home-need-head {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.home-need-zone {
  background: #fff;
}

.home-category-zone {
  background: #fff;
}

.trust-section {
  background:
    radial-gradient(680px 220px at 0% 0%, color-mix(in srgb, var(--brand-primary) 10%, transparent), transparent 65%),
    var(--surface-page);
}

.trust-card {
  position: relative;
  overflow: hidden;
}

.trust-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 58px;
  height: 58px;
  background: color-mix(in srgb, var(--brand-primary) 10%, transparent);
  border-bottom-left-radius: 22px;
}

.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .6rem;
  font-size: 1rem;
  color: var(--brand-secondary);
  background: color-mix(in srgb, var(--brand-primary) 14%, var(--neutral-0));
  border: 1px solid color-mix(in srgb, var(--brand-primary) 28%, var(--border-default));
}

a {
  color: var(--link-color)
}

.text-muted {
  color: var(--text-muted) !important
}

.bg-light {
  background-color: var(--neutral-100) !important
}

.card {
  background: var(--surface-card);
  border-color: var(--border-default)
}

.border,
.border-top,
.border-bottom,
.border-end {
  border-color: var(--border-default) !important
}

.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--success-color);
  --bs-btn-border-color: var(--success-color);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--brand-secondary);
  --bs-btn-hover-border-color: var(--brand-secondary);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--brand-secondary);
  --bs-btn-active-border-color: var(--brand-secondary);
}

.btn-outline-primary {
  --bs-btn-color: var(--brand-secondary);
  --bs-btn-border-color: var(--brand-secondary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--brand-secondary);
  --bs-btn-hover-border-color: var(--brand-secondary);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--brand-secondary);
  --bs-btn-active-border-color: var(--brand-secondary);
}

.btn-outline-secondary {
  --bs-btn-color: var(--text-heading);
  --bs-btn-border-color: #aebed8;
  --bs-btn-hover-color: var(--text-heading);
  --bs-btn-hover-bg: #eef4fb;
  --bs-btn-hover-border-color: #9fb2d0;
  --bs-btn-active-color: var(--text-heading);
  --bs-btn-active-bg: #e5edf8;
  --bs-btn-active-border-color: #9fb2d0;
}

.navbar .navbar-brand {
  color: var(--brand-secondary) !important;
}

.navbar {
  backdrop-filter: saturate(180%) blur(10px);
}

.navbar .nav-link {
  font-weight: 600;
}

#navSearchSuggest,
#globalSearchSuggest {
  margin-top: .35rem;
  border: 1px solid rgba(208, 224, 245, 0.92);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  max-height: 420px;
  overflow-y: auto;
}

.dv-search-group + .dv-search-group {
  border-top: 1px solid rgba(208, 224, 245, 0.72);
}

.dv-search-group-title {
  padding: .55rem .9rem .35rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #5f6f86;
  background: #f8fbff;
}

.dv-search-item {
  border: 0 !important;
  border-radius: 0 !important;
  padding: .72rem .9rem;
}

.dv-search-item + .dv-search-item {
  border-top: 1px solid rgba(208, 224, 245, 0.38) !important;
}

.dv-search-item-label {
  color: var(--text-heading);
  font-weight: 700;
}

.dv-search-item-type {
  margin-top: .12rem;
}

.dv-search-item:hover,
.dv-search-item.is-active {
  background: #eef4ff !important;
}

.search-page-form {
  max-width: 720px;
}

.search-page-form .form-control {
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(208, 224, 245, 0.92);
  background: #fff;
}

.search-section .card {
  border-radius: 18px;
}

.search-result-item {
  padding: .95rem 1rem;
}

/* Premium Glass Spotlights: Digital-First Design */
.glass-spotlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--brand-primary) 12%, var(--border-default));
  background: var(--surface-card);
  padding: 2.2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--neutral-800) 5%, transparent);
}

.glass-spotlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--brand-primary) 8%, transparent), transparent 70%);
  pointer-events: none;
}

.glass-spotlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--neutral-800) 10%, transparent);
  border-color: color-mix(in srgb, var(--brand-secondary) 30%, var(--border-default));
}

.spotlight-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand-primary) 15%, var(--surface-card)), color-mix(in srgb, var(--brand-secondary) 10%, var(--surface-card)));
  border: 1px solid color-mix(in srgb, var(--brand-primary) 20%, var(--border-default));
  color: var(--brand-secondary);
  box-shadow: 0 8px 16px color-mix(in srgb, var(--brand-secondary) 10%, transparent);
}

.spotlight-skincare {
  border-bottom: 4px solid #fecaca;
}

/* Soft Rose/Radiance */
.spotlight-sensitive {
  border-bottom: 4px solid #bfdbfe;
}

/* Professional Soft Blue/Privacy */
.spotlight-wellness {
  border-bottom: 4px solid #bbf7d0;
}

/* Life/Growth Green */

.glass-spotlight-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand-primary) 8%, transparent);
  color: var(--brand-secondary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

.spotlight-badge-confidential {
  background: color-mix(in srgb, #a13232 8%, transparent);
  color: #a13232;
}

.dv-nav-toggler {
  width: 42px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dv-nav-mobile-actions {
  margin-left: auto;
}

.dv-nav-icon-btn {
  width: 42px;
  height: 36px;
  border: 1px solid var(--border-default);
  border-radius: .375rem;
  background: var(--surface-card);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .16s ease;
}

.dv-nav-icon-btn:hover {
  color: var(--brand-secondary);
  border-color: color-mix(in srgb, var(--brand-secondary) 30%, var(--border-default));
  background: color-mix(in srgb, var(--brand-primary) 6%, var(--surface-card));
}

.dv-nav-search-btn {
  padding: 0;
}

.dv-nav-search-btn i {
  font-size: 1.04rem;
  line-height: 1;
}

.dv-nav-toggler-close {
  font-size: 1.45rem;
  line-height: 1;
  color: var(--brand-secondary);
  font-weight: 700;
}

.nav-policies {
  min-width: 220px;
}

.policy-doc h2 {
  margin-top: 1.25rem;
}

.static-hero {
  border: 1px solid var(--border-default);
  border-radius: 14px;
  background: var(--surface-card);
  padding: 1rem 1.1rem;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--neutral-800) 6%, transparent);
}

.policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.policy-doc-pro {
  border: 1px solid var(--border-default);
  border-radius: 14px;
  background: var(--surface-card);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--neutral-800) 6%, transparent);
}

.policy-doc-pro h2 {
  margin-top: 1.1rem;
  font-size: 1.05rem;
  color: var(--brand-secondary);
  border-top: 1px dashed var(--border-default);
  padding-top: .8rem;
}

.policy-doc-pro h2:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.policy-doc-pro p {
  color: var(--text-muted);
  line-height: 1.75;
}

.human-check-card {
  border: 1px solid var(--border-default);
  border-radius: 14px;
  background: #fbfdff;
  padding: .9rem 1rem;
}

.human-check-card .cf-turnstile,
.human-check-card .g-recaptcha {
  min-height: 66px;
}

.turnstile-shell,
.recaptcha-shell {
  display: block;
  width: fit-content;
  max-width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.recaptcha-shell.is-ready,
.turnstile-shell.is-ready {
  border: 0;
  box-shadow: none;
}

.recaptcha-shell.is-warning,
.turnstile-shell.is-warning {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.turnstile-shell .cf-turnstile,
.recaptcha-shell .g-recaptcha {
  display: inline-block;
  min-height: 0;
  max-width: 100%;
  overflow: hidden;
}

.turnstile-shell.is-ready .cf-turnstile,
.recaptcha-shell.is-ready .g-recaptcha,
.turnstile-shell .cf-turnstile[data-rendered="1"],
.recaptcha-shell .g-recaptcha[data-rendered="1"] {
  min-height: 78px;
}

.turnstile-help,
.recaptcha-help {
  margin-top: .4rem;
  color: #52627a;
  line-height: 1.45;
}

.turnstile-warning,
.recaptcha-warning {
  margin-top: .35rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #6b7280;
  line-height: 1.45;
}

.product-main-image {
  width: 100%;
  max-height: 470px;
  object-fit: cover;
}

.product-thumb-btn {
  width: 68px;
  height: 68px;
  background: var(--surface-card);
}

.product-thumb-image {
  width: 68px;
  height: 68px;
  object-fit: cover;
  display: block;
}

.resources-page {
  background:
    radial-gradient(720px 340px at 50% 0%, rgba(255, 202, 48, 0.1), transparent 68%),
    linear-gradient(180deg, #fffdf7 0%, #ffffff 26%, #f7fbff 100%);
}

.resources-page-hero {
  padding: 4.6rem 0 2rem;
  background: linear-gradient(180deg, #ffcf18 0%, #ffc700 100%);
}

.resources-page-head {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.resources-eyebrow,
.resources-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: rgba(255, 255, 255, .22);
  color: var(--brand-secondary);
  margin-bottom: 1rem;
}

.resources-page-head h1,
.resources-section-head h2 {
  color: var(--brand-secondary);
  font-weight: 900;
  letter-spacing: -.03em;
}

.resources-page-head h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.65rem);
  margin-bottom: .9rem;
}

.resources-page-head p,
.resources-section-head p {
  color: color-mix(in srgb, var(--brand-secondary) 68%, #334155);
  font-size: 1.05rem;
  line-height: 1.8;
}

.resources-search-shell {
  width: min(740px, 100%);
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  gap: .85rem;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  padding: .95rem 1.2rem;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.resources-search-shell i {
  font-size: 1.3rem;
  color: var(--brand-secondary);
}

.resources-search-shell input {
  flex: 1 1 auto;
  border: 0;
  background: transparent;
  outline: 0;
  font-size: 1rem;
  color: var(--text-primary);
}

.resources-section-head {
  max-width: 780px;
  margin: 0 auto 2rem;
}

.resource-source-card,
.resource-topic-card,
.resource-guide-card,
.resource-detail-card {
  border-radius: 24px;
  border: 1px solid rgba(20, 49, 98, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.resource-source-card {
  overflow: hidden;
  height: 100%;
}

.resource-source-card__visual {
  min-height: 188px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.resource-source-card__visual i {
  font-size: 3.4rem;
}

.resource-source-card__body {
  padding: 1.5rem 1.5rem 1.6rem;
}

.resource-source-label {
  display: inline-block;
  margin-bottom: .8rem;
  padding: .24rem .55rem;
  border-radius: 8px;
  background: #eef4ff;
  color: var(--brand-primary);
  font-size: .76rem;
  font-weight: 800;
}

.resource-source-card h3,
.resource-topic-card h3,
.resource-guide-card h3,
.resource-detail-card h2,
.resource-detail-card h3 {
  color: var(--brand-secondary);
  font-weight: 800;
}

.resource-source-card p,
.resource-topic-card p,
.resource-guide-card p,
.resource-detail-card p,
.resource-detail-card li {
  color: var(--text-muted);
  line-height: 1.8;
}

.resource-source-card a,
.resource-topic-links a,
.resource-side-list a {
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 700;
}

.source-who .resource-source-card__visual { background: linear-gradient(135deg, #2563eb, #365fdf); }
.source-cdc .resource-source-card__visual { background: linear-gradient(135deg, #22c55e, #188f41); }
.source-ppb .resource-source-card__visual { background: linear-gradient(135deg, #a855f7, #7e22ce); }
.source-moh .resource-source-card__visual { background: linear-gradient(135deg, #f97316, #ea580c); }
.source-medline .resource-source-card__visual { background: linear-gradient(135deg, #e11d48, #be123c); }
.source-nascop .resource-source-card__visual { background: linear-gradient(135deg, #0f766e, #115e59); }

.resources-topic-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem;
}

.resources-topic-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 49, 98, 0.12);
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  font-weight: 700;
  color: var(--brand-secondary);
}

.resource-topic-card {
  padding: 1.5rem;
}

.resource-topic-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(249, 115, 22, 0.14));
  color: var(--brand-primary);
  font-size: 1.45rem;
  margin-bottom: 1rem;
}

.resource-topic-links,
.resource-guide-actions,
.resource-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.resource-guide-card {
  padding: 1.6rem;
  height: 100%;
}

.resource-guide-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  margin-bottom: .85rem;
}

.resource-guide-card ul,
.resource-detail-card ul {
  padding-left: 1.1rem;
}

.resources-faq-wrap .accordion-item,
.resource-detail-card .accordion-item {
  border: 1px solid rgba(20, 49, 98, 0.08);
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: .85rem;
}

.resources-faq-wrap .accordion-button,
.resource-detail-card .accordion-button {
  font-weight: 700;
  color: var(--brand-secondary);
  background: #fff;
}

.resources-disclaimer {
  margin-top: 3rem;
  padding: 1.2rem 1.35rem;
  border: 1px solid rgba(234, 179, 8, 0.22);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff8dc 0%, #fff9ea 100%);
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  color: #9a6700;
}

.resource-detail-page {
  background: linear-gradient(180deg, #eef5ff 0%, #f8fbff 26%, #ffffff 100%);
}

.resource-detail-hero {
  background: linear-gradient(135deg, #214fcf 0%, #365fdf 100%);
  padding: 3.2rem 0;
}

.resource-detail-hero__content {
  max-width: 900px;
  color: #fff;
}

.resource-detail-hero__content h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: .8rem;
}

.resource-detail-hero__content p {
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .88);
}

.resource-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1rem;
}

.resource-detail-tags span,
.resource-related-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .4rem .72rem;
  border-radius: 999px;
  font-weight: 700;
}

.resource-detail-tags span {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.resource-detail-body,
.resource-detail-card {
  padding: 1.8rem;
}

.resource-detail-card--tint {
  background: linear-gradient(180deg, #edf4ff 0%, #f5f9ff 100%);
}

.resource-detail-side {
  display: grid;
  gap: 1.2rem;
}

.resource-side-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resource-side-list li + li {
  margin-top: .85rem;
}

.resource-side-list a::before {
  content: "\2192";
  margin-right: .45rem;
}

.resource-related-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.resource-related-pills span {
  background: #edf4ff;
  color: var(--brand-primary);
}

.condition-entry-card {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  height: 100%;
  padding: 1.1rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--border-default);
  background: #fff;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--neutral-800) 7%, transparent);
  color: var(--brand-secondary);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.condition-entry-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--brand-primary) 28%, var(--border-default));
  box-shadow: 0 16px 30px color-mix(in srgb, var(--neutral-800) 10%, transparent);
  color: var(--brand-secondary);
}

.condition-entry-card strong {
  font-size: .98rem;
}

.condition-entry-card span:last-child {
  font-size: .85rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.condition-entry-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(23, 68, 159, 0.12), rgba(17, 194, 209, 0.1));
  color: var(--brand-primary);
  font-size: 1.15rem;
}

.condition-entry-card--rich {
  padding: 0;
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
}

.condition-entry-card--rich strong {
  font-size: 1.02rem;
}

.condition-entry-copy {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  padding: 1rem 1rem .25rem;
}

.condition-entry-card--rich .condition-entry-copy span:last-child {
  color: var(--text-muted);
}

.condition-entry-media {
  display: block;
  width: 100%;
  aspect-ratio: 1 / .78;
  background: #eef2f7;
  border-bottom: 1px solid var(--border-default);
  overflow: hidden;
}

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

.condition-entry-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--brand-secondary);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .01em;
  padding: 0 1rem 1rem;
}

@media (max-width: 767.98px) {
  .condition-entry-card--rich {
    border-radius: 18px;
  }
}

.condition-chip-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .48rem .8rem;
  border-radius: 999px;
  border: 1px solid var(--border-default);
  background: #fff;
  color: var(--brand-secondary);
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: all .18s ease;
}

.condition-chip-link:hover,
.condition-chip-link.is-active {
  color: var(--brand-primary);
  border-color: color-mix(in srgb, var(--brand-primary) 30%, var(--border-default));
  background: color-mix(in srgb, var(--brand-primary) 7%, #fff);
}

.shop-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.shop-filter-chip-remove {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid color-mix(in srgb, var(--brand-primary) 18%, var(--border-default));
  border-radius: 999px;
  background: #fff;
  color: var(--brand-secondary);
  font-size: .83rem;
  font-weight: 700;
  padding: .42rem .8rem;
}

.shop-filter-chip-remove:hover {
  color: var(--brand-primary);
  border-color: color-mix(in srgb, var(--brand-primary) 34%, var(--border-default));
  background: color-mix(in srgb, var(--brand-primary) 6%, #fff);
}

.error-shell {
  min-height: 100vh;
  background:
    radial-gradient(700px 260px at 10% 0%, color-mix(in srgb, var(--brand-primary) 12%, transparent), transparent 60%),
    radial-gradient(720px 260px at 90% 0%, color-mix(in srgb, var(--brand-secondary) 10%, transparent), transparent 62%),
    var(--surface-page);
}

.error-card {
  max-width: 980px;
  width: 100%;
  border: 1px solid var(--border-default);
  border-radius: 16px;
  background: var(--surface-card);
  box-shadow: 0 14px 36px color-mix(in srgb, var(--neutral-800) 10%, transparent);
  padding: 2rem;
  text-align: center;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .6rem;
}

.error-actions .btn {
  min-width: 150px;
}

.error-code {
  font-size: 4rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--brand-secondary);
  margin-bottom: .5rem;
}

.cart-toast {
  position: fixed;
  right: 14px;
  top: 86px;
  z-index: 1080;
  padding: 10px 12px;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--neutral-800) 24%, transparent);
  font-size: .86rem;
  font-weight: 600;
}

.cart-toast.is-success {
  background: var(--brand-secondary);
}

.cart-toast.is-error {
  background: #a13232;
}

.cart-toast.is-info {
  background: #1b56d6;
}

.dv-confirm-backdrop {
  background: rgba(0, 0, 0, .45);
}

.floating-call {
  position: fixed;
  left: 14px;
  bottom: 68px;
  z-index: 1080;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 96px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--brand-secondary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--neutral-800) 28%, transparent);
}

.floating-call:hover {
  color: #fff;
  filter: brightness(1.04);
}

.floating-whatsapp {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 1080;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 246px;
  height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--neutral-800) 28%, transparent);
}

.floating-whatsapp:hover {
  color: #fff;
  filter: brightness(1.04);
}

.floating-whatsapp span {
  white-space: nowrap;
}

.back-to-top {
  --scroll-progress: 0deg;
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 1080;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, #fff 54%, transparent 55%),
    conic-gradient(var(--brand-primary) 0deg, var(--brand-primary) var(--scroll-progress), rgba(4, 33, 79, 0.18) var(--scroll-progress), rgba(4, 33, 79, 0.18) 360deg);
  color: #fff;
  font-size: 0;
  line-height: 1;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--neutral-800) 28%, transparent);
  transition: transform .18s ease, box-shadow .18s ease;
}

.back-to-top::before {
  content: '\2191';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--brand-secondary);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.back-to-top:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px color-mix(in srgb, var(--neutral-800) 30%, transparent);
}

.install-app-wrap {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.install-app-btn {
  position: static;
  border: 0;
  border-radius: 999px;
  height: 42px;
  padding: 0 16px;
  background: var(--brand-secondary);
  color: var(--neutral-0);
  font-weight: 700;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--neutral-800) 28%, transparent);
}

.install-app-btn:hover {
  filter: brightness(1.06);
}

.install-app-info-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--neutral-0);
  color: var(--brand-secondary);
  font-weight: 700;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--neutral-800) 20%, transparent);
}

.install-app-info-btn:hover {
  filter: brightness(1.02);
}

.footer-install-area {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
}

.app-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
  transition: opacity .3s ease, visibility .3s ease;
}

.app-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.app-loader-box {
  width: min(420px, calc(100vw - 28px));
  border: 1px solid var(--border-default);
  border-radius: 16px;
  background: var(--surface-card);
  padding: 1.2rem 1.1rem;
  text-align: center;
  box-shadow: 0 16px 34px color-mix(in srgb, var(--neutral-800) 12%, transparent);
}

.app-loader-box img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: .5rem;
}

.app-loader-title {
  font-weight: 800;
  color: var(--brand-secondary);
}

.app-loader-sub {
  color: var(--text-muted);
  font-size: .9rem;
  margin-top: .15rem;
}

.app-loader-bar {
  margin-top: .85rem;
  height: 8px;
  background: var(--neutral-200);
  border-radius: 999px;
  overflow: hidden;
}

.app-loader-bar span {
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  animation: loaderBar 1.2s linear infinite;
}

.mobile-tabbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1095;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--surface-card);
  border-top: 1px solid var(--border-default);
  box-shadow: 0 -8px 18px color-mix(in srgb, var(--neutral-800) 10%, transparent);
  padding: .5rem .35rem .4rem;
}

.mobile-tabbar-link {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--brand-secondary);
  gap: 4px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .01em;
  min-height: 52px;
}

.mobile-tabbar-cart-link {
  position: relative;
}

.mobile-cart-badge {
  position: absolute;
  top: .18rem;
  right: calc(50% - 1.15rem);
  min-width: 1.18rem;
  height: 1.18rem;
  padding: 0 .28rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-primary));
  color: #fff;
  border: 2px solid var(--surface-card);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .64rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 4px 10px color-mix(in srgb, var(--brand-primary) 30%, transparent);
  pointer-events: none;
}

.mobile-tabbar-link i {
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1;
}

.mobile-tabbar-link .fa,
.mobile-tabbar-link .fas,
.mobile-tabbar-link .far,
.mobile-tabbar-link .fab {
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1;
}

.mobile-tabbar-link:active,
.mobile-tabbar-link:hover {
  color: var(--brand-primary);
}

@keyframes loaderBar {
  from {
    transform: translateX(-120%)
  }

  to {
    transform: translateX(320%)
  }
}

@media (max-width: 575px) {
  .floating-call {
    min-width: 96px;
    height: 40px;
    font-size: .82rem;
    left: 12px;
    right: auto;
    bottom: 132px;
  }

  .floating-whatsapp {
    min-width: 210px;
    height: 42px;
    padding: 0 14px;
    font-size: .78rem;
    left: 12px;
    right: auto;
    bottom: 84px;
  }

  .install-app-wrap {
    width: 100%;
  }

  .app-footer {
    position: relative;
  }

  .app-footer .container {
    padding-bottom: 6.6rem;
  }

  .app-footer .row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem 1rem;
    align-items: start;
    --bs-gutter-y: 0;
  }

  .footer-col-brand {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .footer-col-shop {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-col-info {
    grid-column: 2;
    grid-row: 2;
  }

  .footer-col-trusted {
    grid-column: 1;
    grid-row: 3;
  }

  .footer-col-policies {
    grid-column: 2;
    grid-row: 3;
  }

  .app-footer h5 {
    font-size: 1.02rem;
  }

  .app-footer h6 {
    margin-bottom: .4rem;
    font-size: .98rem;
  }

  .app-footer .list-unstyled {
    margin-bottom: 0;
  }

  .app-footer .list-unstyled li {
    margin-bottom: .16rem;
  }

  .footer-install-area {
    justify-content: flex-start;
    margin-top: .65rem !important;
    gap: 8px;
  }

  .install-app-btn {
    height: 40px;
    font-size: .85rem;
  }

  .install-app-info-btn {
    width: 34px;
    height: 34px;
  }

  .footer-social {
    margin-top: .7rem !important;
    padding-top: .85rem;
  }

  .footer-social-links {
    gap: .45rem !important;
  }

  .footer-social-links .btn-outline-light.rounded-circle {
    width: 36px !important;
    height: 36px !important;
  }

  .footer-newsletter {
    display: block;
    width: 100%;
    margin-top: .7rem !important;
    padding-top: .85rem;
  }

  .footer-newsletter-copy {
    max-width: none;
    margin-bottom: .5rem;
  }

  .footer-newsletter-form {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: .6rem;
  }

  .footer-newsletter-form .form-control-sm {
    min-height: 40px;
    max-width: 100%;
    width: 100%;
  }

  .footer-newsletter-form .btn-success.btn-sm {
    min-height: 40px;
    width: 100%;
    padding-inline: .95rem;
  }

  .back-to-top {
    width: 46px;
    height: 46px;
    bottom: 138px;
  }

  .back-to-top::before {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .footer-meta {
    justify-content: center !important;
    text-align: center;
    margin-top: .45rem;
    margin-bottom: .15rem;
  }

  .footer-meta span {
    width: 100%;
  }

  .resources-page-hero {
    padding: 3.1rem 0 1.4rem;
  }

  .resources-page-head h1 {
    font-size: 2.15rem;
  }

  .resources-page-head p,
  .resources-section-head p {
    font-size: .98rem;
  }

  .resources-search-shell {
    padding: .85rem 1rem;
  }

  .resource-source-card__visual {
    min-height: 148px;
  }

  .resource-source-card__visual i {
    font-size: 2.6rem;
  }

  .resource-topic-card,
  .resource-guide-card,
  .resource-detail-card,
  .resource-detail-body {
    padding: 1.2rem;
  }

  .resource-detail-hero {
    padding: 2.35rem 0;
  }

  .resources-disclaimer {
    flex-direction: column;
  }
}

.blog-content {
  line-height: 1.78;
  color: var(--text-primary);
}

.blog-content p,
.blog-content li {
  font-size: 1.02rem;
}

.blog-content h2,
.blog-content h3 {
  color: var(--brand-secondary);
  margin-top: 1.2rem;
}

.resource-detail-body {
  line-height: 1.82;
}

.resource-detail-body p,
.resource-detail-body li {
  color: var(--text-muted);
  font-size: 1rem;
}

.newsletter-page .card {
  border-radius: 16px;
}

.password-field {
  position: relative;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--brand-secondary);
  font-size: .84rem;
  font-weight: 700;
}

.password-field input[type="password"],
.password-field input[type="text"] {
  padding-right: 56px;
}

.sb-shell {
  background: linear-gradient(180deg, #f7fbff 0%, #f3f8ff 100%);
}

.sb-sidebar {
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand-secondary) 94%, #0b2a66) 0%, color-mix(in srgb, var(--brand-secondary) 86%, #09214f) 100%);
  color: #fff;
  box-shadow: inset -1px 0 0 color-mix(in srgb, var(--neutral-0) 10%, transparent);
  padding-top: 1.05rem !important;
  overflow-y: auto;
}

.sb-sidebar.offcanvas-md {
  border-right: 0;
}

.sb-brand-block {
  display: flex;
  align-items: center;
  gap: .58rem;
  color: #fff;
  padding: .2rem .12rem .45rem;
  border-bottom: 1px solid color-mix(in srgb, var(--neutral-0) 18%, transparent);
}

.sb-brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--neutral-0) 20%, transparent);
  box-shadow: 0 6px 14px color-mix(in srgb, #000 18%, transparent);
}

.sb-brand-icon i {
  font-size: .95rem;
}

.sb-brand-dot {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.sb-brand-dot-text {
  font-size: .92rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  display: inline-block;
}

.sb-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.06;
}

.sb-brand-title {
  font-size: .81rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #fff;
}

.sb-brand-subtitle {
  margin-top: .12rem;
  font-size: .88rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--neutral-0) 88%, transparent);
}

.sb-menu-heading {
  margin: .78rem .32rem .28rem;
  font-size: .67rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: color-mix(in srgb, var(--neutral-0) 68%, transparent);
  font-weight: 800;
}

.sb-sidebar .offcanvas-header {
  border-bottom: 1px solid color-mix(in srgb, var(--neutral-0) 18%, transparent);
  margin-bottom: .8rem;
  padding-bottom: .7rem !important;
}

.sb-sidebar .btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: .9;
}

.sb-sidebar .btn-close-white:hover {
  opacity: 1;
}

.sb-sidebar .nav-link {
  color: rgba(255, 255, 255, .9);
  border-radius: 8px;
  margin-bottom: 4px;
  padding: .48rem .62rem;
  transition: background .16s ease, color .16s ease, transform .16s ease;
  font-weight: 600;
  font-size: .86rem;
  letter-spacing: .01em;
}

.sb-sidebar .nav-link i {
  opacity: .95;
}

.sb-sidebar .nav-link:hover,
.sb-sidebar .nav-link.active {
  background: rgba(255, 255, 255, .16);
  color: #fff;
  transform: translateX(2px);
}

.sb-topbar {
  background: #fff;
  border-bottom: 1px solid var(--border-default);
  padding: .75rem 1rem;
  position: sticky;
  top: 0;
  z-index: 1020;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--neutral-800) 6%, transparent);
}

.sb-topbar-search {
  width: min(420px, 46vw);
}

.sb-topbar-search .input-group-text {
  background: color-mix(in srgb, var(--brand-secondary) 8%, var(--surface-card));
  border-color: var(--border-default);
  color: var(--brand-secondary);
}

.sb-topbar-search .form-control {
  border-left: 0;
}

.sb-admin-shell .sb-topbar strong,
.sb-staff-shell .sb-topbar strong,
.sb-dev-shell .sb-topbar strong,
.sb-member-shell .sb-topbar strong {
  color: var(--brand-secondary);
}

.sb-shell .card {
  border-radius: 12px;
}

.sb-page-content {
  max-width: 1320px;
}

.sb-portal-footer {
  border-top: 1px solid var(--border-default);
  color: var(--text-muted);
  background: color-mix(in srgb, var(--neutral-0) 84%, var(--surface-page));
}

.sb-portal-footer a {
  color: var(--brand-secondary);
  text-decoration: none;
}

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

.sb-shell .container-fluid>.row>main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sb-shell .sb-page-content {
  flex: 1 0 auto;
}

.sb-shell .sb-portal-footer {
  margin-top: auto;
}

.sb-page-head h1,
.sb-page-head h2 {
  color: var(--brand-secondary);
  font-weight: 800;
  letter-spacing: -.01em;
}

.sb-kpi-card {
  border: 1px solid #dbe6f7;
  border-left: 4px solid #1f56f2;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  padding: 1rem 1rem .95rem;
  position: relative;
  overflow: hidden;
}

.sb-kpi-card::after {
  content: none;
}

.sb-kpi-card .sb-kpi-label {
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #64748b;
}

.sb-kpi-card .sb-kpi-icon {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.sb-kpi-card--primary .sb-kpi-icon {
  color: #1f56f2;
  background: #eaf1ff;
}

.sb-kpi-card--success .sb-kpi-icon {
  color: #2bb673;
  background: #e8f8f0;
}

.sb-kpi-card--warning .sb-kpi-icon {
  color: #f59e0b;
  background: #fff6e8;
}

.sb-kpi-card--danger .sb-kpi-icon {
  color: #ef4444;
  background: #feeeee;
}

.sb-kpi-value {
  margin-top: .3rem;
  font-size: 1.65rem;
  font-weight: 800;
  color: #1f2d4d;
  letter-spacing: -.02em;
}

.sb-action-row {
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-wrap: wrap;
}

.sb-shell .table {
  --bs-table-bg: transparent;
  --bs-table-hover-bg: color-mix(in srgb, var(--brand-primary) 7%, var(--neutral-0));
}

.sb-shell .table thead th {
  background: color-mix(in srgb, var(--brand-secondary) 8%, var(--neutral-0));
  color: var(--brand-secondary);
  border-bottom: 1px solid var(--border-default);
  font-size: .76rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 800;
  padding: .78rem .75rem;
}

.sb-shell .table tbody td {
  border-color: var(--border-default);
  padding: .72rem .75rem;
  vertical-align: middle;
}

.sb-shell .table tbody tr:hover {
  background: color-mix(in srgb, var(--brand-primary) 4%, var(--neutral-0));
}

.sb-shell .card .card-header {
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand-secondary) 4%, var(--neutral-0)) 0%, var(--surface-card) 100%);
  border-bottom: 1px solid var(--border-default);
  font-weight: 700;
}

.sb-shell .form-control,
.sb-shell .form-select {
  border-color: color-mix(in srgb, var(--brand-secondary) 16%, var(--border-default));
  border-radius: 10px;
  min-height: 40px;
}

.sb-shell .form-control:focus,
.sb-shell .form-select:focus {
  border-color: color-mix(in srgb, var(--brand-secondary) 52%, var(--border-default));
  box-shadow: 0 0 0 .18rem color-mix(in srgb, var(--brand-primary) 24%, transparent);
}

.sb-shell .btn-sm {
  border-radius: 8px;
  font-weight: 700;
}

.chat-window {
  height: 380px;
  overflow: auto;
  background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
  scroll-behavior: smooth;
}

.chat-bubble {
  max-width: 84%;
  border-radius: 14px !important;
  box-shadow: 0 8px 16px color-mix(in srgb, var(--neutral-800) 8%, transparent);
  padding: 0.85rem 1rem !important;
}

.chat-bubble-mine {
  background: linear-gradient(145deg, var(--brand-secondary), color-mix(in srgb, var(--brand-secondary) 78%, #2f7fff));
  color: #fff;
}

.chat-bubble-other {
  background: #fff;
  border: 1px solid var(--border-default);
  color: var(--text-primary);
}

.chat-thread-link {
  border-radius: 10px;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.chat-thread-link.active {
  background: color-mix(in srgb, var(--brand-secondary) 14%, #fff);
  border-color: color-mix(in srgb, var(--brand-secondary) 36%, var(--border-default));
  color: var(--text-primary);
}

.chat-thread-link:hover {
  transform: translateY(-1px);
  background: color-mix(in srgb, var(--brand-secondary) 8%, #fff);
}

.chat-thread-link .small.opacity-75 {
  line-height: 1.35;
}

.chat-window+form .form-control {
  min-height: 44px;
  border-radius: 999px;
  padding-inline: 1rem;
}

.chat-window+form .btn {
  border-radius: 999px;
  min-width: 104px;
}

.chat-presence-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  min-height: 22px;
}

.chat-presence-indicator,
.chat-seen-indicator {
  font-size: .79rem;
  font-weight: 600;
  color: #64748b;
}

.chat-presence-indicator::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: .42rem;
  border-radius: 999px;
  background: #1f56f2;
  animation: chatTypingPulse 1s ease-in-out infinite;
  vertical-align: middle;
}

.chat-seen-indicator {
  color: #2bb673;
}

.chat-seen-indicator::before {
  content: '\2713';
  display: inline-block;
  margin-right: .35rem;
  font-weight: 800;
}

.chat-live-dot {
  flex: 0 0 auto;
}

.chat-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, .5);
  animation: chatPulse 1.4s infinite;
}

@keyframes chatPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .45);
  }

  70% {
    box-shadow: 0 0 0 9px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

@keyframes chatTypingPulse {

  0%,
  100% {
    transform: scale(.85);
    opacity: .5;
  }

  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

.sb-shell .pagination .page-link {
  border-color: var(--border-default);
  color: var(--brand-secondary);
}

.sb-shell .pagination .page-item.active .page-link {
  background: var(--brand-secondary);
  border-color: var(--brand-secondary);
  color: #fff;
}

.sb-profile-toggle {
  border: 1px solid var(--border-default);
  background: var(--surface-card);
  border-radius: 999px;
  padding: .3rem .56rem .3rem .32rem;
  display: inline-flex;
  align-items: center;
  gap: .52rem;
  box-shadow: 0 5px 14px color-mix(in srgb, var(--neutral-800) 8%, transparent);
}

.sb-profile-toggle::after {
  margin-left: .25rem;
}

.sb-avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--brand-secondary) 14%, var(--neutral-0));
  color: var(--brand-secondary);
  font-weight: 800;
  font-size: .83rem;
}

.sb-profile-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  text-align: left;
}

.sb-profile-name {
  font-size: .79rem;
  font-weight: 700;
  color: var(--text-primary);
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sb-profile-role {
  font-size: .66rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.sb-profile-menu {
  min-width: 220px;
  border-color: var(--border-default);
  border-radius: 12px;
}

.sb-profile-menu .dropdown-item {
  font-weight: 600;
  font-size: .87rem;
}

.auth-card-pro {
  border: 1px solid var(--border-default);
  border-radius: 14px;
  box-shadow: 0 14px 34px color-mix(in srgb, var(--neutral-800) 8%, transparent);
}

.dv-auth-shell {
  min-height: 100vh;
  background:
    radial-gradient(760px 280px at 0% 0%, color-mix(in srgb, var(--brand-primary) 18%, transparent), transparent 64%),
    radial-gradient(760px 280px at 100% 0%, color-mix(in srgb, var(--brand-secondary) 12%, transparent), transparent 68%),
    linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
}

.dv-auth-section {
  min-height: calc(100vh - 9rem);
  display: flex;
  align-items: center;
}

.dv-auth-card {
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--brand-secondary) 18%, var(--border-default));
  box-shadow: 0 18px 42px color-mix(in srgb, var(--neutral-800) 10%, transparent);
  background:
    radial-gradient(260px 140px at 100% 0%, color-mix(in srgb, var(--brand-primary) 10%, transparent), transparent 70%),
    var(--surface-card);
}

.dv-auth-brand h1 {
  color: var(--brand-secondary);
  font-weight: 800;
  letter-spacing: -.01em;
}

.dv-auth-card .form-label {
  color: color-mix(in srgb, var(--brand-secondary) 72%, var(--text-muted));
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.dv-auth-card .btn {
  border-radius: 10px;
  font-weight: 700;
}

@media (min-width: 992px) {
  .sb-shell .container-fluid>.row {
    align-items: stretch;
  }

  .sb-sidebar {
    min-height: 100vh;
  }

  .sb-sidebar.offcanvas-md {
    position: relative;
    visibility: visible;
    transform: none;
  }
}

@media (max-width: 991px) {
  .hero-panel-image {
    height: 300px;
  }

  .sb-profile-meta {
    display: none;
  }

  .sb-page-content {
    padding: 1rem !important;
  }

  .sb-shell .table thead th,
  .sb-shell .table tbody td {
    padding: .62rem .58rem;
  }
}

@media (min-width: 992px) {
  .navbar .container {
    max-width: 1220px;
  }

  .navbar .navbar-nav {
    column-gap: .15rem;
  }

  .navbar .nav-link {
    padding: .42rem .52rem;
    font-size: .94rem;
    white-space: nowrap;
  }

  .navbar .form-control.form-control-sm {
    min-width: 210px;
  }
}

/* Auth Page Custom Styles */
.dv-auth-shell {
  background:
    linear-gradient(180deg, #fbfdff 0%, #f4f8ff 42%, #fbfdff 100%);
}

.dv-auth-section {
  min-height: calc(100vh - 13.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: .45rem 0 .8rem;
}

.dv-auth-container {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.dv-auth-container--narrow {
  max-width: 500px;
}

.dv-auth-brand {
  margin-bottom: .7rem !important;
}

.dv-auth-brand img {
  height: 60px !important;
  width: 60px !important;
  object-fit: contain;
  padding: .5rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(31, 86, 242, 0.14);
  box-shadow: none;
}

.dv-auth-brand h1 {
  font-size: clamp(1.72rem, 2vw, 2.15rem);
  margin-top: .82rem !important;
  color: #12306d;
  letter-spacing: -.02em;
}

.dv-auth-brand p {
  max-width: 430px;
  margin: 0 auto;
  color: #5f6f86 !important;
  line-height: 1.52;
}

.dv-auth-section {
  min-height: calc(100vh - 13.5rem);
  padding: .45rem 0 .8rem;
}

.dv-auth-login-wrap {
  max-width: 520px;
}

.dv-auth-stage {
  display: block;
}

.dv-auth-section {
  position: relative;
  min-height: calc(100vh - 72px);
  background: #ffffff;
  overflow: hidden;
}

.dv-auth-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 22%, rgba(102, 149, 255, 0.10), transparent 16%),
    radial-gradient(circle at 82% 28%, rgba(247, 191, 92, 0.14), transparent 14%),
    radial-gradient(circle at 78% 74%, rgba(66, 201, 142, 0.10), transparent 16%);
  opacity: 1;
  pointer-events: none;
}

.dv-auth-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
}

.dv-auth-scene {
  display: grid;
  grid-template-columns: minmax(280px, 1.12fr) minmax(340px, 520px);
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
  min-height: calc(100vh - 150px);
}

.dv-auth-scene-art {
  position: relative;
  min-height: 560px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 255, 0.92) 100%);
  box-shadow: inset 0 0 0 1px rgba(227, 234, 245, 0.9);
}

.dv-auth-scene-main {
  position: relative;
  z-index: 2;
  max-width: 520px;
  width: 100%;
}

.dv-auth-scene--reference {
  align-items: stretch;
}

.dv-auth-header {
  max-width: 760px;
  margin: 0 auto 1rem;
}

.dv-auth-kicker {
  letter-spacing: .04em;
  margin-bottom: .45rem;
}

.dv-auth-title {
  margin: 0 0 .65rem;
  color: #1d3f84;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  font-weight: 800;
  line-height: 1.05;
}

.dv-auth-subtitle {
  margin: 0 auto;
  max-width: 560px;
  color: #5f6f86;
  font-size: 1.02rem;
  line-height: 1.65;
}

.dv-auth-scene-clean {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(340px, 530px) minmax(180px, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  min-height: clamp(380px, calc(100vh - 280px), 520px);
}

.dv-auth-scene-clean--narrow {
  min-height: clamp(340px, calc(100vh - 320px), 440px);
}

.dv-auth-decor {
  position: relative;
  min-height: 300px;
}

.dv-auth-decor-left {
  display: block;
}

.dv-auth-decor-right {
  display: block;
}

.dv-auth-panel-wrap {
  position: relative;
  z-index: 2;
}

.dv-auth-card--clean {
  max-width: 530px;
  margin: 0 auto;
}

.dv-auth-shape-geo {
  position: absolute;
  top: 110px;
  left: 80px;
  width: 62px;
  opacity: .92;
}

.dv-auth-orb {
  position: absolute;
  border-radius: 999px;
}

.dv-auth-orb-blue {
  width: 18px;
  height: 18px;
  top: 86px;
  left: 188px;
  background: radial-gradient(circle, rgba(129, 179, 255, 1) 0%, rgba(129, 179, 255, .22) 72%, rgba(129, 179, 255, 0) 100%);
}

.dv-auth-orb-pink {
  width: 26px;
  height: 26px;
  top: 155px;
  left: 150px;
  background: radial-gradient(circle, rgba(230, 140, 182, .95) 0%, rgba(230, 140, 182, .28) 72%, rgba(230, 140, 182, 0) 100%);
}

.dv-auth-grid {
  position: absolute;
  left: 224px;
  bottom: 120px;
  width: 32px;
  height: 32px;
  background-image: radial-gradient(circle, rgba(73, 111, 245, .88) 0 2px, transparent 3px);
  background-size: 16px 16px;
  background-repeat: repeat;
}

.dv-auth-spark {
  position: absolute;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  border-radius: 4px;
}

.dv-auth-spark::before,
.dv-auth-spark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.dv-auth-spark-a {
  top: 82px;
  right: 138px;
  background: rgba(116, 149, 255, .18);
}

.dv-auth-spark-a::before {
  background: linear-gradient(180deg, #85a8ff 0%, #4d6ff2 100%);
  clip-path: polygon(48% 0, 58% 38%, 100% 50%, 58% 62%, 48% 100%, 38% 62%, 0 50%, 38% 38%);
}

.dv-auth-spark-b {
  top: 122px;
  right: 118px;
  width: 14px;
  height: 14px;
  background: rgba(110, 220, 190, .18);
}

.dv-auth-spark-b::before {
  background: linear-gradient(180deg, #83dec9 0%, #49c8a4 100%);
  clip-path: polygon(48% 0, 58% 38%, 100% 50%, 58% 62%, 48% 100%, 38% 62%, 0 50%, 38% 38%);
}

.dv-auth-spark-c {
  top: 114px;
  right: 90px;
  width: 20px;
  height: 20px;
  background: rgba(255, 202, 115, .18);
}

.dv-auth-spark-c::before {
  background: linear-gradient(180deg, #ffd27d 0%, #f2b94c 100%);
  clip-path: polygon(48% 0, 58% 38%, 100% 50%, 58% 62%, 48% 100%, 38% 62%, 0 50%, 38% 38%);
}

.dv-auth-scene-figure--pair {
  position: absolute;
  right: 78px;
  bottom: 8px;
  width: min(210px, 72%);
  filter: drop-shadow(0 22px 28px rgba(20, 43, 84, 0.14));
}

.dv-auth-art-card {
  position: relative;
  min-height: 620px;
  border: 1px solid #dfe7f3;
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
  overflow: hidden;
}

.dv-auth-scene-dot {
  position: absolute;
  border-radius: 999px;
  filter: blur(.2px);
}

.dv-auth-scene-dot-a {
  width: 18px;
  height: 18px;
  left: 62%;
  top: 9%;
  background: radial-gradient(circle, rgba(113, 177, 255, 0.95), rgba(113, 177, 255, 0.15));
}

.dv-auth-scene-dot-b {
  width: 24px;
  height: 24px;
  left: 16%;
  top: 22%;
  background: radial-gradient(circle, rgba(222, 123, 172, 0.95), rgba(222, 123, 172, 0.15));
}

.dv-auth-scene-shape {
  position: absolute;
  display: block;
  object-fit: contain;
  opacity: .95;
}

.dv-auth-scene-shape-a {
  width: 74px;
  left: 10%;
  top: 16%;
}

.dv-auth-scene-shape-b {
  width: 26px;
  right: 18%;
  top: 16%;
}

.dv-auth-scene-shape-c {
  width: 18px;
  left: 72%;
  top: 28%;
  bottom: auto;
}

.dv-auth-scene-shape-d {
  width: 38px;
  right: 10%;
  bottom: 18%;
  top: auto;
}

.dv-auth-scene-figure {
  position: absolute;
  right: 14%;
  bottom: 0;
  width: min(340px, 52%);
  display: block;
  filter: drop-shadow(0 24px 34px rgba(14, 36, 79, 0.12));
}

.dv-auth-scene-figure--left {
  right: 18%;
  width: min(300px, 48%);
}

.dv-auth-showcase {
  display: none;
}

.dv-auth-pane {
  display: block;
  height: auto;
  padding: 0;
  background: transparent;
  border-left: 0;
}

.dv-auth-card {
  background: #fff !important;
  backdrop-filter: none !important;
  border: 1px solid rgba(209, 223, 242, 0.98) !important;
  border-top: 0 !important;
  border-radius: 24px !important;
  box-shadow: 0 28px 80px rgba(18, 48, 109, 0.08) !important;
  padding: 1.65rem !important;
  max-width: 100%;
  margin: 0;
  width: 100%;
}

.dv-auth-brand {
  margin-bottom: 1rem !important;
}

.dv-auth-brand img {
  height: 52px !important;
  width: auto !important;
}

.dv-auth-eyebrow {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(31, 86, 242, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #1f56f2;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .38rem .78rem;
}

.dv-auth-showcase .dv-auth-brand img {
  height: 58px !important;
  width: 58px !important;
  margin-bottom: 0;
}

.dv-auth-showcase .dv-auth-brand h1 {
  margin-top: 0 !important;
  margin-bottom: .2rem !important;
}

.dv-auth-showcase .dv-auth-brand p {
  max-width: none;
  margin: 0;
  font-size: .98rem;
}

.dv-auth-benefits {
  display: grid;
  gap: 1rem;
}

.dv-auth-benefit {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1rem 1rem 1rem .95rem;
  border: 1px solid rgba(31, 86, 242, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.dv-auth-benefit-mark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  flex: 0 0 auto;
  margin-top: .35rem;
  background: linear-gradient(180deg, #22ccf3 0%, #1f56f2 100%);
  box-shadow: 0 0 0 5px rgba(31, 86, 242, 0.08);
}

.dv-auth-benefit h2 {
  margin: 0 0 .18rem;
  color: #18408c;
  font-size: 1rem;
  font-weight: 800;
}

.dv-auth-benefit p {
  margin: 0;
  color: #5f6f86;
  line-height: 1.55;
  font-size: .93rem;
}

.dv-auth-card-head {
  margin-bottom: .8rem;
}

.dv-auth-card-kicker {
  font-size: .9rem;
  font-weight: 800;
  color: #18408c;
}

.dv-auth-card-copy {
  margin-top: .15rem;
  color: #5f6f86;
  font-size: .9rem;
  line-height: 1.45;
}

.dv-auth-card .form-label {
  margin-bottom: .4rem;
  color: #5e6f88 !important;
  letter-spacing: .03em;
}

.dv-auth-card .form-control {
  min-height: 54px;
  border-radius: 14px;
  padding: .76rem 1rem;
  border: 1px solid #d9e1ec;
  background: #ffffff;
}

.dv-auth-card .form-control:focus {
  border-color: #1f56f2;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(31, 86, 242, 0.12);
}

.dv-auth-card .btn {
  min-height: 52px;
  border-radius: 14px !important;
  font-weight: 800 !important;
  letter-spacing: .01em;
  box-shadow: none !important;
  width: 100%;
}

.dv-auth-card .btn-success {
  background: #18408c !important;
  border: 1px solid #18408c !important;
  color: #fff !important;
}

.dv-auth-card .btn-success:hover {
  transform: none;
  box-shadow: none !important;
  filter: none;
  background: #12306d !important;
  border-color: #12306d !important;
  color: #fff !important;
}

.dv-auth-card .btn-outline-primary,
.dv-auth-card .btn-outline-secondary {
  border-width: 1px;
  background: #fff;
}

.dv-auth-card .btn-outline-primary {
  color: #224c98;
  border-color: rgba(34, 76, 152, 0.28);
}

.dv-auth-card .btn-outline-primary:hover,
.dv-auth-card .btn-outline-primary:focus {
  color: #224c98 !important;
  background: #f0f5ff !important;
  border-color: rgba(34, 76, 152, 0.42) !important;
}

.dv-auth-card .btn-outline-secondary {
  color: #27436f;
  border-color: #ccd8e8;
}

.dv-auth-card .btn-outline-secondary:hover,
.dv-auth-card .btn-outline-secondary:focus {
  color: #27436f !important;
  background: #f7faff !important;
  border-color: #b6c9e2 !important;
}

.dv-auth-card .dv-google-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .72rem;
  width: 100%;
  min-height: 50px;
  padding: .8rem 1rem;
  border: 1px solid #d9e1ec;
  border-radius: 14px;
  background: #fff;
  color: #1f2937;
  font-weight: 700;
  text-decoration: none;
  box-shadow: none;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background-color .16s ease;
}

.dv-auth-card .dv-google-btn:hover,
.dv-auth-card .dv-google-btn:focus {
  color: #152238 !important;
  background: #f9fbff !important;
  border-color: #c4d1e3 !important;
  box-shadow: none;
  transform: none;
}

.dv-auth-card .dv-google-btn-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.dv-auth-card .dv-google-btn-mark svg {
  display: block;
  width: 22px;
  height: 22px;
}

.dv-auth-card .form-check {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
}

.dv-auth-card .form-check-input {
  margin-top: .22rem;
}

.dv-auth-card .small {
  line-height: 1.55;
}

@media (max-width: 991.98px) {
  .dv-auth-scene {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dv-auth-scene-clean {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: .65rem;
  }

  .dv-auth-decor {
    min-height: 120px;
  }

  .dv-auth-decor-left {
    order: 1;
  }

  .dv-auth-decor-right {
    display: block;
    min-height: 120px;
    order: 3;
  }

  .dv-auth-art-card {
    min-height: 280px;
    order: 2;
  }

  .dv-auth-scene-main {
    max-width: 100%;
  }

  .dv-auth-scene-figure {
    width: min(260px, 48%);
  }
}

@media (max-width: 767.98px) {
  .dv-auth-section {
    min-height: auto;
    padding: .35rem 0 .55rem;
  }

  .dv-auth-scene {
    grid-template-columns: 1fr;
    gap: 1rem;
    min-height: auto;
  }

  .dv-auth-scene-clean {
    gap: .4rem;
  }

  .dv-auth-art-card {
    min-height: 220px;
    border-radius: 24px;
  }

  .dv-auth-benefits {
    gap: .7rem;
  }

  .dv-auth-benefit {
    padding: .85rem .85rem .85rem .8rem;
    border-radius: 14px;
  }

  .dv-auth-brand img {
    height: 54px !important;
    width: 54px !important;
  }

  .dv-auth-brand h1 {
    font-size: 1.48rem;
  }

  .dv-auth-title {
    font-size: 2rem;
    line-height: 1.08;
  }

  .dv-auth-subtitle {
    font-size: .96rem;
    line-height: 1.55;
    max-width: 340px;
  }

  .dv-auth-card {
    padding: 1.1rem !important;
    border-radius: 20px !important;
  }

  .dv-auth-panel-wrap {
    order: 2;
  }

  .dv-auth-scene-figure {
    width: min(210px, 52%);
    right: 10%;
  }

  .dv-auth-decor {
    min-height: 86px;
  }

  .dv-auth-decor-left {
    order: 1;
  }

  .dv-auth-decor-right {
    display: block;
    order: 3;
    min-height: 86px;
  }

  .dv-auth-shape-geo {
    top: 18px;
    left: 18px;
    width: 38px;
  }

  .dv-auth-orb-blue {
    top: 12px;
    left: 94px;
    width: 14px;
    height: 14px;
  }

  .dv-auth-orb-pink {
    top: 44px;
    left: 72px;
    width: 18px;
    height: 18px;
  }

  .dv-auth-grid {
    left: auto;
    right: 18px;
    bottom: 18px;
    width: 24px;
    height: 24px;
    background-size: 12px 12px;
  }

  .dv-auth-spark-a {
    top: 8px;
    right: 46px;
    width: 14px;
    height: 14px;
  }

  .dv-auth-spark-b {
    top: 28px;
    right: 28px;
    width: 11px;
    height: 11px;
  }

  .dv-auth-spark-c {
    top: 20px;
    right: 10px;
    width: 16px;
    height: 16px;
  }

  .dv-auth-scene-figure--pair {
    width: 78px;
    right: 8px;
    bottom: 0;
  }
}

@media (max-height: 820px) and (min-width: 768px) {
  .dv-auth-section {
    padding: .2rem 0 .45rem;
  }

  .dv-auth-header {
    margin-bottom: .75rem;
  }

  .dv-auth-title {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
  }

  .dv-auth-scene-clean {
    min-height: 360px;
  }

  .dv-auth-decor {
    min-height: 220px;
  }

  .dv-auth-card {
    padding: 1.15rem !important;
  }

  .dv-auth-scene-figure--pair {
    width: 160px;
    bottom: 0;
  }
}

.checkout-payment-options {
  display: grid;
  gap: 0.75rem;
}

.checkout-payment-option {
  display: block;
  cursor: pointer;
}

.checkout-payment-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-payment-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1rem 0.95rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 1rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.checkout-payment-option:hover .checkout-payment-card {
  border-color: rgba(13, 110, 253, 0.3);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

.checkout-payment-dot {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.15rem;
  border-radius: 50%;
  border: 2px solid #9fb2d8;
  background: #fff;
  box-shadow: inset 0 0 0 0 #0d6efd;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.checkout-payment-copy {
  display: grid;
  gap: 0.2rem;
}

.checkout-payment-title {
  font-weight: 700;
  color: #153470;
}

.checkout-payment-desc {
  font-size: 0.92rem;
  color: #5b6780;
  line-height: 1.45;
}

.checkout-payment-input:checked + .checkout-payment-card {
  border-color: rgba(13, 110, 253, 0.45);
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  box-shadow: 0 16px 34px rgba(13, 110, 253, 0.12);
}

.checkout-payment-input:checked + .checkout-payment-card .checkout-payment-dot {
  border-color: #0d6efd;
  box-shadow: inset 0 0 0 0.22rem #0d6efd;
}

.checkout-payment-input:focus-visible + .checkout-payment-card {
  outline: 3px solid rgba(13, 110, 253, 0.2);
  outline-offset: 2px;
}

@media (max-width: 575.98px) {
  .checkout-payment-card {
    padding: 0.9rem;
    gap: 0.75rem;
  }

  .checkout-payment-desc {
    font-size: 0.88rem;
  }
}

