:root {
  --cbop-ink: #171713;
  --cbop-paper: #f4f0e7;
  --cbop-white: #ffffff;
  --cbop-line: #d6d0c3;
  --cbop-muted: #68665f;
  --cbop-gold: #ae7d37;
  --cbop-gold-soft: #eadfc9;
  --cbop-green: #2f7047;
  --cbop-red: #a33d32;
  --cbop-focus: #0f6cbd;
}

html {
  scroll-behavior: smooth;
}

body.cb-organic-preview-page {
  margin: 0;
  background: var(--cbop-paper);
  color: var(--cbop-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

body.cb-organic-preview-page.admin-bar .cbop-header {
  top: 32px;
}

.cbop,
.cbop *,
.cbop *::before,
.cbop *::after {
  box-sizing: border-box;
}

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

.cbop button,
.cbop input,
.cbop summary {
  font: inherit;
  letter-spacing: 0;
}

.cbop a {
  color: inherit;
}

.cbop button,
.cbop a,
.cbop summary,
.cbop label {
  -webkit-tap-highlight-color: transparent;
}

.cbop button:focus-visible,
.cbop a:focus-visible,
.cbop summary:focus-visible,
.cbop input:focus-visible + span {
  outline: 3px solid var(--cbop-focus);
  outline-offset: 3px;
}

.cbop-announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 36px;
  padding: 8px 24px;
  background: var(--cbop-ink);
  color: var(--cbop-white);
  font-size: 13px;
  line-height: 1.25;
  text-align: center;
}

.cbop-announcement strong {
  color: #f3dba9;
}

.cbop-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 72px;
  padding: 10px max(24px, calc((100% - 1240px) / 2));
  border-bottom: 1px solid var(--cbop-line);
  background: rgba(244, 240, 231, 0.97);
}

.cbop-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  text-decoration: none;
  white-space: nowrap;
}

.cbop-brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.cbop-brand small {
  color: var(--cbop-gold);
  font-size: 13px;
  font-weight: 800;
}

.cbop-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.cbop-nav a,
.cbop-footer nav a {
  color: #3f3e39;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.cbop-nav a:hover,
.cbop-footer nav a:hover {
  color: var(--cbop-gold);
}

.cbop-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.cbop-cart-link span {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 50%;
  background: var(--cbop-ink);
  color: var(--cbop-white);
  font-size: 12px;
}

.cbop main {
  overflow: clip;
}

.cbop-product {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  gap: 58px;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0 58px;
}

.cbop-gallery {
  min-width: 0;
}

.cbop-gallery__stage {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--cbop-line);
  border-radius: 6px;
  background: var(--cbop-white);
}

.cbop-gallery__main {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.cbop-gallery__main img,
.cbop-gallery__thumb img,
.cbop-arrives__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.cbop-gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  transform: translateY(-50%);
  border: 1px solid rgba(23, 23, 19, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--cbop-ink);
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
}

.cbop-gallery__arrow:hover {
  border-color: var(--cbop-ink);
}

.cbop-gallery__arrow--prev {
  left: 14px;
}

.cbop-gallery__arrow--next {
  right: 14px;
}

.cbop-gallery__count {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 6px 9px;
  border-radius: 4px;
  background: rgba(23, 23, 19, 0.82);
  color: var(--cbop-white);
  font-size: 12px;
  font-weight: 700;
}

.cbop-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.cbop-gallery__thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--cbop-line);
  border-radius: 4px;
  background: var(--cbop-white);
  cursor: pointer;
}

.cbop-gallery__thumb.is-active {
  border: 2px solid var(--cbop-ink);
}

.cbop-buy {
  align-self: start;
  position: sticky;
  top: 98px;
  min-width: 0;
}

.cbop-eyebrow,
.cbop-kicker {
  margin: 0 0 10px;
  color: var(--cbop-gold);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.cbop-buy h1 {
  max-width: 620px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1.03;
  letter-spacing: 0;
}

.cbop-product__summary {
  max-width: 620px;
  margin: 13px 0 0;
  color: #4f4d47;
  font-size: 16px;
  line-height: 1.5;
}

.cbop-price-line {
  display: flex;
  align-items: baseline;
  gap: 11px;
  margin-top: 20px;
}

.cbop-price-line strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.cbop-price-line span {
  color: var(--cbop-muted);
  font-size: 14px;
}

.cbop-stock {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 13px 0 0;
  color: var(--cbop-green);
  font-size: 14px;
  font-weight: 800;
}

.cbop-stock > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cbop-green);
}

