

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; }





:root {
  --cc-bg: #ffffff;
  --cc-text: #333333;
  --cc-text-secondary: #666666;
  --cc-border: rgba(0, 0, 0, 0.1);
  --cc-primary: #2563eb;
  --cc-primary-hover: #1d4ed8;
  --cc-secondary: #ffffff;
  --cc-secondary-hover: #f3f4f6;
  --cc-secondary-border: #d1d5db;
  --cc-toggle-bg: #d1d5db;
  --cc-toggle-active: #2563eb;
  --cc-overlay: rgba(0, 0, 0, 0.6);
  --cc-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  --cc-radius: 12px;
  --cc-radius-sm: 8px;
  --cc-transition: 0.3s ease;
  --cc-z-index: 99999;
}


.cc-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.cc-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--cc-z-index);
  background: var(--cc-bg);
  box-shadow: var(--cc-shadow);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--cc-transition), opacity var(--cc-transition), visibility var(--cc-transition);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--cc-text);
}

.cc-banner.cc-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cc-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cc-banner-content {
  flex: 1 1 auto;
  min-width: 280px;
  max-width: 700px;
}

.cc-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--cc-text);
}

.cc-description {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--cc-text-secondary);
  line-height: 1.6;
}

.cc-link {
  color: var(--cc-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cc-link:hover {
  text-decoration: none;
}

.cc-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}



.cc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--cc-radius-sm);
  cursor: pointer;
  transition: all var(--cc-transition);
  text-decoration: none;
  border: 2px solid transparent;
  min-height: 48px; 
  line-height: 1.2;
  font-family: inherit;
}

.cc-btn:focus {
  outline: 2px solid var(--cc-primary);
  outline-offset: 2px;
}

.cc-btn:focus:not(:focus-visible) {
  outline: none;
}

.cc-btn:focus-visible {
  outline: 2px solid var(--cc-primary);
  outline-offset: 2px;
}


.cc-btn-primary {
  background: var(--cc-primary);
  color: #ffffff;
  border-color: var(--cc-primary);
}

.cc-btn-primary:hover {
  background: var(--cc-primary-hover);
  border-color: var(--cc-primary-hover);
}


.cc-btn-secondary {
  background: var(--cc-secondary);
  color: var(--cc-text);
  border-color: var(--cc-secondary-border);
}

.cc-btn-secondary:hover {
  background: var(--cc-secondary-hover);
  border-color: var(--cc-text);
}


.cc-btn-link {
  background: transparent;
  color: var(--cc-primary);
  border-color: transparent;
  padding: 0.75rem 1rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cc-btn-link:hover {
  text-decoration: none;
  background: rgba(37, 99, 235, 0.1);
}


.cc-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: calc(var(--cc-z-index) + 1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--cc-transition), visibility var(--cc-transition);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--cc-text);
}

.cc-settings-modal.cc-visible {
  opacity: 1;
  visibility: visible;
}

.cc-settings-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cc-overlay);
  cursor: pointer;
}

.cc-settings-container {
  position: relative;
  background: var(--cc-bg);
  border-radius: var(--cc-radius);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: scale(0.95);
  transition: transform var(--cc-transition);
}

.cc-settings-modal.cc-visible .cc-settings-container {
  transform: scale(1);
}

.cc-settings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--cc-border);
}

.cc-settings-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: var(--cc-text);
}

.cc-settings-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--cc-text-secondary);
  transition: all var(--cc-transition);
}

.cc-settings-close:hover {
  background: var(--cc-secondary-hover);
  color: var(--cc-text);
}

.cc-settings-close:focus {
  outline: 2px solid var(--cc-primary);
  outline-offset: 2px;
}

.cc-settings-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cc-settings-description {
  margin: 0 0 1.5rem 0;
  font-size: 0.9375rem;
  color: var(--cc-text-secondary);
}

.cc-settings-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--cc-border);
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}


.cc-category {
  padding: 1rem 0;
  border-bottom: 1px solid var(--cc-border);
}

.cc-category:last-child {
  border-bottom: none;
}

.cc-category-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.cc-category-info {
  flex: 1;
}

.cc-category-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
  color: var(--cc-text);
}

.cc-category-description {
  font-size: 0.875rem;
  color: var(--cc-text-secondary);
  margin: 0;
  line-height: 1.5;
}


.cc-toggle {
  flex-shrink: 0;
}

.cc-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cc-toggle-label {
  display: block;
  width: 52px;
  height: 28px;
  background: var(--cc-toggle-bg);
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: background var(--cc-transition);
}

