@charset "UTF-8";
* {
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

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

img {
  max-width: 100%;
  display: block;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  line-height: 1.618;
  font-family: Arial, sans-serif;
  color: #292826;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif, Roboto, Arial;
  background: #ece8df;
}

h1 {
  font-size: 60px;
  font-weight: 600;
}

h2 {
  font-size: xx-large;
  font-weight: 600;
}

h3 {
  font-size: x-large;
  font-weight: 600;
}

h4 {
  font-size: 16px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 600;
}

h5 {
  font-size: 16px;
  font-weight: 400;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.show {
  display: block !important;
}

.icons {
  color: #F9D342;
}

/* ---------- Header / Navigation ---------- */
#mobile-menu-btn, #navigation-mobile {
  display: none;
}

header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(30px);
  background: #331E6D;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
}
header .nav .nav-logo {
  width: 15%;
}
header .nav .whatsapp-btn {
  background: #25D366;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.2s ease;
}
header .nav .whatsapp-btn:hover {
  background: #1ebe5d;
}
header .nav .nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
header .nav .nav-links a {
  position: relative;
  padding-bottom: 0.25rem;
  font-size: 1.2em;
  color: #F9D342;
  margin-right: 2rem;
}
header .nav .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #F9D342;
  transition: 220ms ease-out;
}
header .nav .nav-links a:hover::after {
  width: 100%;
}
header .nav .nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}
header .nav .nav-actions .nav-account {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  color: #F9D342;
}
header .nav .nav-actions .nav-account .nav-account-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #F9D342;
  position: relative;
}
header .nav .nav-actions .nav-account .nav-account-icon::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 2px solid #333;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
}
header .nav .nav-cart {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  font-size: 1.2rem;
  cursor: pointer;
  min-width: 2.75rem;
}
header .nav .nav-cart a {
  font-size: 1.5em;
  line-height: 1;
}
header .nav .nav-cart .nav-cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.7rem;
  border-radius: 999px;
  padding: 1px 5px;
  font-weight: 600;
}
header .nav .nav-cart .carttotal {
  color: #ffffff;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.94;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 720px) {
  .nav {
    padding: 0 !important;
  }
  .nav #mobile-menu-btn {
    display: flex;
    padding-left: 10px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 40px; /* Set a fixed width */
    height: 40px; /* Set a fixed height */
    cursor: pointer; /* Make the entire div clickable */
    background: none; /* Optional: Add a background if needed */
    border: none; /* Remove any default border styling */
  }
  .nav #mobile-menu-btn i {
    font-size: 1.8rem; /* Icon size */
    color: #F9D342; /* Icon color */
    pointer-events: none; /* Disable pointer events on child elements */
  }
  .nav #mobile-menu-btn p {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    color: #F9D342;
    pointer-events: none; /* Disable pointer events on child elements */
  }
  .nav .nav-logo {
    width: 20% !important;
  }
  .nav .whatsapp-btn {
    padding: 4px 10px !important;
    font-size: 0.9rem !important;
  }
  .nav .nav-links {
    display: none !important; /* simple: hide links on small screens */
  }
  .nav .nav-account {
    display: none !important;
  }
  .nav .nav-cart {
    margin-right: 0.7rem;
  }
  .nav .nav-cart .carttotal {
    display: none !important;
  }
  #navigation-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #331E6D;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
  }
  #navigation-mobile a {
    color: #F9D342;
    font-size: 1.2rem;
  }
  #navigation-mobile ul {
    padding-left: 10%;
    list-style: none; /* Removes bullets */
  }
  #navigation-mobile ul li {
    padding-bottom: 5%;
    width: 100;
  }
}
/* Footer */
footer {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.3rem 1.5rem 1.5rem;
  background: #f4eee3;
  font-size: 0.86rem;
}
footer .footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
footer .footer-inner .footer-links {
  display: flex;
  gap: 1.25rem;
}
footer .footer-inner .footer-links a {
  opacity: 0.8;
}

.blog-post-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.video-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 16px 42px;
}

#video-carousel-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.video-card {
  border-radius: 22px;
  border: 1px solid rgba(21, 112, 239, 0.12);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.youtube-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #111827;
}
.youtube-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-card__content {
  padding: 0 18px 18px;
}

.video-card__title {
  margin: 0;
  padding: 14px 16px;
  margin-inline: -18px;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #331E6D;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(21, 112, 239, 0.12);
}

.video-card__description {
  margin: 14px 0 0;
  text-align: center;
  line-height: 1.6;
  font-size: 0.96rem;
  color: #64748b;
}

@media screen and (max-width: 780px) {
  .video-page {
    padding: 22px 12px 36px;
  }
  #video-carousel-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .video-card__content {
    padding: 0 14px 16px;
  }
  .video-card__title {
    margin-inline: -14px;
    font-size: 1rem;
  }
}
.policy-page {
  padding: 36px 16px 48px;
}

.policy-page__container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(21, 112, 239, 0.12);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  padding: 26px 22px;
}
.policy-page__container h1 {
  margin-top: 0;
  color: #331E6D;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
}
.policy-page__container h2 {
  margin-top: 26px;
  margin-bottom: 8px;
  color: #0f172a;
  font-size: 1.2rem;
}
.policy-page__container p,
.policy-page__container li {
  color: #64748b;
  line-height: 1.7;
}
.policy-page__container ul {
  margin: 0;
  padding-left: 22px;
}
.policy-page__container a {
  color: #331E6D;
}

.policy-page__lead {
  margin-bottom: 18px;
  font-size: 1.02rem;
}

@media screen and (max-width: 640px) {
  .policy-page {
    padding: 24px 12px 36px;
  }
  .policy-page__container {
    padding: 20px 16px;
  }
  .policy-page__container h2 {
    margin-top: 20px;
  }
}
.cart-page {
  width: 100%;
  position: relative;
  padding: 48px 20px 90px;
  background: radial-gradient(circle at top left, rgba(31, 182, 255, 0.12), transparent 24%), radial-gradient(circle at top right, rgba(21, 112, 239, 0.12), transparent 22%), linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
}

.cart-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}

.cart-shell {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.cart-header {
  max-width: 760px;
  margin: 0 0 34px;
}

.cart-header__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #331E6D;
  background: rgba(51, 30, 109, 0.0901960784);
  border: 1px solid rgba(51, 30, 109, 0.1725490196);
  margin-bottom: 16px;
}

.cart-header h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  color: #331E6D;
}

.cart-header p {
  margin: 0;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.8;
  color: #808080;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.7fr);
  gap: 24px;
  align-items: start;
}

.cart-items-card,
.cart-summary__card,
.empty-cart-card {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.cart-items-card {
  padding: 20px;
}

.cart-table-head {
  display: grid;
  grid-template-columns: minmax(320px, 1.8fr) 0.7fr 0.7fr 0.7fr;
  gap: 16px;
  padding: 0 16px 14px;
  border-bottom: 1px solid #e6eef7;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #808080;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
}

.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1.8fr) 0.7fr 0.7fr 0.7fr;
  gap: 16px;
  align-items: center;
  padding: 20px 16px;
  border-bottom: 1px solid #e9f0f8;
  transition: background 0.22s ease;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item__remove {
  position: absolute;
  top: 14px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #ef4444;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cart-item__remove:hover {
  transform: scale(1.06);
  background: #fff5f5;
}

.close-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.cart-item__product {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 30px;
}

.cart-item__image {
  flex-shrink: 0;
  width: 108px;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(31, 182, 255, 0.12), transparent 24%), radial-gradient(circle at top right, rgba(21, 112, 239, 0.12), transparent 22%), linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item__image img {
  width: 84%;
  height: 84%;
  -o-object-fit: contain;
     object-fit: contain;
}

.cart-item__details h2 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  line-height: 1.45;
  color: #000000;
}

.cart-item__mobile-price {
  display: none;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #331E6D;
}

.cart-item__price p,
.cart-item__subtotal p {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
}

.cart-item__quantity {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-qty-box {
  display: inline-flex;
  align-items: center;
}

.in-cart-qtty {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid #dbe7f3;
  background: white;
  color: #000000;
  font: inherit;
  box-sizing: border-box;
  outline: none;
  width: 92px;
  font-size: 1rem;
  font-weight: 700;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.in-cart-qtty:focus {
  border-color: rgba(21, 112, 239, 0.45);
  box-shadow: 0 0 0 4px rgba(21, 112, 239, 0.08);
}

.cart-mobile-label {
  display: none;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #808080;
}

.cart-actions {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #e6eef7;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.cart-coupon {
  display: flex;
  gap: 12px;
  flex: 1 1 420px;
  flex-wrap: wrap;
  align-items: center;
}

.cart-coupon form {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.cart-coupon form:first-child {
  flex: 1 1 320px;
}

.cart-coupon form:last-child {
  flex: 0 0 auto;
}

.cart-coupon input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid #dbe7f3;
  background: white;
  color: #000000;
  font: inherit;
  box-sizing: border-box;
  outline: none;
  flex: 1;
  min-width: 220px;
  font-size: 0.96rem;
}

.cart-coupon input:focus {
  border-color: rgba(21, 112, 239, 0.45);
  box-shadow: 0 0 0 4px rgba(21, 112, 239, 0.08);
}

.cart-coupon button,
.cart-update-btn,
.cart-checkout-btn,
.empty-cart-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: none;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
  box-sizing: border-box;
  font-size: 0.96rem;
}

.cart-coupon button,
.cart-update-btn {
  min-height: 50px;
  padding: 0 20px;
  white-space: nowrap;
  flex: 0 0 auto;
}

.cart-coupon button {
  background: rgba(51, 30, 109, 0.0901960784);
  color: #331E6D;
  border: 1px solid rgba(51, 30, 109, 0.1725490196);
}

.cart-coupon-feedback,
.cart-coupon-error {
  margin: 0;
  width: 100%;
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
}

.cart-coupon-feedback {
  color: #808080;
  background: rgba(12, 74, 110, 0.05);
  border-color: rgba(12, 74, 110, 0.12);
}

.cart-coupon-error {
  color: #d32f2f;
  background: rgba(211, 47, 47, 0.07);
  border-color: rgba(211, 47, 47, 0.2);
}

.cart-update-btn {
  background: linear-gradient(135deg, #331E6D 0%, #4f2eaa 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(21, 112, 239, 0.18);
}

.cart-coupon button:hover,
.cart-update-btn:hover,
.cart-checkout-btn:hover,
.empty-cart-card__btn:hover {
  transform: translateY(-2px);
}

.cart-summary {
  position: sticky;
  top: 110px;
}

.cart-summary__card {
  padding: 28px;
}

.cart-summary__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #331E6D;
  background: rgba(51, 30, 109, 0.0901960784);
  border: 1px solid rgba(51, 30, 109, 0.1725490196);
  margin-bottom: 12px;
}

.cart-summary__card h3 {
  margin: 0 0 22px;
  font-size: 1.6rem;
  color: #000000;
}

.cart-summary__rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.cart-delivery-methods {
  padding-bottom: 12px;
  border-bottom: 1px solid #e6eef7;
}

.cart-delivery-methods__title {
  margin: 0 0 10px;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #808080;
}

.cart-delivery-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #e6eef7;
  color: #808080;
}

