/*
Theme Name: ConeBarn 420
Theme URI: https://conebarnshop.com/
Author: ConeBarn
Description: Shopify-replica WooCommerce theme for the ConeBarn 420 storefront.
Version: 0.3.9
Text Domain: conebarn420
*/

:root {
  --bg: #f5f1e8;
  --paper: #fffdf8;
  --paper-2: #ece6db;
  --ink: #171615;
  --muted: #6a6259;
  --line: #ddd4c6;
  --amber: #bb7b2a;
  --amber-dark: #895517;
  --moss: #456b45;
  --moss-soft: #e4ecdf;
  --red: #8a2f2b;
  --blue: #284c72;
  --dark: #171615;
  --radius: 8px;
  --max: 1160px;
  --font: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .cb-header {
  top: 32px;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

main {
  min-height: 70vh;
}

.cb-announcement {
  background: var(--dark);
  color: #fffdf8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
}

.cb-announcement a {
  display: block;
  padding: 9px 16px;
}

.cb-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, .94);
  border-bottom: 1px solid rgba(221, 212, 198, .9);
  backdrop-filter: blur(16px);
}

.cb-header__inner {
  width: min(var(--max), calc(100% - 40px));
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.cb-logo {
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.cb-logo span {
  color: var(--amber);
}

.cb-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.cb-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cb-nav a:hover {
  color: var(--ink);
}

.cb-header__cta,
.cb-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fffdf8;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.cb-header__cta:hover,
.cb-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  color: #fffdf8;
}

.cb-button--secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.cb-button--secondary:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--ink);
}