.cbop-stock small {
  color: var(--cbop-muted);
  font-size: 13px;
  font-weight: 600;
}

.cbop-stock.is-out {
  color: var(--cbop-red);
}

.cbop-stock.is-out > span {
  background: var(--cbop-red);
}

.cbop-packs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  min-width: 0;
  margin: 18px 0 0;
  padding: 0;
  border: 0;
}

.cbop-packs legend {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: #424039;
  font-size: 13px;
  font-weight: 800;
}

.cbop-pack {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 194px;
  padding: 13px 12px 11px;
  border: 1px solid var(--cbop-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
}

.cbop-pack:hover {
  border-color: #8a857a;
}

.cbop-pack:has(input:checked) {
  border: 2px solid var(--cbop-ink);
  padding: 12px 11px 10px;
  background: var(--cbop-white);
}

.cbop-pack.is-featured::before {
  content: "Popular";
  position: absolute;
  top: -10px;
  right: 10px;
  padding: 4px 7px;
  border-radius: 3px;
  background: var(--cbop-gold);
  color: var(--cbop-white);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.cbop-pack input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.cbop-pack__top {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cbop-pack__top strong {
  font-size: 17px;
  line-height: 1.2;
}

.cbop-pack__top em {
  min-height: 29px;
  margin-top: 3px;
  color: var(--cbop-gold);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

.cbop-pack__count,
.cbop-pack__unit,
.cbop-pack__note {
  color: var(--cbop-muted);
  font-size: 11px;
  line-height: 1.35;
}

.cbop-pack__price {
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.05;
}

.cbop-pack__ship {
  margin-top: 4px;
  color: var(--cbop-green);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.cbop-pack__unit {
  margin-top: 3px;
}

.cbop-pack__note {
  margin-top: auto;
  padding-top: 7px;
  border-top: 1px solid #e7e1d5;
}

.cbop-cart-form {
  margin-top: 12px;
}

.cbop-cart-form button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 54px;
  padding: 14px 18px;
  border: 1px solid var(--cbop-ink);
  border-radius: 4px;
  background: var(--cbop-ink);
  color: var(--cbop-white);
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
}

.cbop-cart-form button:hover {
  background: var(--cbop-gold);
  border-color: var(--cbop-gold);
}

.cbop-cart-form button:disabled,
.cbop-mobile-buy button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.cbop-buy__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.cbop-buy__facts span {
  padding: 8px;
  border-left: 2px solid var(--cbop-gold);
  color: var(--cbop-muted);
  font-size: 11px;
  line-height: 1.35;
}

.cbop-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--cbop-line);
  border-bottom: 1px solid var(--cbop-line);
  background: var(--cbop-white);
}

.cbop-proof-strip > div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  min-height: 100px;
  padding: 22px;
  border-right: 1px solid var(--cbop-line);
}

.cbop-proof-strip > div:last-child {
  border-right: 0;
}

.cbop-proof-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
}

.cbop-proof-strip span {
  max-width: 110px;
  color: var(--cbop-muted);
  font-size: 12px;
  line-height: 1.35;
}

.cbop-section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.cbop-section__intro {
  max-width: 720px;
  margin-bottom: 34px;
}

.cbop-section h2,
.cbop-final-buy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: 0;
}

.cbop-section__intro > p:last-child {
  margin: 14px 0 0;
  color: var(--cbop-muted);
  font-size: 17px;
  line-height: 1.65;
}

.cbop-arrives__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 44px;
  align-items: center;
}

.cbop-arrives__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--cbop-line);
  border-radius: 6px;
  background: var(--cbop-white);
}

.cbop-arrives__list {
  border-top: 1px solid var(--cbop-line);
}

.cbop-arrives__list > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  padding: 21px 0;
  border-bottom: 1px solid var(--cbop-line);
}

.cbop-arrives__list strong {
  font-size: 15px;
}

.cbop-arrives__list span {
  color: var(--cbop-muted);
  font-size: 14px;
}

.cbop-value {
  width: 100%;
  padding-right: max(24px, calc((100% - 1120px) / 2));
  padding-left: max(24px, calc((100% - 1120px) / 2));
  background: var(--cbop-ink);
  color: var(--cbop-white);
}