.cart-summary__row strong {
  color: #000000;
}

.cart-summary__row--total {
  font-size: 1.08rem;
  font-weight: 700;
}

.cart-checkout-btn {
  background: linear-gradient(135deg, #331E6D 0%, #292826 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(8, 17, 32, 0.18);
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
}

.empty-cart-card {
  max-width: 720px;
  margin: 24px auto 0;
  padding: 48px 28px;
  text-align: center;
}

.empty-cart-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #331E6D 0%, #4f2eaa 100%);
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 16px 36px rgba(21, 112, 239, 0.22);
}

.empty-cart-card h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #000000;
}

.empty-cart-card p {
  max-width: 48ch;
  margin: 0 auto 24px;
  line-height: 1.8;
  color: #808080;
}

.empty-cart-card__btn {
  background: linear-gradient(135deg, #331E6D 0%, #4f2eaa 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(21, 112, 239, 0.18);
  min-width: 180px;
  min-height: 50px;
  padding: 0 20px;
}

@media (max-width: 1100px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-summary {
    position: static;
  }
}
@media (max-width: 860px) {
  .cart-table-head {
    display: none;
  }
  .cart-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 14px;
    border: 1px solid #e6eef7;
    border-radius: 22px;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.45);
  }
  .cart-items-list {
    gap: 0;
  }
  .cart-item__product {
    padding-right: 36px;
  }
  .cart-item__mobile-price {
    display: block;
  }
  .cart-item__price,
  .cart-item__quantity,
  .cart-item__subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 6px;
  }
  .cart-mobile-label {
    display: inline-block;
  }
}
@media (max-width: 640px) {
  .cart-page {
    padding: 36px 16px 72px;
  }
  .cart-items-card,
  .cart-summary__card,
  .empty-cart-card {
    border-radius: 22px;
  }
  .cart-items-card {
    padding: 14px;
  }
  .cart-item__product {
    align-items: flex-start;
  }
  .cart-item__image {
    width: 88px;
    border-radius: 16px;
  }
  .cart-item__details h2 {
    font-size: 0.98rem;
  }
  .cart-coupon {
    flex-direction: column;
    align-items: stretch;
  }
  .cart-coupon form {
    width: 100%;
  }
  .cart-coupon button,
  .cart-update-btn,
  .cart-checkout-btn,
  .empty-cart-card__btn {
    width: 100%;
  }
  .in-cart-qtty {
    width: 84px;
    height: 46px;
  }
  .cart-summary__card {
    padding: 22px;
  }
  .cart-item__price,
  .cart-item__quantity,
  .cart-item__subtotal {
    align-items: center;
  }
}
/* Page */
.checkout-page {
  width: 100%;
  position: relative;
  padding: 48px 20px 90px;
  background: radial-gradient(circle at top left, rgba(31, 182, 255, 0.12), transparent 24%), radial-gradient(circle at top right, rgba(21, 112, 239, 0.12), transparent 22%), linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
}

.checkout-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}

.checkout-shell {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.checkout-header {
  max-width: 760px;
  margin: 0 0 34px;
}

.checkout-header__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #331E6D;
  background: rgba(21, 112, 239, 0.08);
  border: 1px solid rgba(21, 112, 239, 0.12);
  margin-bottom: 16px;
}

.checkout-header h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  color: #331E6D;
}

.checkout-header p {
  margin: 0;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.8;
  color: #64748b;
}

/* Layout */
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.checkout-card,
.checkout-summary-card {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.checkout-card {
  padding: 28px;
}

.checkout-card__header {
  margin-bottom: 24px;
}

.checkout-card__header h2 {
  margin: 0 0 8px;
  font-size: 1.7rem;
  color: #0f172a;
}

.checkout-card__header p {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
}

/* Selected address */
.checkout-selected-address {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(246, 250, 255, 0.96) 100%);
  border: 1px solid #e7eff8;
  margin-bottom: 24px;
}

.checkout-selected-address__label {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #331E6D;
  background: rgba(21, 112, 239, 0.08);
  border: 1px solid rgba(21, 112, 239, 0.12);
  margin-bottom: 12px;
}

.checkout-selected-address__name {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.6;
  color: #0f172a;
}

.checkout-selected-address__name span {
  font-weight: 800;
  margin-right: 8px;
}

.checkout-selected-address__content p {
  margin: 0 0 6px;
  line-height: 1.7;
  color: #64748b;
}

.checkout-selected-address__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 180px;
}

/* Notes */
.checkout-notes {
  margin-top: 24px;
}

.checkout-notes label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
}

.checkout-notes textarea {
  width: 100%;
  min-height: 120px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #dbe7f3;
  background: #ffffff;
  color: #0f172a;
  font: inherit;
  box-sizing: border-box;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-notes textarea:focus {
  border-color: rgba(21, 112, 239, 0.45);
  box-shadow: 0 0 0 4px rgba(21, 112, 239, 0.08);
}

.checkout-notes form {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.checkout-notes > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
}

.checkout-notes input[type=text] {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid #dbe7f3;
  background: #ffffff;
  color: #0f172a;
  font: inherit;
  box-sizing: border-box;
  outline: none;
  flex: 1;
  min-width: 220px;
}

.checkout-notes input[type=text]:focus {
  border-color: rgba(21, 112, 239, 0.45);
  box-shadow: 0 0 0 4px rgba(21, 112, 239, 0.08);
}

.checkout-coupon-feedback,
.checkout-coupon-error {
  margin: 8px 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
}

.checkout-coupon-feedback {
  color: #64748b;
  background: rgba(12, 74, 110, 0.05);
  border-color: rgba(12, 74, 110, 0.12);
}

.checkout-coupon-error {
  color: #d32f2f;
  background: rgba(211, 47, 47, 0.07);
  border-color: rgba(211, 47, 47, 0.2);
}

.checkout-shipping-methods {
  margin-top: 20px;
}

.checkout-shipping-methods h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: #0f172a;
}

.checkout-shipping-methods p {
  margin: 0 0 10px;
  color: #64748b;
  font-size: 0.92rem;
}

.checkout-shipping-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid #e7eff8;
  border-radius: 12px;
  background: #fff;
  margin-bottom: 10px;
}

/* Form fields from Django form */
.checkout-new-address-form input,
.checkout-new-address-form select,
.checkout-new-address-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid #dbe7f3;
  background: #ffffff;
  color: #0f172a;
  font: inherit;
  box-sizing: border-box;
  outline: none;
  margin-bottom: 14px;
}

.checkout-new-address-form textarea {
  padding: 16px;
  min-height: 120px;
}

.checkout-new-address-form input:focus,
.checkout-new-address-form select:focus,
.checkout-new-address-form textarea:focus {
  border-color: rgba(21, 112, 239, 0.45);
  box-shadow: 0 0 0 4px rgba(21, 112, 239, 0.08);
}

/* Buttons */
.checkout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: none;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
  box-sizing: border-box;
  white-space: nowrap;
}

.checkout-btn:hover {
  transform: translateY(-2px);
}

.checkout-btn--primary {
  background: linear-gradient(135deg, #331E6D 0%, #4f2eaa 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(21, 112, 239, 0.18);
}

.checkout-btn--outline {
  background: rgba(21, 112, 239, 0.08);
  color: #331E6D;
  border: 1px solid rgba(21, 112, 239, 0.12);
}

.checkout-btn--ghost {
  background: linear-gradient(135deg, #292826 0%, #331E6D 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(8, 17, 32, 0.16);
}

/* Summary */
.checkout-sidebar {
  position: sticky;
  top: 110px;
}

.checkout-summary-card {
  padding: 28px;
}

.checkout-summary-card__header {
  margin-bottom: 20px;
}

.checkout-summary-card__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #331E6D;
  background: rgba(21, 112, 239, 0.08);
  border: 1px solid rgba(21, 112, 239, 0.12);
  margin-bottom: 10px;
}

.checkout-summary-card__header h2 {
  margin: 0;
  font-size: 1.55rem;
  color: #0f172a;
}

.checkout-order-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #e6eef7;
}

.checkout-order-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.checkout-order-item__main h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
  line-height: 1.45;
  color: #0f172a;
}

.checkout-order-item__main p {
  margin: 0;
  font-size: 0.92rem;
  color: #64748b;
}

.checkout-order-item__subtotal {
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
}

.checkout-totals {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.checkout-totals__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  color: #64748b;
  border-bottom: 1px solid #eef4fa;
}

.checkout-totals__row strong {
  color: #0f172a;
}

.checkout-totals__row--grand {
  font-size: 1.08rem;
  font-weight: 700;
}

/* Policy */
.checkout-policy p {
  margin: 0 0 16px;
  line-height: 1.75;
  color: #64748b;
  font-size: 0.94rem;
}

.checkout-policy__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  cursor: pointer;
}

.checkout-policy__check input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: #331E6D;
}

.checkout-policy__check span {
  line-height: 1.6;
  color: #0f172a;
  font-size: 0.94rem;
}

.checkout-place-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 16px;
  border: none;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
  box-sizing: border-box;
  background: linear-gradient(135deg, #331E6D 0%, #10233f 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(8, 17, 32, 0.28);
  background: linear-gradient(135deg, #292826 0%, #331E6D 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(8, 17, 32, 0.16);
  width: 100%;
  font-size: 1rem;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.checkout-place-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(8, 17, 32, 0.22);
}

/* Popup modal */
.change_address_popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
}

.checkout-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 32, 0.58);
  backdrop-filter: blur(6px);
}

.checkout-modal {
  position: relative;
  z-index: 1;
  width: min(760px, 100% - 24px);
  max-height: calc(100vh - 48px);
  margin: 24px auto;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 80px rgba(7, 17, 32, 0.28);
  display: flex;
  flex-direction: column;
}

