@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0f1e3d;
  background: #f4f9ff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #0f1e3d;
  font-weight: 800;
}

p {
  color: inherit;
}

:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
  border-radius: 4px;
}

.swiper {
  width: 100%;
  height: 575px;
  --swiper-theme-color: #ffffff;
}

.swiper-pagination-bullet {
  background: #bebebe;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: #2563eb;
  opacity: 1;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 20px;
  height: 20px;
  box-shadow: 0 10px 40px -10px rgba(30, 58, 138, 0.15);
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  border-radius: 50px;
  height: 40px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transition: 0.4s ease;
  background: #0d1b3b;
}

@media screen and (max-width: 880px) {
  .swiper {
    height: auto;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn--primary {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #ffffff;
  box-shadow: 0 20px 60px -20px rgba(30, 58, 138, 0.4);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 70px -20px rgba(30, 58, 138, 0.55);
}
.btn--white {
  background: #ffffff;
  color: #1e3a8a;
  box-shadow: 0 8px 30px -12px rgba(30, 58, 138, 0.18);
}
.btn--white:hover {
  transform: translateY(-2px);
}
.btn--dark {
  background: #070f20;
  color: #ffffff;
  box-shadow: 0 8px 30px -12px rgba(30, 58, 138, 0.18);
}
.btn--dark:hover {
  transform: translateY(-2px);
}
.btn--light {
  background: #ecf0f3;
  color: #070f20;
}
.btn--light:hover {
  transform: translateY(-2px);
}
.btn--xl {
  padding: 1.1rem 2.25rem;
  font-size: 1rem;
}
.btn--sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-head__eyebrow {
  color: #2563eb;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-head__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.section-head__subtitle {
  color: #5b6b8a;
  font-size: 1.05rem;
}

.text-gradient {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-danger {
  color: #ef4444;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: #1e3a8a;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px -10px rgba(30, 58, 138, 0.15);
}
.tag svg {
  width: 14px;
  height: 14px;
}

/* Toast Container */
#toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Base Toast Style */
.toast {
  padding: 16px;
  margin-top: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  min-width: 250px;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: #fff;
}

/* Show/Hide Transitions */
.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast.hide {
  opacity: 0;
  transform: translateX(100%);
}

/* Success Toast */
.toast-success {
  background-color: #12937a;
}

/* Error Toast */
.toast-error {
  background-color: #ef4444;
}

/* Info Toast */
.toast-info {
  background-color: #17a2b8;
}

/* Warning Toast */
.toast-warning {
  background-color: #ffc107;
  color: #212529;
}

/* Alerts */
.alert-primary {
  border: 1px solid #4f73d9;
  border-radius: 15px;
  background-color: rgba(30, 58, 138, 0.05);
}
.alert-primary .alert-title {
  color: #1e3a8a;
}

.alert-second {
  border: 1px solid #9ab7f6;
  border-radius: 15px;
  background-color: rgba(37, 99, 235, 0.05);
}
.alert-second .alert-title {
  color: #2563eb;
}

.alert-danger {
  border: 1px solid #f9b9b9;
  border-radius: 15px;
  background-color: rgba(239, 68, 68, 0.05);
}
.alert-danger .alert-title {
  color: #ef4444;
}

.alert-success {
  border: 1px solid #3de7c6;
  border-radius: 15px;
  background-color: rgba(18, 147, 122, 0.05);
}
.alert-success .alert-title {
  color: #12937a;
}

.alert {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
}

.alert-title {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 18px;
}

.alert-content {
  margin: 0;
  font-size: 14px;
  color: #555555;
}

/* PAGINATION */
.pagination {
  display: flex;
  gap: 0.3rem;
  justify-content: flex-end;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.pagination button {
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e3e8f1;
  background: #ffffff;
  color: #0f172a;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
}

.pagination button:hover {
  border-color: #1e49c9;
  color: #1e49c9;
}

.pagination button.active {
  background: #1e49c9;
  color: #fff;
  border-color: #1e49c9;
}

.rating-stars {
  display: flex;
  gap: 8px;
}

.rating-stars .star {
  font-size: 38px;
  color: #d1d5db;
  cursor: pointer;
  transition: 0.2s;
}

.rating-stars .star.active {
  color: #facc15;
}

.rating-stars .star:hover {
  transform: scale(1.1);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid #dbe7f7;
  box-shadow: 0 2px 12px rgba(30, 58, 138, 0.06);
}
.navbar__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .navbar__inner {
    padding-inline: 2rem;
  }
}
.navbar__bar {
  padding: 0.85rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.navbar__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.navbar__logo-img {
  height: 44px;
  width: auto;
  display: block;
}
@media (min-width: 768px) {
  .navbar__logo-img {
    height: 52px;
  }
}
.navbar__links {
  display: none;
  gap: 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #5b6b8a;
}
@media (min-width: 768px) {
  .navbar__links {
    display: flex;
  }
}
.navbar__links a {
  position: relative;
  transition: color 0.2s;
}
.navbar__links a:hover {
  color: #2563eb;
}
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar__icon-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 9999px;
  color: #1e3a8a;
  background: rgba(30, 58, 138, 0.06);
  transition: all 0.2s;
}
.navbar__icon-btn svg {
  width: 20px;
  height: 20px;
}
.navbar__icon-btn:hover {
  background: rgba(30, 58, 138, 0.12);
  color: #2563eb;
  transform: translateY(-1px);
}
.navbar__cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 6px rgba(30, 58, 138, 0.4);
  border: 2px solid #ffffff;
}
.navbar__cta {
  display: none !important;
}
@media (min-width: 768px) {
  .navbar__cta {
    display: inline-flex !important;
    margin-left: 0.4rem;
  }
}
.navbar__toggle {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 9999px;
  color: #1e3a8a;
}
@media (min-width: 768px) {
  .navbar__toggle {
    display: none;
  }
}
.navbar__toggle svg {
  width: 22px;
  height: 22px;
}
.navbar__mobile {
  display: none;
  background: #ffffff;
  border-top: 1px solid #dbe7f7;
  padding: 1rem 1.25rem 1.25rem;
  flex-direction: column;
  gap: 0.5rem;
}
.navbar__mobile a {
  padding: 0.6rem 0.8rem;
  border-radius: 0.5rem;
  color: #0f1e3d;
  font-weight: 500;
}
.navbar__mobile a:hover {
  background: rgba(30, 58, 138, 0.06);
}
.navbar__mobile.is-open {
  display: flex;
}
@media (min-width: 768px) {
  .navbar__mobile {
    display: none !important;
  }
}

.hero {
  position: relative;
  padding-top: 8rem;
  background: linear-gradient(135deg, #f4f9ff 0%, #dceaff 50%, #c9dcff 100%);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero {
    padding-top: 9rem;
  }
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero::before {
  width: 480px;
  height: 480px;
  background: rgba(59, 130, 246, 0.18);
  top: -100px;
  left: -100px;
}
.hero::after {
  width: 560px;
  height: 560px;
  background: rgba(37, 99, 235, 0.15);
  top: 160px;
  right: -120px;
}
.hero__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  position: relative;
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .hero__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding-bottom: 4rem;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: start;
}
.hero__title {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.hero__title span {
  display: block;
}
.hero__title .line-1 {
  color: #0f1e3d;
  font-size: clamp(2.75rem, 8vw, 5.5rem);
}
.hero__title .line-2 {
  color: #2563eb;
  font-size: clamp(2.25rem, 6.5vw, 4.25rem);
  margin-top: 0.4rem;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(15, 30, 61, 0.8);
  font-weight: 500;
  max-width: 32rem;
  line-height: 1.4;
}
.hero__trust {
  display: flex;
  gap: 0.5rem;
  max-width: 32rem;
  padding-top: 0.5rem;
}
@media (min-width: 768px) {
  .hero__trust {
    gap: 1rem;
  }
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  min-width: 64px;
  flex: 1;
}
.hero__trust-item svg {
  width: 28px;
  height: 28px;
  color: #1e3a8a;
  stroke-width: 1.6;
}
.hero__trust-item span {
  font-size: 0.7rem;
  font-weight: 700;
  color: #1e3a8a;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.15;
  white-space: pre-line;
}
.hero__divider {
  width: 1px;
  background: rgba(30, 58, 138, 0.2);
  margin-top: 0.25rem;
  align-self: stretch;
  max-height: 64px;
}
.hero__herbal {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.75rem;
}
.hero__herbal-circle {
  width: 64px;
  height: 64px;
  background: #ffffff;
  border: 1px solid rgba(30, 58, 138, 0.1);
  border-radius: 9999px;
  box-shadow: 0 8px 30px -12px rgba(30, 58, 138, 0.18);
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1.05;
}
.hero__herbal-circle svg {
  width: 14px;
  height: 14px;
  color: #1e3a8a;
  margin: 0 auto;
}
.hero__herbal-circle .pct {
  font-size: 0.65rem;
  font-weight: 800;
  color: #1e3a8a;
  margin-top: 2px;
  display: block;
}
.hero__herbal-circle .lbl {
  font-size: 0.55rem;
  font-weight: 700;
  color: #1e3a8a;
  letter-spacing: 0.08em;
  display: block;
}
.hero__herbal-text {
  line-height: 1.2;
}
.hero__herbal-text .strong {
  color: #0f1e3d;
  font-weight: 600;
}
.hero__herbal-text .sub {
  color: rgba(15, 30, 61, 0.7);
  font-size: 0.9rem;
}
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__product {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  display: block;
  /* no shadow / no border-radius — image already has transparent splash */
}
.hero__badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 88px;
  filter: drop-shadow(0 10px 20px rgba(30, 58, 138, 0.25));
  animation: float 6s ease-in-out infinite;
}
@media (min-width: 768px) {
  .hero__badge {
    width: 104px;
  }
}
@media (min-width: 1024px) {
  .hero__badge {
    width: 120px;
    top: 8px;
    right: 8px;
  }
}
.hero__strip {
  position: relative;
  background: linear-gradient(135deg, #1e3a8a 0%, #2c4fb0 100%);
}
.hero__strip-inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  padding-block: 1.5rem;
  display: grid;
  gap: 1rem;
  color: #ffffff;
  align-items: center;
}
@media (min-width: 768px) {
  .hero__strip-inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 768px) {
  .hero__strip-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}
.hero__feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero__feature:nth-child(2) {
    justify-content: center;
    border-inline: 1px solid rgba(255, 255, 255, 0.18);
  }
  .hero__feature:last-child {
    justify-content: flex-end;
  }
  .hero__feature:first-child {
    justify-content: flex-start;
  }
}
.hero__feature svg {
  width: 32px;
  height: 32px;
  opacity: 0.95;
  flex-shrink: 0;
}
.hero__feature .t {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.2;
}
.hero__feature .s {
  display: block;
  font-size: 0.75rem;
  opacity: 0.9;
  letter-spacing: 0.15em;
  line-height: 1.2;
}

@keyframes splash {
  0%, 100% {
    transform: scale(1);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.75;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.features {
  padding-block: 5rem;
  background: #ffffff;
}
@media (min-width: 1024px) {
  .features {
    padding-block: 6rem;
  }
}
.features__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .features__inner {
    padding-inline: 2rem;
  }
}
.features__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.features__card {
  background: #ffffff;
  border: 1px solid #dbe7f7;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px -12px rgba(30, 58, 138, 0.18);
  padding: 2rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.features__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px -20px rgba(30, 58, 138, 0.4);
}
.features__card:hover .features__icon {
  transform: scale(1.08);
}
.features__card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.features__card p {
  color: #5b6b8a;
  font-size: 0.9rem;
  line-height: 1.55;
}
.features__icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  display: grid;
  place-items: center;
  color: #ffffff;
  box-shadow: 0 20px 60px -20px rgba(30, 58, 138, 0.4);
  margin-bottom: 1.25rem;
  transition: transform 0.4s ease;
}
.features__icon svg {
  width: 26px;
  height: 26px;
}

.ingredients {
  padding-block: 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .ingredients {
    padding-block: 6rem;
  }
}
.ingredients__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  position: relative;
}
@media (min-width: 768px) {
  .ingredients__inner {
    padding-inline: 2rem;
  }
}
.ingredients__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .ingredients__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .ingredients__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.ingredients__item {
  text-align: center;
}
.ingredients__item:hover .ingredients__circle {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px -20px rgba(30, 58, 138, 0.4);
}
.ingredients__item:hover img {
  transform: scale(1.1);
}
.ingredients__item h3 {
  font-size: 1.1rem;
  margin-top: 1rem;
  color: #0f1e3d;
}
.ingredients__item p {
  font-size: 0.85rem;
  color: #5b6b8a;
  margin-top: 0.25rem;
}
.ingredients__circle {
  position: relative;
  width: 144px;
  height: 144px;
  margin: 0 auto;
  border-radius: 9999px;
  background: #ffffff;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 30px -12px rgba(30, 58, 138, 0.18);
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.ingredients__circle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}
.ingredients__circle img {
  position: relative;
  width: 110px;
  height: 110px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.steps {
  padding-block: 5rem;
  background: #ffffff;
}
@media (min-width: 1024px) {
  .steps {
    padding-block: 6rem;
  }
}
.steps__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .steps__inner {
    padding-inline: 2rem;
  }
}
.steps__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .steps__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.steps__card {
  background: #ffffff;
  border: 1px solid #dbe7f7;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px -12px rgba(30, 58, 138, 0.18);
  padding: 2rem;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.steps__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -20px rgba(30, 58, 138, 0.4);
}
.steps__card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.steps__card p {
  color: #5b6b8a;
  font-size: 0.9rem;
}
.steps__icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 20px 60px -20px rgba(30, 58, 138, 0.4);
  color: #ffffff;
}
.steps__icon-wrap svg {
  width: 36px;
  height: 36px;
}
.steps__num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: #ffffff;
  border: 2px solid #2563eb;
  color: #2563eb;
  font-size: 0.85rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 30px -12px rgba(30, 58, 138, 0.18);
}