.cb-menu {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.cb-menu span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.cb-menu.open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.cb-menu.open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.cb-kicker {
  margin: 0 0 10px;
  color: var(--amber-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.cb-lede {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.cb-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.cb-hero__inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .78fr);
  gap: 48px;
  align-items: center;
}

.cb-hero h1,
.cb-section h2,
.cb-feature h2,
.cb-split h2,
.cb-pdp h1,
.cb-pdp h2,
.cb-collection h1,
.cb-collection h2,
.cb-page h1 {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .98;
}

.cb-hero h1 {
  max-width: 720px;
  font-size: clamp(42px, 7vw, 82px);
}

.cb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.cb-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.cb-hero__facts span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cb-hero__media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  aspect-ratio: 1 / 1;
}

.cb-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cb-hero__price {
  position: absolute;
  right: 16px;
  bottom: 16px;
  min-width: 132px;
  border: 1px solid rgba(255, 253, 248, .28);
  border-radius: var(--radius);
  background: rgba(23, 22, 21, .9);
  color: #fffdf8;
  padding: 12px;
}

.cb-hero__price span,
.cb-hero__price small {
  display: block;
  color: rgba(255, 253, 248, .7);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.cb-hero__price strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.cb-section {
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
}

.cb-section__inner,
.cb-feature,
.cb-split,
.cb-pdp__hero,
.cb-pdp__section,
.cb-collection__intro,
.cb-collection__guide,
.cb-page__inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.cb-section__head {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(280px, .7fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 24px;
}

.cb-section__head h2,
.cb-feature h2,
.cb-split h2,
.cb-pdp h2,
.cb-collection h1,
.cb-collection h2,
.cb-page h1 {
  font-size: clamp(30px, 4.2vw, 50px);
}

.cb-section__head p,
.cb-feature p,
.cb-split p,
.cb-proof-grid p,
.cb-collection__intro p,
.cb-collection__guide p,
.cb-page__content,
.cb-pdp__summary,
.cb-pdp__section p {
  color: var(--muted);
}

.cb-route-grid,
.cb-product-grid,
.cb-guide-grid,
.cb-support-grid {
  display: grid;
  gap: 14px;
}

.cb-route-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cb-route-card,
.cb-product-card,
.cb-guide-card,
.cb-proof-card,
.cb-support-grid > div,
.cb-offer-card,
.cb-count-card,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.cb-route-card {
  min-height: 230px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color .16s ease, transform .16s ease;
}

.cb-route-card:hover,
.cb-product-card:hover,
.cb-count-card:hover {
  border-color: var(--amber);
}

.cb-route-card span,
.cb-product-card__body > p,
.cb-proof-card span,
.cb-support-grid span {
  color: var(--amber-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cb-route-card h3,
.cb-product-card h2,
.cb-product-card h3,
.cb-guide-card h3,
.cb-support-grid h3 {
  margin: 10px 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
}

.cb-route-card p,
.cb-product-card p,
.cb-guide-card p,
.cb-support-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.cb-feature {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.cb-feature__media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.cb-feature__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cb-offers,
.cb-pdp__offers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.cb-offer-card {
  padding: 14px;
  text-align: center;
}

.cb-offer-card--main {
  border-color: var(--amber);
  background: #fff7eb;
}

.cb-offer-card span {
  display: block;
  color: var(--amber-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.cb-offer-card strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
  margin-top: 4px;
}

.cb-offer-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 5px;
}

.cb-product-grid,
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product {
  float: none;
  width: auto;
  margin: 0;
}

.cb-product-card {
  overflow: hidden;
  transition: border-color .16s ease;
}

.cb-product-card__image {
  position: relative;
  display: block;
  background: var(--paper-2);
  aspect-ratio: 1 / 1;
}

.cb-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cb-product-card__image span {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 999px;
  background: rgba(255, 253, 248, .92);
  color: var(--ink);
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.cb-product-card__body {
  padding: 14px;
}

.cb-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.cb-product-card__footer strong {
  color: var(--ink);
  font-size: 16px;
}

.cb-product-card__footer a {
  border-radius: var(--radius);
  background: var(--ink);
  color: #fffdf8;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
}

.cb-section--proof {
  background: var(--dark);
  color: #fffdf8;
}

.cb-section--proof h2,
.cb-section--proof .cb-kicker {
  color: #fffdf8;
}

.cb-section--proof p {
  color: rgba(255, 253, 248, .68);
}

.cb-proof-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cb-proof-card {
  background: rgba(255, 253, 248, .05);
  border-color: rgba(255, 253, 248, .14);
  padding: 18px;
}

.cb-proof-card span {
  color: #e7ad67;
}

.cb-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cb-split > div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 26px;
}

.cb-faq {
  max-width: 860px;
}

.cb-faq details,
.cb-page details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.cb-faq details:last-child,
.cb-page details:last-child {
  border-bottom: 1px solid var(--line);
}

.cb-faq summary,
.cb-page summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.cb-faq p {
  margin-bottom: 0;
  color: var(--muted);
}

.cb-footer {
  background: var(--dark);
  color: #fffdf8;
}

.cb-footer__inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(140px, .6fr));
  gap: 28px;
}

.cb-footer__brand p,
.cb-footer__links a,
.cb-footer__bottom {
  color: rgba(255, 253, 248, .66);
}

.cb-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cb-footer__links h5 {
  margin: 0 0 6px;
  color: #fffdf8;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.cb-footer__bottom {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 16px 0 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 253, 248, .12);
  font-size: 13px;
}

.cb-page {
  padding: 52px 0;
}

.cb-page__inner {
  max-width: 920px;
}

.cb-page__title {
  margin-bottom: 20px;
}

.cb-page__content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 24px;
}

.cb-page__content a {
  color: var(--amber-dark);
  font-weight: 800;
}

.cb-post-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 18px;
  margin-bottom: 14px;
}

.cb-collection {
  padding: 42px 0 56px;
}

.cb-collection__intro {
  padding-bottom: 28px;
}

.cb-collection__intro h1 {
  max-width: 780px;
}

.cb-collection__intro > p {
  max-width: 760px;
  font-size: 17px;
}

.cb-breadcrumbs {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
}

.cb-collection__guide {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.cb-guide-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.cb-guide-card {
  padding: 18px;
}

.cb-route-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cb-route-links a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 9px 13px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.cb-route-links a:hover {
  border-color: var(--amber);
}

.cb-pdp {
  padding: 42px 0 58px;
}

.cb-pdp__hero {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.cb-pdp__media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
}

.cb-pdp__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.cb-pdp__info {
  padding-top: 8px;
}

.cb-pdp h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.cb-pdp__summary {
  max-width: 620px;
  font-size: 17px;
}

.cb-pdp__buy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.cb-pdp__specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.cb-pdp__specs div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 12px;
}

.cb-pdp__specs span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cb-pdp__specs strong {
  display: block;
  margin-top: 4px;
  line-height: 1.25;
}

.cb-pdp__section {
  margin-top: 42px;
}

.cb-count-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cb-count-card {
  padding: 18px;
  text-align: center;
}

.cb-count-card.is-current {
  border-color: var(--amber);
  background: #fff7eb;
}

.cb-count-card strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.cb-count-card span,
.cb-count-card small,
.cb-count-card em {
  display: block;
  margin-top: 5px;
}

.cb-count-card small {
  color: var(--amber-dark);
  font-weight: 900;
}

.cb-count-card em {
  color: var(--moss);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.cb-pdp__section--support {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 24px;
}

.cb-support-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 18px;
}

.cb-support-grid > div {
  padding: 16px;
  background: #fffdf8;
}

.woocommerce-notices-wrapper,
.woocommerce-result-count,
.woocommerce-ordering {
  width: min(var(--max), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 14px 16px;
  margin: 0 0 18px;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  display: none;
}

.woocommerce div.product form.cart,
.woocommerce .quantity,
.woocommerce div.product .product_meta,
.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related {
  display: none;
}

.woocommerce-cart main,
.woocommerce-checkout main,
.woocommerce-account main {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0;
}

@media (max-width: 980px) {
  .cb-header__inner {
    width: min(100% - 28px, var(--max));
  }

  .cb-menu {
    display: inline-flex;
  }

  .cb-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    z-index: 30;
    margin: 0;
    padding: 16px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .cb-nav.open {
    display: flex;
  }

  .cb-header__cta {
    margin-left: auto;
  }

  .cb-hero__inner,
  .cb-feature,
  .cb-pdp__hero {
    grid-template-columns: 1fr;
  }

  .cb-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cb-proof-grid,
  .cb-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  body.admin-bar .cb-header {
    top: 46px;
  }

  .cb-header__inner,
  .cb-section__inner,
  .cb-feature,
  .cb-split,
  .cb-pdp__hero,
  .cb-pdp__section,
  .cb-collection__intro,
  .cb-collection__guide,
  .cb-page__inner,
  .cb-footer__inner,
  .cb-footer__bottom {
    width: min(100% - 28px, var(--max));
  }

  .cb-header__cta {
    display: none;
  }

  .cb-announcement {
    font-size: 11px;
    letter-spacing: .02em;
  }

  .cb-hero__inner {
    width: min(100% - 28px, var(--max));
    padding: 34px 0 32px;
    gap: 26px;
  }

  .cb-hero h1 {
    font-size: 40px;
  }

  .cb-lede,
  .cb-collection__intro > p,
  .cb-pdp__summary {
    font-size: 15px;
  }

  .cb-section {
    padding: 38px 0;
  }

  .cb-section__head,
  .cb-route-grid,
  .cb-product-grid,
  .woocommerce ul.products,
  .cb-guide-grid,
  .cb-split,
  .cb-proof-grid,
  .cb-support-grid,
  .cb-footer__inner {
    grid-template-columns: 1fr;
  }

  .cb-offers,
  .cb-pdp__offers,
  .cb-count-grid {
    grid-template-columns: 1fr;
  }

  .cb-pdp__specs {
    grid-template-columns: 1fr;
  }

  .cb-footer__bottom {
    flex-direction: column;
  }
}

/* conebarnshop.com-inspired WordPress homepage */
body.admin-bar .cn-nav {
  top: 32px;
}

.cn-announcement {
  background: #181512;
  color: #fffaf0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
}

.cn-announcement a {
  display: block;
  padding: 8px 14px;
}

.cn-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 240, .96);
  border-bottom: 1px solid #e1d6c4;
  backdrop-filter: blur(16px);
}

.cn-nav.scrolled {
  box-shadow: 0 10px 28px rgba(31, 25, 18, .08);
}

.cn-nav__inner {
  width: min(var(--max), calc(100% - 36px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.cn-logo {
  flex: 0 0 auto;
  color: #181512;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.cn-logo span {
  color: #b75f6f;
}

.cn-nav__links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  color: #514940;
  font-size: 14px;
  font-weight: 800;
}

.cn-nav__links li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cn-nav__links a:hover {
  color: #181512;
}

.cn-search {
  width: 190px;
  min-width: 160px;
  display: flex;
  align-items: center;
  border: 1px solid #d8cbb7;
  border-radius: 999px;
  background: #fffdf8;
  overflow: hidden;
}

.cn-search input,
.cn-nav__mobile-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #181512;
  padding: 10px 12px;
  outline: 0;
}

.cn-search button,
.cn-nav__mobile-search button {
  border: 0;
  background: #181512;
  color: #fffaf0;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.cn-nav__mobile-search {
  display: none;
}

.cn-nav__cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #181512;
  border-radius: 999px;
  background: #181512;
  color: #fffaf0;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.cn-nav__cta:hover {
  background: #7f302f;
  border-color: #7f302f;
  color: #fffaf0;
}

.cn-menu {
  display: none;
  flex: 0 0 auto;
}

.cn-hero,
.cn-cost,
.cn-reviews,
.cn-lh91,
.cn-proof,
.cn-faq {
  border-bottom: 1px solid #e1d6c4;
}

.cn-hero {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, .94), rgba(248, 238, 221, .98)),
    #fbf2e4;
}