.checkout-modal__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding: 24px 24px 18px;
  border-bottom: 1px solid #e8eef7;
}

.checkout-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #331E6D;
  background: rgba(21, 112, 239, 0.08);
  border: 1px solid rgba(21, 112, 239, 0.12);
  margin-bottom: 10px;
}

.checkout-modal__header h3 {
  margin: 0;
  font-size: 1.45rem;
  color: #0f172a;
}

.checkout-modal__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f4f8fc;
  color: #0f172a;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.checkout-modal__body {
  padding: 20px 24px 24px;
  overflow: auto;
}

.checkout-address-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checkout-address-list li + li {
  margin-top: 14px;
}

.checkout-address-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e6eef7;
}

.checkout-address-card__name {
  margin: 0 0 8px;
  color: #0f172a;
  line-height: 1.6;
}

.checkout-address-card__name span {
  font-weight: 800;
  margin-right: 8px;
}

.checkout-address-card__content p {
  margin: 0 0 6px;
  line-height: 1.65;
  color: #64748b;
}

.checkout-address-card__form {
  display: flex;
  align-items: center;
}

/* Responsive */
@media (max-width: 1100px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .checkout-sidebar {
    position: static;
  }
}
@media (max-width: 760px) {
  .checkout-selected-address,
  .checkout-address-card {
    flex-direction: column;
  }
  .checkout-selected-address__actions,
  .checkout-address-card__form {
    width: 100%;
  }
  .checkout-selected-address__actions .checkout-btn,
  .checkout-address-card__form .checkout-btn {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .checkout-page {
    padding: 36px 16px 72px;
  }
  .checkout-card,
  .checkout-summary-card,
  .checkout-modal {
    border-radius: 22px;
  }
  .checkout-card,
  .checkout-summary-card {
    padding: 22px;
  }
  .checkout-modal {
    width: calc(100% - 16px);
    margin: 8px auto;
    max-height: calc(100vh - 16px);
  }
  .checkout-modal__header,
  .checkout-modal__body {
    padding-left: 16px;
    padding-right: 16px;
  }
  .checkout-place-order-btn,
  .checkout-btn {
    width: 100%;
  }
  .checkout-notes > div form {
    width: 100%;
  }
  .checkout-order-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .checkout-order-item__subtotal {
    white-space: normal;
  }
}
.carousel-container {
  padding: 2rem;
  width: 90%;
  margin-top: 1rem;
  border-radius: 9px;
  margin-right: 5%;
  margin-left: 5%;
}
.carousel-container h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}
.carousel-container .product-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Responsive grid */
  gap: 2rem; /* Add spacing between cards */
}
.carousel-container .product-card-container .product-card {
  position: relative; /* Make this the positioning context for the pseudo-element */
  background: white;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.4s ease;
}
.carousel-container .product-card-container .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(239, 200, 5, 0.3);
}
.carousel-container .product-card-container .product-card a {
  text-decoration: none;
  color: inherit;
}
.carousel-container .product-card-container .product-card a img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.carousel-container .product-card-container .product-card a .card-info {
  padding: 1rem;
  text-align: center;
}
.carousel-container .product-card-container .product-card a .card-info .card-product-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.carousel-container .product-card-container .product-card a .card-info .card-product-price {
  font-size: 1.5rem;
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  color: black;
}

@media screen and (max-width: 1200px) {
  .carousel-container .product-card-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .carousel-container h2 {
    font-size: 1.5rem;
  }
  .carousel-container .product-card-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem; /* Adjust spacing between cards */
    padding: 1rem; /* Add padding for better spacing */
  }
  .carousel-container .product-card-container .product-card {
    flex: 0 0 auto; /* Prevent shrinking and set width */
    scroll-snap-align: start; /* Ensure cards snap into view */
    width: 80%; /* Adjust width for better visibility */
  }
}
.product-card {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Import the color module */
:root {
  --max: 1400px;
}

.index-page-container {
  background: rgb(201.875, 217.5, 233.125);
  width: 100%;
}

.hero__wrap--wide,
.systems__inner--wide {
  width: min(1600px, 100% - 24px);
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.08s ease, opacity 0.15s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: #F9D342;
  color: #331E6D;
  box-shadow: 0 8px 16px rgba(30, 94, 255, 0.25);
}

.btn--ghost {
  background: #25D366;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.btn--small {
  background-color: #331E6D;
  color: white;
}

.btns {
  margin-top: auto;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F9D342;
  color: #331E6D;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.08s ease, opacity 0.15s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-shadow: 0 8px 16px rgba(30, 94, 255, 0.25);
}

/* HERO */
.hero {
  width: 100%;
  background: radial-gradient(1200px 500px at 20% 20%, rgba(27, 102, 255, 0.1647058824) 0%, transparent 60%), linear-gradient(120deg, #331E6D 0%, #4f2eaa 100%);
  color: #ffffff;
  padding: 56px 0 34px;
}

.hero__wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
  padding: 0 10%;
}

.hero__copy h1 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.hero__sub {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.6;
  max-width: 54ch;
  opacity: 0.95;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0.92;
}

.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.hero__trust li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

/* Right visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__blob {
  width: 100%;
  max-width: 600px;
  border-radius: 2300px 1500px 1500px 800px;
  padding: 2px;
  position: relative;
  overflow: visible;
  background-image: url("upload/images/herokit.abca7f834e0d.jpg");
  background-size: cover; /* Ensure the image covers the entire blob */
  background-position: center; /* Center the image */
}

.hero__stack {
  position: relative;
  height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Image placeholders */
.hero__img {
  position: absolute;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.25));
  width: 210px;
  bottom: 0;
  z-index: 1;
  margin-right: 22px;
}

/* SYSTEMS GRID */
.systems {
  width: 100%;
  padding: 56px 0 56px;
}

.systems__grid {
  align-items: stretch;
  max-width: var(--max);
  margin: auto;
  margin-top: -24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* CARD base upgrade */
.system-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(10, 20, 60, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.system-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* IMAGE HEADER (this creates the template look) */
.system-card__media {
  position: relative;
  height: 200px; /* Desktop card image height */
  background: #eef3ff; /* fallback */
}

.system-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* use cover for blended photo look */
  display: block;
}

/* Blend overlay for readability + premium look */
.system-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 45%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
}

/* Optional badge on image */
.system-card__tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(10, 20, 60, 0.1);
}

/* CONTENT padding */
.system-card__top,
.system-card__desc,
.system-card__bullets,
.system-card__price,
.system-card .btn {
  padding-left: 18px;
  padding-right: 18px;
}

.system-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.system-card__icon .icon-electric, .system-card__icon .icon-living, .system-card__icon .icon-monitor, .system-card__icon .icon-security {
  width: 40px;
  height: 40px;
}
.system-card__icon .icon-electric {
  color: #ffffff;
}
.system-card__icon .icon-monitor {
  color: #0e19b7;
  filter: drop-shadow(0 0 1px rgba(51, 22, 149, 0.5)) drop-shadow(0 0 1px rgba(53, 60, 189, 0.5)) drop-shadow(0 0 1px rgba(56, 36, 171, 0.4));
}
.system-card__icon .icon-security {
  color: #ff4a4a;
  filter: drop-shadow(0 0 4px rgba(182, 44, 44, 0.8)) drop-shadow(0 0 10px rgba(169, 50, 50, 0.6)) drop-shadow(0 0 18px rgba(219, 65, 65, 0.4));
}
.system-card__icon .icon-living {
  color: #fad070;
  display: inline-block;
  filter: drop-shadow(0 0 4px rgba(255, 196, 0, 0.8)) drop-shadow(0 0 10px rgba(255, 196, 0, 0.6)) drop-shadow(0 0 18px rgba(255, 196, 0, 0.4));
}

.system-card__overlay {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
}

.system-card__title {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  padding: 1px;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #0c1220;
}

.system-card__desc {
  margin: 8px 0 10px;
  color: #5f6b7a;
}

.system-card__bullets {
  list-style: none;
  padding-top: 0;
  margin: 0 0 12px;
  color: #5f6b7a;
}
.system-card__bullets li {
  font-size: 15px;
  font-weight: 600;
  margin: 6px 0;
}
.system-card__bullets li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-bottom: -3px;
}

.system-card__price {
  margin: 0 0 14px;
  color: #6a7282;
}

.system-card__price strong {
  font-size: 24px;
  color: #1e5eff;
  font-weight: 500;
}

/* Add bottom padding so button isn't stuck */
.system-card .btn {
  margin: 10px 20px 18px;
}

.power-card {
  border-top: 5px solid #1e5eff;
}

.monitor-card {
  border-top: 5px solid #00a8a8;
}

.security-card {
  border-top: 5px solid #ff4a4a;
}

.living-card {
  border-top: 5px solid #ffb400;
}

.catherotitle {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.1;
  margin: 0 0 40px;
  width: 100%;
  text-align: center;
  animation: glow 3s infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px rgba(254, 255, 255, 0.4);
  }
  to {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
  }
}
.why-doobara {
  padding: 90px 0;
}

.why-doobara .container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.why-doobara__wrap {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 32px;
  align-items: start;
}

.why-doobara__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563eb;
}

.why-doobara__content h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: #0f172a;
}

.why-doobara__intro {
  margin: 0 0 28px;
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.75;
  color: #475569;
}

.why-doobara__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.why-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.why-card__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #eff6ff;
  font-size: 1.3rem;
}

.why-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: #0f172a;
}

.why-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #64748b;
}

.singlereview {
  width: 100%;
  border-bottom: white 1px solid;
  border-radius: 10px;
  margin-bottom: 10px;
}