.benefits {
  padding-block: 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}
@media (min-width: 1024px) {
  .benefits {
    padding-block: 6rem;
  }
}
.benefits__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .benefits__inner {
    padding-inline: 2rem;
  }
}
.benefits__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .benefits__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.benefits__card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid #dbe7f7;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.benefits__card:hover {
  background: #ffffff;
  border-color: rgba(37, 99, 235, 0.4);
}
.benefits__card:hover .benefits__icon {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #ffffff;
}
.benefits__card h3 {
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}
.benefits__card p {
  font-size: 0.875rem;
  color: #5b6b8a;
}
.benefits__icon {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  transition: background 0.3s ease, color 0.3s ease;
}
.benefits__icon svg {
  width: 22px;
  height: 22px;
}

.compare {
  padding-block: 5rem;
  background: #ffffff;
}
@media (min-width: 1024px) {
  .compare {
    padding-block: 6rem;
  }
}
.compare__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  max-width: 64rem;
}
@media (min-width: 768px) {
  .compare__inner {
    padding-inline: 2rem;
  }
}
.compare__table {
  background: #ffffff;
  border: 1px solid #dbe7f7;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px -12px rgba(30, 58, 138, 0.18);
  overflow: hidden;
  padding: 0;
}
.compare__row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  align-items: center;
}
.compare__row > div {
  padding: 1.1rem 1.25rem;
}
.compare__row--head {
  background: linear-gradient(135deg, #1e3a8a 0%, #2c4fb0 100%);
  color: #ffffff;
}
.compare__row--head .h-feature {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.compare__row--head .h-us, .compare__row--head .h-them {
  text-align: center;
  font-weight: 700;
}
.compare__row--head .h-them {
  opacity: 0.85;
  font-weight: 600;
}
.compare__row--alt {
  background: rgba(234, 243, 255, 0.4);
}
.compare__feature {
  font-weight: 500;
  color: #0f1e3d;
  font-size: 0.95rem;
}
.compare__cell {
  display: grid;
  place-items: center;
}
.compare__check {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 20px 60px -20px rgba(30, 58, 138, 0.4);
}
.compare__check svg {
  width: 18px;
  height: 18px;
  stroke-width: 3;
}
.compare__cross {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  display: grid;
  place-items: center;
}
.compare__cross svg {
  width: 18px;
  height: 18px;
  stroke-width: 3;
}
.compare__check-mint {
  color: #34d399;
}
.compare__check-mint svg {
  width: 24px;
  height: 24px;
  stroke-width: 3;
}

.testimonials {
  padding-block: 5rem;
  background: #ffffff;
}
@media (min-width: 1024px) {
  .testimonials {
    padding-block: 6rem;
  }
}
.testimonials__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .testimonials__inner {
    padding-inline: 2rem;
  }
}
.testimonials__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .testimonials__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.testimonials__card {
  background: #ffffff;
  border: 1px solid #dbe7f7;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px -12px rgba(30, 58, 138, 0.18);
  padding: 1.75rem;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.testimonials__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -20px rgba(30, 58, 138, 0.4);
}
.testimonials__quote {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  color: rgba(37, 99, 235, 0.15);
}
.testimonials__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: #2563eb;
}
.testimonials__stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.testimonials__text {
  color: rgba(15, 30, 61, 0.85);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.testimonials__person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #dbe7f7;
}
.testimonials__avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #ffffff;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.testimonials__name {
  font-weight: 600;
  font-size: 0.875rem;
}
.testimonials__role {
  font-size: 0.75rem;
  color: #5b6b8a;
}