.cc-toggle-label::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  transition: transform var(--cc-transition);
}

.cc-toggle input:checked + .cc-toggle-label {
  background: var(--cc-toggle-active);
}

.cc-toggle input:checked + .cc-toggle-label::after {
  transform: translateX(24px);
}

.cc-toggle input:focus + .cc-toggle-label {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}

.cc-toggle-disabled .cc-toggle-label {
  opacity: 0.7;
  cursor: not-allowed;
}

.cc-toggle-disabled input:checked + .cc-toggle-label {
  background: var(--cc-toggle-active);
}


.cc-footer-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.8;
  transition: opacity var(--cc-transition);
  cursor: pointer;
  font-size: 0.875rem;
}

.cc-footer-link:hover {
  opacity: 1;
}

.cc-footer-separator {
  opacity: 0.5;
}


@media (max-width: 768px) {
  .cc-banner-container {
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1rem;
    gap: 1.25rem;
  }
  
  .cc-banner-content {
    max-width: 100%;
    min-width: auto;
  }
  
  .cc-title {
    font-size: 1rem;
  }
  
  .cc-description {
    font-size: 0.875rem;
  }
  
  .cc-banner-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .cc-btn {
    width: 100%;
    justify-content: center;
  }
  
  
  .cc-btn-primary,
  .cc-btn-secondary {
    order: 0;
  }
  
  .cc-btn-link {
    order: 1;
  }
  
  .cc-settings-container {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
  }
  
  .cc-settings-body {
    padding: 1rem;
  }
  
  .cc-category-header {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .cc-toggle {
    align-self: flex-start;
  }
}


@keyframes cc-slide-up {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes cc-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


@media (prefers-reduced-motion: reduce) {
  .cc-banner,
  .cc-settings-modal,
  .cc-settings-container,
  .cc-btn,
  .cc-toggle-label,
  .cc-toggle-label::after,
  .cc-settings-close {
    transition: none;
  }
}


@media (prefers-color-scheme: dark) {
  :root {
    --cc-bg: #1f2937;
    --cc-text: #f3f4f6;
    --cc-text-secondary: #9ca3af;
    --cc-border: rgba(255, 255, 255, 0.1);
    --cc-secondary: #374151;
    --cc-secondary-hover: #4b5563;
    --cc-secondary-border: #4b5563;
    --cc-toggle-bg: #4b5563;
    --cc-overlay: rgba(0, 0, 0, 0.8);
  }
}


@media (prefers-contrast: high) {
  :root {
    --cc-border: currentColor;
    --cc-shadow: 0 0 0 2px currentColor;
  }
  
  .cc-btn {
    border-width: 3px;
  }
  
  .cc-toggle-label {
    border: 2px solid currentColor;
  }
}


@media print {
  .cc-banner,
  .cc-settings-modal {
    display: none !important;
  }
}


[data-mm-header]{--mm-bg:#ffffff;--mm-text:#333333;--mm-primary:#2563eb;--mm-overlay-bg:rgba(0,0,0,0.5);--mm-transition:0.3s ease}[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);transition:var(--mm-transition)}[data-mm-menu]{position:fixed;top:0;left:0;width:100%;height:100vh;height:100dvh;background:var(--mm-bg);opacity:0;visibility:hidden;transition:opacity var(--mm-transition),visibility var(--mm-transition);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;transition:color var(--mm-transition)}[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}}@media(prefers-reduced-motion:reduce){[data-mm-menu],[data-mm-toggle] span{transition:none!important}}



html { -webkit-text-size-adjust: 100%; }
body {
  position: relative;
  background: #fbf6ef;
  color: #4a4f6b;
  font-family: 'Nunito Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  padding-top: 4.5rem;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Quicksand', system-ui, sans-serif; font-weight: 700; color: #232a52; }
h1 { font-size: clamp(1.85rem, 5vw, 3rem); line-height: 1.12; }
h2 { font-size: clamp(1.5rem, 3.6vw, 2.1rem); line-height: 1.2; margin-bottom: 1.5rem; }
h3 { font-size: 1.4rem; line-height: 1.3; }
h4 { font-size: 1.1rem; line-height: 1.35; }
p { font-size: 1rem; line-height: 1.7; margin-bottom: 1.25rem; }
a { color: #b8451c; text-decoration: none; }
a:hover { text-decoration: underline; }
strong, b { font-weight: 700; color: #232a52; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; font-size: 1rem; }


.u-wrap { width: min(92%, 1100px); margin-left: auto; margin-right: auto; }
.u-flex { display: flex; }
.u-grid { display: grid; }
.u-gap { gap: 2rem; }
.u-gap-s { gap: max(0.75rem, 1.2vw); }
.u-mid { align-items: center; }
.u-between { justify-content: space-between; }
.u-wrapline { flex-wrap: wrap; }
.u-center { text-align: center; }
.u-mb0 { margin-bottom: 0; }
.u-mb1 { margin-bottom: 0.75rem; }
.u-mb2 { margin-bottom: 1.25rem; }
.u-mb3 { margin-bottom: 2rem; }
.u-mt2 { margin-top: 1.25rem; }
.u-mt3 { margin-top: 2rem; }
.u-muted { color: #6a6f88; font-size: 0.94rem; }
.u-ink { color: #232a52; }
.u-lead { font-size: 1.1rem; line-height: 1.65; margin-top: 1rem; }
.u-eyebrow {
  font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: #b8451c;
}
.u-block { display: block; }
.u-copy { max-width: 100%; }
.u-full { width: 100%; }
.u-rule { border-top: 1px solid #e6dccd; padding-top: 1.25rem; }
.u-list { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.u-list li { position: relative; padding-left: 1.6rem; margin-bottom: 0.6rem; }
.u-list li::before {
  content: ''; position: absolute; left: 0; top: 0.62em;
  width: 9px; height: 9px; border-radius: 50%; background: #fab1a0;
}
.u-num { font-family: 'Quicksand', system-ui, sans-serif; font-weight: 700; color: #232a52; font-size: 2rem; }


.Shelf { position: relative; width: 100%; padding: 2.25rem 1.1rem; }
.Shelf--cream { background: #fbf6ef; }
.Shelf--butter { background: #ffeaa7; }
.Shelf--mist { background: #dfe6e9; }
.Shelf--apricot { background: #fab1a0; }
.Shelf--ink { background: #232a52; color: #e7e9f5; }
.Shelf--ink h2, .Shelf--ink h3 { color: #ffeaa7; }
.Shelf--tri { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 88%); padding-bottom: 7rem; }
.Shelf-head { max-width: 44rem; margin-bottom: 2rem; }
.Shelf-head--mid { margin-left: auto; margin-right: auto; text-align: center; }


.SiteHead {
  --head-bg: #fbf6ef;
  --head-line: #ece1d0;
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  display: flex; align-items: center; flex-wrap: nowrap;
  gap: max(0.5rem, 1vw);
  min-height: 4.5rem;
  padding-inline: max(1rem, calc((100% - 1100px) / 2));
  background: var(--head-bg);
  border-bottom: 1px solid var(--head-line);
  box-shadow: 0 2px 18px rgba(35, 42, 82, 0.06);
}
.Brand { --brand-gap: 0.7rem; display: flex; align-items: center; gap: var(--brand-gap); margin-right: auto; text-decoration: none; }
.Brand:hover { text-decoration: none; }
.Brand-mark { height: 2.4rem; width: 2.4rem; flex: none; }
.Brand-name { font-family: 'Quicksand', system-ui, sans-serif; font-weight: 700; font-size: 1.3rem; color: #232a52; letter-spacing: 0.01em; display: block; line-height: 1.05; }
.Brand-sub { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: #8a7f70; display: block; }
.HeadTel { --tel-color: #232a52; color: var(--tel-color); font-weight: 700; font-size: 0.95rem; white-space: nowrap; }
.CartBtn {
  --cart-bg: #232a52; --cart-fg: #ffeaa7;
  position: relative; display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--cart-bg); color: var(--cart-fg);
  border-radius: 999px; padding: 0.55rem 0.95rem; font-weight: 700; font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.CartBtn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: 0 8px 18px rgba(35, 42, 82, 0.22); }
.CartBtn-icon { width: 18px; height: 18px; flex: none; }
.CartBtn-count {
  min-width: 1.35em; height: 1.35em; border-radius: 999px;
  background: #fab1a0; color: #232a52; font-size: 0.78rem; line-height: 1.35em; text-align: center;
}
.CartBtn { flex: none; }
.Burger { margin-left: 0.25rem; flex: none; }
.Burger span { background: #232a52; }


.MainNav { --nav-fg: #232a52; }
.MainNav ul { align-items: center; }
.MainNav-link {
  display: block; color: var(--nav-fg); font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 600; font-size: 0.95rem; padding: 0.6rem 0.7rem; border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}
.MainNav-link:hover, .MainNav-link[aria-current="page"] { background: #ffeaa7; color: #232a52; text-decoration: none; }
.MainNav-item { position: relative; }
.MainNav-panel {
  --panel-bg: #ffffff;
  position: absolute;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  top: 100%; left: 50%; transform: translateX(-50%);
  width: min(60rem, 92vw);
  background: var(--panel-bg);
  border: 1px solid #ece1d0; border-radius: 18px;
  box-shadow: 0 24px 60px rgba(35, 42, 82, 0.16);
  padding: 1.75rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.MainNav-item.is-open .MainNav-panel { opacity: 1; visibility: visible; pointer-events: auto; }
.MainNav-col h4 { margin-bottom: 0.6rem; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: #8a7f70; }
.MainNav-col a { display: block; padding: 0.3rem 0; color: #232a52; font-size: 0.95rem; }
.MainNav-promo { background: #ffeaa7; border-radius: 14px; padding: 1rem; }
.MainNav-caret { display: inline-block; margin-left: 0.35rem; font-size: 0.7em; }


.Button {
  --btn-color: #b8451c;
  background: none; border: none; border-bottom: 2px solid currentColor;
  color: var(--btn-color); font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 700; font-size: 1rem; letter-spacing: 0.02em;
  padding: 0.5rem 0.25rem; cursor: pointer; display: inline-flex; align-items: center; gap: 0.5rem;
  transition: color 0.2s ease, gap 0.2s ease;
}
.Button:hover { --btn-color: #8f3512; gap: 0.85rem; text-decoration: none; }
.Button--primary { --btn-color: #b8451c; font-size: 1.08rem; }
.Button--ink { --btn-color: #232a52; }
.Button--pale { --btn-color: #ffeaa7; }
.Button--wide { width: 100%; justify-content: center; }
.Button[disabled] { opacity: 0.55; cursor: progress; }
.Button-arrow { font-size: 1.15em; line-height: 1; }


.Card {
  --card-bg: #f6f0e7; --card-radius: 18px;
  background: var(--card-bg);
  border-radius: var(--card-radius);
  padding: 1.75rem;
  box-shadow: 8px 8px 18px #ddd2c2, -8px -8px 18px #ffffff;
}
.Card--flat { box-shadow: inset 4px 4px 10px #ddd2c2, inset -4px -4px 10px #ffffff; }
.Card--pick { --card-bg: #ffeaa7; box-shadow: 8px 8px 18px #d9c98c, -8px -8px 18px #fffdf3; }
.Card--onmist { --card-bg: #eaf0f2; box-shadow: 8px 8px 18px #c5ced1, -8px -8px 18px #ffffff; }
.Card-title { margin-bottom: 0.5rem; }
.Card-price { font-family: 'Quicksand', system-ui, sans-serif; font-weight: 700; font-size: 1.8rem; color: #232a52; }
.Card-old { color: #8a7f70; text-decoration: line-through; font-size: 1rem; margin-left: 0.5rem; }
.Card-badge {
  display: inline-block; background: #fab1a0; color: #232a52;
  border-radius: 999px; padding: 0.25rem 0.8rem;
  font-family: 'Quicksand', system-ui, sans-serif; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.Card-media { border-radius: 14px; overflow: hidden; background: #fbf6ef; margin-bottom: 1.25rem; }
.Card-media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }


.SidePanel {
  --panel-w: min(24rem, 92vw);
  position: fixed; top: 0; right: 0; height: 100%; width: var(--panel-w);
  background: #fbf6ef; z-index: 1200;
  box-shadow: -18px 0 60px rgba(35, 42, 82, 0.24);
  transform: translateX(100%);
  transition: transform 0.32s ease;
  display: flex; flex-direction: column; padding: 1.5rem;
  overflow-y: auto;
}
.SidePanel.is-open { transform: translateX(0); }
.SidePanel-close { background: none; border: none; font-size: 2rem; line-height: 1; color: #232a52; cursor: pointer; align-self: flex-end; padding: 0.25rem 0.5rem; min-width: 44px; min-height: 44px; }
.SidePanel-line { display: flex; gap: 1rem; align-items: center; border-top: 1px solid #e6dccd; padding: 1rem 0; }
.SidePanel-thumb { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; flex: none; }
.SidePanel-sum { display: flex; justify-content: space-between; font-family: 'Quicksand', system-ui, sans-serif; font-weight: 700; color: #232a52; font-size: 1.2rem; padding: 1rem 0; border-top: 2px solid #232a52; }
.PanelVeil { position: fixed; inset: 0; background: rgba(35, 42, 82, 0.45); z-index: 1150; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.PanelVeil.is-open { opacity: 1; visibility: visible; }


.Form-group { margin-bottom: 1.25rem; }
.Form-label { display: block; font-family: 'Quicksand', system-ui, sans-serif; font-weight: 600; font-size: 0.9rem; color: #232a52; margin-bottom: 0.4rem; }
.Form-input {
  --input-bg: #ffffff; --input-line: #d9cdb9;
  width: 100%; background: var(--input-bg); border: 1px solid var(--input-line);
  border-radius: 12px; padding: 0.85rem 1rem; color: #232a52;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.Form-input:focus { outline: none; --input-line: #b8451c; box-shadow: 0 0 0 3px rgba(184, 69, 28, 0.15); }
.Form-check { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.88rem; line-height: 1.5; margin-bottom: 1.25rem; }
.Form-check input { margin-top: 0.28rem; width: 18px; height: 18px; flex: none; }
.Form-error { background: #fab1a0; color: #4a1c0c; border-radius: 12px; padding: 0.85rem 1rem; margin-bottom: 1.25rem; font-size: 0.94rem; }
.Form-ok { background: #ffeaa7; color: #232a52; border-radius: 12px; padding: 1.25rem; margin-bottom: 1.25rem; }
.Form-note { font-size: 0.86rem; color: #6a6f88; }


.Spinner {
  border: 4px solid rgba(35, 42, 82, 0.1);
  border-left-color: #b8451c;
  border-radius: 50%;
  width: 40px; height: 40px;
  animation: spin 1s linear infinite;
  display: none;
  margin: 0 auto;
}
.Spinner--inline { width: 18px; height: 18px; border-width: 2px; }
.is-busy .Spinner, .is-busy .Spinner--inline { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
.Skeleton { position: relative; overflow: hidden; background: #ece4d8; border-radius: 14px; }
.Skeleton::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.75) 50%, transparent 100%);
  animation: shimmer 1.4s linear infinite;
}
@keyframes shimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
.is-ready .Skeleton::after { animation: none; opacity: 0; }


.Strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: max(0.75rem, 1.2vw); }
.Strip-cell { --cell-bg: rgba(255, 255, 255, 0.6); background: var(--cell-bg); border-radius: 14px; padding: 1.1rem 1.25rem; }
.Strip-cell h4 { margin-bottom: 0.25rem; }
.Strip-cell p { font-size: 0.92rem; margin-bottom: 0; }


.Foot { padding: 2rem 1rem 3rem; background: #fbf6ef; }
.Foot-card {
  max-width: 1100px; margin: 0 auto;
  background: #232a52; color: #c8cde4;
  border-radius: 20px; padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(35, 42, 82, 0.2);
}
.Foot-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.Foot h4 { color: #ffeaa7; font-size: 0.86rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.9rem; }
.Foot a { color: #e7e9f5; }
.Foot-links li { margin-bottom: 0.45rem; font-size: 0.94rem; }
.Foot-seller { font-size: 0.9rem; line-height: 1.6; color: #c8cde4; }
.Foot-seller strong { color: #ffeaa7; }
.Foot-mark { margin-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.14); padding-top: 1.5rem; font-size: 0.84rem; color: #b3b9d8; }
.Foot-mark p { font-size: 0.84rem; margin-bottom: 0.6rem; }
.Foot .Form-input { --input-bg: #2d356a; --input-line: #454e8c; color: #ffffff; }
.Foot .Form-label { color: #c8cde4; }
.Foot .Form-check { color: #b3b9d8; }
.Foot .Form-note { color: #b3b9d8; }

.Foot-cc, .Foot .footer-links { font-size: 0.84rem; }
.Foot-cc .cc-footer-separator { display: none; }
.Foot-cc .cc-footer-link { color: #e7e9f5; }
.Foot > .cc-footer-link, .Foot > .cc-footer-separator { color: #4a4f6b; }


.Crumbs { font-size: 0.86rem; color: #6a6f88; padding-top: 1.5rem; }
.Crumbs a { color: #6a6f88; }
.Crumbs span { margin: 0 0.4rem; }


.Prose h2 { margin-top: 2rem; }
.Prose h3 { margin-top: 1.5rem; margin-bottom: 0.6rem; }
.Prose ul { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.Prose li { position: relative; padding-left: 1.4rem; margin-bottom: 0.5rem; }
.Prose li::before { content: '-'; position: absolute; left: 0; color: #b8451c; }
.Prose address { font-style: normal; line-height: 1.7; }


@media (max-width: 767px) {
  .u-secondary { display: none; }
  .Decor { display: none; }
  .Shelf--tri { padding-bottom: 3.5rem; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 96%); }
  .Foot-card { padding: 1.5rem; }
  .Card { padding: 1.25rem; }
}


@media (min-width: 768px) {
  .Foot-grid { grid-template-columns: 1.3fr 1fr 1.4fr; }
  .Shelf { padding: 4rem 2rem; }
}
@media (min-width: 1024px) {
  .MainNav-link { font-size: 1rem; }
}
@media (min-width: 1200px) {
  .Shelf-head { margin-bottom: 2.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .Spinner, .Skeleton::after { animation: none; }
  .SidePanel { transition: none; }
}


[data-mm-header] {
  --mm-bg: #fbf6ef;
  --mm-text: #232a52;
  --mm-primary: #b8451c;
  --mm-overlay-bg: rgba(35, 42, 82, 0.55);
}
:root {
  --cc-bg: #fbf6ef;
  --cc-text: #232a52;
  --cc-text-secondary: #6a6f88;
  --cc-border: rgba(35, 42, 82, 0.12);
  --cc-primary: #232a52;
  --cc-primary-hover: #171d3d;
  --cc-secondary: #ffeaa7;
  --cc-secondary-hover: #ffe27f;
  --cc-secondary-border: #e3d3a4;
  --cc-toggle-bg: #d9cdb9;
  --cc-toggle-active: #b8451c;
  --cc-overlay: rgba(35, 42, 82, 0.55);
  --cc-shadow: 0 -10px 40px rgba(35, 42, 82, 0.18);
  --cc-radius: 18px;
  --cc-radius-sm: 12px;
}
.cc-banner, .cc-settings-panel { font-family: 'Nunito Sans', system-ui, sans-serif; }
.cc-banner h2, .cc-settings-title, .cc-banner-title { font-family: 'Quicksand', system-ui, sans-serif; }


.Page { min-height: 100%; }
.App { display: block; width: 100%; }
.Main { display: block; width: 100%; }
.Brand-text { display: block; }
.MainNav-list { list-style: none; margin: 0; padding: 0; }
.MainNav-item--mega > .MainNav-link { cursor: pointer; }
.MainNav-close { font-family: 'Quicksand', system-ui, sans-serif; color: #232a52; }
@media (min-width: 768px) { .u-secondary { display: inline-block; } }


.Form { display: block; }
.Foot-col { display: block; }
.SidePanel-body { display: block; }
.MainNav-item--mega .MainNav-link[aria-expanded] { user-select: none; }

@media (max-width: 767px) {
  .MainNav-panel { display: none; }
  .MainNav-caret { display: none; }
  .MainNav-list { flex-direction: column; }
}
@media (min-width: 640px) {
  .Strip-cell { padding: 1.25rem 1.5rem; }
}


.Hero {
  --hero-ink: #232a52;
  text-align: center;
  padding: 7rem 1rem;
  color: var(--hero-ink);
  background:
    radial-gradient(40% 60% at 20% 20%, rgba(250, 177, 160, 0.55) 0, transparent 60%),
    radial-gradient(50% 50% at 80% 30%, rgba(255, 234, 167, 0.75) 0, transparent 60%),
    radial-gradient(45% 55% at 55% 90%, rgba(162, 155, 254, 0.28) 0, transparent 62%),
    #fbf6ef;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.Hero-inner { width: min(92%, 46rem); margin: 0 auto; }
.Hero-kicker { margin-bottom: 1.25rem; }
.Hero p { font-size: 1.12rem; }
.Parallax { background-attachment: fixed; background-size: cover; background-position: center; }
.Decor {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(2px); opacity: 0.55; z-index: 0;
}


.Qty { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.Qty button {
  width: 44px; height: 44px; border-radius: 12px; border: 1px solid #ddd0ba;
  background: #ffffff; font-size: 1.3rem; color: #232a52; cursor: pointer;
}
.Qty span { font-family: 'Quicksand', system-ui, sans-serif; font-weight: 700; font-size: 1.2rem; min-width: 2ch; text-align: center; }