.review-card {
  position: sticky;
  top: 110px;
  padding: 28px;
  background: #0f172a;
  color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

.review-card__stars {
  margin-bottom: 18px;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: #fbbf24;
}

.review-card__text {
  margin: 0 0 22px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.review-card__author {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #2563eb;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.review-card__author strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
}

.review-card__author span {
  display: block;
  margin-top: 4px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  .why-doobara__wrap {
    grid-template-columns: 1fr;
  }
  .review-card {
    position: static;
  }
}
@media (max-width: 640px) {
  .why-doobara {
    padding: 70px 0;
  }
  .why-doobara__grid {
    grid-template-columns: 1fr;
  }
  .why-card {
    padding: 18px;
  }
  .review-card {
    padding: 22px;
    border-radius: 20px;
  }
}
/* Responsive */
@media (max-width: 900px) {
  .hero__visual {
    margin-top: 20%;
  }
  .hero__wrap {
    grid-template-columns: 1fr;
  }
  .hero__blob {
    max-width: 520px;
    border-radius: 26px;
  }
  .hero__stack {
    height: 280px;
  }
  .systems__grid {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }
}
:root {
  --shop-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --shop-shadow-hover: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.shop-page {
  width: 100%;
  position: relative;
  padding: 48px 20px 90px;
  background: radial-gradient(circle at top left, rgba(31, 182, 255, 0.12), transparent 22%), radial-gradient(circle at top right, rgba(21, 112, 239, 0.12), transparent 22%), linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
}

.shop-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.4;
}

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

.shop-toolbar {
  max-width: 1280px;
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: end;
}

.shop-toolbar__intro {
  max-width: 700px;
}

.shop-toolbar__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(#331E6D);
  background: rgba(21, 112, 239, 0.08);
  border: 1px solid rgba(21, 112, 239, 0.12);
  margin-bottom: 16px;
}

.shop-toolbar__intro h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  color: var(#331E6D);
}

.shop-toolbar__intro p {
  margin: 0;
  max-width: 60ch;
  font-size: 1rem;
  line-height: 1.8;
  color: var(#64748b);
}

.shop-filter-card {
  border-radius: var(24px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  box-shadow: var(--shop-shadow);
  padding: 22px;
}

.shop-filter-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px;
  align-items: end;
}

.shop-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shop-field label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(#0f172a);
}

.shop-field select {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid #dbe7f3;
  background: var(#ffffff);
  color: var(#0f172a);
  font: inherit;
  box-sizing: border-box;
  outline: none;
  font-size: 0.96rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.shop-field select:focus {
  border-color: rgba(21, 112, 239, 0.45);
  box-shadow: 0 0 0 4px rgba(21, 112, 239, 0.08);
}

.shop-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  border: none;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
  box-sizing: border-box;
  background: linear-gradient(135deg, #331E6D 0%, #4f2eaa 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(21, 112, 239, 0.18);
  font-size: 0.96rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.shop-filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(21, 112, 239, 0.24);
}

.shop-divider {
  display: flex;
}

.shop-tabs {
  max-width: 1280px;
  margin: 0 auto 26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(rgba(255, 255, 255, 0.78));
  box-shadow: var(--shop-shadow);
}

.shop-tabs__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.72);
  color: var(#331E6D);
  border: 1px solid rgba(51, 30, 109, 0.16);
}

.shop-tabs__btn[aria-pressed=true] {
  background: linear-gradient(135deg, var(#331E6D) 0%, var(#4f2eaa) 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(51, 30, 109, 0.22);
}

.shop-tabs__btn:hover {
  transform: translateY(-2px);
}

.shop-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.shop-card {
  border-radius: var(24px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  box-shadow: var(--shop-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}

.shop-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shop-shadow-hover);
  border-color: var(rgba(21, 112, 239, 0.12));
}

.shop-card__link {
  text-decoration: none;
  color: inherit;
}

.shop-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 16px;
  border-radius: 20px;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(31, 182, 255, 0.16), transparent 30%), linear-gradient(180deg, #f8fbff 0%, #edf4fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-card__media img {
  width: 86%;
  height: 86%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.35s ease;
}

.shop-card:hover .shop-card__media img {
  transform: scale(1.05);
}

.shop-card__content {
  padding: 4px 2px 0;
}

.shop-card__title {
  margin: 0 0 10px;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(#0f172a);
  min-height: 2.9em;
}

.shop-card__price {
  margin: 0 0 18px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #f94242;
}

.shop-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: none;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
  box-sizing: border-box;
  background: linear-gradient(135deg, #292826 0%, #331E6D 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(8, 17, 32, 0.16);
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: transform 0.22s ease, opacity 0.22s ease, box-shadow 0.22s ease;
}

.shop-card__btn:hover {
  transform: translateY(-2px);
  opacity: 0.96;
  box-shadow: 0 16px 28px rgba(8, 17, 32, 0.2);
}

@media (max-width: 1200px) {
  .shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 980px) {
  .shop-toolbar {
    grid-template-columns: 1fr;
  }
  .shop-filter-form {
    grid-template-columns: 1fr 1fr;
  }
  .shop-filter-btn {
    grid-column: 1/-1;
    width: 100%;
  }
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .shop-page {
    padding: 10px 16px 72px;
  }
  .shop-filter-card {
    padding: 18px;
    border-radius: 20px;
  }
  .shop-filter-form {
    grid-template-columns: 1fr;
  }
  .shop-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
  }
  .shop-tabs__btn {
    width: 100%;
  }
  .shop-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .shop-card {
    padding: 14px;
    border-radius: 20px;
  }
  .shop-card__media {
    border-radius: 16px;
  }
  .shop-card__title {
    min-height: auto;
  }
  .shop-toolbar__intro {
    display: none;
  }
}
.single-product-page {
  position: relative;
  padding: 44px 20px 90px;
  background: radial-gradient(circle at top left, rgba(31, 182, 255, 0.12), transparent 24%), radial-gradient(circle at top right, rgba(21, 112, 239, 0.12), transparent 22%), linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
}

.single-product-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}

.single-product-shell {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.single-product-top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
}

@media (min-width: 690px) {
  .single-product-gallery {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  }
}
.single-product-info,
.card-surface,
.single-product-video-card,
.single-product-long-image-card {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.single-product-gallery {
  padding: 20px;
}

.single-product-mobile-hero {
  display: none;
}

.single-product-gallery__main {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 16px;
  background: radial-gradient(circle at top left, rgba(31, 182, 255, 0.16), transparent 32%), linear-gradient(180deg, #f8fbff 0%, #edf4fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-y;
  cursor: grab;
}

.single-product-gallery__main img {
  width: 88%;
  height: 88%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: opacity 0.18s ease;
}

.single-product-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.single-product-thumb {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #bfd0e4;
  cursor: pointer;
  transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.single-product-thumb:hover,
.single-product-thumb.is-active {
  background: #331E6D;
  transform: scale(1.18);
  box-shadow: 0 0 0 5px rgba(21, 112, 239, 0.12);
}

.single-product-thumb:focus-visible {
  outline: 2px solid #331E6D;
  outline-offset: 4px;
}

.single-product-thumb img {
  display: none;
}

.single-product-info {
  padding: 28px;
  position: sticky;
  top: 110px;
  min-width: 0;
}

.single-product-info__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #331E6D;
  background: rgba(21, 112, 239, 0.08);
  border: 1px solid rgba(21, 112, 239, 0.12);
  margin-bottom: 14px;
}

.single-product-title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  color: #331E6D;
}

.single-product-price-row {
  margin-bottom: 22px;
}

.single-product-price-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
}

.single-product-price {
  margin: 0;
  font-size: 2rem;
  color: #331E6D;
}

.single-product-availability {
  margin: 0 0 10px;
  font-size: 0.9rem;
  font-weight: 700;
}

.single-product-availability.is-in-stock {
  color: #15803d;
}

.single-product-availability.is-out-of-stock {
  color: #b91c1c;
}

.single-product-variant {
  margin-bottom: 20px;
}

.single-product-variant-note {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 0.92rem;
}

.single-product-variant label,
.single-product-qty-wrap label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
}

.single-product-variant select,
.single-product-quantity {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid #dbe7f3;
  background: #ffffff;
  color: #0f172a;
  font: inherit;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.single-product-variant select:focus,
.single-product-quantity:focus {
  border-color: rgba(21, 112, 239, 0.45);
  box-shadow: 0 0 0 4px rgba(21, 112, 239, 0.08);
}

.single-product-purchase {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  margin-bottom: 18px;
  align-items: end;
}

.single-product-addtocart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  border: none;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
  box-sizing: border-box;
  background: linear-gradient(135deg, #331E6D 0%, #10233f 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(8, 17, 32, 0.18);
  grid-column: 1/-1;
  font-size: 0.98rem;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.single-product-addtocart i {
  font-size: 1.15rem;
}

.single-product-addtocart:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(8, 17, 32, 0.22);
}

.single-product-addtocart:disabled {
  background: #cbd5e1;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.single-product-whatsapp {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 8px 16px;
  border: 1px solid #16a34a;
  border-radius: 12px;
  background: #ffffff;
  color: #0f172a;
  text-decoration: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.single-product-whatsapp:hover {
  border-color: #15803d;
  box-shadow: 0 12px 24px rgba(22, 163, 74, 0.14);
  transform: translateY(-1px);
}

.single-product-whatsapp i {
  color: #16a34a;
  font-size: 1.55rem;
}

.single-product-whatsapp__copy {
  display: grid;
  gap: 2px;
  line-height: 1.12;
}

.single-product-whatsapp__copy strong {
  color: #0f172a;
  font-size: 0.9rem;
}

.single-product-whatsapp__copy span {
  color: #15803d;
  font-size: 0.92rem;
  font-weight: 800;
}

.single-product-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.single-product-trust__item {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(21, 112, 239, 0.08);
  border: 1px solid rgba(21, 112, 239, 0.1);
  color: #331E6D;
  font-size: 0.88rem;
  font-weight: 700;
}

.single-product-specs h3,
.single-product-section-head h2 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  color: #0f172a;
}

.single-product-specs__content,
.single-product-richtext {
  color: #64748b;
  line-height: 1.8;
}

.single-product-specs__content ul,
.single-product-richtext ul {
  margin: 0;
  padding-left: 20px;
}

.single-product-video-card,
.single-product-long-image-card,
.card-surface {
  padding: 24px;
  margin-bottom: 24px;
}

.single-product-service-card {
  background-color: #f4eee3;
}

.single-product-benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-content: space-around;
  padding-bottom: 10px;
}

.single-product-benefit-item {
  display: flex;
  flex-direction: column;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid #dbe7f5;
  background: #fff;
  justify-content: flex-start;
  align-items: center;
}

.single-product-benefit-item__icon {
  display: block;
  margin-bottom: 0px;
  width: 65px;
  height: 65px;
  -o-object-fit: contain;
     object-fit: contain;
  color: #331E6D;
}

.single-product-benefit-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: #0f172a;
  text-align: center;
}

.single-product-benefit-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #64748b;
  text-align: center;
}

.single-product-benefit-grid--service .single-product-benefit-item {
  background: rgba(21, 112, 239, 0.04);
}

.single-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 22px;
  overflow: hidden;
  background: #0f172a;
}

.single-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.single-product-image-long {
  display: block;
  width: 100%;
  border-radius: 22px;
}

.single-product-details-grid {
  display: grid;
  gap: 24px;
  align-items: start;
}

.single-product-info-table {
  width: 100%;
  border-collapse: collapse;
}

.single-product-info-table th,
.single-product-info-table td {
  padding: 14px 0;
  border-bottom: 1px solid #e8eef7;
  vertical-align: top;
}

.single-product-info-table th {
  width: 34%;
  text-align: left;
  color: #0f172a;
  font-weight: 700;
}

.single-product-info-table td {
  color: #64748b;
  line-height: 1.7;
}

.single-product-info-table ul {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 1050px) {
  .single-product-top,
  .single-product-details-grid {
    grid-template-columns: 1fr;
  }
  .single-product-info {
    position: static;
  }
  .single-product-gallery {
    padding-top: 5px;
  }
  .single-product-gallery__main {
    margin-bottom: 5px;
  }
}
@media (max-width: 640px) {
  .single-product-page {
    padding: 0px 0px 64px;
  }
  .single-product-top {
    gap: 14px;
    margin-bottom: 14px;
  }
  .single-product-gallery {
    display: grid;
    grid-template-columns: minmax(0, 46%) minmax(120px, 54%);
    align-items: stretch;
    -moz-column-gap: 0;
         column-gap: 0;
    min-height: 190px;
    background: #fff;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    border-radius: 0 !important;
  }
  .single-product-mobile-hero {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px 0 18px 20px;
    position: relative;
    z-index: 1;
  }
  .single-product-mobile-hero__copy {
    min-width: 100% !important;
  }
  .single-product-mobile-hero .single-product-info__eyebrow {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 10px;
    font-size: 0.58rem;
    line-height: 1;
    letter-spacing: 0.08em;
  }
  .single-product-mobile-hero .single-product-title {
    margin: 0 0 10px;
    font-size: clamp(1.3rem, 7.2vw, 1.5rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }
  .single-product-mobile-hero__description {
    display: grid;
    gap: 2px;
  }
  .single-product-mobile-hero__description p {
    margin: 0;
    color: #0f172a;
    font-size: 0.78rem;
    line-height: 1.28;
  }
  .single-product-gallery__main {
    margin-bottom: 0 !important;
    min-height: 190px;
    background: none !important;
    aspect-ratio: auto;
    justify-content: center;
    border-radius: 0 !important;
  }
  .single-product-gallery__main img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .single-product-gallery__thumbs {
    grid-column: 1/-1;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .single-product-info {
    padding-bottom: 19px !important;
  }
  .single-product-info,
  .card-surface,
  .single-product-video-card,
  .single-product-long-image-card {
    border-radius: 22px;
  }
  .single-product-info,
  .card-surface,
  .single-product-video-card,
  .single-product-long-image-card {
    padding: 1px 18px;
  }
  .single-video,
  .single-product-image-long {
    border-radius: 18px;
  }
  .single-product-purchase {
    grid-template-columns: 1fr;
    margin-bottom: 12px;
  }
  .single-product-gallery__thumbs {
    /* Keep gallery dots centered and compact below the swipeable main image. */
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 10px 0 2px;
  }
  .single-product-gallery__thumbs::-webkit-scrollbar {
    display: none;
  }
  .single-product-title {
    margin-bottom: 10px;
  }
  .single-product-info > .single-product-info__eyebrow,
  .single-product-info > .single-product-title {
    display: none;
  }
  .single-product-price-row {
    margin-bottom: 10px;
  }
  .system-variant-selector {
    margin: 10px 0;
  }
  .single-product-price {
    font-size: 1.7rem;
  }
  .single-product-benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
  }
  .service-badges-fork {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    padding-top: 10px !important;
  }
  .single-product-benefit-item {
    padding: 10px 3px 10px 3px !important;
  }
  .single-product-benefit-item h3 {
    line-height: normal !important;
    padding-top: 5px !important;
  }
  .single-product-benefit-item__icon {
    width: 40px;
    height: 40px;
  }
  .single-product-info-table th,
  .single-product-info-table td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
  .single-product-info-table th {
    padding-bottom: 0;
  }
}
.system-variant-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.system-variant-option {
  border: 1px solid #d9d9d9;
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  text-align: left;
  cursor: pointer;
}

.system-variant-option.is-active {
  border-color: #000;
  box-shadow: 0 0 0 1px #000 inset;
}

.system-variant-option__tier {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}

.system-variant-option__price {
  display: block;
  font-size: 0.95rem;
}

.system-variant-option__items-count {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: #6b7280;
}

.system-variant-package-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.system-variant-package-items li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.system-variant-package-items img {
  width: 36px;
  height: 36px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .single-product-page--system {
    /* Prevent horizontal page drag on system-variant mobile view from wide internal rails. */
    overflow-x: clip;
  }
  .system-variant-selector {
    /* Keep Basic/Advanced/Pro fitting in one mobile row without horizontal sliding. */
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    gap: 8px;
  }
  .system-variant-option {
    min-width: 0;
    width: 100%;
    padding: 10px 8px;
  }
}
.single-product-gallery__main {
  position: relative;
}

.single-product-gallery__zoom-btn {
  display: none;
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #111827;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.2);
  cursor: pointer;
  z-index: 2;
}

.single-product-gallery__zoom-btn:focus-visible {
  outline: 2px solid #331E6D;
  outline-offset: 2px;
}

.single-product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 23, 42, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.single-product-lightbox[hidden] {
  display: none;
}

.single-product-lightbox__stage {
  max-width: 92vw;
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-product-lightbox__stage img {
  max-width: 92vw;
  max-height: 82vh;
  -o-object-fit: contain;
     object-fit: contain;
}

.single-product-lightbox__close,
.single-product-lightbox__nav {
  position: absolute;
  border: 0;
  color: #fff;
  background: rgba(15, 23, 42, 0.55);
  cursor: pointer;
}

.single-product-lightbox__close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 1.8rem;
  line-height: 1;
}

.single-product-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 1.6rem;
}

.single-product-lightbox__nav--prev {
  left: 14px;
}

.single-product-lightbox__nav--next {
  right: 14px;
}

body.is-lightbox-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .single-product-gallery__zoom-btn {
    display: inline-flex;
    left: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
  }
  .single-product-lightbox__close {
    top: 10px;
    right: 10px;
  }
  .single-product-lightbox__nav {
    width: 44px;
    height: 44px;
  }
}
.single-product-long-image-card {
  margin: 24px 0;
}

