


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}


:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f5;
  --bg-tertiary: #000000;
  --accent: #111111;
  --accent-hover: #000000;
  --text-primary: #111111;
  --text-secondary: #333333;
  --text-muted: #666666;

  --tone-lilac: #6d4fbe;
  --tone-lilac-deep: #43307a;
  --tone-lilac-soft: #efe9fb;
  --tone-mirror: #d7cfe9;
  --line-soft: #eeeeee;

  --fluid-font-sm: clamp(0.875rem, 1vw, 1rem);
  --fluid-font-md: clamp(1rem, 2vw, 1.25rem);
  --fluid-font-lg: clamp(1.5rem, 4vw, 3rem);

  --fluid-space-sm: clamp(0.5rem, 2vw, 1rem);
  --fluid-space-md: clamp(1rem, 3vw, 2rem);
  --fluid-space-lg: clamp(2rem, 5vw, 4rem);

  --fluid-width: clamp(320px, 92%, 1200px);
  --edge-radius: 12px;
}


body {
  font-family: 'Roboto', 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  background: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
}
h1 {
  font-size: clamp(2rem, 7vw, 3.2rem);
  line-height: 1.12;
}
h2 {
  font-size: clamp(1.5rem, 4.5vw, 2.1rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.4rem;
  line-height: 1.3;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
}
p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
a {
  color: var(--tone-lilac-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--accent-hover);
}
strong, b {
  font-weight: 700;
}
em {
  font-style: italic;
}
img {
  max-width: 100%;
}
svg {
  display: block;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
}
:focus-visible {
  outline: 3px solid var(--tone-lilac);
  outline-offset: 2px;
}


.flow-row { display: flex; flex-direction: row; }
.flow-col { display: flex; flex-direction: column; }
.flow-wrap { flex-wrap: wrap; }
.flow-center { align-items: center; }
.flow-between { justify-content: space-between; }
.gap-sm { gap: var(--fluid-space-sm); }
.gap-md { gap: var(--fluid-space-md); }
.gap-lg { gap: var(--fluid-space-lg); }
.pad-sm { padding: var(--fluid-space-sm); }
.pad-md { padding: var(--fluid-space-md); }
.pad-lg { padding: var(--fluid-space-lg); }
.stack-sm { margin-bottom: 0.75rem; }
.stack-md { margin-bottom: 1.5rem; }
.stack-lg { margin-bottom: 2.5rem; }
.txt-center { text-align: center; }
.txt-right { text-align: right; }
.txt-muted { color: var(--text-muted); }
.txt-lilac { color: var(--tone-lilac-deep); }
.txt-lead { font-size: var(--fluid-font-md); }
.txt-small { font-size: var(--fluid-font-sm); }
.txt-caps { text-transform: uppercase; letter-spacing: 0.14em; }
.fw-bold { font-weight: 700; }
.fw-med { font-weight: 500; }
.w-full { width: 100%; }
.bg-soft { background: var(--bg-secondary); }
.bg-lilac { background: var(--tone-lilac-soft); }
.bg-invert { background: #111111; color: #ffffff; }
.radius-md { border-radius: var(--edge-radius); }
.radius-lg { border-radius: 18px; }
.bd-top { border-top: 1px solid var(--line-soft); }
.bd-all { border: 1px solid var(--tone-mirror); }
.list-dot { list-style: none; }
.no-underline { text-decoration: none; }
.blk { display: block; }
.inline-blk { display: inline-block; }
.lh-copy { line-height: 1.7; }
.pointer { cursor: pointer; }
.f-body { font-size: 1rem; }
.media-fit { max-width: 100%; }
.list-plain { list-style: none; }
.bd-b { border-bottom: 1px solid var(--line-soft); }
.va-top { vertical-align: top; }
.flex-fill { flex: 1 1 auto; }
.nowrap { white-space: nowrap; }
.center-x { margin-left: auto; margin-right: auto; }


.page-body {
  min-height: 100vh;
}
.layout-shell {
  width: var(--fluid-width);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.layout-main {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}
.layout-main > section {
  flex: 1 1 100%;
  padding: 2rem 1rem;
}
.layout-main > .band-half {
  flex: 1 1 calc(50% - 0.5rem);
  min-width: 300px;
}
.page-head {
  padding: 2rem 1rem;
  border-bottom: 1px solid var(--line-soft);
}
.page-title {
  margin-bottom: 0.5rem;
}
.section-head {
  margin-bottom: 1.5rem;
}
.section-eyebrow {
  font-size: var(--fluid-font-sm);
  color: var(--tone-lilac-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.section-lead {
  max-width: 62ch;
  color: var(--text-secondary);
}
.prose {
  max-width: 74ch;
}
.prose h2 {
  margin-top: 2rem;
}
.prose h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose li {
  margin-bottom: 0.5rem;
  padding-left: 1.1rem;
  position: relative;
}
.prose li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--tone-lilac);
}
.prose ul {
  margin-bottom: 1rem;
}

.product-benefits,
.product-catalog,
.our-process,
.payment-options,
.contact-form,
.contact-details,
.contact-intro,
.cod-explainer,
.cart-section,
.order-section,
.product-detail-section,
.product-specs,
.delivery-intro,
.returns-intro,
.returns-terms,
.returns-steps,
.legal-page {
  position: relative;
}
.band-full {
  flex: 1 1 100%;
}
.section-title {
  margin-bottom: 0.5rem;
}
.prose-text {
  margin-bottom: 0.9rem;
}
.prose-title {
  font-size: 1.25rem;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}
.prose-list {
  margin-bottom: 1.25rem;
}
.prose-item {
  color: var(--text-secondary);
}
.consent-text {
  display: block;
}


.site-masthead {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--line-soft);
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.masthead-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: auto;
  text-decoration: none;
  color: var(--text-primary);
}
.brand-mark {
  width: 34px;
  height: 34px;
  flex: none;
}
.brand-name {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.masthead-nav {
  font-size: var(--fluid-font-sm);
}
.masthead-list {
  display: flex;
}
.masthead-item {
  display: block;
}
.masthead-link {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: var(--fluid-font-sm);
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 3px solid transparent;
}
.masthead-link:hover {
  color: var(--tone-lilac-deep);
}
.masthead-link.is-current {
  color: var(--text-primary);
  border-bottom-color: var(--tone-lilac);
}
.masthead-cart {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: var(--fluid-font-sm);
}
.masthead-cart svg {
  width: 22px;
  height: 22px;
}
.cart-counter {
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  background: var(--tone-lilac);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  padding: 0 6px;
}
.masthead-toggle {
  margin-left: auto;
}
.masthead-close {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
}
.masthead-phone {
  font-size: var(--fluid-font-sm);
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
}


[data-mm-header]{--mm-bg:#ffffff;--mm-text:#111111;--mm-primary:#6d4fbe;--mm-overlay-bg:rgba(17,17,17,0.55)}
[data-mm-header]{position:relative}
[data-mm-toggle]{display:flex;flex-direction:column;justify-content:center;gap:5px;background:none;border:none;cursor:pointer;padding:8px;z-index:1001}
[data-mm-toggle] span{display:block;width:24px;height:2px;background:var(--mm-text)}
[data-mm-menu]{position:fixed;top:0;left:0;width:100%;height:100vh;height:100dvh;background:var(--mm-bg);opacity:0;visibility:hidden;z-index:1100;display:flex;flex-direction:column;justify-content:center;align-items:center;padding:24px}
[data-mm-menu].mm-open{opacity:1;visibility:visible}
[data-mm-menu] ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;align-items:center;gap:8px}
[data-mm-menu] ul li a{display:block;padding:12px 24px;color:var(--mm-text);text-decoration:none;font-size:22px;font-weight:500}
[data-mm-menu] ul li a:hover{color:var(--mm-primary)}
[data-mm-close]{position:absolute;top:20px;right:20px;background:none;border:none;font-size:32px;line-height:1;cursor:pointer;color:var(--mm-text);padding:4px 8px;z-index:1101}
@media(min-width:768px){
[data-mm-toggle]{display:none!important}
[data-mm-menu]{position:static!important;width:auto!important;height:auto!important;background:transparent!important;opacity:1!important;visibility:visible!important;padding:0!important;flex-direction:row!important;justify-content:flex-end!important}
[data-mm-menu] ul{flex-direction:row;gap:0;align-items:center}
[data-mm-menu] ul li a{padding:8px 16px;font-size:inherit;font-weight:inherit}
[data-mm-close]{display:none!important}
}


.hero-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 4rem 1rem;
  color: #fff;
  background: linear-gradient(120deg, #43307a, #6d4fbe, #d7cfe9);
  background-size: 200% 200%;
  background-attachment: fixed;
}
.hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}
.hero-veil {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.62), rgba(67, 48, 122, 0.72));
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hero-section .section-eyebrow {
  color: #d7cfe9;
}
.hero-title {
  color: #ffffff;
  margin-bottom: 1rem;
}
.hero-lead {
  color: #f1ecfb;
  font-size: var(--fluid-font-md);
  margin-bottom: 1.5rem;
}
.hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
}
.price-old {
  font-size: 1rem;
  font-weight: 500;
  color: #d7cfe9;
  text-decoration: line-through;
}
.hero-meta {
  margin-top: 1rem;
  font-size: var(--fluid-font-sm);
  color: #e6dffa;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}


.btn-primary {
  background: none;
  border: none;
  color: var(--tone-lilac-deep);
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: var(--fluid-font-md);
  padding: 0.4rem 0;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  display: inline-block;
}
.btn-primary::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
}
.btn-primary:hover::after {
  height: 4px;
}
.btn-light {
  color: #ffffff;
}
.btn-quiet {
  color: var(--text-secondary);
  font-weight: 500;
}
.btn-solid {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  border: none;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 600;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
.btn-solid:hover {
  background: var(--accent-hover);
  color: #ffffff;
}
.btn-block {
  display: block;
  width: 100%;
}

.sticky-bar .btn-solid,
.site-footer .btn-solid {
  background: var(--tone-mirror);
  color: #111111;
}
.sticky-bar .btn-solid:hover,
.site-footer .btn-solid:hover {
  background: #ffffff;
  color: #111111;
}


.section-divider {
  text-align: center;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  color: rgba(17, 17, 17, 0.07);
  line-height: 1;
  padding: 0.5rem 0;
  width: 100%;
}


.benefit-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.benefit-card {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}
.benefit-figure {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 10px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tone-lilac-soft);
}
.benefit-figure svg {
  width: 46px;
  height: 46px;
}
.benefit-body {
  flex: 1 1 auto;
}
.benefit-title {
  margin-bottom: 0.25rem;
}
.benefit-text {
  color: var(--text-secondary);
  margin-bottom: 0;
}