.pricing {
  padding-block: 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}
@media (min-width: 1024px) {
  .pricing {
    padding-block: 6rem;
  }
}
.pricing__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  max-width: 72rem;
}
@media (min-width: 768px) {
  .pricing__inner {
    padding-inline: 2rem;
  }
}
.pricing__card {
  background: #ffffff;
  border: 1px solid #dbe7f7;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px -12px rgba(30, 58, 138, 0.18);
  box-shadow: 0 20px 60px -20px rgba(30, 58, 138, 0.4);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .pricing__card {
    grid-template-columns: 1fr 1fr;
  }
}
.pricing__visual {
  position: relative;
  background: linear-gradient(135deg, #f4f9ff 0%, #dceaff 50%, #c9dcff 100%);
  padding: 2.5rem;
  display: grid;
  place-items: center;
}
.pricing__visual img {
  max-width: 320px;
  width: 100%;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(30, 58, 138, 0.25));
}
.pricing__save {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 0.5rem 1rem;
  background: #ef4444;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 9999px;
  box-shadow: 0 20px 60px -20px rgba(30, 58, 138, 0.4);
}
.pricing__body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .pricing__body {
    padding: 3rem;
  }
}
.pricing__title {
  font-size: 1.5rem;
}
.pricing__sku {
  font-size: 0.875rem;
  color: #5b6b8a;
  margin-top: 0.25rem;
}
.pricing__price {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.pricing__price .now {
  font-size: 3rem;
  font-weight: 900;
}
.pricing__price .was {
  font-size: 1.5rem;
  color: #5b6b8a;
  text-decoration: line-through;
  margin-bottom: 6px;
}
.pricing__price .badge {
  padding: 0.25rem 0.75rem;
  background: rgba(52, 211, 153, 0.2);
  color: #0f1e3d;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 9999px;
  margin-left: 0.5rem;
}
.pricing__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pricing__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(15, 30, 61, 0.9);
  font-size: 0.95rem;
}
.pricing__list li .dot {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  display: grid;
  place-items: center;
  color: #ffffff;
}
.pricing__list li .dot svg {
  width: 12px;
  height: 12px;
  stroke-width: 3;
}
.pricing__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #dbe7f7;
}
.pricing__trust > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.pricing__trust > div svg {
  width: 22px;
  height: 22px;
  color: #2563eb;
}
.pricing__trust > div span {
  font-size: 0.7rem;
  color: #5b6b8a;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.faq {
  padding-block: 5rem;
  background: #ffffff;
}
@media (min-width: 1024px) {
  .faq {
    padding-block: 6rem;
  }
}
.faq__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  max-width: 48rem;
}
@media (min-width: 768px) {
  .faq__inner {
    padding-inline: 2rem;
  }
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq__item {
  background: #ffffff;
  border: 1px solid #dbe7f7;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px -12px rgba(30, 58, 138, 0.18);
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq__item.is-open {
  box-shadow: 0 20px 60px -20px rgba(30, 58, 138, 0.4);
}
.faq__q {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  color: #0f1e3d;
  font-size: 1rem;
}
.faq__q svg {
  width: 20px;
  height: 20px;
  color: #2563eb;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq__item.is-open .faq__q svg {
  transform: rotate(180deg);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: #5b6b8a;
  line-height: 1.6;
}
.faq__a > div {
  padding: 0 1.5rem 1.25rem;
}

.cta {
  padding: 5rem 1rem;
}
.cta__box {
  max-width: 72rem;
  margin: 0 auto;
  background: linear-gradient(135deg, #1e3a8a 0%, #2c4fb0 100%);
  border-radius: 2.5rem;
  overflow: hidden;
  padding: 3rem 1.5rem;
  text-align: center;
  box-shadow: 0 20px 60px -20px rgba(30, 58, 138, 0.4);
  position: relative;
}
@media (min-width: 1024px) {
  .cta__box {
    padding: 5rem;
  }
}
.cta__box::before, .cta__box::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cta__box::before {
  width: 320px;
  height: 320px;
  background: rgba(59, 130, 246, 0.3);
  top: -80px;
  left: -80px;
}
.cta__box::after {
  width: 384px;
  height: 384px;
  background: rgba(59, 130, 246, 0.2);
  bottom: -80px;
  right: -80px;
}
.cta__inner {
  position: relative;
}
.cta__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
}
.cta__tag svg {
  width: 14px;
  height: 14px;
}
.cta__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #ffffff;
  margin: 1.25rem 0;
  line-height: 1.1;
}
.cta__sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 0 auto 2rem;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.cta__actions span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
}