.single-product-long-image-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

:root {
  --doobara-primary: #1570ef;
  --doobara-shadow: 0 20px 60px rgba(2, 12, 27, 0.18);
}

.contact-section {
  width: 100%;
  position: relative;
  padding: 100px 20px;
  background: radial-gradient(circle at top left, rgba(31, 182, 255, 0.18), transparent 30%), radial-gradient(circle at top right, rgba(21, 112, 239, 0.16), transparent 28%), linear-gradient(180deg, #f5f9ff 0%, #eef5ff 100%);
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.25;
}

.contact-shell {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.contact-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(21, 112, 239, 0.1);
  border: 1px solid rgba(21, 112, 239, 0.16);
  color: var(--doobara-primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.06;
  color: #08111f;
}

.contact-hero p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #0f172a;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}

.contact-card,
.contact-map-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  box-shadow: var(--doobara-shadow);
}

.contact-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.contact-card--primary {
  min-height: 320px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(239, 247, 255, 0.96) 100%);
  border: 1px solid rgba(21, 112, 239, 0.14);
}

.contact-card__glow {
  position: absolute;
  width: 240px;
  height: 240px;
  right: -60px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 182, 255, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.contact-card--location {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(246, 250, 255, 0.96) 100%);
}

.contact-card__top {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.icon-badge--phone {
  background: linear-gradient(135deg, #1570ef 0%, #1fb6ff 100%);
  color: #fff;
}

.icon-badge--whatsapp {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color: #fff;
}

.icon-badge--mail {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  margin-bottom: 20px;
}

.icon-badge--location {
  background: linear-gradient(135deg, #1570ef 0%, #38bdf8 100%);
  color: #fff;
  margin-bottom: 20px;
}

.contact-card h2 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  color: #0f172a;
}

.contact-card__desc {
  margin: 0 0 22px;
  font-size: 1rem;
  line-height: 1.75;
  color: #64748b;
  max-width: 52ch;
}

.contact-link {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  transition: color 0.25s ease;
  word-break: break-word;
}

.contact-link:hover {
  color: var(--doobara-primary);
}

.contact-link--number {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 14px 22px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.96rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
}

.contact-btn--dark {
  background: linear-gradient(135deg, #08111f 0%, #12233b 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(8, 17, 31, 0.2);
}

.contact-btn--whatsapp {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.2);
}

.contact-btn--outline {
  background: rgba(21, 112, 239, 0.08);
  color: var(--doobara-primary);
  border: 1px solid rgba(21, 112, 239, 0.14);
}

.contact-map-card {
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.86);
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  filter: saturate(1.05) contrast(1.02);
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-map-card iframe {
    min-height: 360px;
  }
}
@media (max-width: 640px) {
  .contact-section {
    padding: 72px 16px;
  }
  .contact-card {
    padding: 24px;
    border-radius: 22px;
  }
  .contact-map-card {
    border-radius: 22px;
  }
  .contact-hero {
    margin-bottom: 38px;
  }
  .contact-actions {
    flex-direction: column;
  }
  .contact-btn {
    width: 100%;
  }
  .contact-link--number {
    font-size: 1.2rem;
  }
  .contact-map-card iframe {
    min-height: 280px;
  }
}
:root {
  --account-bg: #f5f9ff;
  --account-surface: rgba(255, 255, 255, 0.84);
  --account-white: #ffffff;
  --account-text: #0f172a;
  --account-text-soft: #64748b;
  --account-primary: #331E6D;
  --account-primary-2: #4f2eaa;
  --account-dark: #331E6D;
  --account-border: rgba(21, 112, 239, 0.12);
  --account-danger: #dc2626;
  --account-success: #16a34a;
  --account-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --account-radius: 26px;
}

.account-page {
  position: relative;
  padding: 48px 20px 90px;
  background: radial-gradient(circle at top left, rgba(31, 182, 255, 0.12), transparent 24%), radial-gradient(circle at top right, rgba(21, 112, 239, 0.12), transparent 22%), linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
}

.account-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}

.account-shell {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.account-header {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 30px;
}

.account-header__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--account-primary);
  background: rgba(21, 112, 239, 0.08);
  border: 1px solid rgba(21, 112, 239, 0.12);
  margin-bottom: 16px;
}