.catalog-card {
  display: flex;
  flex-wrap: wrap;
  gap: var(--fluid-space-md);
  background: #ffffff;
  border: 1px solid var(--tone-mirror);
  border-radius: 18px;
  padding: var(--fluid-space-md);
}
.catalog-media {
  flex: 1 1 300px;
}
.catalog-photo {
  width: 100%;
  height: auto;
  border-radius: 14px;
  background: var(--tone-lilac-soft);
}
.catalog-body {
  flex: 1 1 340px;
}
.catalog-title {
  margin-bottom: 0.25rem;
}
.catalog-note {
  font-size: var(--fluid-font-sm);
  margin-bottom: 1rem;
}
.catalog-more {
  margin-top: 1rem;
  margin-bottom: 0;
}
.bundle-buy {
  white-space: nowrap;
}
.bundle-list {
  margin-top: 1rem;
}
.bundle-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-top: 1px solid var(--line-soft);
}
.bundle-name {
  flex: 1 1 auto;
  font-weight: 500;
}
.bundle-price {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 700;
  white-space: nowrap;
}
.bundle-note {
  order: 3;
  flex: 1 1 100%;
  font-size: var(--fluid-font-sm);
  color: var(--text-muted);
}


.process-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  counter-reset: krok;
}
.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.step-index {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 44px;
  text-align: center;
}
.step-body {
  color: var(--text-secondary);
}
.step-title {
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}
.step-text {
  color: var(--text-secondary);
  margin-bottom: 0;
}
.contact-line {
  margin-bottom: 0.25rem;
}
.fact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.fact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.fact-icon {
  width: 26px;
  height: 26px;
  flex: none;
  color: var(--tone-lilac-deep);
}
.fact-text {
  margin-bottom: 0;
}