.cn-hero__inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, .82fr);
  gap: 38px;
  align-items: center;
}

.cn-hero__copy,
.cn-section__inner,
.cn-section__head {
  min-width: 0;
}

.cn-eyebrow {
  margin: 0 0 10px;
  color: #8a3c43;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cn-hero h1,
.cn-section__head h2,
.cn-proof h2,
.cn-faq h2 {
  margin: 0;
  color: #181512;
  font-weight: 900;
  letter-spacing: 0;
  line-height: .96;
}

.cn-hero h1 {
  max-width: 680px;
  font-size: 76px;
}

.cn-hero__lead {
  max-width: 650px;
  margin: 18px 0 0;
  color: #514940;
  font-size: 19px;
  line-height: 1.5;
}

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

.cn-price-card {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  border: 1px solid #d8cbb7;
  border-radius: 8px;
  background: #fffdf8;
  padding: 16px;
  color: #181512;
  box-shadow: 0 12px 30px rgba(31, 25, 18, .06);
}

.cn-price-card.is-featured {
  border-color: #181512;
  background: #fff7e7;
}

.cn-price-card__badge {
  align-self: flex-start;
  border-radius: 999px;
  background: #e8efe0;
  color: #315d3b;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.cn-price-card.is-featured .cn-price-card__badge {
  background: #181512;
  color: #fffaf0;
}

.cn-price-card strong {
  display: block;
  margin-top: 14px;
  font-size: 25px;
  line-height: 1.05;
}

.cn-price-card em {
  display: block;
  margin: 4px 0 12px;
  color: #7b7065;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.cn-price-card b {
  display: block;
  color: #181512;
  font-size: 34px;
  line-height: 1;
}

.cn-price-card small {
  display: block;
  margin-top: 6px;
  color: #6c6258;
  font-size: 12px;
  line-height: 1.25;
}

.cn-price-card__button {
  margin-top: auto;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #181512;
  color: #fffaf0;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 900;
}

.cn-price-card:hover .cn-price-card__button {
  background: #7f302f;
}

.cn-custom-qty {
  margin-top: 14px;
  display: grid;
  grid-template-columns: auto minmax(210px, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.cn-custom-qty label {
  color: #181512;
  font-size: 14px;
  font-weight: 900;
}

.cn-custom-qty select {
  width: 100%;
  border: 1px solid #d8cbb7;
  border-radius: 8px;
  background: #fffdf8;
  color: #181512;
  padding: 11px 12px;
}

.cn-custom-qty button {
  min-height: 44px;
  border: 1px solid #181512;
  border-radius: 8px;
  background: #181512;
  color: #fffaf0;
  padding: 11px 14px;
  font-weight: 900;
  cursor: pointer;
}

.cn-wholesale-link {
  display: inline-flex;
  margin-top: 14px;
  color: #7f302f;
  font-size: 14px;
  font-weight: 900;
}

.cn-hero__media {
  position: relative;
  overflow: hidden;
  border: 1px solid #d8cbb7;
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 24px 60px rgba(31, 25, 18, .13);
}

.cn-hero__media img {
  width: 100%;
  aspect-ratio: 1 / 1.06;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.cn-hero__label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border: 1px solid rgba(255, 250, 240, .24);
  border-radius: 8px;
  background: rgba(24, 21, 18, .9);
  color: #fffaf0;
  padding: 14px;
}

.cn-hero__label span,
.cn-hero__label small {
  display: block;
  color: rgba(255, 250, 240, .72);
  font-size: 12px;
  font-weight: 900;
}

.cn-hero__label strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
}

.cn-section__inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.cn-cost,
.cn-lh91,
.cn-faq {
  background: #fffaf0;
  padding: 58px 0;
}

.cn-section__head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(280px, .68fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.cn-section__head--center {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
}

.cn-section__head h2,
.cn-proof h2,
.cn-faq h2 {
  font-size: 46px;
}

.cn-section__head p,
.cn-proof p,
.cn-faq p {
  margin: 8px 0 0;
  color: #655c52;
}

.cn-cost__panel {
  border: 1px solid #d8cbb7;
  border-radius: 8px;
  background: #fffdf8;
  padding: 20px;
  box-shadow: 0 12px 34px rgba(31, 25, 18, .06);
}

.cn-cost__row + .cn-cost__row {
  margin-top: 14px;
}

.cn-cost__row div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 8px;
}

.cn-cost__row strong {
  color: #181512;
  font-size: 24px;
  line-height: 1;
}

.cn-cost__row span {
  color: #514940;
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}

.cn-cost__bar {
  position: relative;
  display: block;
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #efe7d9;
}

.cn-cost__bar::after {
  content: "";
  display: block;
  width: var(--share);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7f302f, #c9893f);
}

.cn-cost__total {
  margin-top: 18px;
  border-top: 1px solid #e1d6c4;
  padding-top: 18px;
}

.cn-cost__total strong {
  display: block;
  color: #181512;
  font-size: 20px;
}

.cn-cost__total p {
  max-width: 720px;
  margin: 8px 0 0;
  color: #655c52;
}

.cn-reviews {
  background: #181512;
  color: #fffaf0;
  padding: 62px 0;
}

.cn-reviews .cn-eyebrow,
.cn-reviews h2 {
  color: #fffaf0;
}

.cn-reviews .cn-section__head p {
  color: rgba(255, 250, 240, .7);
}

.cn-review-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.cn-review {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 250, 240, .14);
  border-radius: 8px;
  background: rgba(255, 250, 240, .06);
  padding: 16px;
}

.cn-review span {
  color: #e4ac57;
  font-size: 12px;
}

.cn-review h3 {
  margin: 10px 0 8px;
  color: #fffaf0;
  font-size: 17px;
  line-height: 1.15;
}

.cn-review p {
  margin: 0;
  color: rgba(255, 250, 240, .74);
  font-size: 14px;
  line-height: 1.45;
}

.cn-review small {
  margin-top: auto;
  padding-top: 14px;
  color: rgba(255, 250, 240, .52);
  font-size: 12px;
  font-weight: 900;
}

.cn-photo-reviews {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.cn-photo-review {
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, .14);
  border-radius: 8px;
  background: rgba(255, 250, 240, .06);
}

.cn-photo-review img {
  width: 100%;
  height: 184px;
  object-fit: cover;
  background: rgba(255, 250, 240, .08);
}

.cn-photo-review div {
  padding: 14px;
}

.cn-photo-review span {
  color: #e4ac57;
  font-size: 12px;
}

.cn-photo-review h3 {
  margin: 8px 0;
  color: #fffaf0;
  font-size: 18px;
  line-height: 1.15;
}

.cn-photo-review p {
  margin: 0;
  color: rgba(255, 250, 240, .74);
  font-size: 14px;
  line-height: 1.42;
}

.cn-photo-review small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 250, 240, .52);
  font-size: 12px;
  font-weight: 900;
}