.account-header h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  color: var(--account-dark);
}

.account-header p {
  margin: 0;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--account-text-soft);
}

.account-header__snippet {
  border-radius: var(--account-radius);
  background: var(--account-surface);
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: var(--account-shadow);
  padding: 22px;
}

.account-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.account-sidebar {
  position: sticky;
  top: 110px;
}

.account-sidebar__card,
.account-table-card,
.account-detail-card {
  border-radius: var(--account-radius);
  background: var(--account-surface);
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: var(--account-shadow);
}

.account-sidebar__card {
  padding: 22px;
}

.account-user-mini {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #e8eef7;
}

.account-user-mini__avatar {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--account-primary) 0%, var(--account-primary-2) 100%);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(21, 112, 239, 0.2);
}

.account-user-mini__meta strong {
  display: block;
  margin-bottom: 4px;
  color: var(--account-text);
  font-size: 1rem;
}

.account-user-mini__meta span {
  display: block;
  color: var(--account-text-soft);
  font-size: 0.9rem;
  word-break: break-word;
}

.account-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.account-nav__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  color: var(--account-text);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.account-nav__item:hover,
.account-nav__item.active {
  transform: translateY(-1px);
  background: rgba(21, 112, 239, 0.08);
  border-color: rgba(21, 112, 239, 0.12);
  color: var(--account-primary);
}

.account-nav__item--danger {
  color: var(--account-danger);
}

.account-nav__item--danger:hover {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.12);
  color: var(--account-danger);
}

.account-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.account-panel__header {
  margin-bottom: 16px;
}

.account-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--account-primary);
  background: rgba(21, 112, 239, 0.08);
  border: 1px solid rgba(21, 112, 239, 0.12);
  margin-bottom: 10px;
}

.account-panel__header h2 {
  margin: 0;
  font-size: 1.7rem;
  color: var(--account-text);
}

.account-table-card {
  padding: 20px;
}

.account-orders-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.account-order-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(246, 250, 255, 0.98) 100%);
  border: 1px solid #e7eff8;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.account-order-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.account-order-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.account-order-card__top h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--account-text);
}

.account-order-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.account-order-card__meta p {
  margin: 0;
  color: var(--account-text-soft);
  line-height: 1.6;
}

.account-order-status {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: capitalize;
  color: #0f172a;
  background: #eef2f7;
}

.account-order-status--processing {
  color: var(--account-success);
  background: rgba(22, 163, 74, 0.1);
}

.account-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: none;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
  box-sizing: border-box;
}

.account-btn:hover {
  transform: translateY(-2px);
}

.account-btn--primary {
  background: linear-gradient(135deg, var(--account-primary) 0%, var(--account-primary-2) 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(21, 112, 239, 0.18);
}

.account-btn--dark {
  background: linear-gradient(135deg, #292826 0%, #331E6D 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(8, 17, 32, 0.16);
}

.account-btn--outline {
  background: rgba(21, 112, 239, 0.08);
  color: var(--account-primary);
  border: 1px solid rgba(21, 112, 239, 0.12);
}

.account-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.account-detail-card {
  padding: 26px;
}

.account-detail-card h3 {
  margin: 0 0 18px;
  font-size: 1.35rem;
  color: var(--account-text);
}

.account-detail-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #e9f0f8;
}

.account-detail-row span {
  color: var(--account-text-soft);
}

.account-detail-row strong {
  color: var(--account-text);
  word-break: break-word;
  text-align: right;
}

.account-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.account-address-box {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(246, 250, 255, 0.98) 100%);
  border: 1px solid #e7eff8;
  margin-bottom: 18px;
}

.account-address-box__name {
  margin: 0 0 10px;
  font-weight: 800;
  color: var(--account-text);
}

.account-address-box__name span {
  font-weight: 600;
  color: var(--account-text-soft);
}

.account-address-box p {
  margin: 0 0 8px;
  line-height: 1.7;
  color: var(--account-text-soft);
}

.account-address-box--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  text-align: center;
}

@media (max-width: 1100px) {
  .account-header {
    grid-template-columns: 1fr;
  }
  .account-layout {
    grid-template-columns: 1fr;
  }
  .account-sidebar {
    position: static;
  }
}
@media (max-width: 760px) {
  .account-order-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .account-order-card__action,
  .account-order-card__action form,
  .account-order-card__action .account-btn {
    width: 100%;
  }
  .account-details-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .account-page {
    padding: 36px 16px 72px;
  }
  .account-header__snippet,
  .account-sidebar__card,
  .account-table-card,
  .account-detail-card {
    border-radius: 22px;
  }
  .account-table-card,
  .account-detail-card,
  .account-sidebar__card {
    padding: 18px;
  }
  .account-detail-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .account-detail-row strong {
    text-align: left;
  }
  .account-detail-actions {
    flex-direction: column;
  }
  .account-detail-actions .account-btn,
  .account-btn--primary {
    width: 100%;
  }
}
:root {
  --auth-bg: #f5f9ff;
  --auth-surface: rgba(255, 255, 255, 0.86);
  --auth-white: #ffffff;
  --auth-text: #0f172a;
  --auth-text-soft: #64748b;
  --auth-primary: #331E6D;
  --auth-primary-2: #4f2eaa;
  --auth-dark: #331E6D;
  --auth-border: rgba(21, 112, 239, 0.12);
  --auth-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --auth-radius: 28px;
}

.auth-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 28px 20px 56px;
  min-height: 100vh;
  z-index: 1;
}

/* background layer */
/* subtle grid texture */
.auth-container::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

/* messages wrapper: targets the first plain div inside auth-container */
.auth-container > div:first-child {
  max-width: 820px;
  margin: 0 auto 22px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(21, 112, 239, 0.12);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

/* messages title */
.auth-container > div:first-child > strong {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1570ef;
}

/* message list */
.auth-container > div:first-child ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* each message */
.auth-container > div:first-child ul li {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(21, 112, 239, 0.07);
  border: 1px solid rgba(21, 112, 239, 0.1);
  color: #0f172a;
  font-weight: 600;
  line-height: 1.6;
}

/* spacing for inner auth content inserted by child templates */
.auth-container > *:not(:first-child),
.auth-container > form,
.auth-container > section,
.auth-container > .auth-shell,
.auth-container > .login,
.auth-container > .signup {
  position: relative;
  z-index: 1;
}

.auth-page {
  position: relative;
  min-height: 100vh;
  padding: 40px 20px 80px;
}

.auth-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}

.auth-shell {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.auth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  min-height: 760px;
}

.auth-brand-panel,
.auth-card {
  border-radius: var(--auth-radius);
  background: var(--auth-surface);
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: var(--auth-shadow);
}

.auth-brand-panel {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(circle at top left, rgba(31, 182, 255, 0.18), transparent 34%), linear-gradient(135deg, #081120 0%, #10233f 55%, #1570ef 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.auth-brand-panel::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

.auth-brand-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 18px;
}

.auth-brand-panel h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
}

.auth-brand-panel p {
  margin: 0;
  max-width: 52ch;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
}

.auth-brand-panel__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
}

.auth-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.auth-feature i {
  width: 20px;
  text-align: center;
  color: #93c5fd;
}

.auth-card {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-card__header {
  margin-bottom: 22px;
}

.auth-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 6px;
  margin-bottom: 26px;
  border-radius: 18px;
  background: rgba(21, 112, 239, 0.06);
  border: 1px solid rgba(21, 112, 239, 0.08);
}

.auth-switch__item {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  color: var(--auth-text-soft);
  transition: all 0.22s ease;
}

.auth-switch__item:hover {
  color: var(--auth-primary);
}

.auth-switch__item--active {
  background: linear-gradient(135deg, var(--auth-primary) 0%, var(--auth-primary-2) 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(21, 112, 239, 0.16);
}

.auth-card h2 {
  margin: 0 0 10px;
  font-size: 2rem;
  color: var(--auth-text);
}

.auth-card__header p {
  margin: 0;
  line-height: 1.75;
  color: var(--auth-text-soft);
}

.auth-social {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.auth-social__btn {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid #e5edf7;
  background: #fff;
  color: var(--auth-text);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.auth-social__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.auth-social__btn img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}

.auth-divider {
  position: relative;
  text-align: center;
  margin: 8px 0 24px;
}

.auth-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e7eff8;
}

.auth-divider span {
  position: relative;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--auth-text-soft);
  font-size: 0.9rem;
}

.auth-form__fields p {
  margin: 0 0 14px;
}

.auth-form__fields label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--auth-text);
}

.auth-form__fields input:not([type=checkbox]):not([type=radio]),
.auth-form__fields select,
.auth-form__fields textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid #dbe7f3;
  background: var(--auth-white);
  color: var(--auth-text);
  font: inherit;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-form__fields textarea {
  min-height: 120px;
  padding: 16px;
}

.auth-form__fields input:focus,
.auth-form__fields select:focus,
.auth-form__fields textarea:focus {
  border-color: rgba(21, 112, 239, 0.45);
  box-shadow: 0 0 0 4px rgba(21, 112, 239, 0.08);
}

.auth-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
}

.auth-form__footer--single {
  justify-content: stretch;
}

.auth-forgot-link {
  text-decoration: none;
  font-weight: 600;
  color: var(--auth-primary);
}

.auth-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  border: none;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
  box-sizing: border-box;
  background: linear-gradient(135deg, var(--auth-dark) 0%, #10233f 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(8, 17, 32, 0.18);
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.auth-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(8, 17, 32, 0.22);
}

.auth-form__footer--single .auth-submit-btn {
  width: 100%;
}

.auth-bottom-note {
  margin-top: 20px;
  text-align: center;
}

.auth-bottom-note p {
  margin: 0;
  color: var(--auth-text-soft);
  line-height: 1.7;
}

.auth-bottom-note a {
  color: var(--auth-primary);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 980px) {
  .auth-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .auth-brand-panel {
    min-height: 320px;
  }
}
@media (max-width: 640px) {
  .auth-container {
    padding: 18px 16px 40px;
  }
  .auth-container > div:first-child {
    margin-bottom: 16px;
    padding: 14px;
    border-radius: 16px;
  }
  .auth-container > div:first-child ul li {
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.95rem;
  }
  .auth-page {
    padding: 24px 16px 56px;
  }
  .auth-brand-panel,
  .auth-card {
    border-radius: 22px;
  }
  .auth-brand-panel,
  .auth-card {
    padding: 22px;
  }
  .auth-form__footer {
    flex-direction: column;
    align-items: stretch;
  }
  .auth-submit-btn {
    width: 100%;
  }
  .auth-switch {
    margin-bottom: 20px;
  }
}
.auth-container {
  width: 100%;
  max-width: 800px;
  margin: 5px auto;
  padding: 10px;
}