.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: var(--fluid-font-sm);
  color: var(--text-muted);
  padding: 0.75rem 1rem 0;
}
.crumb {
  color: var(--text-muted);
}
.crumb-sep {
  color: var(--tone-mirror);
}
.product-detail {
  display: flex;
  flex-wrap: wrap;
  gap: var(--fluid-space-md);
}
.detail-media {
  flex: 1 1 340px;
  position: relative;
}
.detail-photo {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--tone-mirror);
  background: var(--tone-lilac-soft);
}
.detail-title {
  margin-bottom: 0.5rem;
}
.detail-sub {
  margin-bottom: 1rem;
}
.detail-zoom-note {
  font-size: var(--fluid-font-sm);
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.detail-panel {
  flex: 1 1 340px;
}
.price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.price-now {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 800;
}
.price-was {
  color: var(--text-muted);
  text-decoration: line-through;
}
.discount-badge {
  background: #111111;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}
.stock-line {
  color: var(--tone-lilac-deep);
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.sku-line {
  font-size: var(--fluid-font-sm);
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.benefit-lines {
  margin: 1rem 0;
}
.benefit-line {
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}
.benefit-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tone-lilac);
}
.qty-stepper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--tone-mirror);
  border-radius: 999px;
  padding: 0.25rem;
  width: max-content;
}
.qty-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--bg-secondary);
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
}
.qty-btn:hover {
  background: var(--tone-lilac-soft);
}
.qty-value {
  min-width: 2.5rem;
  text-align: center;
  font-weight: 700;
}
.buy-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.buy-button {
  flex: 0 0 auto;
}
.buy-alt {
  white-space: nowrap;
}
.buy-feedback {
  font-size: var(--fluid-font-sm);
  color: var(--tone-lilac-deep);
  font-weight: 500;
}
.spec-table {
  width: 100%;
  font-size: var(--fluid-font-sm);
}
.spec-row {
  border-bottom: 1px solid var(--line-soft);
}
.spec-key {
  padding: 0.6rem 0.75rem 0.6rem 0;
  color: var(--text-muted);
  vertical-align: top;
  width: 42%;
}
.spec-value {
  padding: 0.6rem 0;
  font-weight: 500;
}