.cn-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.cn-product {
  overflow: hidden;
  border: 1px solid #d8cbb7;
  border-radius: 8px;
  background: #fffdf8;
}

.cn-product__image {
  position: relative;
  display: block;
  background: #efe2cf;
  aspect-ratio: 1 / 1;
}

.cn-product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cn-product__image span {
  position: absolute;
  left: 12px;
  top: 12px;
  border-radius: 999px;
  background: rgba(255, 253, 248, .93);
  color: #181512;
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 900;
}

.cn-product__body {
  padding: 15px;
}

.cn-product__body p {
  margin: 0 0 8px;
  color: #8a3c43;
  font-size: 12px;
  font-weight: 900;
}

.cn-product__body h3 {
  min-height: 52px;
  margin: 0;
  color: #181512;
  font-size: 20px;
  line-height: 1.2;
}

.cn-product__body div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
}

.cn-product__body strong {
  color: #181512;
  font-size: 18px;
}

.cn-product__body div a {
  border-radius: 6px;
  background: #181512;
  color: #fffaf0;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
}

.cn-lh91__feature {
  display: grid;
  grid-template-columns: minmax(300px, .86fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #181512;
  border-radius: 8px;
  background: #181512;
  box-shadow: 0 18px 44px rgba(31, 25, 18, .1);
}

.cn-lh91__feature-media {
  min-width: 0;
  background: #e8ddcf;
}

.cn-lh91__feature-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.cn-lh91__feature-copy {
  min-width: 0;
  padding: 34px;
  color: #fffaf0;
}

.cn-lh91__feature-copy h3 {
  max-width: 620px;
  margin: 0;
  font-size: 38px;
  line-height: 1;
}

.cn-lh91__feature-copy p:not(.cn-eyebrow) {
  max-width: 580px;
  margin: 16px 0 0;
  color: rgba(255, 250, 240, .74);
  font-size: 17px;
}

.cn-lh91__feature-copy .cn-eyebrow {
  color: #e4ac57;
}

.cn-lh91__cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  border-radius: 8px;
  background: #fffaf0;
  color: #181512;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.cn-lh91__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.cn-lh91-card {
  display: grid;
  grid-template-columns: minmax(180px, .74fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #d8cbb7;
  border-radius: 8px;
  background: #fffdf8;
}

.cn-lh91-card__image {
  min-width: 0;
  background: #efe2cf;
}

.cn-lh91-card__image img {
  width: 100%;
  height: 100%;
  min-height: 256px;
  object-fit: cover;
}

.cn-lh91-card__copy {
  min-width: 0;
  padding: 18px;
}

.cn-lh91-card__copy span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e8efe0;
  color: #315d3b;
  font-size: 12px;
  font-weight: 900;
}