.socialaccount_providers {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: stretch;
}
.socialaccount_providers * {
  margin-right: 10px;
}

#logout-container {
  padding-bottom: 20%;
}

#email-change-container .ctrlHolder input[type=radio] {
  width: 5%;
}

#singup-secondary-button {
  background-color: #F9D342;
  color: #292826;
  font-weight: 700;
}

#singup-secondary-button:hover {
  font-weight: 800;
}

#login-container #id_remember, #signup-container #id_remember {
  width: 2%;
}
#login-container .secondaryAction, #signup-container .secondaryAction {
  display: block;
}

@media screen and (max-width: 850px) {
  #id_remember {
    width: 10% !important;
  }
  .socialaccount_providers {
    display: flex;
    flex-direction: column;
  }
}
:root {
  --success-bg: #f5f9ff;
  --success-surface: rgba(255, 255, 255, 0.86);
  --success-white: #ffffff;
  --success-text: #0f172a;
  --success-text-soft: #64748b;
  --success-primary: #1570ef;
  --success-primary-2: #1fb6ff;
  --success-dark: #081120;
  --success-success: #16a34a;
  --success-border: rgba(21, 112, 239, 0.12);
  --success-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --success-radius: 28px;
}

.order-success-page {
  position: relative;
  min-height: 70vh;
  padding: 56px 20px 90px;
  background: radial-gradient(circle at top left, rgba(31, 182, 255, 0.12), transparent 24%), radial-gradient(circle at top right, rgba(21, 112, 239, 0.12), transparent 22%), linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
}

.order-success-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}

.order-success-shell {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
}

.order-success-card {
  padding: 42px;
  border-radius: var(--success-radius);
  background: var(--success-surface);
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: var(--success-shadow);
  text-align: center;
}

.order-success-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 18px 36px rgba(22, 163, 74, 0.2);
}

.order-success-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--success-primary);
  background: rgba(21, 112, 239, 0.08);
  border: 1px solid rgba(21, 112, 239, 0.12);
}

.order-success-card h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  color: var(--success-dark);
}

.order-success-lead {
  max-width: 56ch;
  margin: 0 auto 28px;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--success-text-soft);
}

.order-success-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
  text-align: left;
}

.order-success-meta__item {
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(246, 250, 255, 0.98) 100%);
  border: 1px solid #e7eff8;
}

.order-success-meta__item span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--success-text-soft);
}

.order-success-meta__item strong {
  color: var(--success-text);
  font-size: 1.02rem;
  line-height: 1.5;
  word-break: break-word;
}

.order-success-status {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  width: -moz-fit-content;
  width: fit-content;
}

.order-success-status--processing {
  color: var(--success-success);
  background: rgba(22, 163, 74, 0.1);
}

.order-success-status--pending {
  color: #b45309;
  background: rgba(245, 158, 11, 0.12);
}

.order-success-message {
  margin-bottom: 28px;
}

.order-success-message p {
  margin: 0;
  color: var(--success-text-soft);
  line-height: 1.8;
  font-size: 1rem;
}

.order-success-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.order-success-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.order-success-btn:hover {
  transform: translateY(-2px);
}

.order-success-btn--dark {
  background: linear-gradient(135deg, #081120 0%, #10233f 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(8, 17, 32, 0.18);
}

.order-success-btn--outline {
  background: rgba(21, 112, 239, 0.08);
  color: var(--success-primary);
  border: 1px solid rgba(21, 112, 239, 0.12);
}

@media (max-width: 640px) {
  .order-success-page {
    padding: 36px 16px 72px;
  }
  .order-success-card {
    padding: 24px 18px;
    border-radius: 22px;
  }
  .order-success-meta {
    grid-template-columns: 1fr;
  }
  .order-success-actions {
    flex-direction: column;
  }
  .order-success-btn {
    width: 100%;
  }
}
#view-order {
  padding: 5% 10% 10% 10%;
}
#view-order .highlight {
  font-weight: 800;
}
#view-order p {
  padding: 1px;
  margin: 0;
}
#view-order table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
#view-order table th {
  padding: 15px 0 15px 20px;
}
#view-order table td {
  padding: 15px 0 15px 20px;
}

.address-settings-page {
  padding: 44px 20px 80px;
}

.address-settings-shell {
  max-width: 960px;
  margin: 0 auto;
}

.address-settings-header {
  margin-bottom: 24px;
}

.address-settings-eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--account-primary);
  background: rgba(21, 112, 239, 0.08);
  border: 1px solid rgba(21, 112, 239, 0.12);
}

.address-settings-header h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  color: var(--account-dark);
}

.address-settings-header p {
  margin: 0;
  color: var(--account-text-soft);
  line-height: 1.8;
  max-width: 58ch;
}

.address-settings-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.address-settings-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--account-surface);
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: var(--account-shadow);
}

.address-settings-card__header {
  margin-bottom: 14px;
}

.address-settings-card__header h2 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--account-text);
}

.address-settings-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.address-settings-row + .address-settings-row {
  margin-top: 14px;
}

.address-settings-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(246, 250, 255, 0.98) 100%);
  border: 1px solid #e7eff8;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.address-settings-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  border-color: rgba(21, 112, 239, 0.16);
}

.address-settings-item.is-default {
  border-color: rgba(21, 112, 239, 0.22);
}

.address-settings-item__content {
  min-width: 0;
}

.address-settings-item__top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.address-settings-name {
  margin: 0;
  color: var(--account-text);
  line-height: 1.7;
}

.address-settings-name span {
  font-weight: 800;
  margin-right: 8px;
}

.address-settings-item__content p {
  margin: 0 0 6px;
  color: var(--account-text-soft);
  line-height: 1.7;
}

.address-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
}

.address-badge--primary {
  color: var(--account-primary);
  background: rgba(21, 112, 239, 0.1);
}

.address-settings-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 150px;
}

.address-settings-footer {
  margin-top: 20px;
}

.address-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: none;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.address-btn:hover {
  transform: translateY(-2px);
}

.address-btn--primary {
  background: linear-gradient(135deg, var(--account-primary) 0%, var(--account-primary-2) 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(21, 112, 239, 0.18);
}

.address-btn--outline {
  background: rgba(21, 112, 239, 0.08);
  color: var(--account-primary);
  border: 1px solid rgba(21, 112, 239, 0.12);
}

.address-btn--dark {
  background: linear-gradient(135deg, #081120 0%, #10233f 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(8, 17, 32, 0.16);
}

@media (max-width: 640px) {
  .address-settings-page {
    padding: 28px 16px 64px;
  }
  .address-settings-card {
    padding: 18px;
    border-radius: 20px;
  }
  .address-settings-item {
    flex-direction: column;
    padding: 16px;
    border-radius: 16px;
  }
  .address-settings-actions {
    min-width: 0;
  }
  .address-settings-actions form,
  .address-settings-actions div,
  .address-btn {
    width: 100%;
  }
}
.address-form-page {
  padding: 44px 20px 80px;
}

.address-form-shell {
  max-width: 760px;
  margin: 0 auto;
}

.address-form-header {
  margin-bottom: 24px;
}

.address-form-eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--account-primary);
  background: rgba(21, 112, 239, 0.08);
  border: 1px solid rgba(21, 112, 239, 0.12);
}

.address-form-header h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  color: var(--account-dark);
}

.address-form-header p {
  margin: 0;
  color: var(--account-text-soft);
  line-height: 1.8;
  max-width: 56ch;
}

.address-form-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--account-surface);
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: var(--account-shadow);
}

.address-edit-form__fields {
  display: grid;
  gap: 16px;
}

.address-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--account-text);
}

.address-field input,
.address-field select,
.address-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid #dbe7f3;
  background: #fff;
  color: var(--account-text);
  font: inherit;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.address-field textarea {
  min-height: 120px;
  padding: 16px;
  resize: vertical;
}

.address-field input:focus,
.address-field select:focus,
.address-field textarea:focus {
  border-color: rgba(21, 112, 239, 0.45);
  box-shadow: 0 0 0 4px rgba(21, 112, 239, 0.08);
}

.address-form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.address-form-actions--separated {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #e8eef7;
}

.address-form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.address-form-btn:hover {
  transform: translateY(-2px);
}

.address-form-btn--primary {
  background: linear-gradient(135deg, var(--account-primary) 0%, var(--account-primary-2) 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(21, 112, 239, 0.18);
}

.address-form-btn--danger {
  background: rgba(220, 38, 38, 0.08);
  color: #b91c1c;
  border: 1px solid rgba(220, 38, 38, 0.14);
}

@media (max-width: 640px) {
  .address-form-page {
    padding: 28px 16px 64px;
  }
  .address-form-card {
    padding: 18px;
    border-radius: 20px;
  }
  .address-form-actions {
    flex-direction: column;
  }
  .address-form-btn {
    width: 100%;
  }
}
:root {
  --order-bg: #f5f9ff;
  --order-surface: rgba(255, 255, 255, 0.84);
  --order-white: #ffffff;
  --order-text: #0f172a;
  --order-text-soft: #64748b;
  --order-primary: #1570ef;
  --order-primary-2: #1fb6ff;
  --order-dark: #081120;
  --order-border: rgba(21, 112, 239, 0.12);
  --order-success: #16a34a;
  --order-warning: #f59e0b;
  --order-danger: #dc2626;
  --order-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --order-radius: 26px;
}

.order-view-page {
  position: relative;
  padding: 48px 20px 90px;
  background: radial-gradient(circle at top left, rgba(31, 182, 255, 0.12), transparent 24%), radial-gradient(circle at top right, rgba(21, 112, 239, 0.12), transparent 22%), linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
}

.order-view-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}

.order-view-shell {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.order-view-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.order-view-header__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--order-primary);
  background: rgba(21, 112, 239, 0.08);
  border: 1px solid rgba(21, 112, 239, 0.12);
}

.order-view-header h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  color: var(--order-dark);
}

.order-view-header p {
  margin: 0;
  color: var(--order-text-soft);
  line-height: 1.8;
}

.order-view-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  color: var(--order-primary);
  background: rgba(21, 112, 239, 0.08);
  border: 1px solid rgba(21, 112, 239, 0.12);
  transition: transform 0.22s ease, background 0.22s ease;
}

.order-view-back-btn:hover {
  transform: translateY(-2px);
}