.tab-strip {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 2px solid #eee;
  margin-bottom: 1rem;
}
.tab-button {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 0.7rem 1rem;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 500;
  cursor: pointer;
  color: var(--text-muted);
}
.tab-button.is-current {
  color: var(--text-primary);
  border-bottom-color: var(--tone-lilac);
}
.collapsible-panel {
  border-bottom: 1px solid var(--line-soft);
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  background: none;
  border: none;
  padding: 0.9rem 0;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.panel-sign {
  color: var(--tone-lilac);
  font-size: 1.4rem;
  line-height: 1;
}
.panel-body {
  padding-bottom: 1rem;
  color: var(--text-secondary);
}
.panel-text {
  margin-bottom: 0.9rem;
}
.panel-list {
  margin-bottom: 1rem;
}
.panel-item {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.5rem;
}
.panel-item::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--tone-lilac);
}


.faq-list {
  display: block;
}
.faq-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  margin-bottom: 1rem;
  max-width: 760px;
}
.faq-item:nth-child(even) {
  margin-left: auto;
}
.faq-item:nth-child(odd) {
  margin-right: auto;
}
.faq-question {
  margin-bottom: 0.4rem;
}
.faq-answer {
  color: var(--text-secondary);
  margin-bottom: 0;
}


.cart-view {
  margin-bottom: 1.5rem;
}
.cart-name {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}
.total-label {
  font-weight: 500;
}
.total-value {
  white-space: nowrap;
}
.empty-text {
  margin-bottom: 1rem;
}
.cart-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.cart-thumb {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 10px;
  flex: none;
  background: var(--tone-lilac-soft);
}
.cart-info {
  flex: 1 1 220px;
}
.cart-sum {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 700;
  white-space: nowrap;
}
.cart-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
  font-size: var(--fluid-font-sm);
  padding: 0;
}
.cart-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
}
.cart-empty {
  padding: 2rem 0;
  color: var(--text-muted);
}
.order-form {
  max-width: 480px;
}
.order-hint {
  max-width: 480px;
  font-size: var(--fluid-font-sm);
  color: var(--text-muted);
}
.form-field {
  margin-bottom: 1rem;
}
.form-label {
  display: block;
  font-size: var(--fluid-font-sm);
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.form-input {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--tone-mirror);
  border-radius: 10px;
  background: #ffffff;
}
.form-input:focus {
  border-color: var(--tone-lilac);
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: var(--fluid-font-sm);
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.form-consent input {
  margin-top: 0.35rem;
  flex: none;
}
.form-note {
  font-size: var(--fluid-font-sm);
  color: var(--text-muted);
}
.form-alert {
  padding: 0.9rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: var(--fluid-font-sm);
}
.alert-ok {
  background: var(--tone-lilac-soft);
  color: var(--tone-lilac-deep);
}
.alert-bad {
  background: #f5f5f5;
  color: #111111;
  border-left: 4px solid #111111;
}


.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  background: #111111;
  color: #ffffff;
  padding: 0.6rem 1rem;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.18);
}
.sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.sticky-text {
  font-size: var(--fluid-font-sm);
  margin-bottom: 0;
  color: #efe9fb;
}
.sticky-action {
  white-space: nowrap;
  padding: 0.6rem 1.2rem;
}
.sticky-price {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 800;
  color: #ffffff;
}
.has-sticky-bar {
  padding-bottom: 5.5rem;
}


