:root {
  --exora-bg: #050505;
  --exora-bg-soft: #0a0a0b;
  --exora-card: rgba(15, 15, 17, 0.74);
  --exora-card-strong: rgba(20, 20, 23, 0.92);
  --exora-line: rgba(255, 255, 255, 0.10);
  --exora-line-strong: rgba(255, 255, 255, 0.18);
  --exora-text: #f5f5f5;
  --exora-muted: rgba(255, 255, 255, 0.62);
  --exora-faint: rgba(255, 255, 255, 0.38);
  --exora-glow: rgba(255, 255, 255, 0.18);
  --exora-radius: 24px;
}
html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.08), transparent 28rem),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.05), transparent 24rem),
    var(--exora-bg) !important;
  color: var(--exora-text) !important;
  overflow-x: hidden;
}
body.exora-menu-open { overflow: hidden; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 70%);
  z-index: -1;
}
header.sticky-top { backdrop-filter: blur(18px); }
.exora-navbar {
  padding: 18px 0;
  border-bottom: 1px solid var(--exora-line);
  background: rgba(5,5,5,.72);
}
.exora-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.exora-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--exora-text);
  text-decoration: none;
  font-weight: 750;
  letter-spacing: -.03em;
}
.exora-brand:hover { color: #fff; }
.exora-brand img,
.exora-brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  object-fit: cover;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #fff, #8e8e8e);
  color: #060606;
  box-shadow: 0 0 32px rgba(255,255,255,.16);
}
.exora-nav-actions { display: flex; align-items: center; gap: 12px; }
.exora-currency-selector { min-width: 82px; }
.exora-menu-toggle,
.exora-menu-close {
  border: 1px solid var(--exora-line);
  background: rgba(255,255,255,.045);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .55s cubic-bezier(.16,1,.3,1), border-color .55s, background .55s, box-shadow .55s;
}
.exora-menu-toggle { flex-direction: column; gap: 5px; }
.exora-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .55s cubic-bezier(.16,1,.3,1), opacity .55s;
}
.exora-menu-toggle:hover,
.exora-menu-close:hover {
  transform: translateY(-2px);
  border-color: var(--exora-line-strong);
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 32px rgba(255,255,255,.10);
}
.exora-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1080;
  background: rgba(0,0,0,.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity .72s cubic-bezier(.16,1,.3,1);
  backdrop-filter: blur(0px);
}
.exora-side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(430px, calc(100vw - 24px));
  height: 100dvh;
  z-index: 1090;
  padding: 28px;
  background: rgba(8,8,9,.92);
  border-left: 1px solid var(--exora-line);
  box-shadow: -40px 0 120px rgba(0,0,0,.48);
  backdrop-filter: blur(24px);
  transform: translateX(105%);
  transition: transform .82s cubic-bezier(.16,1,.3,1);
  display: flex;
  flex-direction: column;
}
body.exora-menu-open .exora-menu-overlay { opacity: 1; pointer-events: auto; backdrop-filter: blur(8px); }
body.exora-menu-open .exora-side-menu { transform: translateX(0); }
.exora-side-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; margin-bottom: 34px; }
.exora-side-head h3 { margin: 0; font-size: 1.45rem; letter-spacing: -.04em; }
.exora-eyebrow, .exora-kicker {
  color: var(--exora-muted);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 700;
}
.exora-side-links { display: flex; flex-direction: column; gap: 10px; }
.exora-side-links a,
.exora-side-links button {
  width: 100%;
  border: 1px solid var(--exora-line);
  background: rgba(255,255,255,.035);
  color: var(--exora-text);
  text-decoration: none;
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 650;
  transition: transform .55s cubic-bezier(.16,1,.3,1), background .55s, border-color .55s, box-shadow .55s;
}
.exora-side-links a:hover,
.exora-side-links button:hover {
  transform: translateX(-5px);
  border-color: var(--exora-line-strong);
  background: rgba(255,255,255,.075);
  box-shadow: 0 0 34px rgba(255,255,255,.08);
}
.exora-cart-pill {
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #f5f5f5;
  color: #050505;
  font-size: .82rem;
}
.exora-side-footer {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--exora-faint);
  font-size: .84rem;
}
.exora-side-footer span { border: 1px solid var(--exora-line); border-radius: 999px; padding: 8px 12px; }
.exora-landing { position: relative; padding: 150px 0 58px; min-height: auto; overflow: hidden; }
.exora-glow { position: absolute; border-radius: 999px; filter: blur(70px); opacity: .68; pointer-events: none; }
.exora-glow-one { width: 520px; height: 520px; left: 50%; top: 10px; transform: translateX(-50%); background: rgba(255,255,255,.09); }
.exora-glow-two { width: 300px; height: 300px; right: 8%; top: 220px; background: rgba(180,180,180,.065); }
.exora-hero-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 42px; align-items: center; }
.exora-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.exora-kicker span { width: 34px; height: 1px; background: rgba(255,255,255,.38); }
.exora-hero-copy h1,
.exora-page-hero h1 {
  font-size: clamp(3.3rem, 8vw, 6.6rem);
  line-height: .9;
  letter-spacing: -.085em;
  margin-bottom: 24px;
}
.exora-hero-copy p,
.exora-page-hero p {
  max-width: 680px;
  color: var(--exora-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}
.exora-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.exora-btn,
.btn-primary,
.btn-outline-primary,
.btn-outline,
.btn {
  border-radius: 999px !important;
  transition: transform .55s cubic-bezier(.16,1,.3,1), box-shadow .55s, border-color .55s, background .55s, color .55s;
}
.exora-btn { padding: 15px 24px; text-decoration: none; font-weight: 750; display: inline-flex; align-items: center; justify-content: center; min-width: 150px; }
.exora-btn-primary,
.btn-primary {
  background: #f4f4f4 !important;
  color: #060606 !important;
  border: 1px solid #f4f4f4 !important;
}
.exora-btn-secondary,
.btn-outline-primary,
.btn-outline {
  background: rgba(255,255,255,.035) !important;
  color: #fff !important;
  border: 1px solid var(--exora-line-strong) !important;
}
.exora-btn:hover,
.btn:hover { transform: translateY(-3px); box-shadow: 0 0 38px rgba(255,255,255,.12); }
.exora-hero-panel { position: relative; min-height: 440px; display: grid; place-items: center; }
.exora-panel-orbit { position: absolute; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: inset 0 0 55px rgba(255,255,255,.04), 0 0 90px rgba(255,255,255,.06); animation: exoraFloat 7s ease-in-out infinite; }
.exora-terminal-card {
  position: relative;
  width: min(420px, 100%);
  border: 1px solid var(--exora-line-strong);
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.025));
  border-radius: 30px;
  padding: 22px;
  box-shadow: 0 30px 100px rgba(0,0,0,.34), 0 0 70px rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
}
.exora-terminal-top { display: flex; gap: 8px; padding-bottom: 18px; border-bottom: 1px solid var(--exora-line); margin-bottom: 14px; }
.exora-terminal-top span { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,.34); }
.exora-terminal-line { display: flex; justify-content: space-between; gap: 14px; padding: 14px 0; color: var(--exora-muted); border-bottom: 1px solid rgba(255,255,255,.06); }
.exora-terminal-line strong { color: #fff; }
.exora-terminal-code { margin-top: 18px; border-radius: 18px; background: rgba(0,0,0,.33); border: 1px solid var(--exora-line); color: rgba(255,255,255,.74); padding: 16px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.exora-trust-bar {
  margin-top: 58px;
  border: 1px solid var(--exora-line);
  border-radius: 28px;
  background: rgba(255,255,255,.04);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  backdrop-filter: blur(16px);
}
.exora-trust-bar div { padding: 24px; display: flex; flex-direction: column; gap: 4px; border-right: 1px solid var(--exora-line); }
.exora-trust-bar div:last-child { border-right: 0; }
.exora-trust-bar strong { font-size: clamp(1.7rem, 3vw, 2.55rem); letter-spacing: -.05em; }
.exora-trust-bar span { color: var(--exora-muted); }
.exora-section { padding: 78px 0 96px; }
.exora-landing-clean { text-align: center; }
.exora-hero-clean { max-width: 960px; margin-inline: auto; }
.exora-hero-clean .exora-hero-copy { display: flex; flex-direction: column; align-items: center; }
.exora-hero-clean .exora-kicker { justify-content: center; }
.exora-hero-clean .exora-hero-copy p { margin-inline: auto; }
.exora-hero-clean .exora-hero-actions { justify-content: center; }
.exora-hero-pills { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.exora-hero-pills span { border: 1px solid var(--exora-line); background: rgba(255,255,255,.035); color: var(--exora-muted); border-radius: 999px; padding: 10px 14px; font-size: .86rem; }
.exora-section-head-center { text-align: center; margin-left: auto; margin-right: auto; }
.exora-feature-grid-clean { max-width: 1080px; margin-inline: auto; }
.exora-section-head { max-width: 720px; margin-bottom: 28px; }
.exora-section-head h2 { font-size: clamp(2.25rem, 5vw, 4.2rem); letter-spacing: -.07em; line-height: .95; }
.exora-feature-grid,
.exora-payment-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.exora-payment-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.exora-feature-card,
.exora-payment-card,
.card,
.bg-gray,
.modal-content {
  background: var(--exora-card) !important;
  border: 1px solid var(--exora-line) !important;
  border-radius: var(--exora-radius) !important;
  box-shadow: 0 22px 70px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
}
.exora-feature-card,
.exora-payment-card { padding: 26px; min-height: 250px; transition: transform .65s cubic-bezier(.16,1,.3,1), border-color .65s, background .65s, box-shadow .65s; }
.exora-feature-card:hover,
.exora-payment-card:hover,
.card:hover { transform: translateY(-7px); border-color: var(--exora-line-strong) !important; box-shadow: 0 28px 90px rgba(0,0,0,.28), 0 0 50px rgba(255,255,255,.07); }
.exora-feature-card i,
.exora-payment-card i { font-size: 1.35rem; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; background: rgba(255,255,255,.08); margin-bottom: 22px; }
.exora-feature-card h3,
.exora-payment-card h3 { letter-spacing: -.035em; }
.exora-feature-card p,
.exora-payment-card p { color: var(--exora-muted); line-height: 1.7; margin-bottom: 0; }
.exora-payment-card a { display: inline-flex; margin-top: 22px; color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.42); }
.exora-page-hero { padding: 130px 0 70px; position: relative; }
.exora-page-hero::after { content: ""; position: absolute; right: 10%; top: 20%; width: 320px; height: 320px; border-radius: 999px; background: rgba(255,255,255,.08); filter: blur(80px); pointer-events: none; }
.section-title h1,
.component .section-title h1 { font-size: clamp(2.6rem, 5vw, 5rem); letter-spacing: -.075em; }
.py-5-nav { padding-top: 7.5rem !important; padding-bottom: 4rem !important; }
.form-control,
.form-select,
.choices__inner {
  background: rgba(255,255,255,.045) !important;
  border: 1px solid var(--exora-line) !important;
  color: #fff !important;
  border-radius: 16px !important;
}
.form-control:focus { box-shadow: 0 0 0 .25rem rgba(255,255,255,.06) !important; border-color: rgba(255,255,255,.28) !important; }
.card { overflow: hidden; color: #fff !important; text-decoration: none; transition: transform .65s cubic-bezier(.16,1,.3,1), border-color .65s, box-shadow .65s; }
.card .card-img-top { overflow: hidden; border-radius: 22px 22px 0 0; }
.card img { transition: transform .9s cubic-bezier(.16,1,.3,1), opacity .9s; }
.card:hover img { transform: scale(1.045); opacity: .9; }
.card .overlay { background: rgba(0,0,0,.52) !important; backdrop-filter: blur(4px); }
.card-body { padding: 20px !important; }
.card-title { letter-spacing: -.035em; color: #fff; }
.price { color: #fff !important; font-weight: 800; }
.text-primary { color: rgba(255,255,255,.66) !important; }
.badges div { border-radius: 999px !important; }
.pagination .page-link { background: rgba(255,255,255,.045); border-color: var(--exora-line); color: #fff; border-radius: 14px; margin: 0 3px; }
@keyframes exoraFloat { 0%,100%{ transform: translateY(0) rotate(0deg); } 50%{ transform: translateY(-14px) rotate(3deg); } }
@media (max-width: 1199px) {
  .exora-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .exora-payment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 991px) {
  .exora-hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .exora-currency-selector { display: none; }
}
@media (max-width: 640px) {
  .exora-landing { padding-top: 92px; min-height: auto; }
  .exora-hero-copy h1, .exora-page-hero h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .exora-trust-bar { grid-template-columns: 1fr; margin-top: 42px; }
  .exora-trust-bar div { border-right: 0; border-bottom: 1px solid var(--exora-line); }
  .exora-trust-bar div:last-child { border-bottom: 0; }
  .exora-feature-grid,
  .exora-payment-grid { grid-template-columns: 1fr; }
  .exora-side-menu { padding: 20px; }
}
.products {
  --bs-gutter-x: 1.35rem;
  --bs-gutter-y: 1.35rem;
}
.products .card {
  min-height: 100%;
  border-radius: 24px !important;
  background: linear-gradient(180deg, rgba(18,18,20,.94), rgba(9,9,10,.98)) !important;
}
.products .card .card-img-top.aspect-product-card-image {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  display: block;
  position: relative;
  background: radial-gradient(circle at 50% 35%, rgba(255,255,255,.08), rgba(255,255,255,.025) 38%, rgba(0,0,0,.2) 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.products .card img.aspect-product-card-image,
.products .card img.object-product-image {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 18px !important;
  display: block;
}
.products .card .overlay {
  opacity: 0 !important;
  transition: opacity .75s cubic-bezier(.16,1,.3,1) !important;
}
.products .card:hover .overlay {
  opacity: 1 !important;
}
.products .card .card-body {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}
.products .card .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.products .card .price,
.products .card .info p {
  margin-bottom: 0 !important;
}
.products .card .card-title {
  font-size: 1.05rem;
  line-height: 1.25;
  margin-bottom: 0 !important;
}
.product-wrapper .carousel,
.product-wrapper > .container .card-img-top.aspect-product-page-image,
.product-wrapper .product-img-placeholder {
  border-radius: 28px !important;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18,18,20,.92), rgba(8,8,9,.98)) !important;
  border: 1px solid rgba(255,255,255,.11) !important;
  box-shadow: 0 30px 100px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.07);
}
.product-wrapper .carousel-inner,
.product-wrapper .carousel-item {
  border-radius: 28px !important;
}
.product-wrapper img.aspect-product-page-image,
.product-wrapper img.object-product-image {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  max-height: 620px !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 26px !important;
  background: radial-gradient(circle at 50% 35%, rgba(255,255,255,.075), rgba(255,255,255,.025) 42%, transparent 100%);
}
.product-wrapper .thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.product-wrapper .thumbnails button {
  width: 74px;
  height: 74px;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.12);
  opacity: .68;
  transition: opacity .45s ease, border-color .45s ease, transform .45s ease;
}
.product-wrapper .thumbnails button.active,
.product-wrapper .thumbnails button:hover {
  opacity: 1;
  border-color: rgba(255,255,255,.34);
  transform: translateY(-2px);
}
.product-wrapper .thumbnails img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 8px !important;
}
.product-wrapper .section-title h1,
.product-wrapper h1 {
  font-size: clamp(2.7rem, 5vw, 5.2rem) !important;
  letter-spacing: -.08em;
  margin-bottom: 14px;
}
.product-wrapper .variant {
  position: relative;
  width: 100%;
  min-height: 74px;
  border-radius: 22px !important;
  padding: 16px 18px !important;
  background: rgba(255,255,255,.045) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.11) !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  box-shadow: none !important;
  transition: transform .55s cubic-bezier(.16,1,.3,1), border-color .55s, background .55s, box-shadow .55s;
}
.product-wrapper .variants {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 12px !important;
}
.product-wrapper .variant:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.28) !important;
  background: rgba(255,255,255,.075) !important;
}
.product-wrapper .variant.active {
  border-color: rgba(255,255,255,.42) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.055)) !important;
  box-shadow: 0 18px 60px rgba(0,0,0,.26), 0 0 42px rgba(255,255,255,.055) !important;
}
.product-wrapper .variant:disabled {
  opacity: .38;
  cursor: not-allowed;
}
.product-wrapper .variant p {
  margin: 0 !important;
}
.product-wrapper .variant .name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
.product-wrapper .variant .description,
.product-wrapper .variant .stock {
  font-size: .82rem;
  color: rgba(255,255,255,.48) !important;
  margin-top: 4px !important;
}
.product-wrapper .variant .price {
  font-weight: 800;
  white-space: nowrap;
  color: rgba(255,255,255,.9) !important;
}
.product-wrapper .variant .active-indicator {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
}
.product-wrapper .variant .active-indicator svg {
  color: #fff !important;
  width: 20px;
  height: 20px;
}
.product-wrapper label.form-label {
  color: rgba(255,255,255,.78);
  font-weight: 700;
  margin-bottom: 10px;
}
.product-wrapper .input-group {
  width: 100% !important;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  overflow: hidden;
}
.product-wrapper .input-group .form-control {
  border: 0 !important;
  text-align: center;
  background: transparent !important;
  border-radius: 0 !important;
}
.product-wrapper .input-group-btn,
.product-wrapper .btn-outline-primary,
.product-wrapper .btn-primary {
  border-radius: 18px !important;
}
.product-wrapper .input-group .btn {
  width: 54px;
  border: 0 !important;
  background: rgba(255,255,255,.055) !important;
  color: #fff !important;
}
.product-wrapper form .btn[type="submit"],
.product-wrapper form button.btn-primary,
.product-wrapper form a.btn-primary {
  background: #f5f5f5 !important;
  color: #050505 !important;
  border: 1px solid rgba(255,255,255,.5) !important;
}
.product-wrapper form .btn-outline-primary {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.18) !important;
}
.product-wrapper form .btn {
  min-height: 48px;
  transition: transform .55s cubic-bezier(.16,1,.3,1), border-color .55s, background .55s;
}
.product-wrapper form .btn:hover:not(:disabled) {
  transform: translateY(-2px);
}
@media (min-width: 992px) {
  .products > [class*="col-"] {
    width: 33.333333% !important;
  }
}
@media (max-width: 767px) {
  .products .card img.aspect-product-card-image,
  .products .card img.object-product-image,
  .product-wrapper img.aspect-product-page-image,
  .product-wrapper img.object-product-image {
    padding: 14px !important;
  }
  .product-wrapper .variant {
    min-height: 68px;
    padding: 14px !important;
  }
}
.product-wrapper .container .container {
  max-width: 1240px;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.product-wrapper .em-product-grid {
  row-gap: 34px;
}
.product-wrapper .em-product-panel {
  position: sticky;
  top: 104px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(18,18,19,.86), rgba(8,8,9,.92));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 28px 90px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.05);
}
.product-wrapper .em-product-title {
  font-size: clamp(2.2rem, 4vw, 4.1rem) !important;
  line-height: .94;
  letter-spacing: -.07em;
  margin: 0 0 18px !important;
  word-break: normal;
}
.product-wrapper .em-price-stock-row .fs-5 {
  font-size: 1.25rem !important;
  font-weight: 700;
  color: rgba(255,255,255,.92);
}
.product-wrapper .stock-indicator,
.product-wrapper .btn-sm.stock-indicator {
  border-radius: 999px !important;
  padding: 8px 12px !important;
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  color: rgba(255,255,255,.78) !important;
  font-size: .84rem !important;
  line-height: 1 !important;
}
.product-wrapper form {
  margin-top: 10px;
}
.product-wrapper form .row {
  --bs-gutter-x: 0;
}
.product-wrapper label.form-label {
  display: block;
  margin: 0 0 12px !important;
  color: rgba(255,255,255,.64) !important;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-wrapper .em-variants {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 10px !important;
}
.product-wrapper .em-variant,
.product-wrapper button.em-variant,
.product-wrapper .variants .variant {
  appearance: none !important;
  -webkit-appearance: none !important;
  position: relative !important;
  width: 100% !important;
  min-height: 72px !important;
  border-radius: 18px !important;
  padding: 15px 16px !important;
  background: rgba(255,255,255,.045) !important;
  background-image: none !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.105) !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  text-align: left !important;
  overflow: hidden !important;
  cursor: pointer !important;
  transition: transform .45s cubic-bezier(.16,1,.3,1), border-color .45s, background .45s, box-shadow .45s !important;
}
.product-wrapper .em-variant::before,
.product-wrapper .variants .variant::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,.10), transparent 42%);
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}
.product-wrapper .em-variant:hover:not(:disabled),
.product-wrapper .variants .variant:hover:not(:disabled) {
  transform: translateY(-1px) !important;
  border-color: rgba(255,255,255,.26) !important;
  background: rgba(255,255,255,.072) !important;
}
.product-wrapper .em-variant:hover:not(:disabled)::before,
.product-wrapper .variants .variant:hover:not(:disabled)::before {
  opacity: 1;
}
.product-wrapper .em-variant.active,
.product-wrapper button.em-variant.active,
.product-wrapper .variants .variant.active {
  color: #fff !important;
  border-color: rgba(255,255,255,.42) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.065)) !important;
  box-shadow: 0 16px 42px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.09) !important;
}
.product-wrapper .em-variant:disabled,
.product-wrapper .variants .variant:disabled {
  opacity: .38 !important;
  cursor: not-allowed !important;
}
.product-wrapper .em-variant p,
.product-wrapper .variants .variant p {
  margin: 0 !important;
}
.product-wrapper .em-variant-main,
.product-wrapper .name-stock {
  min-width: 0;
  padding-right: 34px;
}
.product-wrapper .em-variant .name,
.product-wrapper .variants .variant .name {
  font-size: .98rem !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  letter-spacing: -.02em !important;
  color: rgba(255,255,255,.94) !important;
}
.product-wrapper .em-variant .description,
.product-wrapper .em-variant .stock,
.product-wrapper .variants .variant .description,
.product-wrapper .variants .variant .stock {
  font-size: .78rem !important;
  line-height: 1.3 !important;
  color: rgba(255,255,255,.42) !important;
  margin-top: 5px !important;
}
.product-wrapper .em-variant-price,
.product-wrapper .variants .variant .price {
  margin-left: auto !important;
  flex: 0 0 auto !important;
  font-size: .96rem !important;
  font-weight: 900 !important;
  color: rgba(255,255,255,.92) !important;
  white-space: nowrap !important;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 8px 10px;
}
.product-wrapper .em-active-indicator,
.product-wrapper .active-indicator {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: #f5f5f5 !important;
  display: grid !important;
  place-items: center !important;
}
.product-wrapper .em-active-indicator svg,
.product-wrapper .active-indicator svg {
  width: 18px !important;
  height: 18px !important;
  color: #111 !important;
}
.product-wrapper .em-qty-control,
.product-wrapper .input-group {
  height: 56px !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,.045) !important;
  border: 1px solid rgba(255,255,255,.105) !important;
  overflow: hidden !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04) !important;
}
.product-wrapper .em-qty-control .form-control,
.product-wrapper .input-group .form-control {
  height: 100% !important;
  border: 0 !important;
  background: transparent !important;
  color: #fff !important;
  text-align: center !important;
  font-weight: 800 !important;
  box-shadow: none !important;
}
.product-wrapper .em-qty-control .btn,
.product-wrapper .input-group .btn {
  width: 56px !important;
  height: 100% !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: rgba(255,255,255,.05) !important;
  color: rgba(255,255,255,.88) !important;
  display: grid !important;
  place-items: center !important;
}
.product-wrapper .em-qty-control .btn:hover:not(:disabled),
.product-wrapper .input-group .btn:hover:not(:disabled) {
  background: rgba(255,255,255,.10) !important;
}
.product-wrapper .em-buy-buttons {
  gap: 12px !important;
  margin-top: 24px !important;
}
.product-wrapper .em-buy-buttons .btn,
.product-wrapper form .btn[type="submit"],
.product-wrapper form button.w-100.btn {
  min-height: 54px !important;
  border-radius: 18px !important;
  font-weight: 900 !important;
  letter-spacing: -.01em;
}
.product-wrapper .em-buy-buttons .btn-primary {
  background: #f2f2f2 !important;
  color: #050505 !important;
  border: 1px solid rgba(255,255,255,.65) !important;
}
.product-wrapper .em-buy-buttons .btn-outline-primary {
  background: rgba(255,255,255,.035) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.16) !important;
}
.product-wrapper .em-buy-buttons .btn:hover:not(:disabled) {
  transform: translateY(-2px) !important;
}
.product-wrapper .carousel,
.product-wrapper > .container .card-img-top.aspect-product-page-image,
.product-wrapper .product-img-placeholder {
  border-radius: 30px !important;
}
.product-wrapper img.aspect-product-page-image,
.product-wrapper img.object-product-image {
  display: block !important;
  aspect-ratio: 1 / 1 !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  padding: 34px !important;
}
.products .card .card-img-top.aspect-product-card-image {
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  background: rgba(255,255,255,.035) !important;
}
.products .card img.aspect-product-card-image,
.products .card img.object-product-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 28px !important;
}
.products .card .overlay .btn {
  border-radius: 999px !important;
  background: rgba(245,245,245,.92) !important;
  color: #050505 !important;
  border: 0 !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.25) !important;
}
@media (max-width: 991px) {
  .product-wrapper .em-product-panel {
    position: static;
  }
}
@media (max-width: 575px) {
  .product-wrapper .em-product-panel {
    padding: 20px;
    border-radius: 24px;
  }
  .product-wrapper .em-product-title {
    font-size: clamp(2rem, 13vw, 3rem) !important;
  }
  .product-wrapper .em-variant,
  .product-wrapper button.em-variant {
    min-height: 68px !important;
    padding: 14px !important;
  }
  .product-wrapper .em-variant-price {
    padding: 7px 8px;
    font-size: .88rem !important;
  }
  .product-wrapper img.aspect-product-page-image,
  .product-wrapper img.object-product-image,
  .products .card img.aspect-product-card-image,
  .products .card img.object-product-image {
    padding: 18px !important;
  }
}
.modal { z-index: 2050 !important; }
.modal-backdrop { z-index: 2040 !important; }
body.modal-open.exora-menu-open { overflow: hidden; }
body.modal-open .exora-menu-overlay { opacity: 0 !important; pointer-events: none !important; }
body.modal-open .exora-side-menu { transform: translateX(105%) !important; pointer-events: none !important; }
#customer-login-modal .modal-dialog { margin-inline: auto; }
#customer-login-modal .modal-content {
  background: rgba(12,12,14,.96) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  box-shadow: 0 30px 120px rgba(0,0,0,.55), 0 0 80px rgba(255,255,255,.05);
}
:root {
  --exora-ease-out: cubic-bezier(.16, 1, .3, 1);
  --exora-menu-duration: 980ms;
}
.exora-menu-overlay {
  transition:
    opacity var(--exora-menu-duration) var(--exora-ease-out),
    backdrop-filter var(--exora-menu-duration) var(--exora-ease-out) !important;
}
.exora-side-menu {
  opacity: 0;
  filter: blur(10px);
  transform: translateX(105%) scale(.985);
  transition:
    transform var(--exora-menu-duration) var(--exora-ease-out),
    opacity 760ms var(--exora-ease-out),
    filter 900ms var(--exora-ease-out) !important;
  will-change: transform, opacity, filter;
}
body.exora-menu-open .exora-side-menu {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0) scale(1);
}
.exora-menu-toggle span {
  transform-origin: center;
}
body.exora-menu-open .exora-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.exora-menu-open .exora-menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(.2);
}
body.exora-menu-open .exora-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.exora-side-head,
.exora-side-links a,
.exora-side-links button,
.exora-side-footer {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(8px);
  transition:
    opacity 760ms var(--exora-ease-out),
    transform 760ms var(--exora-ease-out),
    filter 820ms var(--exora-ease-out),
    background .55s,
    border-color .55s,
    box-shadow .55s;
  will-change: opacity, transform, filter;
}
body.exora-menu-open .exora-side-head,
body.exora-menu-open .exora-side-links a,
body.exora-menu-open .exora-side-links button,
body.exora-menu-open .exora-side-footer {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
body.exora-menu-open .exora-side-head { transition-delay: 140ms; }
body.exora-menu-open .exora-side-links > :nth-child(1) { transition-delay: 220ms; }
body.exora-menu-open .exora-side-links > :nth-child(2) { transition-delay: 285ms; }
body.exora-menu-open .exora-side-links > :nth-child(3) { transition-delay: 350ms; }
body.exora-menu-open .exora-side-links > :nth-child(4) { transition-delay: 415ms; }
body.exora-menu-open .exora-side-links > :nth-child(5) { transition-delay: 480ms; }
body.exora-menu-open .exora-side-links > :nth-child(6) { transition-delay: 545ms; }
body.exora-menu-open .exora-side-links > :nth-child(7) { transition-delay: 610ms; }
body.exora-menu-open .exora-side-links > :nth-child(8) { transition-delay: 675ms; }
body.exora-menu-open .exora-side-footer { transition-delay: 760ms; }
.exora-side-links a:hover,
.exora-side-links button:hover {
  transform: translateX(-5px) translateY(0) !important;
}
@keyframes exoraFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.exora-hero-copy,
.exora-page-hero,
.exora-trust-bar,
.exora-benefits .exora-card,
.exora-payment-card,
.product-card,
.exora-product-shell {
  animation: exoraFadeUp 900ms var(--exora-ease-out) both;
}
.exora-trust-bar { animation-delay: 120ms; }
.exora-benefits .exora-card:nth-child(1),
.exora-payment-card:nth-child(1),
.product-card:nth-child(1) { animation-delay: 80ms; }
.exora-benefits .exora-card:nth-child(2),
.exora-payment-card:nth-child(2),
.product-card:nth-child(2) { animation-delay: 140ms; }
.exora-benefits .exora-card:nth-child(3),
.exora-payment-card:nth-child(3),
.product-card:nth-child(3) { animation-delay: 200ms; }
.exora-payment-card:nth-child(4),
.product-card:nth-child(4) { animation-delay: 260ms; }
.exora-payment-card:nth-child(5),
.product-card:nth-child(5) { animation-delay: 320ms; }
@media (prefers-reduced-motion: reduce) {
  .exora-menu-overlay,
  .exora-side-menu,
  .exora-side-head,
  .exora-side-links a,
  .exora-side-links button,
  .exora-side-footer,
  .exora-hero-copy,
  .exora-page-hero,
  .exora-trust-bar,
  .exora-benefits .exora-card,
  .exora-payment-card,
  .product-card,
  .exora-product-shell {
    animation: none !important;
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
    filter: none !important;
  }
}
:root {
  --exora-reveal-ease: cubic-bezier(.16, 1, .3, 1);
  --exora-reveal-duration: 720ms;
}
.exora-hero-copy,
.exora-page-hero,
.exora-trust-bar,
.exora-benefits .exora-card,
.exora-payment-card,
.product-card,
.exora-product-shell {
  animation: none !important;
}
.exora-reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity var(--exora-reveal-duration) var(--exora-reveal-ease),
    transform var(--exora-reveal-duration) var(--exora-reveal-ease);
  will-change: opacity, transform;
}
.exora-reveal.exora-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}
.exora-reveal[data-exora-reveal="soft"] {
  transform: translate3d(0, 14px, 0);
}
.exora-reveal[data-exora-reveal="left"] {
  transform: translate3d(-18px, 0, 0);
}
.exora-reveal[data-exora-reveal="right"] {
  transform: translate3d(18px, 0, 0);
}
.exora-reveal[data-exora-reveal="scale"] {
  transform: translate3d(0, 18px, 0) scale(.985);
}
.exora-reveal.exora-revealed[data-exora-reveal="soft"],
.exora-reveal.exora-revealed[data-exora-reveal="left"],
.exora-reveal.exora-revealed[data-exora-reveal="right"],
.exora-reveal.exora-revealed[data-exora-reveal="scale"] {
  transform: translate3d(0, 0, 0) scale(1);
}
.exora-reveal[data-exora-delay="1"] { transition-delay: 70ms; }
.exora-reveal[data-exora-delay="2"] { transition-delay: 120ms; }
.exora-reveal[data-exora-delay="3"] { transition-delay: 170ms; }
.exora-reveal[data-exora-delay="4"] { transition-delay: 220ms; }
.exora-reveal[data-exora-delay="5"] { transition-delay: 270ms; }
.exora-reveal[data-exora-delay="6"] { transition-delay: 320ms; }
.exora-section-title,
.exora-section-kicker,
.exora-footer,
.footer,
.products-page,
.products-grid,
.product-page,
.product-form,
.variant-item,
.card,
.accordion-item,
.faq-item,
.feedback-card,
.status-card,
.blog-post-card {
  backface-visibility: hidden;
}
.exora-side-menu {
  filter: blur(4px);
}
body.exora-menu-open .exora-side-menu {
  filter: blur(0);
}
.exora-side-head,
.exora-side-links a,
.exora-side-links button,
.exora-side-footer {
  filter: none !important;
}
@media (max-width: 768px) {
  :root {
    --exora-menu-duration: 620ms;
    --exora-reveal-duration: 560ms;
  }
  .exora-reveal {
    transform: translate3d(0, 14px, 0);
  }
  .exora-reveal[data-exora-delay] {
    transition-delay: 0ms;
  }
  .exora-side-menu {
    width: min(92vw, 420px) !important;
    padding: 18px !important;
  }
  body.exora-menu-open .exora-side-links > * {
    transition-delay: 120ms !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .exora-reveal,
  .exora-reveal[data-exora-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.exora-filter-form input,
.exora-filter-form select,
.exora-filter-form textarea {
  transition: border-color .22s ease, background-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.exora-filter-form input:focus,
.exora-filter-form select:focus,
.exora-filter-form textarea:focus {
  box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 12px 40px rgba(255,255,255,.04);
}
.exora-auto-apply-note {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: rgba(255,255,255,.66);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  user-select: none;
}
.exora-auto-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 0 18px rgba(255,255,255,.35);
}
@media (max-width: 767.98px) {
  .exora-auto-apply-note {
    min-height: 38px;
    font-size: 12px;
  }
}
.exora-auto-apply-note,
.exora-auto-dot { display: none !important; }
.exora-filter-form input.form-control {
  background: rgba(255,255,255,.045) !important;
  border: 1px solid rgba(255,255,255,.13) !important;
  color: #f7f7f7 !important;
  box-shadow: none !important;
}
.exora-filter-form input.form-control:focus {
  background: rgba(255,255,255,.07) !important;
  border-color: rgba(255,255,255,.34) !important;
  box-shadow: 0 0 0 3px rgba(255,255,255,.055) !important;
}
.exora-filter-form .btn-outline-primary {
  margin-top: 6px;
}
:root {
  --exora-bg: #060509;
  --exora-bg-soft: #0b0910;
  --exora-card: rgba(18, 16, 22, 0.78);
  --exora-card-strong: rgba(22, 20, 27, 0.94);
  --exora-line: rgba(255, 255, 255, 0.105);
  --exora-line-strong: rgba(255, 255, 255, 0.18);
  --exora-text: #f7f4f8;
  --exora-muted: rgba(247, 244, 248, 0.62);
  --exora-faint: rgba(247, 244, 248, 0.40);
  --exora-pink: #d96aa8;
  --exora-rose: #ee00ff;
  --exora-pink-soft: rgba(217, 106, 168, .075);
  --exora-rose-soft: rgba(238, 0, 255, .035);
  --exora-glow: rgba(217, 106, 168, .10);
  --exora-menu-duration: 760ms;
  --exora-reveal-duration: 620ms;
}
body {
  background:
    radial-gradient(circle at 20% -8%, rgba(217,106,168,.075), transparent 30rem),
    radial-gradient(circle at 86% 4%, rgba(238,0,255,.025), transparent 28rem),
    linear-gradient(180deg, #060509 0%, #050407 100%) !important;
}
body::before {
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px);
  opacity: .55;
}
.exora-navbar {
  background: rgba(6, 5, 9, .78);
  border-bottom-color: rgba(255,255,255,.085);
}
.exora-brand-mark,
.exora-brand img {
  background: linear-gradient(145deg, #eee7ef, #b88aaa 52%, #d9cbd9);
  color: #070609;
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
}
.exora-menu-toggle,
.exora-menu-close,
.exora-side-links a,
.exora-side-links button,
.exora-hero-pills span,
.exora-trust-bar,
.card,
.exora-payment-card,
.bg-gray,
.modal-content,
.product-wrapper .em-product-panel {
  border-color: rgba(255,255,255,.10) !important;
}
.exora-menu-toggle:hover,
.exora-menu-close:hover,
.exora-side-links a:hover,
.exora-side-links button:hover,
.card:hover,
.exora-payment-card:hover {
  border-color: rgba(217,106,168,.22) !important;
  box-shadow: 0 18px 55px rgba(0,0,0,.32), 0 0 26px rgba(217,106,168,.055) !important;
}
.exora-side-menu {
  background:
    radial-gradient(circle at 15% 12%, rgba(217,106,168,.07), transparent 18rem),
    rgba(8, 7, 11, .95) !important;
  border-left-color: rgba(255,255,255,.10) !important;
  box-shadow: -28px 0 80px rgba(0,0,0,.45) !important;
  transform: translateX(105%) scale(.982) !important;
}
body.exora-menu-open .exora-side-menu { transform: translateX(0) scale(1) !important; }
.exora-menu-overlay { background: rgba(0,0,0,.58) !important; }
body.exora-menu-open .exora-menu-overlay { backdrop-filter: blur(5px); }
.exora-cart-pill,
.exora-btn-primary,
.btn-primary,
.product-wrapper .em-buy-buttons .btn-primary,
.product-wrapper form .btn[type="submit"],
.product-wrapper form button.w-100.btn {
  background: linear-gradient(135deg, #f1d9e8, #f0d8f2) !important;
  color: #09070b !important;
  border-color: rgba(255,255,255,.38) !important;
  box-shadow: none !important;
}
.exora-btn-secondary,
.btn-outline-primary,
.btn-outline {
  background: rgba(255,255,255,.035) !important;
  color: #f7f4f8 !important;
  border-color: rgba(255,255,255,.13) !important;
}
.exora-btn:hover,
.btn:hover { box-shadow: 0 14px 36px rgba(0,0,0,.24) !important; }
.exora-glow { filter: blur(84px) !important; }
.exora-glow-one { background: rgba(217,106,168,.075) !important; opacity: .52; }
.exora-glow-two { background: rgba(238,0,255,.025) !important; opacity: .48; }
.exora-kicker span { background: linear-gradient(90deg, rgba(217,106,168,.78), rgba(244,215,246,.58)); }
.exora-hero-copy h1,
.exora-page-hero h1,
.section-title h1,
.component .section-title h1 {
  text-shadow: none !important;
}
.exora-trust-bar {
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.025)) !important;
}
.exora-trust-bar strong,
.price,
.text-primary { color: #f1d9e8 !important; }
.products .card,
.product-wrapper .carousel,
.product-wrapper > .container .card-img-top.aspect-product-page-image,
.product-wrapper .product-img-placeholder,
.product-wrapper .em-product-panel,
#customer-login-modal .modal-content {
  background:
    linear-gradient(180deg, rgba(20,18,24,.94), rgba(8,7,11,.98)) !important;
}
.products .card .card-img-top.aspect-product-card-image,
.products .card img.aspect-product-card-image,
.products .card img.object-product-image,
.product-wrapper img.aspect-product-page-image,
.product-wrapper img.object-product-image {
  background: radial-gradient(circle at 50% 36%, rgba(255,255,255,.04), rgba(217,106,168,.025) 46%, rgba(0,0,0,.15) 100%) !important;
}
.products .card:hover img { transform: scale(1.018) !important; }
.card:hover { transform: translateY(-4px) !important; }
.product-wrapper .em-variant,
.product-wrapper button.em-variant,
.product-wrapper .variants .variant {
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.025)) !important;
  border-color: rgba(255,255,255,.105) !important;
}
.product-wrapper .em-variant::before,
.product-wrapper .variants .variant::before { opacity: .35 !important; background: radial-gradient(circle at top right, rgba(217,106,168,.10), transparent 46%) !important; }
.product-wrapper .em-variant:hover:not(:disabled),
.product-wrapper .variants .variant:hover:not(:disabled),
.product-wrapper .em-variant.active,
.product-wrapper button.em-variant.active,
.product-wrapper .variants .variant.active {
  border-color: rgba(217,106,168,.24) !important;
  box-shadow: 0 14px 38px rgba(0,0,0,.26) !important;
}
.product-wrapper .em-active-indicator,
.product-wrapper .active-indicator { background: linear-gradient(135deg, #dba3c2, #f0d8f2) !important; }
.form-control:focus,
.exora-filter-form input.form-control:focus {
  border-color: rgba(217,106,168,.26) !important;
  box-shadow: 0 0 0 3px rgba(217,106,168,.055) !important;
}
@media (min-width: 992px) {
  .products > [class*="col-"] { width: 25% !important; flex: 0 0 auto !important; }
  .modal .products > [class*="col-"] { width: 25% !important; }
}
@media (max-width: 991.98px) and (min-width: 768px) {
  .products > [class*="col-"] { width: 50% !important; flex: 0 0 auto !important; }
}
@media (max-width: 767.98px) {
  .products > [class*="col-"] { width: 100% !important; flex: 0 0 auto !important; }
}
.exora-reveal { transform: translate3d(0, 14px, 0); }
.exora-reveal.exora-revealed,
.exora-reveal.exora-revealed[data-exora-reveal="soft"],
.exora-reveal.exora-revealed[data-exora-reveal="left"],
.exora-reveal.exora-revealed[data-exora-reveal="right"],
.exora-reveal.exora-revealed[data-exora-reveal="scale"] { transform: translate3d(0, 0, 0); }
.exora-side-links a:hover,
.exora-side-links button:hover { transform: translateX(-3px) !important; }
@media (max-width: 768px) {
  :root { --exora-menu-duration: 540ms; --exora-reveal-duration: 480ms; }
  .exora-glow { opacity: .35 !important; filter: blur(66px) !important; }
  .products .card:hover img,
  .card:hover { transform: none !important; }
}
:root {
  --exora-bg: #070607;
  --exora-bg-soft: #0d0b0d;
  --exora-card: rgba(18, 16, 18, 0.82);
  --exora-card-strong: rgba(22, 20, 22, 0.96);
  --exora-line: rgba(255, 255, 255, 0.09);
  --exora-line-strong: rgba(255, 255, 255, 0.16);
  --exora-text: #f4eff2;
  --exora-muted: rgba(244, 239, 242, 0.62);
  --exora-faint: rgba(244, 239, 242, 0.38);
  --exora-pink: #d88aae;
  --exora-rose: #f0c5d8;
  --exora-pink-soft: rgba(216, 138, 174, .052);
  --exora-glow: rgba(216, 138, 174, .055);
}
body {
  background:
    radial-gradient(circle at 24% -10%, rgba(216,138,174,.045), transparent 26rem),
    radial-gradient(circle at 84% 8%, rgba(255,255,255,.028), transparent 24rem),
    linear-gradient(180deg, #070607 0%, #050505 100%) !important;
}
body::before {
  background-image:
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.010) 1px, transparent 1px) !important;
  opacity: .38 !important;
}
.exora-navbar {
  background: rgba(7, 6, 7, .82) !important;
  border-bottom-color: rgba(255,255,255,.075) !important;
  backdrop-filter: blur(14px) !important;
}
.exora-brand-mark,
.exora-brand img {
  background: linear-gradient(145deg, #f3eef1, #d8a8bd) !important;
  color: #090709 !important;
  box-shadow: none !important;
}
.exora-brand span:last-child { color: #f4eff2 !important; }
.exora-glow {
  opacity: .28 !important;
  filter: blur(76px) !important;
}
.exora-glow-one {
  background: rgba(216,138,174,.055) !important;
  width: 440px !important;
  height: 440px !important;
}
.exora-glow-two {
  background: rgba(255,255,255,.032) !important;
  width: 260px !important;
  height: 260px !important;
}
.exora-kicker span {
  background: rgba(216,138,174,.72) !important;
}
.exora-hero-copy h1,
.exora-page-hero h1,
.section-title h1,
.component .section-title h1 {
  text-shadow: none !important;
}
.exora-btn-primary,
.btn-primary,
.product-wrapper .em-buy-buttons .btn-primary,
.product-wrapper form .btn[type="submit"],
.product-wrapper form button.w-100.btn,
.exora-cart-pill {
  background: linear-gradient(135deg, #f2d7e4, #d59cb7) !important;
  color: #090708 !important;
  border: 1px solid rgba(255,255,255,.26) !important;
  box-shadow: none !important;
}
.exora-btn-secondary,
.btn-outline-primary,
.btn-outline {
  background: rgba(255,255,255,.035) !important;
  color: #f4eff2 !important;
  border-color: rgba(255,255,255,.12) !important;
  box-shadow: none !important;
}
.exora-btn:hover,
.btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.24) !important;
}
.exora-menu-toggle:hover,
.exora-menu-close:hover,
.exora-side-links a:hover,
.exora-side-links button:hover,
.card:hover,
.exora-payment-card:hover,
.exora-feature-card:hover {
  border-color: rgba(216,138,174,.20) !important;
  box-shadow: 0 16px 44px rgba(0,0,0,.30) !important;
}
.exora-side-menu {
  background:
    radial-gradient(circle at 12% 8%, rgba(216,138,174,.045), transparent 16rem),
    rgba(9, 8, 9, .96) !important;
  box-shadow: -24px 0 70px rgba(0,0,0,.42) !important;
}
body.exora-menu-open .exora-menu-overlay { backdrop-filter: blur(3px) !important; }
.exora-trust-bar,
.exora-feature-card,
.card,
.exora-payment-card,
.bg-gray,
.modal-content,
.product-wrapper .em-product-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.036), rgba(255,255,255,.018)) !important;
  border-color: rgba(255,255,255,.09) !important;
  box-shadow: 0 18px 56px rgba(0,0,0,.20) !important;
}
.exora-feature-card i,
.exora-payment-card i {
  background: rgba(216,138,174,.075) !important;
  color: #e9b7cc !important;
  box-shadow: none !important;
}
.exora-trust-bar strong,
.price,
.text-primary {
  color: #ecc0d3 !important;
}
.exora-hero-pills span {
  background: rgba(255,255,255,.028) !important;
  border-color: rgba(255,255,255,.09) !important;
}
.products .card,
.product-wrapper .carousel,
.product-wrapper > .container .card-img-top.aspect-product-page-image,
.product-wrapper .product-img-placeholder,
.product-wrapper .em-product-panel,
#customer-login-modal .modal-content {
  background: linear-gradient(180deg, rgba(18,16,18,.96), rgba(7,7,7,.99)) !important;
}
.products .card .card-img-top.aspect-product-card-image,
.products .card img.aspect-product-card-image,
.products .card img.object-product-image,
.product-wrapper img.aspect-product-page-image,
.product-wrapper img.object-product-image {
  background: radial-gradient(circle at 50% 36%, rgba(255,255,255,.032), rgba(216,138,174,.018) 45%, rgba(0,0,0,.12) 100%) !important;
}
.products .card:hover img { transform: scale(1.012) !important; }
.card:hover { transform: translateY(-3px) !important; }
.product-wrapper .em-variant,
.product-wrapper button.em-variant,
.product-wrapper .variants .variant {
  background: linear-gradient(180deg, rgba(255,255,255,.038), rgba(255,255,255,.020)) !important;
  border-color: rgba(255,255,255,.10) !important;
  box-shadow: none !important;
}
.product-wrapper .em-variant::before,
.product-wrapper .variants .variant::before {
  opacity: .22 !important;
  background: radial-gradient(circle at top right, rgba(216,138,174,.065), transparent 48%) !important;
}
.product-wrapper .em-variant:hover:not(:disabled),
.product-wrapper .variants .variant:hover:not(:disabled),
.product-wrapper .em-variant.active,
.product-wrapper button.em-variant.active,
.product-wrapper .variants .variant.active {
  border-color: rgba(216,138,174,.22) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.22) !important;
}
.product-wrapper .em-active-indicator,
.product-wrapper .active-indicator {
  background: linear-gradient(135deg, #e7b7cc, #c886a7) !important;
}
.form-control:focus,
.exora-filter-form input.form-control:focus {
  border-color: rgba(216,138,174,.24) !important;
  box-shadow: 0 0 0 3px rgba(216,138,174,.040) !important;
}
.exora-page-hero::after { opacity: .35 !important; background: rgba(216,138,174,.035) !important; }
@media (max-width: 768px) {
  .exora-glow { opacity: .20 !important; filter: blur(56px) !important; }
  .exora-btn:hover,
  .btn:hover,
  .card:hover { transform: none !important; }
}
:root {
  --candy-bg: #060506;
  --candy-panel: rgba(18, 16, 18, .86);
  --candy-panel-2: rgba(24, 21, 24, .78);
  --candy-border: rgba(255,255,255,.095);
  --candy-border-2: rgba(238, 176, 205, .20);
  --candy-text: #f5f0f3;
  --candy-muted: rgba(245,240,243,.62);
  --candy-pink: #e7a7c4;
  --candy-rose: #f0c9da;
  --candy-dark-pink: #a96786;
  --exora-pink: #e7a7c4;
  --exora-rose: #f0c9da;
  --exora-glow: rgba(231,167,196,.035);
}
body {
  background:
    linear-gradient(180deg, #070607 0%, #050505 48%, #080607 100%) !important;
}
body::before {
  background-image: none !important;
}
.exora-glow { display: none !important; }
.exora-navbar {
  background: rgba(7,6,7,.88) !important;
  border-bottom: 1px solid rgba(255,255,255,.075) !important;
  backdrop-filter: blur(12px) !important;
}
.exora-brand-mark,
.exora-brand img {
  border-radius: 12px !important;
  background: #f0c9da !important;
  box-shadow: none !important;
}
.exora-menu-toggle,
.exora-menu-close {
  border-radius: 14px !important;
  background: rgba(255,255,255,.035) !important;
  box-shadow: none !important;
}
.exora-menu-toggle:hover,
.exora-menu-close:hover {
  transform: translateY(-1px) !important;
  border-color: rgba(231,167,196,.22) !important;
  box-shadow: none !important;
}
.exora-side-menu {
  background: #090809 !important;
  border-left: 1px solid rgba(255,255,255,.085) !important;
  box-shadow: -18px 0 54px rgba(0,0,0,.42) !important;
}
.exora-side-links a,
.exora-side-links button {
  border-radius: 15px !important;
  background: transparent !important;
  border-color: rgba(255,255,255,.075) !important;
}
.exora-side-links a:hover,
.exora-side-links button:hover {
  transform: translateX(-2px) !important;
  background: rgba(231,167,196,.045) !important;
  border-color: rgba(231,167,196,.18) !important;
  box-shadow: none !important;
}
.exora-side-footer { opacity: .8; }
.candy-landing {
  position: relative;
  padding: 142px 0 72px;
  overflow: hidden;
}
.candy-landing::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 75% 20%, rgba(231,167,196,.055), transparent 19rem),
    linear-gradient(90deg, transparent 0, rgba(255,255,255,.026) 50%, transparent 100%);
  opacity: .85;
}
.candy-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 100% 48px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  opacity: .55;
}
.candy-hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .72fr);
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
}
.candy-hero-left h1 {
  max-width: 780px;
  margin: 0;
  color: var(--candy-text);
  font-size: clamp(3.1rem, 7vw, 6.7rem);
  line-height: .91;
  letter-spacing: -.075em;
}
.candy-hero-left p {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--candy-muted);
  font-size: 1.04rem;
  line-height: 1.78;
}
.candy-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: rgba(245,240,243,.68);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .72rem;
  font-weight: 760;
}
.candy-label span {
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(231,167,196,.62);
}
.candy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.candy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  padding: 14px 20px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 760;
  transition: transform .34s cubic-bezier(.2,.8,.2,1), background .34s, border-color .34s;
}
.candy-btn-main {
  background: #f0c9da;
  color: #090708;
  border: 1px solid rgba(255,255,255,.18);
}
.candy-btn-ghost {
  background: rgba(255,255,255,.035);
  color: var(--candy-text);
  border: 1px solid rgba(255,255,255,.105);
}
.candy-btn:hover {
  transform: translateY(-2px);
  color: inherit;
}
.candy-btn-main:hover { color: #090708; background: #f3d3e1; }
.candy-btn-ghost:hover { color: #fff; border-color: rgba(231,167,196,.22); background: rgba(231,167,196,.04); }
.candy-hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.candy-info-card,
.candy-mini-card,
.candy-strip,
.candy-process-card,
.candy-split-box {
  border: 1px solid var(--candy-border);
  background: linear-gradient(180deg, var(--candy-panel), rgba(12,11,12,.84));
  border-radius: 22px;
  box-shadow: 0 18px 54px rgba(0,0,0,.22);
}
.candy-info-card-large {
  min-height: 235px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.candy-card-tag {
  width: fit-content;
  margin-bottom: auto;
  border: 1px solid rgba(231,167,196,.16);
  color: #e9b6cd;
  background: rgba(231,167,196,.045);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: .78rem;
}
.candy-info-card strong {
  display: block;
  color: var(--candy-text);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -.055em;
}
.candy-info-card p {
  margin: 12px 0 0;
  color: var(--candy-muted);
  line-height: 1.65;
}
.candy-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.candy-mini-card {
  padding: 20px;
}
.candy-mini-card strong {
  display: block;
  color: #f0c9da;
  font-size: 1.9rem;
  letter-spacing: -.055em;
}
.candy-mini-card span {
  color: var(--candy-muted);
  font-size: .9rem;
}
.candy-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px;
}
.candy-strip span {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.075);
  color: rgba(245,240,243,.7);
  padding: 8px 10px;
  font-size: .78rem;
}
.candy-section { padding: 78px 0; }
.candy-section-head {
  max-width: 720px;
  margin-bottom: 28px;
}
.candy-section-head span {
  display: block;
  color: #e9b6cd;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 760;
  margin-bottom: 12px;
}
.candy-section-head h2,
.candy-split-box h2 {
  color: var(--candy-text);
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  line-height: .96;
  letter-spacing: -.065em;
  margin: 0;
}
.candy-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.candy-process-card {
  padding: 26px;
  min-height: 250px;
  transition: transform .34s cubic-bezier(.2,.8,.2,1), border-color .34s, background .34s;
}
.candy-process-card:hover {
  transform: translateY(-3px);
  border-color: rgba(231,167,196,.18);
  background: linear-gradient(180deg, rgba(28,24,28,.88), rgba(13,12,13,.88));
}
.candy-process-card small {
  display: block;
  margin-bottom: 50px;
  color: rgba(231,167,196,.74);
  font-weight: 780;
}
.candy-process-card h3 {
  color: var(--candy-text);
  letter-spacing: -.035em;
  margin-bottom: 12px;
}
.candy-process-card p,
.candy-split-box p {
  color: var(--candy-muted);
  line-height: 1.7;
  margin: 0;
}
.candy-split-section { padding-top: 12px; }
.candy-split-box {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 28px;
  align-items: end;
  padding: clamp(26px, 4vw, 44px);
}
.candy-split-box .candy-label { margin-bottom: 14px; }
.candy-split-box p { max-width: 620px; justify-self: end; }
.exora-landing-clean,
.exora-section-clean,
.exora-feature-grid-clean,
.exora-hero-pills { display: none !important; }
.products .card,
.card,
.exora-payment-card,
.exora-feature-card,
.product-wrapper .em-product-panel,
.modal-content,
.bg-gray {
  background: linear-gradient(180deg, rgba(20,18,20,.92), rgba(9,9,10,.98)) !important;
  border-color: rgba(255,255,255,.085) !important;
  box-shadow: 0 14px 42px rgba(0,0,0,.24) !important;
}
.products .card:hover,
.card:hover,
.exora-payment-card:hover,
.exora-feature-card:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(231,167,196,.17) !important;
  box-shadow: 0 16px 44px rgba(0,0,0,.28) !important;
}
.products .card:hover img { transform: scale(1.008) !important; }
.price,
.text-primary,
.exora-trust-bar strong { color: #ecc2d5 !important; }
.btn-primary,
.exora-btn-primary,
.product-wrapper form .btn[type="submit"],
.product-wrapper .em-buy-buttons .btn-primary {
  background: #f0c9da !important;
  color: #090708 !important;
  border-color: rgba(255,255,255,.18) !important;
  box-shadow: none !important;
}
.btn:hover,
.exora-btn:hover { box-shadow: none !important; }
.candy-hero-left,
.candy-hero-right,
.candy-process-card,
.candy-split-box {
  animation: candyFadeUp .62s cubic-bezier(.2,.8,.2,1) both;
}
.candy-hero-right { animation-delay: .08s; }
.candy-process-card:nth-child(2) { animation-delay: .05s; }
.candy-process-card:nth-child(3) { animation-delay: .10s; }
@keyframes candyFadeUp {
  from { opacity: 0; transform: translate3d(0, 16px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@media (max-width: 991.98px) {
  .candy-hero-shell,
  .candy-split-box { grid-template-columns: 1fr; }
  .candy-hero-right { max-width: 560px; }
  .candy-process-grid { grid-template-columns: 1fr; }
  .candy-process-card { min-height: auto; }
  .candy-process-card small { margin-bottom: 30px; }
  .candy-split-box p { justify-self: start; }
}
@media (max-width: 640px) {
  .candy-landing { padding: 108px 0 50px; }
  .candy-hero-left h1 { font-size: clamp(2.85rem, 15vw, 4.5rem); }
  .candy-actions { flex-direction: column; }
  .candy-btn { width: 100%; }
  .candy-card-row { grid-template-columns: 1fr; }
  .candy-section { padding: 54px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .candy-hero-left,
  .candy-hero-right,
  .candy-process-card,
  .candy-split-box { animation: none !important; }
}
:root {
  --candy-bg: #050505;
  --candy-panel: rgba(18, 17, 18, .88);
  --candy-panel-soft: rgba(255,255,255,.035);
  --candy-border: rgba(255,255,255,.09);
  --candy-border-strong: rgba(238,0,255,.18);
  --candy-text: #f7f2f7;
  --candy-muted: rgba(247,242,247,.62);
  --candy-faint: rgba(247,242,247,.42);
  --candy-pink: #ee00ff;
  --candy-pink-soft: rgba(238,0,255,.055);
  --exora-pink: #ee00ff;
  --exora-rose: #f0c7ee;
  --exora-glow: rgba(238,0,255,.025);
}
body {
  background: #050505 !important;
}
body::before {
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px) !important;
  background-size: 44px 44px !important;
  opacity: .23 !important;
}
.exora-navbar {
  background: rgba(5,5,5,.86) !important;
  border-bottom: 1px solid rgba(255,255,255,.07) !important;
  backdrop-filter: blur(10px) !important;
}
.exora-brand-mark,
.exora-brand img {
  background: #f2d7f3 !important;
  color: #080808 !important;
  box-shadow: none !important;
}
.exora-menu-toggle,
.exora-menu-close,
.exora-side-links a,
.exora-side-links button {
  box-shadow: none !important;
}
.exora-menu-toggle:hover,
.exora-menu-close:hover,
.exora-side-links a:hover,
.exora-side-links button:hover {
  border-color: rgba(238,0,255,.18) !important;
  background: rgba(238,0,255,.035) !important;
  box-shadow: none !important;
}
.exora-side-menu {
  background: #070707 !important;
  border-left: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: -22px 0 60px rgba(0,0,0,.48) !important;
}
.exora-side-footer span {
  border-color: rgba(255,255,255,.08) !important;
  background: rgba(255,255,255,.025) !important;
}
.cs-home {
  position: relative;
  padding: 146px 0 92px;
  overflow: hidden;
}
.cs-home::before {
  content: "";
  position: absolute;
  left: 7vw;
  right: 7vw;
  top: 106px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(238,0,255,.26), rgba(255,255,255,.13), transparent);
  opacity: .65;
}
.cs-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(34px, 7vw, 100px);
  align-items: end;
}
.cs-tag,
.cs-section-title span,
.cs-compact-box span,
.cs-page-hero span {
  color: rgba(247,242,247,.62);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 800;
}
.cs-copy h1 {
  max-width: 870px;
  margin: 18px 0 0;
  color: var(--candy-text);
  font-size: clamp(3.4rem, 8.7vw, 8.6rem);
  line-height: .86;
  letter-spacing: -.085em;
}
.cs-copy p {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--candy-muted);
  font-size: 1.02rem;
  line-height: 1.76;
}
.cs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.cs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 19px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), background .28s, border-color .28s, color .28s;
}
.cs-btn-primary {
  background: #f4d7f6;
  color: #080708;
  border: 1px solid rgba(255,255,255,.15);
}
.cs-btn-secondary {
  background: rgba(255,255,255,.035);
  color: var(--candy-text);
  border: 1px solid rgba(255,255,255,.10);
}
.cs-btn:hover {
  transform: translateY(-2px);
}
.cs-btn-primary:hover {
  background: #f8e4f9;
  color: #080708;
}
.cs-btn-secondary:hover {
  color: #fff;
  border-color: rgba(238,0,255,.18);
  background: rgba(238,0,255,.032);
}
.cs-panel {
  position: relative;
  border: 1px solid var(--candy-border);
  border-radius: 28px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(20,20,20,.92), rgba(9,9,9,.98));
  box-shadow: 0 18px 52px rgba(0,0,0,.30);
}
.cs-panel::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.045);
  pointer-events: none;
}
.cs-panel-top,
.cs-metrics,
.cs-panel-list {
  position: relative;
}
.cs-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cs-panel-top span,
.cs-panel-list div,
.cs-metrics span {
  color: var(--candy-muted);
}
.cs-panel-top strong {
  color: #f4d7f6;
}
.cs-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  margin: 18px 0;
}
.cs-metrics div {
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,.025);
}
.cs-metrics strong {
  display: block;
  color: var(--candy-text);
  font-size: 1.55rem;
  letter-spacing: -.045em;
}
.cs-metrics span {
  font-size: .86rem;
}
.cs-panel-list {
  display: grid;
  gap: 10px;
}
.cs-panel-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
}
.cs-panel-list span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ee00ff;
  opacity: .48;
}
.cs-section {
  padding: 78px 0;
}
.cs-section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}
.cs-section-title h2,
.cs-compact-box h2,
.cs-page-hero h1 {
  margin: 10px 0 0;
  color: var(--candy-text);
  font-size: clamp(2.25rem, 5vw, 5rem);
  line-height: .92;
  letter-spacing: -.07em;
}
.cs-offset-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.cs-offset-card {
  min-height: 245px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.085);
  border-radius: 28px;
  background: rgba(255,255,255,.028);
  transition: transform .28s cubic-bezier(.2,.8,.2,1), border-color .28s, background .28s;
}
.cs-offset-card:nth-child(2) {
  margin-top: 34px;
}
.cs-offset-card:nth-child(3) {
  margin-top: 68px;
}
.cs-offset-card:hover {
  transform: translateY(-4px);
  border-color: rgba(238,0,255,.16);
  background: rgba(255,255,255,.04);
}
.cs-offset-card span {
  display: inline-flex;
  color: rgba(244,215,246,.78);
  font-weight: 800;
  margin-bottom: 58px;
}
.cs-offset-card h3 {
  color: var(--candy-text);
  letter-spacing: -.04em;
  margin-bottom: 12px;
}
.cs-offset-card p,
.cs-compact-box p,
.cs-page-hero p,
.cs-payment-card p {
  color: var(--candy-muted);
  line-height: 1.7;
  margin: 0;
}
.cs-compact-section {
  padding-top: 10px;
}
.cs-compact-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.085);
  border-radius: 30px;
  background: linear-gradient(90deg, rgba(238,0,255,.045), rgba(255,255,255,.025) 42%, rgba(255,255,255,.018));
}
.cs-page-hero {
  padding: 146px 0 56px;
}
.cs-page-hero p {
  max-width: 610px;
  margin-top: 18px;
}
.cs-payment-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 14px;
}
.cs-payment-card {
  min-height: 218px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.085);
  border-radius: 24px;
  background: rgba(255,255,255,.028);
  transition: transform .28s cubic-bezier(.2,.8,.2,1), border-color .28s, background .28s;
}
.cs-payment-card:hover {
  transform: translateY(-3px);
  border-color: rgba(238,0,255,.16);
  background: rgba(255,255,255,.04);
}
.cs-payment-card i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: #f4d7f6;
  background: rgba(238,0,255,.055);
  margin-bottom: 28px;
}
.cs-payment-card h3 {
  color: var(--candy-text);
  letter-spacing: -.04em;
  margin-bottom: 8px;
}
.cs-payment-card a {
  display: inline-flex;
  margin-top: 22px;
  color: #f4d7f6;
  text-decoration: none;
  border-bottom: 1px solid rgba(244,215,246,.42);
  font-weight: 800;
}
.candy-landing,
.candy-section,
.candy-split-section,
.candy-process-section {
  display: none !important;
}
.products .card,
.card,
.product-wrapper .em-product-panel,
.modal-content,
.bg-gray,
.exora-payment-card {
  background: linear-gradient(180deg, rgba(18,18,18,.94), rgba(8,8,8,.98)) !important;
  border-color: rgba(255,255,255,.085) !important;
  box-shadow: 0 14px 40px rgba(0,0,0,.22) !important;
}
.products .card:hover,
.card:hover,
.exora-payment-card:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(238,0,255,.14) !important;
  box-shadow: 0 16px 44px rgba(0,0,0,.26) !important;
}
.price,
.text-primary,
.exora-trust-bar strong {
  color: #f4d7f6 !important;
}
.btn-primary,
.exora-btn-primary,
.product-wrapper form .btn[type="submit"],
.product-wrapper .em-buy-buttons .btn-primary,
.exora-cart-pill {
  background: #f4d7f6 !important;
  color: #080708 !important;
  border-color: rgba(255,255,255,.16) !important;
  box-shadow: none !important;
}
.btn-outline-primary,
.btn-outline,
.exora-btn-secondary {
  background: rgba(255,255,255,.035) !important;
  color: var(--candy-text) !important;
  border-color: rgba(255,255,255,.10) !important;
}
.cs-copy,
.cs-panel,
.cs-offset-card,
.cs-compact-box,
.cs-payment-card,
.cs-page-hero .container {
  animation: csIn .54s cubic-bezier(.2,.8,.2,1) both;
}
.cs-panel { animation-delay: .06s; }
.cs-offset-card:nth-child(2) { animation-delay: .04s; }
.cs-offset-card:nth-child(3) { animation-delay: .08s; }
@keyframes csIn {
  from { opacity: 0; transform: translate3d(0, 14px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@media (max-width: 1199.98px) {
  .cs-payment-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 991.98px) {
  .cs-hero-grid { grid-template-columns: 1fr; }
  .cs-panel { max-width: 540px; }
  .cs-offset-grid { grid-template-columns: 1fr; }
  .cs-offset-card:nth-child(2),
  .cs-offset-card:nth-child(3) { margin-top: 0; }
  .cs-compact-box { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 767.98px) {
  .cs-home { padding: 118px 0 58px; }
  .cs-copy h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .cs-actions { flex-direction: column; }
  .cs-btn { width: 100%; }
  .cs-section { padding: 56px 0; }
  .cs-section-title { display: block; }
  .cs-payment-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .cs-copy,
  .cs-panel,
  .cs-offset-card,
  .cs-compact-box,
  .cs-payment-card,
  .cs-page-hero .container { animation: none !important; }
}


:root {
  --candy-accent: #ee00ff;
  --candy-accent-soft: rgba(238, 0, 255, 0.12);
  --candy-accent-line: rgba(238, 0, 255, 0.28);
  --candy-text: #f7f3f8;
  --candy-muted: rgba(247, 243, 248, 0.72);
  --candy-faint: rgba(247, 243, 248, 0.48);
  --candy-card: rgba(13, 12, 16, 0.92);
  --candy-card-soft: rgba(18, 16, 21, 0.88);
  --candy-border: rgba(255, 255, 255, 0.10);
}
.candy-home {
  padding: 124px 0 40px;
}
.candy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .75fr);
  gap: 32px;
  align-items: end;
}
.candy-copy {
  max-width: 760px;
}
.candy-kicker,
.candy-section-head span,
.candy-info-card span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--candy-muted);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 700;
}
.candy-kicker::before,
.candy-section-head span::before,
.candy-info-card span::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--candy-accent-line);
}
.candy-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(3.3rem, 7vw, 5.4rem);
  line-height: .94;
  letter-spacing: -.075em;
  max-width: 700px;
}
.candy-copy p {
  max-width: 640px;
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--candy-muted);
  margin: 0;
}
.candy-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.candy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 166px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--candy-border);
  transition: transform .45s cubic-bezier(.16,1,.3,1), border-color .45s, background .45s, box-shadow .45s, color .45s;
}
.candy-btn-primary {
  background: #f5eef6;
  color: #0b0a0d;
  border-color: #f5eef6;
}
.candy-btn-secondary {
  background: rgba(255,255,255,.03);
  color: var(--candy-text);
}
.candy-btn:hover {
  transform: translateY(-2px);
}
.candy-btn-primary:hover {
  color: #0b0a0d;
  box-shadow: 0 10px 30px rgba(238, 0, 255, .12);
}
.candy-btn-secondary:hover {
  color: var(--candy-text);
  border-color: var(--candy-accent-line);
  background: rgba(238, 0, 255, .04);
}
.candy-stats-card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--candy-border);
  border-radius: 28px;
  padding: 24px;
  min-height: 100%;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}