.order-view-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.order-meta-card,
.order-view-card {
  border-radius: var(--order-radius);
  background: var(--order-surface);
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: var(--order-shadow);
}

.order-meta-card {
  padding: 20px;
}

.order-meta-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--order-text-soft);
}

.order-meta-card strong {
  font-size: 1.08rem;
  color: var(--order-text);
}

.order-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
}

.order-status-badge--processing {
  color: var(--order-success);
  background: rgba(22, 163, 74, 0.1);
}

.order-status-badge--pending {
  color: var(--order-warning);
  background: rgba(245, 158, 11, 0.12);
}

.order-status-badge--cancelled,
.order-status-badge--canceled {
  color: var(--order-danger);
  background: rgba(220, 38, 38, 0.1);
}

.order-view-card {
  padding: 24px;
}

.order-view-card__header {
  margin-bottom: 18px;
}

.order-view-card__header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--order-text);
}

.order-items-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.order-item-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(246, 250, 255, 0.98) 100%);
  border: 1px solid #e7eff8;
}

.order-item-row__product h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.45;
}

.order-item-row__product a {
  color: var(--order-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.order-item-row__product a:hover {
  color: var(--order-primary);
}

.order-item-row__meta {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.order-item-cell {
  min-width: 110px;
}

.order-item-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--order-text-soft);
}

.order-item-cell strong {
  color: var(--order-text);
  font-size: 1rem;
}

.order-view-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e8eef7;
}

.order-view-total span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--order-text-soft);
}

.order-view-total strong {
  font-size: 1.3rem;
  color: var(--order-primary);
}

@media (max-width: 980px) {
  .order-view-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .order-item-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .order-item-row__meta {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }
}
@media (max-width: 640px) {
  .order-view-page {
    padding: 36px 16px 72px;
  }
  .order-view-header {
    flex-direction: column;
  }
  .order-view-back-btn {
    width: 100%;
  }
  .order-view-meta {
    grid-template-columns: 1fr;
  }
  .order-meta-card,
  .order-view-card {
    border-radius: 22px;
  }
  .order-view-card {
    padding: 18px;
  }
  .order-item-row {
    padding: 16px;
    border-radius: 18px;
  }
  .order-item-row__meta {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .order-item-cell {
    min-width: auto;
    width: 100%;
  }
  .order-view-total strong {
    font-size: 1.15rem;
  }
}
.email-settings-page {
  padding: 44px 20px 80px;
}

.email-settings-shell {
  max-width: 900px;
  margin: 0 auto;
}

.email-settings-header {
  margin-bottom: 24px;
}

.email-settings-eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--account-primary);
  background: rgba(21, 112, 239, 0.08);
  border: 1px solid rgba(21, 112, 239, 0.12);
}

.email-settings-header h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  color: var(--account-dark);
}

.email-settings-header p {
  margin: 0;
  color: var(--account-text-soft);
  line-height: 1.8;
  max-width: 58ch;
}

.email-settings-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.email-settings-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--account-surface);
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: var(--account-shadow);
}

.email-settings-card__header {
  margin-bottom: 14px;
}

.email-settings-card__header h2 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--account-text);
}

.email-settings-intro {
  margin: 0 0 16px;
  color: var(--account-text-soft);
  line-height: 1.75;
}

.email-settings-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.email-settings-row + .email-settings-row {
  margin-top: 12px;
}

.email-settings-option {
  display: block;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(246, 250, 255, 0.98) 100%);
  border: 1px solid #e7eff8;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.email-settings-option:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  border-color: rgba(21, 112, 239, 0.16);
}

.email-settings-option.is-primary {
  border-color: rgba(21, 112, 239, 0.22);
}

.email-settings-option__left {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.email-settings-option input[type=radio] {
  margin-top: 4px;
  accent-color: var(--account-primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.email-settings-option__content {
  min-width: 0;
}

.email-settings-address {
  display: block;
  margin-bottom: 10px;
  color: var(--account-text);
  font-size: 1rem;
  word-break: break-word;
}

.email-settings-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.email-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
}

.email-badge--primary {
  color: var(--account-primary);
  background: rgba(21, 112, 239, 0.1);
}

.email-badge--success {
  color: #15803d;
  background: rgba(22, 163, 74, 0.1);
}

.email-badge--warning {
  color: #b45309;
  background: rgba(245, 158, 11, 0.12);
}

.email-settings-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.email-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: none;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.email-btn:hover {
  transform: translateY(-2px);
}

.email-btn--primary {
  background: linear-gradient(135deg, var(--account-primary) 0%, var(--account-primary-2) 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(21, 112, 239, 0.18);
}

.email-btn--outline {
  background: rgba(21, 112, 239, 0.08);
  color: var(--account-primary);
  border: 1px solid rgba(21, 112, 239, 0.12);
}

.email-btn--dark {
  background: linear-gradient(135deg, #081120 0%, #10233f 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(8, 17, 32, 0.16);
}

.email-btn--danger {
  background: rgba(220, 38, 38, 0.08);
  color: #b91c1c;
  border: 1px solid rgba(220, 38, 38, 0.14);
}

.email-settings-notice {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.14);
  color: #92400e;
  line-height: 1.7;
}

.email-add-form__fields p {
  margin: 0 0 14px;
}

.email-add-form__fields label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--account-text);
}

.email-add-form__fields input,
.email-add-form__fields select,
.email-add-form__fields textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid #dbe7f3;
  background: #fff;
  color: var(--account-text);
  font: inherit;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.email-add-form__fields textarea {
  min-height: 120px;
  padding: 16px;
}

.email-add-form__fields input:focus,
.email-add-form__fields select:focus,
.email-add-form__fields textarea:focus {
  border-color: rgba(21, 112, 239, 0.45);
  box-shadow: 0 0 0 4px rgba(21, 112, 239, 0.08);
}

.email-add-form__fields input[type=checkbox],
.email-add-form__fields input[type=radio] {
  width: 18px;
  min-height: auto;
  height: 18px;
  padding: 0;
  margin: 0 8px 0 0;
  box-shadow: none;
  accent-color: var(--account-primary);
  vertical-align: middle;
}

@media (max-width: 640px) {
  .email-settings-page {
    padding: 28px 16px 64px;
  }
  .email-settings-card {
    padding: 18px;
    border-radius: 20px;
  }
  .email-settings-actions {
    flex-direction: column;
  }
  .email-btn {
    width: 100%;
  }
  .email-settings-option {
    padding: 14px;
    border-radius: 16px;
  }
}
.password-settings-page {
  padding: 44px 20px 80px;
}

.password-settings-shell {
  max-width: 680px;
  margin: 0 auto;
}

.password-settings-card {
  padding: 28px;
  border-radius: 24px;
  background: var(--account-surface);
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: var(--account-shadow);
}

.password-settings-header {
  margin-bottom: 20px;
}

.password-settings-eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--account-primary);
  background: rgba(21, 112, 239, 0.08);
  border: 1px solid rgba(21, 112, 239, 0.12);
}

.password-settings-header h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.08;
  color: var(--account-dark);
}

.password-settings-header p {
  margin: 0;
  color: var(--account-text-soft);
  line-height: 1.8;
}

.password-settings-form__fields p {
  margin: 0 0 14px;
}

.password-settings-form__fields label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--account-text);
}

.password-settings-form__fields input,
.password-settings-form__fields select,
.password-settings-form__fields textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid #dbe7f3;
  background: #fff;
  color: var(--account-text);
  font: inherit;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.password-settings-form__fields textarea {
  min-height: 120px;
  padding: 16px;
}

.password-settings-form__fields input:focus,
.password-settings-form__fields select:focus,
.password-settings-form__fields textarea:focus {
  border-color: rgba(21, 112, 239, 0.45);
  box-shadow: 0 0 0 4px rgba(21, 112, 239, 0.08);
}

.password-settings-form__fields input[type=checkbox],
.password-settings-form__fields input[type=radio] {
  width: 18px;
  min-height: auto;
  height: 18px;
  padding: 0;
  margin: 0 8px 0 0;
  box-shadow: none;
  accent-color: var(--account-primary);
  vertical-align: middle;
}

.password-settings-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.password-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.password-btn:hover {
  transform: translateY(-2px);
}

.password-btn--primary {
  background: linear-gradient(135deg, var(--account-primary) 0%, var(--account-primary-2) 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(21, 112, 239, 0.18);
}

.password-btn--outline {
  background: rgba(21, 112, 239, 0.08);
  color: var(--account-primary);
  border: 1px solid rgba(21, 112, 239, 0.12);
}

.password-settings-info {
  margin-bottom: 16px;
}

.password-settings-note {
  margin-top: 18px;
}

.password-settings-note p {
  margin: 0;
  color: var(--account-text-soft);
  line-height: 1.75;
}

.password-settings-actions input[type=submit].password-btn {
  border: none;
  cursor: pointer;
}

.password-settings-info {
  margin-bottom: 16px;
}

.password-settings-note {
  margin-top: 18px;
}

.password-settings-note p {
  margin: 0;
  color: var(--account-text-soft);
  line-height: 1.75;
}

@media (max-width: 640px) {
  .password-settings-page {
    padding: 28px 16px 64px;
  }
  .password-settings-card {
    padding: 18px;
    border-radius: 20px;
  }
  .password-settings-actions {
    flex-direction: column;
  }
  .password-btn {
    width: 100%;
  }
}
.logout-page {
  padding: 44px 20px 80px;
}

.logout-shell {
  max-width: 640px;
  margin: 0 auto;
}

.logout-card {
  margin-top: 18px;
  padding: 24px;
  border-radius: 24px;
  background: var(--account-surface);
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: var(--account-shadow);
}

.logout-header {
  margin-bottom: 18px;
}

.logout-eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--account-primary);
  background: rgba(21, 112, 239, 0.08);
  border: 1px solid rgba(21, 112, 239, 0.12);
}

.logout-header h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.08;
  color: var(--account-dark);
}

.logout-header p {
  margin: 0;
  color: var(--account-text-soft);
  line-height: 1.8;
}

.logout-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.logout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.logout-btn:hover {
  transform: translateY(-2px);
}

.logout-btn--danger {
  background: rgba(220, 38, 38, 0.08);
  color: #b91c1c;
  border: 1px solid rgba(220, 38, 38, 0.14);
}

@media (max-width: 640px) {
  .logout-page {
    padding: 28px 16px 64px;
  }
  .logout-card {
    padding: 18px;
    border-radius: 20px;
  }
  .logout-btn {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */