/** Shopify CDN: Minification failed

Line 15:13 Expected identifier but found whitespace
Line 15:15 Unexpected "{"
Line 15:25 Expected ":"
Line 16:15 Expected identifier but found whitespace
Line 16:17 Unexpected "{"
Line 16:27 Expected ":"
Line 17:17 Expected identifier but found whitespace
Line 17:19 Unexpected "{"
Line 17:29 Expected ":"

**/
:root {
  --color-bg: {{ settings.color_background | default: '#f7f5ef' }};
  --color-text: {{ settings.color_text | default: '#1d2528' }};
  --color-accent: {{ settings.color_accent | default: '#0f766e' }};
  --color-accent-dark: #0b4f4a;
  --color-line: rgba(29, 37, 40, 0.16);
  --color-white: #ffffff;
  --shadow: 0 24px 70px rgba(29, 37, 40, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.96;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.12rem;
  margin-bottom: 0.5rem;
}

.skip-link {
  left: 1rem;
  position: absolute;
  top: -100px;
  z-index: 10;
}

.skip-link:focus {
  top: 1rem;
}

.page-width {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 1.25rem;
}

.site-header {
  background: rgba(247, 245, 239, 0.92);
  border-bottom: 1px solid var(--color-line);
  position: sticky;
  top: 0;
  z-index: 5;
}

.header-inner,
.footer-grid {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0;
}

.nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav a,
.footer-links a,
.cart-link {
  font-size: 0.94rem;
}

.cart-count {
  background: var(--color-accent);
  border-radius: 999px;
  color: var(--color-white);
  display: inline-grid;
  font-size: 0.74rem;
  height: 20px;
  margin-left: 0.35rem;
  place-items: center;
  width: 20px;
}

.hero {
  overflow: hidden;
  padding: 4rem 0 3rem;
}

.hero-grid,
.product-shell,
.faq-layout {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
}

.hero-copy p {
  font-size: 1.2rem;
  max-width: 620px;
}

.eyebrow {
  color: var(--color-accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  align-items: center;
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: 6px;
  color: var(--color-white);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.2rem;
}

.button:hover {
  background: var(--color-accent-dark);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.button-secondary {
  background: transparent;
  color: var(--color-accent-dark);
}

.product-visual {
  aspect-ratio: 1;
  background: linear-gradient(160deg, #ffffff 0%, #dfeee9 100%);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 360px;
  overflow: hidden;
  position: relative;
}

.nightstand {
  background: #38484b;
  bottom: 0;
  height: 24%;
  left: 12%;
  position: absolute;
  width: 76%;
}

.stand-base,
.stand-pole,
.stand-hook {
  background: var(--color-accent-dark);
  display: block;
  position: absolute;
}

.stand-base {
  border-radius: 999px;
  bottom: 25%;
  height: 14px;
  left: 29%;
  width: 42%;
}

.stand-pole {
  bottom: 26%;
  height: 48%;
  left: 49%;
  width: 10px;
}

.stand-hook {
  border-radius: 999px 999px 999px 0;
  height: 82px;
  left: 49%;
  top: 19%;
  transform: rotate(28deg);
  width: 10px;
}

.tube {
  border: 16px solid #7eb8ad;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  position: absolute;
}

.tube-one {
  height: 56%;
  right: 9%;
  top: 8%;
  transform: rotate(20deg);
  width: 58%;
}

.tube-two {
  bottom: 18%;
  height: 42%;
  left: 20%;
  transform: rotate(204deg);
  width: 55%;
}

.mask {
  background: #f2f7f5;
  border: 8px solid #38484b;
  border-radius: 38% 38% 48% 48%;
  bottom: 17%;
  height: 70px;
  position: absolute;
  right: 14%;
  width: 112px;
}

.section-band,
.featured-product-section,
.faq-section,
.main-product,
.cart-page,
.page-content {
  padding: 4rem 0;
}

.section-band.light {
  background: #e6f1ed;
}

.section-heading {
  max-width: 720px;
}

.benefit-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.benefit-card,
.steps li,
.cart-item {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  padding: 1.3rem;
}

.product-media img,
.placeholder-product {
  aspect-ratio: 1;
  background: #dfeee9;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.placeholder-product {
  display: grid;
  font-size: 1.4rem;
  font-weight: 800;
  place-items: center;
  text-align: center;
}

.product-summary {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  padding: 2rem;
}

.product-summary h1,
.product-summary h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.price {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.field-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  margin: 1rem 0 0.35rem;
}

select,
.quantity-input {
  border: 1px solid var(--color-line);
  border-radius: 6px;
  font: inherit;
  min-height: 44px;
  padding: 0.55rem 0.75rem;
  width: 100%;
}

.product-summary form .button {
  margin-top: 1rem;
  width: 100%;
}

.fine-print {
  color: rgba(29, 37, 40, 0.72);
  font-size: 0.88rem;
  margin: 1rem 0 0;
}

.steps {
  counter-reset: steps;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.steps span {
  align-items: center;
  background: var(--color-accent);
  border-radius: 999px;
  color: var(--color-white);
  display: inline-flex;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 34px;
}

.faq-layout {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  padding: 1rem 1.2rem;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

.cart-items {
  display: grid;
  gap: 1rem;
}

.cart-item {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.cart-total {
  font-size: 1.3rem;
  font-weight: 800;
}

.cart-footer {
  margin-top: 1.5rem;
  text-align: right;
}

.site-footer {
  background: #1d2528;
  color: var(--color-white);
  padding: 2rem 0;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.center {
  text-align: center;
}

@media (max-width: 820px) {
  .header-inner,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }

  .hero-grid,
  .product-shell,
  .faq-layout,
  .benefit-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .product-visual {
    min-height: 300px;
  }

  .cart-item {
    align-items: stretch;
    flex-direction: column;
  }
}