.footer {
  background: #ecf0f3;
  border-top: 1px solid #dbe7f7;
  padding: 3rem 0 2rem;
}
.footer__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .footer__inner {
    padding-inline: 2rem;
  }
}
.footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
.footer__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.footer__logo-img {
  height: 44px;
  width: auto;
  display: block;
}
@media (min-width: 768px) {
  .footer__logo-img {
    height: 52px;
  }
}
.footer__about {
  color: #5b6b8a;
  font-size: 0.9rem;
  margin: 1rem 0;
  max-width: 24rem;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: #ffffff;
  display: grid;
  place-items: center;
  color: #0f1e3d;
  transition: background 0.3s ease, color 0.3s ease;
}
.footer__social a:hover {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #ffffff;
}
.footer__social a svg {
  width: 16px;
  height: 16px;
}
.footer h4 {
  font-size: 1rem;
  margin-bottom: 0.85rem;
}
.footer ul li {
  margin-bottom: 0.5rem;
}
.footer ul li a {
  color: #5b6b8a;
  font-size: 0.9rem;
}
.footer ul li a:hover {
  color: #2563eb;
}
.footer__bottom {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #dbe7f7;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #5b6b8a;
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .footer__bottom {
    padding-inline: 2rem;
  }
}
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.dg-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translate(-50%, 20px);
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #ffffff;
  padding: 0.85rem 1.4rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  box-shadow: 0 20px 60px -20px rgba(30, 58, 138, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 100;
}
.dg-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.navbar__links a.is-active,
.navbar__mobile a.is-active {
  color: #2563eb;
  font-weight: 700;
}