.cbop-value .cbop-kicker {
  color: #e7c685;
}

.cbop-value .cbop-section__intro > p:last-child {
  color: #c9c5ba;
}

.cbop-value__rows {
  border-top: 1px solid #4b4942;
}

.cbop-value__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid #4b4942;
}

.cbop-value__row > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.cbop-value__row strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.cbop-value__row span {
  color: #c9c5ba;
  font-size: 12px;
}

.cbop-buyer-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cbop-review {
  overflow: hidden;
  border: 1px solid var(--cbop-line);
  border-radius: 6px;
  background: var(--cbop-white);
}

.cbop-review figure {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0;
  background: #e8e6df;
}

.cbop-review figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cbop-review > div {
  padding: 19px;
}

.cbop-stars {
  color: var(--cbop-gold);
  font-size: 14px;
}

.cbop-review h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.25;
}

.cbop-review p {
  min-height: 66px;
  margin: 8px 0 0;
  color: var(--cbop-muted);
  font-size: 14px;
  line-height: 1.55;
}

.cbop-review small {
  display: block;
  margin-top: 14px;
  color: var(--cbop-green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.cbop-aspiration {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 60px;
  align-items: end;
  width: 100%;
  padding-right: max(24px, calc((100% - 1120px) / 2));
  padding-left: max(24px, calc((100% - 1120px) / 2));
  border-top: 1px solid var(--cbop-line);
  border-bottom: 1px solid var(--cbop-line);
  background: var(--cbop-gold-soft);
}

.cbop-aspiration h2 {
  max-width: 720px;
}

.cbop-aspiration > p {
  margin: 0;
  color: #514b40;
  font-size: 17px;
  line-height: 1.65;
}

.cbop-faq__list {
  border-top: 1px solid var(--cbop-line);
}

.cbop-faq details {
  border-bottom: 1px solid var(--cbop-line);
}

.cbop-faq summary {
  position: relative;
  padding: 22px 52px 22px 0;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 800;
}

.cbop-faq summary::-webkit-details-marker {
  display: none;
}

.cbop-faq summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 0;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--cbop-line);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 400;
}

.cbop-faq details[open] summary::after {
  content: "-";
}

.cbop-faq details p {
  max-width: 760px;
  margin: 0;
  padding: 0 52px 22px 0;
  color: var(--cbop-muted);
  font-size: 15px;
  line-height: 1.65;
}

.cbop-final-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 92px;
  padding: 34px 0;
  border-top: 2px solid var(--cbop-ink);
  border-bottom: 2px solid var(--cbop-ink);
}

.cbop-final-buy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 4px;
  background: var(--cbop-ink);
  color: var(--cbop-white);
  font-weight: 800;
  text-decoration: none;
}

.cbop-final-buy a:hover {
  background: var(--cbop-gold);
}

.cbop-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 38px max(24px, calc((100% - 1120px) / 2));
  border-top: 1px solid var(--cbop-line);
  background: var(--cbop-white);
}

.cbop-footer nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.cbop-footer p {
  margin: 0;
  color: var(--cbop-muted);
  font-size: 12px;
}

.cbop-mobile-buy {
  display: none;
}

.cbop-lightbox {
  width: min(920px, calc(100% - 32px));
  max-width: 920px;
  max-height: calc(100% - 32px);
  padding: 40px;
  border: 0;
  border-radius: 6px;
  background: var(--cbop-white);
}

.cbop-lightbox::backdrop {
  background: rgba(12, 12, 10, 0.86);
}

.cbop-lightbox img {
  width: 100%;
  max-height: calc(100vh - 112px);
  object-fit: contain;
}

.cbop-lightbox button {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--cbop-line);
  border-radius: 50%;
  background: var(--cbop-white);
  cursor: pointer;
  font-size: 24px;
}

@media (max-width: 980px) {
  .cbop-product {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 32px;
  }

  .cbop-buy h1 {
    font-size: 40px;
  }

  .cbop-packs {
    grid-template-columns: 1fr;
  }

  .cbop-pack {
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 0;
    gap: 4px 14px;
  }

  .cbop-pack__price,
  .cbop-pack__ship,
  .cbop-pack__unit {
    grid-column: 2;
    text-align: right;
  }

  .cbop-pack__top,
  .cbop-pack__count,
  .cbop-pack__note {
    grid-column: 1;
  }

  .cbop-pack__top em,
  .cbop-pack__note {
    min-height: 0;
  }

  .cbop-pack__price {
    grid-row: 1;
    margin-top: 0;
  }

  .cbop-pack__ship {
    grid-row: 2;
    margin-top: 0;
  }

  .cbop-pack__unit {
    grid-row: 3;
    margin-top: 0;
  }

  .cbop-pack__note {
    margin-top: 6px;
  }
}