.site-footer {
  background: #111111;
  color: #d7cfe9;
  padding: 3.5rem 1rem 1.5rem;
  margin-top: 2rem;
}
.site-footer h2,
.site-footer h3 {
  color: #ffffff;
}
.site-footer a {
  color: #d7cfe9;
  text-decoration: none;
}
.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-lead {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(215, 207, 233, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: var(--fluid-space-md);
  align-items: flex-start;
}
.footer-lead-copy {
  flex: 1 1 320px;
}
.footer-callback {
  flex: 1 1 320px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: flex-start;
}
.callback-input {
  flex: 1 1 140px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(215, 207, 233, 0.4);
  border-radius: 10px;
  background: #1b1b1b;
  color: #ffffff;
}
.callback-note {
  flex: 1 1 100%;
  font-size: 0.85rem;
  color: #a79ec0;
  margin-bottom: 0;
}
.callback-consent {
  flex: 1 1 100%;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: #a79ec0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
}
.footer-col {
  min-width: 0;
}
.footer-heading {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.footer-links {
  margin-bottom: 0;
}
.footer-item {
  margin-bottom: 0.4rem;
  font-size: var(--fluid-font-sm);
}
.footer-heading-big {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.legal-item {
  white-space: nowrap;
}
.footer-contact {
  font-size: var(--fluid-font-sm);
  line-height: 1.9;
}
.footer-pay {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.pay-chip {
  border: 1px solid rgba(215, 207, 233, 0.35);
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-bottom {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(215, 207, 233, 0.2);
  font-size: 0.85rem;
}
.footer-disclaimer {
  color: #a79ec0;
  max-width: 74ch;
  margin-bottom: 0.75rem;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: #a79ec0;
}


.cc-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: none;
  background: #ffffff;
  color: #111111;
  border-top: 3px solid #6d4fbe;
  box-shadow: 0 -8px 30px rgba(17, 17, 17, 0.18);
  padding: 1rem;
}
.cc-banner.cc-visible {
  display: block;
}
.cc-banner-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.cc-banner-content {
  flex: 1 1 320px;
}
.cc-title {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.cc-description {
  font-size: 0.9rem;
  color: #333333;
  margin-bottom: 0;
}
.cc-link {
  color: #43307a;
}
.cc-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #111111;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  background: #ffffff;
  color: #111111;
}
.cc-btn-primary {
  background: #111111;
  color: #ffffff;
}
.cc-btn-secondary {
  background: #ffffff;
  color: #111111;
}
.cc-btn-link {
  border-color: transparent;
  text-decoration: underline;
}
.cc-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.cc-settings-modal.cc-visible {
  display: flex;
}
.cc-settings-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 17, 17, 0.6);
}
.cc-settings-container {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
}
.cc-settings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid #eeeeee;
}
.cc-settings-title {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}
.cc-settings-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
}
.cc-settings-body {
  overflow-y: auto;
  padding: 1.25rem;
}
.cc-settings-description {
  font-size: 0.9rem;
  color: #333333;
  margin-bottom: 1rem;
}
.cc-settings-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.25rem;
  border-top: 1px solid #eeeeee;
}
.cc-category {
  padding: 0.9rem 0;
  border-bottom: 1px solid #eeeeee;
}
.cc-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cc-category-info {
  flex: 1 1 auto;
}
.cc-category-title {
  font-weight: 600;
}
.cc-category-description {
  font-size: 0.85rem;
  color: #666666;
}
.cc-toggle {
  flex: none;
}
.cc-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.cc-toggle-label {
  display: block;
  width: 52px;
  height: 28px;
  position: relative;
  border-radius: 999px;
  background: #cccccc;
  cursor: pointer;
}
.cc-toggle-label::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
}
.cc-toggle input:checked + .cc-toggle-label {
  background: #6d4fbe;
}
.cc-toggle input:checked + .cc-toggle-label::after {
  transform: translateX(24px);
}
.cc-toggle-disabled .cc-toggle-label {
  opacity: 0.7;
}
.cc-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.cc-footer-link {
  text-decoration: underline;
  cursor: pointer;
}
.cc-footer-separator {
  opacity: 0.5;
}