.cn-lh91-card__copy p {
  margin: 12px 0 6px;
  color: #8a3c43;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cn-lh91-card__copy h3 {
  margin: 0;
  color: #181512;
  font-size: 24px;
  line-height: 1.08;
}

.cn-lh91-card__copy em {
  display: block;
  margin-top: 10px;
  color: #655c52;
  font-size: 14px;
  font-style: normal;
  line-height: 1.45;
}

.cn-lh91-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.cn-lh91-card__facts b {
  border-radius: 999px;
  background: #f1e6d7;
  color: #514940;
  padding: 6px 8px;
  font-size: 11px;
  line-height: 1;
}

.cn-lh91__gallery {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  margin-top: 16px;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.cn-lh91__gallery::-webkit-scrollbar {
  height: 8px;
}

.cn-lh91__gallery::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #d0c1ad;
}

.cn-lh91__gallery figure {
  flex: 0 0 220px;
  overflow: hidden;
  margin: 0;
  border: 1px solid #d8cbb7;
  border-radius: 8px;
  background: #efe2cf;
  scroll-snap-align: start;
}

.cn-lh91__gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.cn-proof {
  background: #e8efe0;
  padding: 54px 0;
}

.cn-proof__inner {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(340px, .7fr);
  gap: 30px;
  align-items: center;
}

.cn-proof__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.cn-proof__points div {
  border: 1px solid #c5d3bd;
  border-radius: 8px;
  background: rgba(255, 253, 248, .78);
  padding: 15px;
}

.cn-proof__points strong {
  display: block;
  color: #315d3b;
  font-size: 34px;
  line-height: 1;
}

.cn-proof__points span {
  display: block;
  margin-top: 6px;
  color: #514940;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.cn-faq__list {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid #d8cbb7;
  border-radius: 8px;
  background: #fffdf8;
  padding: 6px 20px;
}

.cn-faq details {
  padding: 16px 0;
}

.cn-faq details + details {
  border-top: 1px solid #e1d6c4;
}

.cn-faq summary {
  cursor: pointer;
  color: #181512;
  font-weight: 900;
}

.cn-faq details p {
  margin-bottom: 0;
}

@media (max-width: 1120px) {
  .cn-search {
    display: none;
  }

  .cn-hero h1 {
    font-size: 62px;
  }
}

@media (max-width: 940px) {
  .cn-nav__inner {
    width: min(100% - 28px, var(--max));
  }

  .cn-menu {
    display: inline-flex;
  }

  .cn-nav__links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    z-index: 30;
    margin: 0;
    padding: 16px 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    background: #fffaf0;
    border-bottom: 1px solid #e1d6c4;
  }

  .cn-nav__links.open {
    display: flex;
  }

  .cn-nav__mobile-search {
    display: flex;
    border: 1px solid #d8cbb7;
    border-radius: 8px;
    overflow: hidden;
  }

  .cn-hero__inner,
  .cn-section__head,
  .cn-lh91__feature,
  .cn-proof__inner {
    grid-template-columns: 1fr;
  }

  .cn-hero__inner {
    align-items: start;
  }

  .cn-price-grid,
  .cn-review-wall,
  .cn-photo-reviews,
  .cn-lh91__grid,
  .cn-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cn-lh91-card {
    grid-template-columns: 1fr;
  }

  .cn-lh91-card__image img {
    min-height: 0;
    aspect-ratio: 1 / .72;
  }
}