@media (max-width: 760px) {
  body.cb-organic-preview-page.admin-bar .cbop-header {
    top: 46px;
  }

  .cbop-announcement {
    justify-content: space-between;
    gap: 10px;
    padding: 8px 16px;
    font-size: 11px;
    text-align: left;
  }

  .cbop-header {
    grid-template-columns: 1fr auto;
    min-height: 62px;
    padding: 9px 16px;
  }

  .cbop-brand span {
    font-size: 24px;
  }

  .cbop-nav {
    display: none;
  }

  .cbop-product {
    display: flex;
    flex-direction: column;
    width: min(100% - 32px, 620px);
    gap: 30px;
    padding: 24px 0 46px;
  }

  .cbop-gallery__stage {
    width: 100%;
  }

  .cbop-gallery__arrow {
    width: 38px;
    height: 38px;
  }

  .cbop-gallery__thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .cbop-gallery__thumbs::-webkit-scrollbar {
    display: none;
  }

  .cbop-gallery__thumb {
    flex: 0 0 76px;
    width: 76px;
    scroll-snap-align: start;
  }

  .cbop-buy {
    position: static;
  }

  .cbop-buy h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .cbop-product__summary {
    font-size: 16px;
  }

  .cbop-packs {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .cbop-pack {
    min-height: 142px;
  }

  .cbop-buy__facts {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .cbop-buy__facts span {
    padding: 4px 8px;
  }

  .cbop-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cbop-proof-strip > div {
    justify-content: flex-start;
    min-height: 86px;
    padding: 17px 16px;
    border-bottom: 1px solid var(--cbop-line);
  }

  .cbop-proof-strip > div:nth-child(2n) {
    border-right: 0;
  }

  .cbop-proof-strip strong {
    font-size: 24px;
  }

  .cbop-section {
    width: min(100% - 32px, 620px);
    padding: 66px 0;
  }

  .cbop-section h2,
  .cbop-final-buy h2 {
    font-size: 31px;
  }

  .cbop-section__intro > p:last-child {
    font-size: 16px;
  }

  .cbop-arrives__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cbop-arrives__list > div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 17px 0;
  }

  .cbop-value,
  .cbop-aspiration {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .cbop-value__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cbop-value__row > div {
    justify-content: space-between;
  }

  .cbop-buyer-proof__grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 1px 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .cbop-buyer-proof__grid::-webkit-scrollbar {
    display: none;
  }

  .cbop-review {
    flex: 0 0 86%;
    scroll-snap-align: start;
  }

  .cbop-review p {
    min-height: 0;
  }

  .cbop-aspiration {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .cbop-final-buy {
    flex-direction: column;
    align-items: stretch;
    width: min(100% - 32px, 620px);
    margin-bottom: 110px;
  }

  .cbop-final-buy a {
    width: 100%;
  }

  .cbop-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 34px 16px 112px;
  }

  .cbop-footer nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px 22px;
  }

  .cbop-mobile-buy {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    min-height: 76px;
    padding: 10px 16px max(10px, env(safe-area-inset-bottom));
    border-top: 1px solid #292923;
    background: var(--cbop-ink);
    color: var(--cbop-white);
  }

  .cbop-mobile-buy > div {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .cbop-mobile-buy span {
    color: #cbc8bd;
    font-size: 11px;
  }

  .cbop-mobile-buy strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
  }

  .cbop-mobile-buy button {
    min-width: 128px;
    min-height: 46px;
    padding: 10px 14px;
    border: 0;
    border-radius: 4px;
    background: var(--cbop-gold);
    color: var(--cbop-white);
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
  }

  .cbop-lightbox {
    padding: 36px 8px 8px;
  }
}

@media (max-width: 390px) {
  .cbop-announcement span {
    display: none;
  }

  .cbop-announcement {
    justify-content: center;
  }

  .cbop-pack {
    grid-template-columns: minmax(0, 1fr) minmax(92px, auto);
  }

  .cbop-pack__top strong,
  .cbop-pack__price {
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