@media (max-width: 767px) {
  .tab-strip {
    display: none;
  }
  .collapsible-panel .panel-body {
    display: none;
  }
  .collapsible-panel.is-open .panel-body {
    display: block;
  }
  .masthead-phone {
    display: none;
  }
  .sticky-text {
    display: none;
  }
  .bundle-buy {
    order: 4;
    margin-left: auto;
  }
}


@media (min-width: 768px) {
  .masthead-list {
    border-bottom: 2px solid #eee;
  }
  .masthead-link {
    padding: 0.6rem 0.9rem;
  }
  .hero-section {
    padding: 7rem 1rem;
  }
  .section-divider {
    font-size: 6rem;
  }
  .benefit-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .benefit-card {
    flex: 1 1 calc(50% - 0.5rem);
  }
  .panel-head {
    display: none;
  }
  .collapsible-panel {
    border-bottom: none;
  }
  .collapsible-panel .panel-body {
    display: none;
  }
  .collapsible-panel.is-selected .panel-body {
    display: block;
  }
  .process-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .process-step {
    flex: 1 1 calc(50% - 0.5rem);
  }
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.2rem;
    line-height: 1.12;
  }
  h2 {
    font-size: 2.1rem;
  }
  .layout-main > section {
    padding: 2rem 1rem;
  }
  .prose {
    font-size: 1.05rem;
  }
}