.candy-stats-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.candy-stats-head span {
  color: var(--candy-muted);
}
.candy-stats-head strong {
  color: #f6d3fb;
  font-size: .98rem;
}
.candy-stat-list {
  display: grid;
  gap: 14px;
}
.candy-stat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.candy-stat-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.candy-stat-item span {
  color: var(--candy-muted);
  font-size: .95rem;
}
.candy-stat-item strong {
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -.05em;
}
.candy-section {
  padding: 36px 0 84px;
}
.candy-bestsellers {
  padding-top: 16px;
}
.candy-section-head {
  max-width: 700px;
  margin-bottom: 28px;
}
.candy-section-head h2 {
  margin: 16px 0 12px;
  font-size: clamp(2.15rem, 5vw, 3.7rem);
  line-height: .98;
  letter-spacing: -.06em;
}
.candy-section-head p {
  color: var(--candy-muted);
  line-height: 1.75;
  margin: 0;
}
.candy-best-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.candy-best-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--candy-text);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--candy-border);
  border-radius: 26px;
  overflow: hidden;
  transition: transform .45s cubic-bezier(.16,1,.3,1), border-color .45s, box-shadow .45s, background .45s;
}
.candy-best-card:hover {
  transform: translateY(-4px);
  color: var(--candy-text);
  border-color: var(--candy-accent-line);
  box-shadow: 0 16px 50px rgba(238, 0, 255, .08);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(238,0,255,.035));
}
.candy-best-rank {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  min-width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,8,10,.78);
  border: 1px solid rgba(255,255,255,.08);
  color: #f1d7f4;
  font-weight: 700;
}
.candy-best-image-wrap {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}
.candy-best-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
}
.candy-best-image-placeholder {
  border: 1px dashed rgba(255,255,255,.14);
  color: var(--candy-faint);
  display: grid;
  place-items: center;
}
.candy-best-body {
  padding: 0 20px 20px;
}
.candy-best-body h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  line-height: 1.15;
  letter-spacing: -.04em;
}
.candy-best-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.candy-best-meta span {
  color: var(--candy-muted);
  font-weight: 600;
}
.candy-best-meta strong {
  color: #f1d7f4;
  font-size: .94rem;
  font-weight: 650;
  text-align: right;
}
.candy-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.candy-info-card {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid var(--candy-border);
  background: var(--candy-card-soft);
  box-shadow: 0 16px 46px rgba(0,0,0,.18);
  transition: transform .45s cubic-bezier(.16,1,.3,1), border-color .45s, box-shadow .45s;
}
.candy-info-card:hover {
  transform: translateY(-3px);
  border-color: var(--candy-accent-line);
  box-shadow: 0 18px 52px rgba(238, 0, 255, .07);
}
.candy-info-card h3 {
  margin: 16px 0 10px;
  font-size: 1.4rem;
  line-height: 1.15;
  letter-spacing: -.04em;
}
.candy-info-card p {
  margin: 0;
  color: var(--candy-muted);
  line-height: 1.75;
}
.candy-copy,
.candy-stats-card,
.candy-best-card,
.candy-info-card {
  opacity: 0;
  transform: translateY(20px);
  animation: candyFadeUp .7s cubic-bezier(.16,1,.3,1) forwards;
}
.candy-stats-card {
  animation-delay: .08s;
}
.candy-best-card:nth-child(2) {
  animation-delay: .06s;
}
.candy-best-card:nth-child(3) {
  animation-delay: .12s;
}
.candy-info-card:nth-child(2) {
  animation-delay: .06s;
}
.candy-info-card:nth-child(3) {
  animation-delay: .12s;
}
@keyframes candyFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1199.98px) {
  .candy-hero {
    grid-template-columns: 1fr;
  }
  .candy-stats-card {
    max-width: 560px;
  }
}
@media (max-width: 991.98px) {
  .candy-best-grid,
  .candy-info-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767.98px) {
  .candy-home {
    padding: 108px 0 28px;
  }
  .candy-copy h1 {
    font-size: clamp(2.7rem, 15vw, 4.25rem);
  }
  .candy-copy p {
    font-size: .98rem;
  }
  .candy-actions {
    flex-direction: column;
  }
  .candy-btn {
    width: 100%;
  }
  .candy-stats-card {
    padding: 20px;
    border-radius: 24px;
  }
  .candy-stat-item strong {
    font-size: 1.25rem;
  }
  .candy-section {
    padding: 26px 0 64px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .candy-copy,
  .candy-stats-card,
  .candy-best-card,
  .candy-info-card {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}



:root {
  --candy-main: #ee00ff;
  --candy-main-soft: rgba(238, 0, 255, 0.075);
  --candy-main-line: rgba(238, 0, 255, 0.18);
  --candy-bg: #050505;
  --candy-panel: rgba(13, 13, 15, 0.92);
  --candy-panel-soft: rgba(18, 17, 20, 0.86);
  --candy-line: rgba(255, 255, 255, 0.10);
  --candy-text: #f7f4f8;
  --candy-muted: rgba(247, 244, 248, 0.68);
  --candy-faint: rgba(247, 244, 248, 0.48);
}
body {
  background:
    radial-gradient(circle at 80% 12%, rgba(238,0,255,.045), transparent 30rem),
    radial-gradient(circle at 0% 0%, rgba(255,255,255,.04), transparent 24rem),
    #050505 !important;
}
body::before {
  opacity: .45;
}
.exora-brand-mark {
  background: linear-gradient(145deg, #ffd9ff, #ffffff) !important;
  box-shadow: 0 0 22px rgba(238,0,255,.13) !important;
}
.exora-menu-toggle:hover,
.exora-menu-close:hover,
.exora-side-links a:hover,
.exora-side-links button:hover {
  box-shadow: 0 12px 34px rgba(238,0,255,.08) !important;
  border-color: var(--candy-main-line) !important;
}
.candy-home,
.cs-home,
.candy-home-v7 {
  padding: 124px 0 72px !important;
}
.candy-hero-v7 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.candy-hero-copy-v7 {
  max-width: 710px;
}
.candy-kicker-v7,
.candy-section-head-v7 span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--candy-muted);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 750;
}
.candy-kicker-v7::before,
.candy-section-head-v7 span::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--candy-main-line);
}
.candy-hero-copy-v7 h1 {
  margin: 18px 0 20px;
  font-size: clamp(3.2rem, 6.2vw, 5.6rem);
  line-height: .94;
  letter-spacing: -.075em;
}
.candy-hero-copy-v7 p {
  max-width: 620px;
  color: var(--candy-muted);
  font-size: 1.04rem;
  line-height: 1.8;
  margin: 0;
}
.candy-actions-v7 {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.candy-btn-v7 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 156px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--candy-line);
  text-decoration: none;
  font-weight: 750;
  transition: transform .42s cubic-bezier(.16,1,.3,1), background .42s, border-color .42s, box-shadow .42s, color .42s;
}
.candy-btn-primary-v7 {
  background: #f7eef8;
  border-color: #f7eef8;
  color: #080808;
}
.candy-btn-secondary-v7 {
  background: rgba(255,255,255,.035);
  color: var(--candy-text);
}
.candy-btn-v7:hover {
  transform: translateY(-2px);
}
.candy-btn-primary-v7:hover {
  color: #080808;
  box-shadow: 0 16px 38px rgba(238,0,255,.10);
}
.candy-btn-secondary-v7:hover {
  color: var(--candy-text);
  border-color: var(--candy-main-line);
  background: rgba(238,0,255,.035);
}
.candy-trustbar-v7 {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--candy-line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}
.candy-trustbar-v7 div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 17px 18px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}
.candy-trustbar-v7 strong {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: -.05em;
  color: var(--candy-text);
}
.candy-trustbar-v7 span {
  color: var(--candy-muted);
  font-size: .95rem;
}
.candy-top-products-v7,
.candy-why-v7 {
  padding: 54px 0 74px;
}
.candy-top-products-v7 .component {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.candy-top-products-v7 .section-title,
.candy-top-products-v7 .section-subtitle {
  display: none !important;
}
.candy-section-head-v7 {
  max-width: 720px;
  margin-bottom: 26px;
}
.candy-section-head-v7 h2 {
  margin: 16px 0 12px;
  font-size: clamp(2.3rem, 5vw, 4.1rem);
  line-height: .98;
  letter-spacing: -.065em;
}
.candy-section-head-v7 p {
  color: var(--candy-muted);
  margin: 0;
  line-height: 1.75;
}
.candy-top-products-v7 .products .card {
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.018)) !important;
  border-color: rgba(255,255,255,.10) !important;
  box-shadow: 0 18px 50px rgba(0,0,0,.20) !important;
}
.candy-top-products-v7 .products .card:hover {
  transform: translateY(-5px) !important;
  border-color: var(--candy-main-line) !important;
  box-shadow: 0 20px 54px rgba(238,0,255,.075) !important;
}
.candy-why-grid-v7 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.candy-why-grid-v7 article {
  padding: 26px;
  border-radius: 26px;
  border: 1px solid var(--candy-line);
  background: var(--candy-panel-soft);
  box-shadow: 0 18px 54px rgba(0,0,0,.18);
  transition: transform .42s cubic-bezier(.16,1,.3,1), border-color .42s, box-shadow .42s;
}
.candy-why-grid-v7 article:hover {
  transform: translateY(-3px);
  border-color: var(--candy-main-line);
  box-shadow: 0 20px 52px rgba(238,0,255,.06);
}
.candy-why-grid-v7 article > span {
  color: #f4c8f8;
  font-weight: 750;
}
.candy-why-grid-v7 h3 {
  margin: 18px 0 10px;
  font-size: 1.45rem;
  letter-spacing: -.04em;
}
.candy-why-grid-v7 p {
  margin: 0;
  color: var(--candy-muted);
  line-height: 1.75;
}
.candy-hero-copy-v7,
.candy-trustbar-v7,
.candy-section-head-v7,
.candy-top-products-v7 .products > div,
.candy-why-grid-v7 article {
  opacity: 0;
  transform: translateY(18px);
  animation: candyV7In .68s cubic-bezier(.16,1,.3,1) forwards;
}
.candy-trustbar-v7 {
  animation-delay: .08s;
}
.candy-top-products-v7 .products > div:nth-child(2),
.candy-why-grid-v7 article:nth-child(2) {
  animation-delay: .05s;
}
.candy-top-products-v7 .products > div:nth-child(3),
.candy-why-grid-v7 article:nth-child(3) {
  animation-delay: .10s;
}
@keyframes candyV7In {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.em-product-grid {
  max-width: 1180px;
  margin-inline: auto;
  align-items: stretch !important;
}
.product-page .card,
.em-product-grid > div > .card,
.em-product-grid .card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.018)) !important;
  border: 1px solid var(--candy-line) !important;
  border-radius: 28px !important;
  box-shadow: 0 18px 60px rgba(0,0,0,.22) !important;
}
.em-product-title {
  font-size: clamp(2.4rem, 5vw, 4.4rem) !important;
  line-height: .96 !important;
  letter-spacing: -.07em !important;
  margin-bottom: 18px !important;
}
.em-product-grid .display-6 + .status,
.em-product-grid .status {
  margin-bottom: 14px !important;
}
.em-product-grid .card-img-top.aspect-product-page-image,
.em-product-grid img.aspect-product-page-image {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: contain !important;
  padding: 24px !important;
  background: rgba(255,255,255,.025) !important;
  border-radius: 24px !important;
  border: 1px solid rgba(255,255,255,.075) !important;
}
.variant,
.variant-option,
.product-variant,
.em-product-grid label,
.em-product-grid .form-check,
.em-product-grid .list-group-item {
  border-radius: 18px !important;
}
.em-product-grid input[type="radio"] + label,
.em-product-grid .variant,
.em-product-grid .variant-option {
  background: rgba(255,255,255,.035) !important;
  border: 1px solid rgba(255,255,255,.09) !important;
  color: var(--candy-text) !important;
  box-shadow: none !important;
}
.em-product-grid input[type="radio"]:checked + label,
.em-product-grid .variant.active,
.em-product-grid .variant-option.active {
  background: rgba(238,0,255,.055) !important;
  border-color: var(--candy-main-line) !important;
}
.em-product-grid .btn-primary,
.em-product-grid .btn-outline-primary {
  min-height: 48px;
  border-radius: 999px !important;
}
.em-product-grid .btn-primary {
  background: #f7eef8 !important;
  color: #080808 !important;
  border-color: #f7eef8 !important;
  box-shadow: 0 16px 38px rgba(238,0,255,.08) !important;
}
.em-product-grid .btn-outline-primary {
  background: rgba(255,255,255,.025) !important;
  color: var(--candy-text) !important;
  border-color: rgba(255,255,255,.14) !important;
}
.em-product-grid .btn-primary:hover,
.em-product-grid .btn-outline-primary:hover {
  transform: translateY(-2px) !important;
  border-color: var(--candy-main-line) !important;
}
.em-product-grid input,
.em-product-grid select,
.em-product-grid textarea,
.em-product-grid .form-control {
  background: rgba(255,255,255,.035) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  color: var(--candy-text) !important;
  border-radius: 16px !important;
}
@media (max-width: 991.98px) {
  .candy-hero-v7 {
    grid-template-columns: 1fr;
  }
  .candy-trustbar-v7 {
    max-width: 560px;
  }
  .candy-why-grid-v7 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767.98px) {
  .candy-home-v7 {
    padding: 106px 0 48px !important;
  }
  .candy-hero-copy-v7 h1 {
    font-size: clamp(2.7rem, 15vw, 4.1rem);
  }
  .candy-actions-v7 {
    flex-direction: column;
  }
  .candy-btn-v7 {
    width: 100%;
  }
  .candy-trustbar-v7 div {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 5px;
  }
  .candy-top-products-v7,
  .candy-why-v7 {
    padding: 38px 0 58px;
  }
  .em-product-grid {
    gap: 20px;
  }
  .em-product-title {
    font-size: clamp(2.2rem, 13vw, 3.4rem) !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .candy-hero-copy-v7,
  .candy-trustbar-v7,
  .candy-section-head-v7,
  .candy-top-products-v7 .products > div,
  .candy-why-grid-v7 article {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


:root {
  --candy-main: #ee00ff;
  --candy-main-soft: rgba(238, 0, 255, 0.045);
  --candy-main-line: rgba(238, 0, 255, 0.16);
  --candy-main-visible: rgba(238, 0, 255, 0.72);
}
body {
  background:
    radial-gradient(circle at 84% 8%, rgba(238,0,255,.026), transparent 28rem),
    radial-gradient(circle at 0% 0%, rgba(255,255,255,.035), transparent 24rem),
    #050505 !important;
}
.exora-brand-mark {
  background: #f1d9f2 !important;
  box-shadow: none !important;
}
.candy-kicker-v7::before,
.candy-section-head-v7 span::before {
  background: var(--candy-main-visible) !important;
}
.candy-top-products-v7 .products > div:nth-child(n+4) {
  display: none !important;
}
.candy-top-products-v7 .container.py-20 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.candy-trustbar-v7,
.candy-top-products-v7 .products .card,
.candy-why-grid-v7 article,
.product-page .card,
.em-product-grid > div > .card,
.em-product-grid .card {
  box-shadow: 0 16px 45px rgba(0,0,0,.22) !important;
}
.candy-btn-primary-v7:hover,
.candy-top-products-v7 .products .card:hover,
.candy-why-grid-v7 article:hover,
.em-product-grid .btn-primary {
  box-shadow: 0 14px 34px rgba(238,0,255,.045) !important;
}
.candy-btn-secondary-v7:hover,
.candy-top-products-v7 .products .card:hover,
.candy-why-grid-v7 article:hover,
.em-product-grid .btn-primary:hover,
.em-product-grid .btn-outline-primary:hover,
.em-product-grid input[type="radio"]:checked + label,
.em-product-grid .variant.active,
.em-product-grid .variant-option.active {
  border-color: rgba(238,0,255,.20) !important;
}
.candy-btn-secondary-v7:hover,
.em-product-grid input[type="radio"]:checked + label,
.em-product-grid .variant.active,
.em-product-grid .variant-option.active {
  background: rgba(238,0,255,.035) !important;
}
.candy-why-grid-v7 article > span {
  color: #ee00ff !important;
}
.candy-section-head-v7 p {
  max-width: 560px;
}
.candy-hero-copy-v7 h1 {
  max-width: 720px;
}



:root {
  --candy-main: #ee00ff !important;
  --candy-main-soft: rgba(238, 0, 255, 0.055) !important;
  --candy-main-line: rgba(238, 0, 255, 0.22) !important;
  --candy-main-visible: #ee00ff !important;
}
.candy-top-products-v7 .section-subtitle p,
.candy-top-products-v7 .section-subtitle,
.candy-top-products-v7 .section-title {
  display: none !important;
}
.candy-btn-primary-v7,
.em-product-grid .btn-primary,
.product-page .btn-primary,
.product-page button[type="submit"].btn-primary {
  background: #ee00ff !important;
  border-color: #ee00ff !important;
  color: #050505 !important;
  box-shadow: none !important;
}
.candy-btn-primary-v7:hover,
.em-product-grid .btn-primary:hover,
.product-page .btn-primary:hover,
.product-page button[type="submit"].btn-primary:hover {
  background: #ee00ff !important;
  border-color: #ee00ff !important;
  color: #050505 !important;
  box-shadow: 0 10px 28px rgba(238, 0, 255, 0.16) !important;
}
.candy-btn-secondary-v7:hover,
.em-product-grid .btn-outline-primary:hover,
.product-page .btn-outline-primary:hover {
  border-color: rgba(238, 0, 255, 0.30) !important;
  background: rgba(238, 0, 255, 0.045) !important;
}
.candy-kicker-v7::before,
.candy-section-head-v7 span::before {
  background: #ee00ff !important;
  opacity: .88 !important;
}
.candy-why-grid-v7 article > span,
.candy-stats-head strong,
.candy-best-meta strong {
  color: #ee00ff !important;
}
.exora-brand-mark {
  background: #ee00ff !important;
  color: #050505 !important;
}

:root {
  --candy-main: #ee00ff !important;
  --candy-main-visible: #ee00ff !important;
  --candy-main-soft: rgba(238, 0, 255, 0.055) !important;
  --candy-main-line: rgba(238, 0, 255, 0.24) !important;
}
.exora-brand-mark,
.candy-brand-mark,
.candy-kicker-v7::before,
.candy-section-head-v7 span::before {
  background-color: #ee00ff !important;
  background-image: none !important;
}
.candy-btn-primary-v7,
.candy-btn-primary,
.cs-btn-primary,
.exora-btn-primary,
.btn-primary,
.product-wrapper .em-buy-buttons .btn-primary,
.product-wrapper form .btn-primary,
.product-wrapper form button.btn-primary,
.product-wrapper form button[type="submit"].btn-primary,
.product-wrapper form button.w-100.btn-primary,
.em-product-grid .btn-primary,
.product-page .btn-primary,
.product-page button[type="submit"].btn-primary,
.product-page form button[type="submit"],
.product-wrapper button[type="submit"] {
  background: #ee00ff !important;
  background-color: #ee00ff !important;
  background-image: none !important;
  border-color: #ee00ff !important;
  color: #050505 !important;
  box-shadow: none !important;
}
.candy-btn-primary-v7:hover,
.candy-btn-primary:hover,
.cs-btn-primary:hover,
.exora-btn-primary:hover,
.btn-primary:hover,
.product-wrapper .em-buy-buttons .btn-primary:hover,
.product-wrapper form .btn-primary:hover,
.product-wrapper form button.btn-primary:hover,
.product-wrapper form button[type="submit"].btn-primary:hover,
.product-wrapper form button.w-100.btn-primary:hover,
.em-product-grid .btn-primary:hover,
.product-page .btn-primary:hover,
.product-page button[type="submit"].btn-primary:hover,
.product-page form button[type="submit"]:hover,
.product-wrapper button[type="submit"]:hover {
  background: #ee00ff !important;
  background-color: #ee00ff !important;
  background-image: none !important;
  border-color: #ee00ff !important;
  color: #050505 !important;
  box-shadow: 0 8px 22px rgba(238, 0, 255, 0.10) !important;
}
.text-primary,
.candy-why-grid-v7 article > span,
.candy-stats-head strong,
.candy-best-meta strong,
.product-wrapper .active-indicator,
.em-product-grid input[type="radio"]:checked + label .price,
.em-product-grid .variant.active .price,
.em-product-grid .variant-option.active .price {
  color: #ee00ff !important;
}
.product-wrapper .active-indicator {
  background: #ee00ff !important;
}


.cs-payment-symbol {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f4d7f6;
  background: rgba(238, 0, 255, 0.055);
  border: 0;
  margin-bottom: 28px;
}
.cs-payment-ltc {
  font-size: 1.75rem;
  font-weight: 800;
  font-family: Arial, Helvetica, sans-serif;
}
.cs-payment-sol {
  flex-direction: column;
  gap: 5px;
}
.cs-payment-sol span {
  width: 24px;
  height: 5px;
  border-radius: 999px;
  display: block;
  background: currentColor;
}
.cs-payment-sol span:nth-child(1),
.cs-payment-sol span:nth-child(3) {
  transform: skewX(-18deg);
}
.cs-payment-sol span:nth-child(2) {
  transform: skewX(18deg);
  opacity: .78;
}
.cs-payment-psc {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1;
  color: initial;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}
.cs-payment-card > i.fa-solid.fa-coins,
.cs-payment-card > i.fa-solid.fa-circle-nodes,
.cs-payment-card > i.fa-solid.fa-ticket {
  display: none !important;
}
/* Cart icon inside the right slide-out menu */
.exora-cart-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.exora-cart-meta .fa-cart-shopping {
  font-size: .95rem;
  color: #ffffff !important;
  opacity: 1;
}
.exora-cart-meta .exora-cart-pill {
  min-width: auto !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-size: .78rem;
}

.exora-cart-meta .exora-cart-pill {
  display: none !important;
}