.page-banner {
  position: relative;
  padding: 9rem 1.25rem 3.5rem;
  background: linear-gradient(135deg, #f4f9ff 0%, #dceaff 50%, #c9dcff 100%);
  text-align: center;
  overflow: hidden;
}
.page-banner::before, .page-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.page-banner::before {
  width: 420px;
  height: 420px;
  background: rgba(59, 130, 246, 0.15);
  top: -80px;
  left: -80px;
}
.page-banner::after {
  width: 380px;
  height: 380px;
  background: rgba(37, 99, 235, 0.12);
  bottom: -100px;
  right: -80px;
}
.page-banner__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.page-banner__eyebrow {
  display: inline-block;
  color: #2563eb;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.page-banner h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: 0.85rem;
}
.page-banner p {
  color: #5b6b8a;
  font-size: 1.05rem;
  max-width: 40rem;
  margin: 0 auto;
}
.page-banner__crumbs {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #5b6b8a;
}
.page-banner__crumbs a {
  color: #2563eb;
}
.page-banner__crumbs a:hover {
  text-decoration: underline;
}
.page-banner__crumbs span {
  margin: 0 0.4rem;
}

.page-section {
  padding-block: 5rem;
  background: #ffffff;
}
@media (min-width: 1024px) {
  .page-section {
    padding-block: 6rem;
  }
}

.page-section--soft {
  background: #f4f9ff;
}

.page-section__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .page-section__inner {
    padding-inline: 2rem;
  }
}

.bundle-banner {
  display: none;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #2c4fb0 100%);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 20px 60px -20px rgba(30, 58, 138, 0.4);
}
.bundle-banner svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.bundle-banner strong {
  font-weight: 800;
}
.bundle-banner span {
  opacity: 0.9;
  font-size: 0.92rem;
}

.shop-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: #ffffff;
  border: 1px solid #dbe7f7;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px -12px rgba(30, 58, 138, 0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -20px rgba(30, 58, 138, 0.4);
}
.product-card__media {
  display: block;
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
}
.product-card__media img {
  width: 100%;
  object-fit: contain;
}
.product-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.product-card h3 {
  font-size: 1.15rem;
}
.product-card h3 a {
  color: inherit;
}
.product-card h3 a:hover {
  color: #2563eb;
}
.product-card__sub {
  color: #5b6b8a;
  font-size: 0.9rem;
}
.product-card__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #5b6b8a;
}
.product-card__rating .stars {
  color: #f59e0b;
  letter-spacing: 0.05em;
}
.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.product-card__price .now {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #070f20;
}
.product-card__price .was {
  color: #5b6b8a;
  text-decoration: line-through;
  font-size: 0.95rem;
}
.product-card__actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}
.product-card__actions .btn {
  flex: 1;
}

.product-detail {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 50px;
}
@media (min-width: 1024px) {
  .product-detail {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}
.product-detail__media {
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 2rem;
}
.product-detail__media img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}
.product-detail__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.product-detail__eyebrow {
  color: #2563eb;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.product-detail h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.1;
}
.product-detail__desc {
  color: #5b6b8a;
  font-size: 1rem;
  line-height: 1.7;
}
.product-detail__price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.product-detail__price .now {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
}
.product-detail__price .was {
  color: #5b6b8a;
  text-decoration: line-through;
  font-size: 1.1rem;
}
.product-detail__price .save {
  background: #34d399;
  color: #ffffff;
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-detail__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.product-detail__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #0f1e3d;
  font-size: 0.95rem;
}
.product-detail__list .dot {
  width: 24px;
  height: 24px;
  background: rgba(30, 58, 138, 0.08);
  color: #2563eb;
  border-radius: 9999px;
  display: grid;
  place-items: center;
}
.product-detail__list .dot svg {
  width: 14px;
  height: 14px;
}
.product-detail__qty {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.product-detail__qty label {
  font-weight: 600;
  font-size: 0.9rem;
}
.product-detail__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.product-detail__actions .btn {
  flex: 1;
  min-width: 160px;
}
.product-detail__trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid #dbe7f7;
}
.product-detail__trust div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #5b6b8a;
  font-size: 0.85rem;
  font-weight: 600;
}
.product-detail__trust svg {
  width: 18px;
  height: 18px;
  color: #2563eb;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dbe7f7;
  border-radius: 9999px;
  overflow: hidden;
  background: #ffffff;
}
.qty-stepper button {
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e3a8a;
  transition: background 0.2s;
}
.qty-stepper button:hover {
  background: #eaf3ff;
}
.qty-stepper input {
  width: 50px;
  height: 40px;
  text-align: center;
  border: 0;
  font-weight: 700;
  font-size: 1rem;
  color: #0f1e3d;
  background: transparent;
  -moz-appearance: textfield;
}
.qty-stepper input::-webkit-outer-spin-button, .qty-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qty-stepper input:focus {
  outline: none;
}

.cart-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .cart-layout {
    grid-template-columns: 1.6fr 1fr;
    align-items: start;
  }
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-row {
  background: #ffffff;
  border: 1px solid #dbe7f7;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px -12px rgba(30, 58, 138, 0.18);
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
  align-items: center;
  /* MOBILE FIRST */
  grid-template-columns: 84px 1fr;
  grid-template-areas: "img info" "img price" "qty qty";
}
@media (min-width: 768px) {
  .cart-row {
    grid-template-columns: 100px 1fr auto;
    grid-template-areas: "img info price" "img qty price";
  }
}
.cart-row__media {
  grid-area: img;
  border-radius: 1rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.cart-row__media img {
  width: 100%;
  object-fit: contain;
}
.cart-row__info {
  grid-area: info;
}
.cart-row__info h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.cart-row__info p {
  color: #5b6b8a;
  font-size: 0.85rem;
}
.cart-row__remove {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #ef4444;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 0.5rem;
}
.cart-row__remove svg {
  width: 14px;
  height: 14px;
}
.cart-row__remove:hover {
  text-decoration: underline;
}
.cart-row__qty {
  grid-area: qty;
}
.cart-row__price {
  grid-area: price;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #1e3a8a;
  text-align: left;
}

.cart-summary {
  background: #ffffff;
  border: 1px solid #dbe7f7;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px -12px rgba(30, 58, 138, 0.18);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: sticky;
  top: 100px;
}
.cart-summary h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.cart-summary__line {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: #5b6b8a;
}
.cart-summary__line strong {
  color: #0f1e3d;
  font-weight: 700;
}
.cart-summary__line--saved strong {
  color: #34d399;
}
.cart-summary__hint {
  background: rgba(52, 211, 153, 0.12);
  color: #0c5537;
  padding: 0.7rem 0.9rem;
  border-radius: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
}
.cart-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 0.85rem;
  margin-top: 0.35rem;
  border-top: 1px solid #dbe7f7;
}
.cart-summary__total span {
  font-weight: 700;
}
.cart-summary__total strong {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
}
.cart-summary__cont {
  text-align: center;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}
.cart-summary__cont:hover {
  text-decoration: underline;
}

.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.empty-state svg {
  width: 64px;
  height: 64px;
  color: #2563eb;
  opacity: 0.4;
}
.empty-state h2,
.empty-state h3 {
  font-size: 1.5rem;
}
.empty-state p {
  color: #5b6b8a;
  max-width: 50rem;
}

.checkout-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .checkout-layout {
    grid-template-columns: 1.5fr 1fr;
    align-items: start;
  }
}

.checkout-form {
  background: #ffffff;
  border: 1px solid #dbe7f7;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px -12px rgba(30, 58, 138, 0.18);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.checkout-form h3 {
  font-size: 1.15rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
}
.checkout-form h3:first-child {
  margin-top: 0;
  padding-top: 0;
}

.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0.5rem 0 1rem;
}

.checkout-item {
  display: block;
  grid-template-columns: 56px 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #dbe7f7;
}
@media (min-width: 768px) {
  .checkout-item {
    display: grid;
  }
}
.checkout-item:last-child {
  border-bottom: 0;
}
.checkout-item img {
  width: 56px;
  height: 56px;
  border-radius: 0.5rem;
  overflow: hidden;
  object-fit: contain;
}
.checkout-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
}
.checkout-item span {
  color: #5b6b8a;
  font-size: 0.8rem;
}
.checkout-item .price {
  font-weight: 800;
  color: #1e3a8a;
}

.checkout-summary {
  background: #ffffff;
  border: 1px solid #dbe7f7;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px -12px rgba(30, 58, 138, 0.18);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: sticky;
  top: 100px;
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f1e3d;
  letter-spacing: 0.02em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #dbe7f7;
  border-radius: 0.5rem;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  color: #0f1e3d;
  background: #ffffff;
  transition: border 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-msg {
  display: none;
  padding: 0.75rem 1rem;
  background: rgba(52, 211, 153, 0.15);
  color: #0f6b45;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.form-msg.is-visible {
  display: block;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #5b6b8a;
}
.form-check input {
  width: auto;
  margin: 0;
}

.auth-wrap {
  min-height: calc(100vh - 80px);
  padding: 7rem 1.25rem 4rem;
  background: linear-gradient(135deg, #f4f9ff 0%, #dceaff 50%, #c9dcff 100%);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.auth-wrap::before, .auth-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.auth-wrap::before {
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.18);
  top: -80px;
  left: -80px;
}
.auth-wrap::after {
  width: 400px;
  height: 400px;
  background: rgba(37, 99, 235, 0.15);
  bottom: -80px;
  right: -80px;
}

.auth-card {
  background: #ffffff;
  border: 1px solid #dbe7f7;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px -12px rgba(30, 58, 138, 0.18);
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.auth-card__logo {
  display: grid;
  place-items: center;
  margin-bottom: 0.5rem;
}
.auth-card__logo img {
  height: 52px;
  width: auto;
}
.auth-card h1 {
  font-size: 1.7rem;
  text-align: center;
}
.auth-card__sub {
  text-align: center;
  color: #5b6b8a;
  font-size: 0.95rem;
}
.auth-card__meta {
  text-align: center;
  font-size: 0.88rem;
  color: #5b6b8a;
}
.auth-card__meta a {
  color: #2563eb;
  font-weight: 600;
}
.auth-card__meta a:hover {
  text-decoration: underline;
}
.auth-card__between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.auth-card__between a {
  color: #2563eb;
  font-weight: 600;
}
.auth-card__between a:hover {
  text-decoration: underline;
}

.content-page {
  max-width: 820px;
  margin: 0 auto;
  color: #0f1e3d;
  line-height: 1.75;
}
.content-page h2 {
  margin-top: 2.25rem;
  font-size: 1.4rem;
}
.content-page h3 {
  margin-top: 1.5rem;
  font-size: 1.1rem;
}
.content-page p,
.content-page li {
  color: #5b6b8a;
  font-size: 1rem;
}
.content-page ul,
.content-page ol {
  margin: 0.75rem 0 0.75rem 1.4rem;
}
.content-page ul li {
  list-style: disc;
  margin-bottom: 0.35rem;
}
.content-page ol li {
  list-style: decimal;
  margin-bottom: 0.35rem;
}
.content-page strong {
  color: #0f1e3d;
}
.content-page a {
  color: #2563eb;
}
.content-page a:hover {
  text-decoration: underline;
}
.content-page__updated {
  display: inline-block;
  background: #eaf3ff;
  color: #1e3a8a;
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.contact-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr 1.3fr;
  }
}

.contact-info {
  background: #ffffff;
  border: 1px solid #dbe7f7;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px -12px rgba(30, 58, 138, 0.18);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-info h3 {
  font-size: 1.2rem;
}
.contact-info__item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.contact-info__item .icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 9999px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 40px -10px rgba(30, 58, 138, 0.15);
}
.contact-info__item .icon svg {
  width: 18px;
  height: 18px;
}
.contact-info__item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}
.contact-info__item span,
.contact-info__item a {
  color: #5b6b8a;
  font-size: 0.9rem;
}
.contact-info__item a:hover {
  color: #2563eb;
}