@media (max-width: 720px) {
  body.admin-bar .cn-nav {
    top: 46px;
  }

  .cn-announcement {
    font-size: 11px;
  }

  .cn-nav__inner,
  .cn-section__inner,
  .cn-hero__inner {
    width: min(100% - 28px, var(--max));
  }

  .cn-nav__inner {
    min-height: 62px;
    gap: 9px;
  }

  .cn-logo {
    font-size: 19px;
  }

  .cn-nav__links {
    top: 62px;
  }

  .cn-nav__cta {
    max-width: 132px;
    min-height: 38px;
    padding: 8px 10px;
    font-size: 11px;
    white-space: normal;
  }

  .cn-hero__inner {
    padding: 32px 0;
    gap: 24px;
  }

  .cn-hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 10.5vw, 42px);
    overflow-wrap: break-word;
  }

  .cn-hero__lead {
    font-size: 16px;
  }

  .cn-price-grid,
  .cn-review-wall,
  .cn-photo-reviews,
  .cn-lh91__grid,
  .cn-shop-grid,
  .cn-proof__points {
    grid-template-columns: 1fr;
  }

  .cn-price-grid,
  .cn-photo-reviews {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    width: calc(100% + 28px);
    max-width: calc(100% + 28px);
    min-width: 0;
    margin-left: -14px;
    margin-right: -14px;
    padding: 0 14px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .cn-price-grid::-webkit-scrollbar,
  .cn-photo-reviews::-webkit-scrollbar {
    display: none;
  }

  .cn-price-card,
  .cn-photo-review {
    flex: 0 0 calc(100vw - 54px);
    max-width: 340px;
    scroll-snap-align: start;
  }

  .cn-price-card.is-featured {
    order: -1;
  }

  .cn-price-card {
    min-height: 0;
  }

  .cn-photo-review img {
    height: 220px;
  }

  .cn-custom-qty {
    grid-template-columns: 1fr;
  }

  .cn-custom-qty button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fffaf0;
  }

  .cn-cost,
  .cn-reviews,
  .cn-lh91,
  .cn-proof,
  .cn-faq {
    padding: 38px 0;
  }

  .cn-lh91__feature-copy {
    padding: 22px;
  }

  .cn-lh91__feature-copy h3 {
    font-size: 28px;
  }

  .cn-lh91__feature-copy p:not(.cn-eyebrow) {
    font-size: 15px;
  }

  .cn-lh91__feature-media img {
    min-height: 0;
    aspect-ratio: 1 / .86;
  }

  .cn-lh91-card__copy {
    padding: 16px;
  }

  .cn-lh91-card__copy h3 {
    font-size: 22px;
  }

  .cn-lh91__gallery {
    width: calc(100% + 28px);
    max-width: calc(100% + 28px);
    margin-left: -14px;
    margin-right: -14px;
    padding: 0 14px 8px;
  }

  .cn-lh91__gallery figure {
    flex-basis: 245px;
  }

  .cn-section__head h2,
  .cn-proof h2,
  .cn-faq h2 {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 31px);
    overflow-wrap: break-word;
  }

  .cn-cost__row div {
    display: block;
  }

  .cn-cost__row span {
    display: block;
    margin-top: 6px;
    text-align: left;
  }
}

@media (max-width: 420px) {
  .cn-nav__cta {
    display: none;
  }

  .cn-hero h1 {
    font-size: 39px;
  }
}

.cn-lh91--images .cn-lh91__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
  margin-top: 0;
  padding: 0;
  scroll-snap-type: none;
}

.cn-lh91--images .cn-lh91__gallery figure {
  flex: initial;
  margin: 0;
  overflow: hidden;
  border: 1px solid #d8cbb7;
  border-radius: 8px;
  background: #efe2cf;
  box-shadow: 0 10px 28px rgba(31, 25, 18, .06);
}

.cn-lh91--images .cn-lh91__gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@media (max-width: 720px) {
  .cn-lh91--images .cn-lh91__gallery {
    grid-template-columns: 1fr;
    gap: 12px;
    width: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }
}