.dash-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .dash-layout {
    grid-template-columns: 260px 1fr;
    align-items: start;
  }
}

.dash-sidebar {
  background: #ffffff;
  border: 1px solid #dbe7f7;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px -12px rgba(30, 58, 138, 0.18);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.dash-sidebar__user {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 1rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #dbe7f7;
}
.dash-sidebar__user .avatar {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
}
.dash-sidebar__user strong {
  display: block;
  font-size: 0.95rem;
}
.dash-sidebar__user span {
  color: #5b6b8a;
  font-size: 0.8rem;
}
.dash-sidebar a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.85rem;
  border-radius: 0.5rem;
  color: #0f1e3d;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.dash-sidebar a svg {
  width: 18px;
  height: 18px;
  color: #2563eb;
}
.dash-sidebar a:hover {
  background: #eaf3ff;
}
.dash-sidebar a.is-active {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #ffffff;
}
.dash-sidebar a.is-active svg {
  color: #ffffff;
}
.dash-sidebar__logout {
  margin-top: 0.5rem;
  padding-top: 0.85rem;
  border-top: 1px solid #dbe7f7;
  color: #ef4444 !important;
}
.dash-sidebar__logout svg {
  color: #ef4444 !important;
}

.dash-panel {
  background: #ffffff;
  border: 1px solid #dbe7f7;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px -12px rgba(30, 58, 138, 0.18);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.dash-panel h2 {
  font-size: 1.4rem;
}
.dash-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.orders-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9rem;
}
.orders-table thead th {
  text-align: left;
  padding: 0.75rem 1rem;
  background: #eaf3ff;
  color: #1e3a8a;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.orders-table thead th:first-child {
  border-radius: 0.5rem 0 0 0.5rem;
}
.orders-table thead th:last-child {
  border-radius: 0 0.5rem 0.5rem 0;
}
.orders-table tbody td {
  padding: 1rem;
  border-bottom: 1px solid #dbe7f7;
  vertical-align: middle;
}
.orders-table tbody tr:last-child td {
  border-bottom: 0;
}
.orders-table .order-status {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.orders-table .order-status--delivered {
  background: rgba(52, 211, 153, 0.18);
  color: #0f6b45;
}
.orders-table .order-status--shipped {
  background: rgba(59, 130, 246, 0.15);
  color: #1e3a8a;
}
.orders-table .order-status--pending {
  background: rgba(245, 158, 11, 0.18);
  color: #92600a;
}

@media (max-width: 768px) {
  .orders-table thead {
    display: none;
  }

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

  .orders-table tr {
    background: #ffffff;
    border: 1px solid #dbe7f7;
    border-radius: 1.5rem;
    box-shadow: 0 8px 30px -12px rgba(30, 58, 138, 0.18);
    padding: 1rem;
    margin-bottom: 0.75rem;
  }

  .orders-table td {
    padding: 0.35rem 0;
    border: 0;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }
  .orders-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #1e3a8a;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
}
.reviews-section {
  margin: 40px 0;
  gap: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 1024px) {
  .reviews-section {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .reviews-section {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: #ffffff;
  border: 1px solid #dbe7f7;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px -12px rgba(30, 58, 138, 0.18);
  padding: 16px;
  background: #fff;
  transition: 0.2s ease;
  border-radius: 8px;
}
.review-card .review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.review-card .review-header .user-info {
  display: flex;
  gap: 4px;
  align-items: center;
}
.review-card .review-header .user-name {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}
.review-card .review-header .tick {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2988c4;
  color: #fff;
  font-size: 10px;
  line-height: 1;
}
.review-card .review-comment {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}
.review-card .no-reviews {
  color: #9ca3af;
  font-size: 14px;
}
