/** Shopify CDN: Minification failed

Line 530:17 Unterminated string token

**/
.announcement-bar {
  background: var(--color-accent);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  padding: 0.6rem 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.88);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading-family);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.header-logo img {
  width: var(--logo-width);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: var(--color-accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-icon-link {
  color: var(--color-accent);
  font-weight: 700;
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-accent);
}

.mobile-drawer {
  display: none;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.mobile-drawer.is-open {
  display: block;
}

.mobile-drawer a {
  display: block;
  padding: 1rem;
  border-bottom: 1px solid var(--color-border);
  font-weight: 700;
}

.main-content[data-scroll-story] {
  position: relative;
  isolation: isolate;
}

.scroll-story-stage {
  --scroll-story-opacity: 0;
  --scroll-story-y: 0px;
  --scroll-story-scale: 1;
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  opacity: var(--scroll-story-opacity);
  pointer-events: none;
  transition: opacity 360ms ease;
  background: #faf7f2;
}

.scroll-story-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(250, 247, 242, 0.9) 0%, rgba(250, 247, 242, 0.64) 38%, rgba(250, 247, 242, 0.26) 100%),
    linear-gradient(180deg, rgba(250, 247, 242, 0.26), rgba(250, 247, 242, 0.82));
}

.scroll-story-stage__image {
  position: absolute;
  inset: -5vh -5vw;
  z-index: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(1.03) contrast(1.02);
  transform: translate3d(0, var(--scroll-story-y), 0) scale(var(--scroll-story-scale));
  transition: opacity 520ms ease, transform 120ms linear;
  will-change: opacity, transform;
}

.scroll-story-stage__image--current {
  opacity: 1;
}

.scroll-story-stage__image--next {
  opacity: 0;
}

.scroll-story-stage.is-swapping .scroll-story-stage__image--current {
  opacity: 0;
}

.scroll-story-stage.is-swapping .scroll-story-stage__image--next {
  opacity: 1;
}

.scroll-story-stage__logo {
  position: absolute;
  z-index: 2;
  right: clamp(2rem, 9vw, 8rem);
  top: clamp(7rem, 18vh, 12rem);
  display: grid;
  place-items: center;
  min-width: 112px;
  min-height: 42px;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(74, 51, 45, 0.2);
  border-radius: 999px;
  background: rgba(255, 253, 252, 0.6);
  color: rgba(74, 51, 45, 0.78);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  opacity: calc(var(--scroll-story-opacity) * 0.95);
  mix-blend-mode: multiply;
  transform: translate3d(0, calc(var(--scroll-story-y) * -0.18), 0);
  transition: opacity 360ms ease;
}

.scroll-story-stage__caption {
  position: absolute;
  z-index: 2;
  right: clamp(1.5rem, 7vw, 6rem);
  bottom: clamp(2rem, 8vh, 5rem);
  max-width: 310px;
  color: rgba(74, 51, 45, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: calc(var(--scroll-story-opacity) * 0.85);
  transform: translate3d(0, calc(var(--scroll-story-y) * -0.12), 0);
}

.main-content[data-scroll-story] > .shopify-section {
  position: relative;
  z-index: 1;
}

.main-content[data-scroll-story] > .shopify-section[id$="__startup_brand"] .section-spacing,
.main-content[data-scroll-story] > .shopify-section[id$="__collection_grid"] .section-spacing,
.main-content[data-scroll-story] > .shopify-section[id$="__how_it_works"] .section-spacing,
.main-content[data-scroll-story] > .shopify-section[id$="__moq_table"] .section-spacing,
.main-content[data-scroll-story] > .shopify-section[id$="__factory_trust"] .section-spacing,
.main-content[data-scroll-story] > .shopify-section[id$="__brand_showcase"] .section-spacing,
.main-content[data-scroll-story] > .shopify-section[id$="__contact_inquiry"] .section-spacing {
  min-height: clamp(720px, 92vh, 980px);
  display: grid;
  align-items: center;
  background: transparent;
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.main-content[data-scroll-story] > .shopify-section[id$="__startup_brand"] .page-width,
.main-content[data-scroll-story] > .shopify-section[id$="__collection_grid"] .page-width,
.main-content[data-scroll-story] > .shopify-section[id$="__how_it_works"] .page-width,
.main-content[data-scroll-story] > .shopify-section[id$="__moq_table"] .page-width,
.main-content[data-scroll-story] > .shopify-section[id$="__factory_trust"] .page-width,
.main-content[data-scroll-story] > .shopify-section[id$="__brand_showcase"] .page-width,
.main-content[data-scroll-story] > .shopify-section[id$="__contact_inquiry"] .page-width {
  position: relative;
  z-index: 1;
}

.main-content[data-scroll-story] > .shopify-section[id$="__startup_brand"] .section-header,
.main-content[data-scroll-story] > .shopify-section[id$="__collection_grid"] .section-header,
.main-content[data-scroll-story] > .shopify-section[id$="__how_it_works"] .section-header,
.main-content[data-scroll-story] > .shopify-section[id$="__moq_table"] .section-header,
.main-content[data-scroll-story] > .shopify-section[id$="__factory_trust"] .section-header,
.main-content[data-scroll-story] > .shopify-section[id$="__brand_showcase"] .section-header,
.main-content[data-scroll-story] > .shopify-section[id$="__contact_inquiry"] .contact-inquiry {
  max-width: 620px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(74, 51, 45, 0.08);
  border-radius: 8px;
  background: rgba(255, 253, 252, 0.78);
  box-shadow: 0 24px 70px rgba(74, 51, 45, 0.08);
  backdrop-filter: blur(14px);
}

.main-content[data-scroll-story] > .shopify-section[id$="__startup_brand"] .feature-card,
.main-content[data-scroll-story] > .shopify-section[id$="__collection_grid"] .collection-card,
.main-content[data-scroll-story] > .shopify-section[id$="__how_it_works"] .step-card,
.main-content[data-scroll-story] > .shopify-section[id$="__moq_table"] .moq-proof-strip__item,
.main-content[data-scroll-story] > .shopify-section[id$="__moq_table"] .moq-table-wrap,
.main-content[data-scroll-story] > .shopify-section[id$="__factory_trust"] .trust-card,
.main-content[data-scroll-story] > .shopify-section[id$="__factory_trust"] .factory-proof__media,
.main-content[data-scroll-story] > .shopify-section[id$="__brand_showcase"] .showcase-card,
.main-content[data-scroll-story] > .shopify-section[id$="__contact_inquiry"] form {
  background: rgba(255, 253, 252, 0.84);
  backdrop-filter: blur(12px);
}

.hero-brand-launch {
  position: relative;
  min-height: clamp(640px, 82vh, 840px);
  overflow: hidden;
  isolation: isolate;
}

.hero-brand-launch__media,
.hero-brand-launch__media::after {
  position: absolute;
  inset: 0;
}

.hero-brand-launch__media::after {
  content: '';
  background: linear-gradient(90deg, rgba(250, 247, 242, 0.92), rgba(250, 247, 242, 0.62), rgba(250, 247, 242, 0.22));
  z-index: 1;
}

.hero-brand-launch__media img,
.hero-brand-launch__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-brand-launch__content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: clamp(640px, 82vh, 840px);
  max-width: 760px;
  padding-block: 7rem;
}

.hero-brand-launch__title {
  margin-top: 1.25rem;
  font-size: clamp(3rem, 8vw, 5rem);
}

.hero-brand-launch__text {
  max-width: 660px;
  margin-top: 1.35rem;
  color: var(--color-muted);
  font-size: clamp(1.08rem, 2vw, 1.4rem);
}

.hero-brand-launch__actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-brand-launch__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-accent);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 0.5rem 0.8rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.image-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.image-frame img,
.image-frame video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.feature-grid,
.collection-seo-grid,
.trust-grid,
.showcase-grid,
.related-collections-grid {
  display: grid;
  gap: 1rem;
}

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

.feature-card,
.collection-card,
.step-card,
.trust-card,
.showcase-card,
.faq-item,
.related-collection-card,
.product-card {
  padding: 1.25rem;
}

.feature-card h3,
.collection-card h3,
.step-card h3,
.trust-card h3,
.showcase-card h3,
.related-collection-card h3,
.product-card h3 {
  margin-bottom: 0.6rem;
  font-family: var(--font-body-family);
  font-size: 1rem;
  letter-spacing: 0;
}

.feature-card p,
.collection-card p,
.step-card p,
.trust-card p,
.showcase-card p,
.related-collection-card p,
.product-card p {
  color: var(--color-muted);
}

.collection-seo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collection-card {
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.collection-card:hover,
.related-collection-card:hover {
  border-color: rgba(74, 51, 45, 0.32);
  box-shadow: 0 22px 70px rgba(74, 51, 45, 0.12);
}

.collection-card__image {
  overflow: hidden;
  margin: -1.25rem -1.25rem 1.25rem;
  background: #eadbd0;
}

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

.collection-card__cta,
.related-collection-card__cta {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--color-accent);
  font-weight: 800;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.step-card__number {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--color-blush);
  color: var(--color-accent);
  font-weight: 900;
}

.moq-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.moq-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.moq-table th,
.moq-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

.moq-table th {
  background: rgba(239, 207, 198, 0.25);
  color: var(--color-accent);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.showcase-card__image {
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: calc(var(--radius-md) - 0.35rem);
}

.showcase-card__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

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

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 800;
  cursor: pointer;
}

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

.faq-item summary::after {
  content: '+';
  color: var(--color-accent);
  font-size: 1.5rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '�?;
}

.faq-item__answer {
  margin-top: 0.85rem;
  color: var(--color-muted);
}

.collection-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 9vw, 8rem);
  background: linear-gradient(135deg, rgba(239, 207, 198, 0.48), rgba(250, 247, 242, 0.92));
}

.collection-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.collection-hero__title {
  margin-top: 1rem;
  font-size: clamp(2.75rem, 7vw, 6.5rem);
}

.collection-hero__description,
.collection-intro__content,
.rich-content {
  color: var(--color-muted);
  font-size: 1.06rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-card__image {
  overflow: hidden;
  margin: -1.25rem -1.25rem 1rem;
  background: #eadbd0;
}

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

.price {
  margin-top: 0.75rem;
  color: var(--color-accent);
  font-weight: 900;
}

.rich-content {
  display: grid;
  gap: 1.2rem;
  max-width: 860px;
}

.rich-content h2,
.rich-content h3 {
  color: var(--color-text);
  margin-top: 1rem;
}

.related-collections-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pl-product__hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(239, 207, 198, 0.5), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 252, 0.95), rgba(250, 247, 242, 0.76));
}

.pl-product__hero-grid,
.pl-product__customizer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.pl-product__content {
  display: grid;
  gap: 1.25rem;
}

.pl-product__title {
  max-width: 820px;
  font-size: clamp(2.75rem, 7vw, 5.8rem);
  line-height: 0.94;
}

.pl-product__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pl-product__facts,
.pl-product__option-grid {
  display: grid;
  gap: 0.75rem;
}

.pl-product__facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 1rem;
}

.pl-product__facts div,
.pl-product__option-grid .card {
  display: grid;
  gap: 0.35rem;
}

.pl-product__facts dt,
.pl-product__option-grid dt {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pl-product__facts dd,
.pl-product__option-grid dd {
  color: var(--color-accent);
  font-size: 1.05rem;
  font-weight: 900;
}

.pl-product__gallery {
  position: relative;
}

.pl-product__gallery::before {
  content: '';
  position: absolute;
  inset: -1rem -1rem auto auto;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(239, 207, 198, 0.42);
  filter: blur(4px);
}

.pl-product__gallery .image-frame,
.pl-product__gallery .product-media-thumbs {
  position: relative;
}

.pl-product__customizer {
  background: rgba(239, 207, 198, 0.18);
}

.pl-product__mini-steps {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.pl-product__mini-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 252, 0.76);
}

.pl-product__mini-step span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 900;
}

.pl-product__mini-step p,
.pl-product__app-note p {
  margin-top: 0.3rem;
  color: var(--color-muted);
}

.pl-product__app {
  min-height: 360px;
  padding: clamp(1.25rem, 3vw, 2rem);
}

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

.moq-pill {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(239, 207, 198, 0.34);
  color: var(--color-accent);
  font-size: 0.86rem;
  font-weight: 850;
  padding: 0.35rem 0.65rem;
}

.pl-product__hero-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
  max-width: 620px;
}

.pl-product__hero-actions .button,
.pl-product__hero-actions .pl-product__purchase-form,
.pl-product__hero-actions .pl-product__purchase-form .button {
  width: 100%;
}

.pl-product__hero-actions .button {
  min-height: 3.05rem;
  justify-content: center;
  padding-inline: 1rem;
  text-align: center;
  white-space: nowrap;
}

.pl-product__purchase-form {
  display: block;
}

.mobile-sticky-cta {
  display: none;
}

.mobile-sticky-cta .pl-product__mobile-purchase-form {
  display: block;
  width: 100%;
}

.button--full {
  width: 100%;
  justify-content: center;
}

.product-inquiry-panel {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.product-media-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.product-media-thumb {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
}

.product-media-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-proof-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.product-proof-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

.product-proof-item strong {
  color: var(--color-accent);
}

.product-proof-item span {
  color: var(--color-muted);
  text-align: right;
}

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

.inquiry-form-card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.form-grid label {
  display: grid;
  gap: 0.45rem;
  color: var(--color-accent);
  font-weight: 800;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-text);
  padding: 0.85rem 1rem;
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: var(--color-accent);
  outline: 2px solid rgba(74, 51, 45, 0.12);
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-success {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(22, 101, 52, 0.18);
  border-radius: var(--radius-sm);
  background: #f0fdf4;
  color: #166534;
}

.form-success strong {
  font-weight: 900;
}

.form-success span {
  color: #15803d;
  font-size: 0.95rem;
}

.form-errors {
  margin-bottom: 1rem;
  color: #9f1239;
}

.ai-answer-card {
  display: grid;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(135deg, rgba(255, 253, 252, 0.92), rgba(239, 207, 198, 0.34));
}

.ai-answer-card__answer {
  max-width: 880px;
  color: var(--color-muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.ai-answer-points,
.definition-grid {
  display: grid;
  gap: 1rem;
}

.ai-answer-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ai-answer-point {
  display: grid;
  gap: 0.45rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.ai-answer-point strong,
.definition-card h3 {
  color: var(--color-accent);
}

.ai-answer-point span,
.definition-card p {
  color: var(--color-muted);
}

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

.definition-card {
  padding: 1.25rem;
}

.definition-card h3 {
  margin-bottom: 0.6rem;
  font-family: var(--font-body-family);
  font-size: 1rem;
  letter-spacing: 0;
}

.article-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: 110px;
}

.article-toc,
.article-cta-card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.article-toc h2 {
  margin-top: 0.75rem;
  font-family: var(--font-body-family);
  font-size: 1.15rem;
  letter-spacing: 0;
}

.article-toc p,
.article-meta {
  color: var(--color-muted);
}

.article-content {
  max-width: 820px;
}

.article-content .image-frame {
  margin-block: 2rem;
}

.article-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(239, 207, 198, 0.42), rgba(255, 253, 252, 0.9));
}

.search-form {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
}

.search-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.85rem 1rem;
}

.site-footer {
  border-top: 1px solid var(--color-border);
  background: #211612;
  color: #fff;
  padding-block: 4rem 2rem;
}

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

.footer-title {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 900;
}

.footer-text,
.footer-link-list a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
}

.footer-link-list {
  display: grid;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-link-list a:hover,
.footer-link-list a:focus-visible {
  color: #fff;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

@media screen and (max-width: 989px) {
  .scroll-story-stage {
    background: #faf7f2;
  }

  .scroll-story-stage::after {
    background:
      linear-gradient(180deg, rgba(250, 247, 242, 0.42) 0%, rgba(250, 247, 242, 0.88) 54%, rgba(250, 247, 242, 0.98) 100%),
      linear-gradient(90deg, rgba(250, 247, 242, 0.5), rgba(250, 247, 242, 0.3));
  }

  .scroll-story-stage__image {
    inset: -4vh -8vw;
    height: auto;
    background-position: center center;
    background-size: cover;
  }

  .scroll-story-stage__logo,
  .scroll-story-stage__caption {
    display: none;
  }

  .main-content[data-scroll-story] > .shopify-section[id$="__startup_brand"] .section-spacing,
  .main-content[data-scroll-story] > .shopify-section[id$="__collection_grid"] .section-spacing,
  .main-content[data-scroll-story] > .shopify-section[id$="__how_it_works"] .section-spacing,
  .main-content[data-scroll-story] > .shopify-section[id$="__moq_table"] .section-spacing,
  .main-content[data-scroll-story] > .shopify-section[id$="__factory_trust"] .section-spacing,
  .main-content[data-scroll-story] > .shopify-section[id$="__brand_showcase"] .section-spacing,
  .main-content[data-scroll-story] > .shopify-section[id$="__contact_inquiry"] .section-spacing {
    min-height: clamp(620px, 86vh, 780px);
    padding-top: 4rem;
  }

  .main-content[data-scroll-story] > .shopify-section[id$="__startup_brand"] .section-header,
  .main-content[data-scroll-story] > .shopify-section[id$="__collection_grid"] .section-header,
  .main-content[data-scroll-story] > .shopify-section[id$="__how_it_works"] .section-header,
  .main-content[data-scroll-story] > .shopify-section[id$="__moq_table"] .section-header,
  .main-content[data-scroll-story] > .shopify-section[id$="__factory_trust"] .section-header,
  .main-content[data-scroll-story] > .shopify-section[id$="__brand_showcase"] .section-header,
  .main-content[data-scroll-story] > .shopify-section[id$="__contact_inquiry"] .contact-inquiry {
    max-width: none;
  }

  .header-nav,
  .header-actions .button {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .two-column,
  .collection-hero__inner,
  .pl-product__hero-grid,
  .pl-product__customizer-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .collection-seo-grid,
  .showcase-grid,
  .related-collections-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media screen and (max-width: 640px) {
  .page-width {
    width: min(100% - 1.25rem, var(--page-width));
  }

  .hero-brand-launch__content {
    padding-block: 5rem;
  }

  .hero-brand-launch__media::after {
    background: linear-gradient(180deg, rgba(250, 247, 242, 0.9), rgba(250, 247, 242, 0.7));
  }

  .collection-seo-grid,
  .feature-grid,
  .steps-grid,
  .trust-grid,
  .showcase-grid,
  .related-collections-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    min-height: 66px;
  }
}


@media screen and (max-width: 989px) {
  .pl-product__facts,
  .pl-product__option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 640px) {
  .pl-product__facts,
  .pl-product__option-grid {
    grid-template-columns: 1fr;
  }

  .mobile-sticky-cta {
    position: sticky;
    bottom: 0;
    z-index: 40;
    display: block;
    margin: 0 -0.625rem;
    padding: 0.75rem;
    border-top: 1px solid var(--color-border);
    background: rgba(255, 253, 252, 0.94);
    backdrop-filter: blur(16px);
  }
}

.article-toc__nav {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
}

.article-toc__link {
  color: var(--color-accent);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.35;
}

.article-toc__link--child {
  padding-left: 1rem;
  color: var(--color-muted);
  font-weight: 700;
}

.article-toc__link:hover,
.article-toc__link:focus-visible {
  text-decoration: underline;
}

.article-content h2,
.article-content h3 {
  scroll-margin-top: 120px;
}

@media screen and (max-width: 989px) {
  .article-layout,
  .article-cta-card {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .ai-answer-points,
  .definition-grid,
  .product-customization-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 640px) {
  .ai-answer-points,
  .definition-grid,
  .product-customization-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .search-form {
    flex-direction: column;
  }

  .pl-product__hero-actions {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

.customer-form-page {
  max-width: 760px;
}

.customer-form-card,
.app-blocks-wrapper {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.customer-form-card form,
.customer-form-card label {
  display: grid;
  gap: 0.85rem;
}

.customer-form-card input {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}

.customer-form-card label + label,
.customer-form-card button {
  margin-top: 1rem;
}

.app-blocks-wrapper:empty {
  display: none;
}

.newsletter-card,
.gift-card-page {
  display: grid;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(135deg, rgba(255, 253, 252, 0.94), rgba(239, 207, 198, 0.32));
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.9rem 1rem;
}

.gift-card-page {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.gift-card-code {
  border: 1px dashed var(--color-accent);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-accent);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 1.5rem;
}

@media screen and (max-width: 640px) {
  .newsletter-form {
    align-items: stretch;
    flex-direction: column;
  }
}


/* Premium visual defaults and navigation architecture */
.placeholder-svg {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(135deg, #f8ded8 0%, #fff7f2 48%, #d7b7a2 100%);
  color: rgba(74, 51, 45, 0.16);
}

.placeholder-svg--hero {
  min-height: clamp(640px, 82vh, 840px);
  transform: scale(1.04);
}

.placeholder-svg--image-frame {
  aspect-ratio: 4 / 5;
}

.hero-brand-launch__placeholder,
.image-frame--editorial {
  position: relative;
}

.hero-brand-launch__placeholder::before,
.image-frame--editorial::before {
  content: '';
  position: absolute;
  inset: 12%;
  z-index: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.52), rgba(255,255,255,0));
  pointer-events: none;
}

.two-column--editorial {
  align-items: center;
}

.header-nav {
  display: flex;
  align-items: center;
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.header-nav__list {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.header-nav__item {
  position: relative;
}

.header-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 76px;
  color: var(--color-muted);
}


.header-nav__link:hover,
.header-nav__link:focus-visible,
.header-nav__item:hover > .header-nav__link,
.header-nav__item:focus-within > .header-nav__link {
  color: var(--color-accent);
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  width: min(760px, calc(100vw - 2rem));
  padding-top: 0.75rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.header-nav__item:hover .mega-menu,
.header-nav__item:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-menu__inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 252, 0.98);
  box-shadow: 0 24px 80px rgba(74, 51, 45, 0.16);
}

.mega-menu__intro {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(239, 207, 198, 0.44), rgba(250, 247, 242, 0.9));
}

.mega-menu__intro p {
  margin-top: 0.6rem;
  color: var(--color-accent);
  font-family: var(--font-heading-family);
  font-size: 1.45rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.mega-menu__columns,
.mega-menu__links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.mega-menu__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.mega-menu__title {
  color: var(--color-accent);
  font-weight: 900;
}

.mega-menu__links {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.mega-menu__links a {
  color: var(--color-muted);
  font-weight: 700;
}

.mega-menu__links a:hover,
.mega-menu__links a:focus-visible {
  color: var(--color-accent);
}

.mobile-drawer {
  display: none;
  border-top: 1px solid var(--color-border);
  background: rgba(255, 253, 252, 0.98);
  box-shadow: 0 24px 70px rgba(74, 51, 45, 0.14);
}

.mobile-drawer.is-open {
  display: block;
}

.mobile-drawer__inner {
  display: grid;
  gap: 0.25rem;
  width: min(var(--page-width), calc(100% - 2rem));
  max-height: calc(100vh - 76px);
  margin-inline: auto;
  overflow-y: auto;
  padding-block: 0.8rem 1.2rem;
}

.mobile-menu-link,
.mobile-drawer summary {
  display: block;
  width: 100%;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-accent);
  font-weight: 850;
  cursor: pointer;
}

.mobile-menu-link--child {
  padding-left: 1rem;
  color: var(--color-muted);
}

.mobile-menu-link--grandchild {
  padding-left: 2rem;
  color: var(--color-muted);
  font-weight: 700;
}

.mobile-menu-link--parent {
  font-size: 0.92rem;
}

.mobile-menu-nested {
  margin-left: 1rem;
}

.mobile-drawer__cta {
  margin-top: 0.75rem;
}

@media screen and (max-width: 1120px) {
  .header-nav__list {
    gap: 0.8rem;
  }

  .header-nav__link {
    font-size: 0.88rem;
  }
}

/* Homepage anchor targets and richer default visuals */
#private-label-collections,
#oem-process,
#factory-trust,
#brand-showcase,
#quote {
  scroll-margin-top: 110px;
}

.placeholder-svg--card,
.placeholder-svg--showcase {
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: linear-gradient(135deg, #f8ded8 0%, #fff7f2 45%, #e3c1b7 100%);
}

.collection-card__image:has(.placeholder-svg),
.showcase-card__image:has(.placeholder-svg),
.image-frame:has(.placeholder-svg) {
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.78), transparent 35%), linear-gradient(135deg, rgba(239,207,198,0.48), rgba(255,253,252,0.92));
}

.header-nav--demo .mega-menu {
  width: min(1120px, calc(100vw - 4rem));
}

.header-nav--demo .mega-menu__inner {
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  min-height: 220px;
  padding: 1.5rem;
}

.header-nav--demo .mega-menu__columns {
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  align-content: stretch;
  gap: 1rem;
}

.header-nav--demo .mega-menu__column {
  display: flex;
  align-items: center;
  min-height: 84px;
  padding: 1rem;
  border: 1px solid rgba(74, 51, 45, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(250, 247, 242, 0.5);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.header-nav--demo .mega-menu__column:hover,
.header-nav--demo .mega-menu__column:focus-within {
  background: #fff;
  border-color: rgba(74, 51, 45, 0.18);
  transform: translateY(-1px);
}

.header-nav--demo .mega-menu__title {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.2;
}

@media screen and (max-width: 989px) {
  .header-nav--demo .mega-menu {
    display: none;
  }
}

/* Compact sticky header and button-style mega menu */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  min-height: 68px;
}

.header-nav__link {
  min-height: 68px;
}

.mega-menu {
  padding-top: 0.35rem;
}

.header-nav--demo .mega-menu {
  width: min(860px, calc(100vw - 2rem));
}

.header-nav--demo .mega-menu__inner {
  align-items: start;
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr);
  min-height: auto;
  gap: 1rem;
  padding: 1rem;
  border-radius: 18px;
}

.header-nav--demo .mega-menu__intro {
  align-self: start;
  min-height: 100%;
  padding: 0.85rem;
}

.header-nav--demo .mega-menu__intro p {
  margin-top: 0.45rem;
  font-size: 1.08rem;
  line-height: 1.12;
}

.header-nav--demo .mega-menu__columns {
  align-content: start;
  align-items: start;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 0.55rem;
}

.header-nav--demo .mega-menu__column {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  transform: none;
}

.header-nav--demo .mega-menu__column:hover,
.header-nav--demo .mega-menu__column:focus-within {
  background: transparent;
  border-color: transparent;
  transform: none;
}

.header-nav--demo .mega-menu__title {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 42px;
  padding: 0.68rem 0.85rem;
  border: 1px solid rgba(74, 51, 45, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 252, 0.86);
  color: var(--color-accent);
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.15;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.header-nav--demo .mega-menu__title:hover,
.header-nav--demo .mega-menu__title:focus-visible {
  background: #fff;
  border-color: rgba(74, 51, 45, 0.24);
  box-shadow: 0 10px 28px rgba(74, 51, 45, 0.1);
  transform: translateY(-1px);
}

@media screen and (max-width: 1120px) {
  .header-inner {
    gap: 0.7rem;
  }

  .header-nav__list {
    gap: 0.55rem;
  }

  .header-nav__link {
    font-size: 0.82rem;
  }
}

/* Compact header action icons */
.header-actions {
  gap: 0.45rem;
}

.header-icon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--color-accent);
}

.header-icon-link:hover,
.header-icon-link:focus-visible {
  background: rgba(74, 51, 45, 0.07);
}

.header-icon-link svg {
  display: block;
  width: 19px;
  height: 19px;
}

.header-cart-count {
  position: absolute;
  top: 1px;
  right: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding-inline: 4px;
  border: 1px solid var(--color-background);
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
}

.header-quote-button {
  min-height: 40px;
  padding: 0.65rem 1.05rem;
  font-size: 0.86rem;
  line-height: 1;
}

/* AI SEO private label cosmetics homepage */
.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.35rem 1rem;
  background: #4A332D;
  color: #FAF7F2;
}

.announcement-bar a {
  color: inherit;
  font-weight: 900;
  text-decoration: none;
}

.hero-brand-launch--platform {
  min-height: 90vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 80% 18%, rgba(239, 207, 198, 0.65), transparent 32%), linear-gradient(135deg, #faf7f2 0%, #fffdfc 58%, #f1ded8 100%);
}

.hero-brand-launch__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: 90vh;
  padding-block: clamp(4rem, 7vw, 7rem);
  isolation: isolate;
}

.hero-brand-launch__wire-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-brand-launch__silk {
  position: absolute;
  inset: -5% -8%;
  width: 116%;
  height: 110%;
  opacity: 0.82;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 14px 22px rgba(196, 124, 128, 0.08));
  transform: translate3d(-2%, 0, 0) rotateX(54deg) rotateZ(-1deg);
  transform-origin: center;
  animation: heroSilkFloat 9s linear infinite;
  will-change: transform, opacity;
}

.hero-brand-launch__silk--back {
  opacity: 0.62;
  animation-duration: 13s;
  animation-delay: -3.5s;
}

.hero-brand-launch__silk path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 16 24;
  animation: heroSilkDraw 10s linear infinite;
}

.hero-brand-launch__silk path:nth-child(odd) {
  stroke: rgba(163, 86, 98, 0.34);
  stroke-width: 1.5;
}

.hero-brand-launch__silk path:nth-child(even) {
  stroke: rgba(217, 159, 146, 0.3);
  stroke-width: 1.1;
  stroke-dasharray: 10 20;
  animation-duration: 12s;
}

.hero-brand-launch__silk path:nth-child(3n) {
  stroke: rgba(121, 73, 84, 0.26);
  stroke-width: 1.2;
}

.hero-brand-launch__silk path:nth-child(4n) {
  stroke: rgba(237, 190, 176, 0.42);
  stroke-width: 1.65;
}

.hero-brand-launch__silk--front {
  opacity: 0.86;
  transform: translate3d(-3%, 0, 0) rotateX(58deg) rotateZ(1deg);
  animation-duration: 8.5s;
  animation-delay: -1.4s;
}

.hero-brand-launch__wire {
  display: none;
}

.hero-brand-launch--platform .hero-brand-launch__content {
  position: relative;
  z-index: 2;
  min-height: auto;
  max-width: 760px;
  padding-block: 0;
}

.hero-logo-studio {
  --studio-tilt-x: 0deg;
  --studio-tilt-y: 0deg;
  --studio-logo-progress: 0;
  position: relative;
  z-index: 2;
  min-height: 560px;
  perspective: 1100px;
  touch-action: pan-y;
}

.hero-logo-studio__scene {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: rotateX(var(--studio-tilt-x)) rotateY(var(--studio-tilt-y));
  transition: transform 260ms ease;
}

.hero-logo-studio__halo {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.52;
  transform: translateZ(-80px);
}

.hero-logo-studio__halo--coral {
  width: 190px;
  height: 190px;
  right: 8%;
  top: 10%;
  background: radial-gradient(circle, rgba(220, 92, 112, 0.28), transparent 68%);
}

.hero-logo-studio__halo--mauve {
  width: 240px;
  height: 240px;
  left: 7%;
  bottom: 11%;
  background: radial-gradient(circle, rgba(122, 82, 101, 0.2), transparent 70%);
}

.hero-logo-studio__wire {
  position: absolute;
  border: 1px solid rgba(74, 51, 45, 0.16);
  border-radius: 999px;
  opacity: 0.58;
  transform-style: preserve-3d;
  animation: heroWireDrift 9s ease-in-out infinite;
  will-change: transform, opacity;
}

.hero-logo-studio__wire::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.38);
  clip-path: inset(0 48% 0 0);
}

.hero-logo-studio__wire--one {
  width: 390px;
  height: 150px;
  left: 10%;
  top: 18%;
  transform: translateZ(-20px) rotateX(62deg) rotateZ(-18deg);
}

.hero-logo-studio__wire--two {
  width: 310px;
  height: 96px;
  right: 2%;
  top: 28%;
  border-color: rgba(154, 92, 103, 0.16);
  transform: translateZ(20px) rotateX(68deg) rotateZ(28deg);
  animation-delay: -2.6s;
}

.hero-logo-studio__wire--three {
  width: 450px;
  height: 130px;
  left: 3%;
  bottom: 16%;
  border-color: rgba(74, 51, 45, 0.11);
  transform: translateZ(-60px) rotateX(72deg) rotateZ(9deg);
  animation-delay: -4.2s;
}

.hero-logo-studio__wire--four {
  width: 190px;
  height: 190px;
  right: 18%;
  bottom: 7%;
  border-color: rgba(220, 92, 112, 0.12);
  transform: translateZ(50px) rotateX(64deg) rotateZ(-34deg);
  animation-delay: -6s;
}

.hero-logo-studio__product {
  position: absolute;
  transform-style: preserve-3d;
  will-change: transform;
  animation: heroProductFloat 7s ease-in-out infinite;
}

.hero-logo-studio__product--lipstick {
  left: 49%;
  top: 7%;
  width: 168px;
  height: 390px;
  transform: translate3d(-50%, 0, 140px) rotateZ(-12deg);
  animation-delay: -1s;
}

.hero-logo-studio__product--gloss {
  right: 6%;
  top: 19%;
  width: 118px;
  height: 390px;
  transform: translate3d(0, 0, 80px) rotateZ(13deg);
  animation-delay: -2.4s;
}

.hero-logo-studio__product--palette {
  left: 5%;
  bottom: 16%;
  width: 305px;
  height: 245px;
  transform: translate3d(0, 0, 40px) rotateX(16deg) rotateZ(-9deg);
  animation-delay: -3.8s;
}

.hero-logo-studio__product.has-product-image {
  display: grid;
  place-items: center;
}

.hero-logo-studio__product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 34px 34px rgba(74, 51, 45, 0.18));
  transform: translateZ(40px);
  user-select: none;
  -webkit-user-drag: none;
}

.hero-logo-studio__product.has-product-image .hero-logo-studio__shadow {
  bottom: 3%;
  opacity: 0.9;
}

.hero-logo-studio__product--lipstick.has-product-image .hero-logo-studio__logo--image {
  top: calc(80% + 30px);
  left: calc(38% - 10px);
  transform: translate(-50%, -50%) translateZ(82px) rotate(5deg) scale(calc(0.8 + (var(--studio-logo-progress) * 0.2)));
}

.hero-logo-studio__product--gloss.has-product-image .hero-logo-studio__logo--image {
  top: 56%;
  left: 48%;
  transform: translate(-50%, -50%) translateZ(82px) rotate(7deg) scale(calc(0.78 + (var(--studio-logo-progress) * 0.22)));
}

.hero-logo-studio__product--palette.has-product-image .hero-logo-studio__logo--image {
  top: 30%;
  left: 47%;
  transform: translate(-50%, -50%) translateZ(82px) rotate(5deg) scale(calc(0.76 + (var(--studio-logo-progress) * 0.2)));
}

.hero-logo-studio__tube,
.hero-logo-studio__cap,
.hero-logo-studio__bullet,
.hero-logo-studio__gloss-body,
.hero-logo-studio__wand,
.hero-logo-studio__palette-lid,
.hero-logo-studio__pans {
  position: absolute;
  left: 50%;
  transform-style: preserve-3d;
}

.hero-logo-studio__tube {
  bottom: 34px;
  width: 92px;
  height: 245px;
  border-radius: 999px 999px 30px 30px;
  background:
    linear-gradient(90deg, rgba(111, 73, 78, 0.22), transparent 18%, rgba(255,255,255,0.82) 38%, transparent 58%, rgba(83, 50, 54, 0.26)),
    linear-gradient(180deg, #fffaf8 0%, #efd0ca 58%, #8f515d 100%);
  box-shadow: inset -18px 0 28px rgba(74, 51, 45, 0.16), inset 16px 0 18px rgba(255,255,255,0.62), 0 28px 48px rgba(74, 51, 45, 0.18);
  transform: translateX(-50%) translateZ(42px);
}

.hero-logo-studio__cap {
  bottom: 24px;
  width: 108px;
  height: 74px;
  border-radius: 26px 26px 38px 38px;
  background: linear-gradient(90deg, #2f2423, #72534e 34%, #fff3ed 52%, #6d4a47 76%, #2f2423);
  box-shadow: inset -14px 0 24px rgba(0,0,0,0.18), 0 22px 38px rgba(74, 51, 45, 0.18);
  transform: translateX(-50%) translateZ(52px);
}

.hero-logo-studio__bullet {
  top: 8px;
  width: 64px;
  height: 138px;
  border-radius: 34px 34px 18px 18px;
  background: linear-gradient(90deg, #7b2537, #d85870 42%, #ff9a9e 55%, #9e2c45 78%, #541827);
  box-shadow: inset -12px 0 20px rgba(76, 8, 22, 0.3);
  transform: translateX(-50%) translateZ(36px) rotateX(-5deg);
}

.hero-logo-studio__wand {
  top: 0;
  width: 64px;
  height: 92px;
  border-radius: 999px 999px 22px 22px;
  background: linear-gradient(90deg, #201817, #7c6760 44%, #fff8f3 53%, #3a2c2a);
  transform: translateX(-50%) translateZ(54px);
}

.hero-logo-studio__gloss-body {
  bottom: 18px;
  width: 82px;
  height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px 999px 30px 30px;
  background:
    linear-gradient(90deg, rgba(119, 59, 70, 0.24), rgba(255,255,255,0.8) 38%, rgba(255,255,255,0.18) 58%, rgba(76, 32, 43, 0.22)),
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(247, 180, 193, 0.76) 46%, rgba(177, 72, 97, 0.66));
  box-shadow: inset -13px 0 26px rgba(88, 31, 44, 0.16), 0 24px 42px rgba(74, 51, 45, 0.16);
  transform: translateX(-50%) translateZ(44px);
}

.hero-logo-studio__shine {
  position: absolute;
  top: 34px;
  left: 22px;
  width: 14px;
  height: 164px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  filter: blur(0.4px);
}

.hero-logo-studio__palette-lid {
  top: 0;
  width: 250px;
  height: 136px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fffdfc, #e7c9c3 62%, #9c6d70);
  box-shadow: inset -20px -18px 30px rgba(74, 51, 45, 0.14), inset 18px 16px 24px rgba(255,255,255,0.6), 0 28px 48px rgba(74, 51, 45, 0.16);
  transform: translateX(-50%) translateZ(52px);
}

.hero-logo-studio__pans {
  bottom: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
  width: 220px;
  height: 58px;
  padding: 11px;
  border-radius: 18px;
  background: #4a332d;
  transform: translateX(-50%) translateZ(72px);
}

.hero-logo-studio__pans span {
  border-radius: 999px;
  box-shadow: inset 0 5px 10px rgba(0,0,0,0.18);
}

.hero-logo-studio__pans span:nth-child(1) { background: #f3d2c9; }
.hero-logo-studio__pans span:nth-child(2) { background: #c97982; }
.hero-logo-studio__pans span:nth-child(3) { background: #8f5664; }
.hero-logo-studio__pans span:nth-child(4) { background: #f0a76f; }

.hero-logo-studio__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #4a332d;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  opacity: calc(0.08 + (var(--studio-logo-progress) * 0.92));
  transform: translate(-50%, -50%) translateZ(18px) scale(calc(0.74 + (var(--studio-logo-progress) * 0.26)));
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  box-shadow: none;
  text-shadow: 0 1px 1px rgba(255,255,255,0.35);
}

.hero-logo-studio__logo--image {
  z-index: 2;
  background: transparent;
  border: 0;
  color: rgba(72, 48, 44, 0.7);
  font-size: 0.88rem;
  filter: blur(0.08px);
  mix-blend-mode: multiply;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero-logo-studio__palette-lid .hero-logo-studio__logo {
  min-width: 86px;
  min-height: 32px;
  background: rgba(255, 253, 252, 0.58);
}

.hero-logo-studio__shadow {
  /* position: absolute; */
  left: 50%;
  bottom: -18px;
  width: 112px;
  height: 68px;
  border-radius: 999px;
  background: rgba(74, 51, 45, 0.18);
  filter: blur(12px);
  transform: translateX(-50%) translateZ(-80px) rotateX(78deg);
}

.hero-logo-studio__product--palette .hero-logo-studio__shadow {
  width: 230px;
  bottom: -6px;
}

@keyframes heroProductFloat {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -16px; }
}

@keyframes heroWireDrift {
  0%, 100% { opacity: 0.42; margin-top: 0; }
  50% { opacity: 0.7; margin-top: -12px; }
}

@keyframes heroSilkFloat {
  0% {
    opacity: 0.62;
    transform: translate3d(-5%, 10px, 0) rotateX(54deg) rotateZ(-1deg);
  }
  50% {
    opacity: 0.88;
    transform: translate3d(1%, -8px, 0) rotateX(57deg) rotateZ(1deg);
  }
  100% {
    opacity: 0.7;
    transform: translate3d(7%, 6px, 0) rotateX(55deg) rotateZ(1.8deg);
  }
}

@keyframes heroSilkDraw {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -240; }
}

.step-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 51, 45, 0.24);
  box-shadow: 0 22px 58px rgba(74, 51, 45, 0.12);
}

.moq-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.moq-table--simple {
  min-width: 720px;
}

.moq-table--simple th,
.moq-table--simple td {
  white-space: normal;
}

.footer-grid--manual {
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(160px, 1fr));
}

@media screen and (max-width: 989px) {
  .hero-brand-launch--platform,
  .hero-brand-launch__grid {
    min-height: auto;
  }

  .hero-brand-launch__grid {
    grid-template-columns: 1fr;
    padding-block: 4rem;
  }

  .hero-brand-launch__wire-stage {
    inset: 0;
  }

  .hero-brand-launch__silk {
    inset: -3% -28%;
    width: 156%;
    opacity: 0.42;
    transform: translate3d(0, 0, 0) rotateX(60deg) rotateZ(-2deg);
  }

  .hero-logo-studio {
    min-height: 460px;
  }

  .footer-grid--manual {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 640px) {
  .hero-logo-studio {
    min-height: 360px;
    transform: scale(0.84);
    transform-origin: center top;
  }

  .hero-logo-studio__product--lipstick {
    left: 48%;
    top: 3%;
  }

  .hero-logo-studio__product--gloss {
    right: 2%;
    top: 19%;
  }

  .hero-logo-studio__product--palette {
    left: 2%;
    bottom: 17%;
  }

  .hero-logo-studio__product--lipstick {
    width: 160px;
  }

  .hero-logo-studio__product--gloss {
    width: 130px;
  }

  .hero-logo-studio__product--palette {
    width: 265px;
  }

  .hero-logo-studio__wire {
    opacity: 0.32;
    transform: scale(0.72);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo-studio__scene {
    transform: none;
  }

  .hero-logo-studio__product {
    animation: none;
  }

  .hero-logo-studio__wire {
    animation: none;
  }

  .hero-brand-launch__silk,
  .hero-brand-launch__silk path {
    animation: none;
  }
}

/* Factory trust cards stacked layout */
#factory-trust .trust-grid {
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

#factory-trust .trust-card {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
}

/* Configurable sticky header */
.site-header {
  position: relative;
  top: auto;
  z-index: 50;
}

.site-header--sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
}

@supports not (position: sticky) {
  .site-header--sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
}

/* Sticky header active state */
.site-header--sticky.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  animation: header-slide-down 160ms ease;
}

.site-header-placeholder[hidden] {
  display: none;
}

@keyframes header-slide-down {
  from { transform: translateY(-8px); }
  to { transform: translateY(0); }
}

/* Conversion proof homepage sections */
.brand-results__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.brand-result-card {
  overflow: hidden;
}

.brand-result-card__content {
  padding: 0 1.15rem 1.2rem;
}

.brand-result-card__content h3 {
  margin: 0 0 0.4rem;
  line-height: 1.18;
}

.brand-result-card__content p {
  margin: 0;
  line-height: 1.55;
}

.brand-result-card__visuals {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.brand-result-card__panel {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border-radius: 22px;
  background: #efe4dc;
}

.brand-result-card__panel img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
}

.brand-result-card__panel--after {
  background: linear-gradient(135deg, #fffdfc, #efcfc6);
  box-shadow: 0 18px 50px rgba(74, 51, 45, 0.12);
}

.brand-result-card__label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 253, 252, 0.88);
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-result-card__arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: -0.25rem auto;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 900;
}

.brand-result-card__placeholder {
  display: grid;
  place-items: center;
  min-height: 170px;
  color: var(--color-accent);
  font-family: var(--font-heading-family);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.brand-result-card__placeholder--after {
  background: radial-gradient(circle at 70% 20%, rgba(239,207,198,0.9), transparent 38%), #fffdfc;
}

.factory-proof__media {
  display: grid;
  gap: 1rem;
}

.factory-proof__photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.factory-proof__photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 18px;
  background: #efe4dc;
  box-shadow: 0 12px 30px rgba(74, 51, 45, 0.08);
}

.factory-proof__photo img,
.factory-proof__photo-placeholder {
  width: 100%;
  height: 145px;
  object-fit: cover;
}

.factory-proof__photo-placeholder {
  display: grid;
  place-items: center;
  padding: 1rem;
  color: var(--color-accent);
  font-weight: 900;
  text-align: center;
}

.factory-proof__photo figcaption {
  position: absolute;
  left: 0.55rem;
  bottom: 0.55rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 253, 252, 0.9);
  color: var(--color-accent);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.moq-proof-strip__item {
  padding: 1.3rem;
  border: 1px solid rgba(74, 51, 45, 0.12);
  border-radius: 24px;
  background: linear-gradient(135deg, #fffdfc, rgba(239, 207, 198, 0.34));
  box-shadow: 0 16px 44px rgba(74, 51, 45, 0.08);
}

.moq-proof-strip__item strong {
  display: block;
  color: var(--color-accent);
  font-family: var(--font-heading-family);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1;
}

.moq-proof-strip__item span {
  display: block;
  margin-top: 0.55rem;
  color: var(--color-muted);
  font-weight: 800;
}

.moq-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 900;
}

@media screen and (max-width: 989px) {
  .brand-results__grid,
  .moq-proof-strip {
    grid-template-columns: 1fr;
  }
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 1rem;
  background: rgba(250, 247, 242, 0.95);
  border-top: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
  display: none;
}

@media (max-width: 749px) {
  .mobile-sticky-cta {
    display: block;
  }
}

.button--full {
  width: 100%;
  justify-content: center;
}

/* Collection Hero */
.collection-hero {
  padding-block: 4rem;
}

.collection-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.collection-hero__title {
  margin-top: 1rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
}

.collection-hero__description {
  margin-top: 1.5rem;
  color: var(--color-muted);
  font-size: 1.15rem;
  line-height: 1.6;
}

@media (max-width: 989px) {
  .collection-hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .collection-hero__inner > div:first-child {
    order: 2;
  }
  
  .collection-hero__inner > div:last-child {
    order: 1;
  }
}

/* MOQ Pill */
.moq-pill {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 999px;
  margin-top: 0.5rem;
}

/* Badge Small */
.badge--small {
  font-size: 0.75rem;
  padding: 0.35rem 0.65rem;
}

/* Product Card Badges */
.product-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

/* Rich Content */
.rich-content {
  max-width: 820px;
  margin-inline: auto;
}

.rich-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.rich-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.rich-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.rich-content ul,
.rich-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.rich-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.rich-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin-block: 1.5rem;
}

/* Private Label Collection Specific */
.private-label-collection .section-spacing:first-of-type {
  padding-top: 0;
}





/* ========================================
   Header Navigation - Clean & Minimal
   ======================================== */

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  min-height: 48px;
  padding-block: 0;
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header-nav__list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav__item {
  position: relative;
}

.header-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 0;
  color: rgba(0, 0, 0, 0.8);
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.25s ease;
}

.header-nav__link:hover {
  color: rgba(0, 0, 0, 1);
}

.has-dropdown > .header-nav__link::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 0.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath d='M1.5 2.5l2.5 2.5 2.5-2.5' stroke='rgba(0,0,0,0.5)' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.25s ease;
  opacity: 0.6;
}

.has-dropdown:hover > .header-nav__link::after {
  transform: rotate(180deg);
  opacity: 1;
}

.has-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -30px;
  right: -30px;
  height: 20px;
  z-index: 99;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 480px;
  padding: 1rem 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 100;
}

.has-dropdown:hover .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-menu__inner {
  display: flex;
  flex-direction: column;
}

.mega-menu__intro {
  display: none;
}

.mega-menu__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-menu__title {
  display: block;
  padding: 0.5rem 0;
  color: rgba(0, 0, 0, 0.88);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mega-menu__title:hover {
  color: rgba(0, 0, 0, 1);
}

.mega-menu__links {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(0, 0, 0, 0.8);
  transition: color 0.2s ease;
}

.header-icon-link:hover {
  color: rgba(0, 0, 0, 1);
}

.header-icon-link--cart {
  position: relative;
}

.header-cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: rgba(0, 0, 0, 0.88);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 600;
  border-radius: 8px;
}

.header-quote-button {
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.88);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 400;
  border-radius: 980px;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.header-quote-button:hover {
  background: rgba(0, 0, 0, 1);
}

.mobile-menu-button {
  display: none;
}

@media (max-width: 989px) {
  .header-nav {
    display: none;
  }
  
  .mobile-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
  }
  
  .header-quote-button {
    display: none;
  }
}

@media (max-width: 749px) {
  .header-inner {
    gap: 1rem;
    min-height: 44px;
  }
  
  .header-actions {
    gap: 0.75rem;
  }
}

.product-media-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.product-media-thumb {
  display: block;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-media-thumb:hover,
.product-media-thumb.is-active {
  border-color: rgba(0, 0, 0, 0.72);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.product-media-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

@media (max-width: 749px) {
  .product-media-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.pl-product__hero {
  background: radial-gradient(circle at 15% 10%, rgba(255, 235, 226, 0.72), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.55), rgba(250,247,242,0));
}

.pl-product__hero-grid,
.pl-product__customizer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.pl-product__title {
  max-width: 760px;
  margin: 1rem 0 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.pl-product__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.25rem;
}

.pl-product__facts span,
.pl-product__option-grid span {
  display: block;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pl-product__facts strong,
.pl-product__option-grid strong {
  display: block;
  margin-top: 0.4rem;
  color: var(--color-accent);
  font-size: 1rem;
}

.pl-product__gallery {
  position: sticky;
  top: 7rem;
}

.pl-product__customizer {
  background: rgba(255, 255, 255, 0.45);
}

.pl-product__mini-steps {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.pl-product__mini-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.pl-product__mini-step > span,
.step-card__number {
  display: inline-flex;
  width: 2.2rem;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 800;
}

.pl-product__mini-step p {
  margin: 0.35rem 0 0;
  color: var(--color-muted);
}

.pl-product__app {
  padding: clamp(1rem, 3vw, 2rem);
}

.pl-product__app-note {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-muted);
}

.pl-product__app-note strong {
  display: block;
  color: var(--color-accent);
  margin-bottom: 0.35rem;
}

.pl-product__option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.moq-table--simple {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.moq-table--simple th,
.moq-table--simple td {
  padding: 1rem;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

.moq-table--simple th {
  color: var(--color-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.moq-pill {
  display: inline-flex;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(39, 20, 15, 0.08);
  color: var(--color-accent);
  font-weight: 800;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 989px) {
  .pl-product__hero-grid,
  .pl-product__customizer-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .pl-product__gallery {
    position: static;
  }
}

@media (max-width: 749px) {
  .pl-product__facts,
  .pl-product__option-grid {
    grid-template-columns: 1fr;
  }

  .mobile-sticky-cta {
    position: sticky;
    bottom: 0;
    z-index: 40;
    display: block;
    padding: 0.75rem 1rem;
    background: rgba(250, 247, 242, 0.88);
    border-top: 1px solid var(--color-border);
    backdrop-filter: blur(18px);
  }

  .button--full {
    width: 100%;
    justify-content: center;
  }
}

.pl-product .section-spacing {
  padding-block: clamp(3.75rem, 7vw, 6.5rem);
}

.pl-product__hero {
  padding-block-start: clamp(2rem, 5vw, 4.5rem);
}

.pl-product__hero-grid,
.pl-product__customizer-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(2rem, 5vw, 4rem);
}

.pl-product__title {
  max-width: 680px;
  margin: 0.75rem 0 0;
  font-size: clamp(2.15rem, 4.5vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.pl-product .section-title {
  max-width: 720px;
  font-size: clamp(2rem, 3.7vw, 3.65rem);
  line-height: 1;
}

.pl-product .section-header--center .section-title,
.pl-product .section-header--center .section-text {
  margin-inline: auto;
}

.pl-product__badges {
  margin-top: 0.25rem;
}

.pl-product__facts {
  align-items: stretch;
  margin-top: 0.75rem;
  padding: 0;
  overflow: hidden;
}

.pl-product__facts div,
.pl-product__option-grid .card {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  min-height: 92px;
  padding: 1rem;
}

.pl-product__facts dt,
.pl-product__option-grid dt {
  min-height: 1.1rem;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.pl-product__facts dd,
.pl-product__option-grid dd {
  align-self: end;
  margin: 0;
  color: var(--color-accent);
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  font-weight: 900;
  line-height: 1.25;
}

.pl-product__gallery {
  position: sticky;
  top: 6.25rem;
}

.pl-product__gallery .image-frame {
  background: #fff;
}

.pl-product__gallery .image-frame img,
.pl-product__gallery .image-frame video,
.pl-product__gallery .placeholder-svg--image-frame {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.pl-product__gallery .image-frame img {
  padding: clamp(0.5rem, 1.5vw, 1rem);
}

.product-media-thumbs {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.55rem;
}

.product-media-thumb {
  padding: 0;
}

.product-media-thumb img {
  display: block;
}

.pl-product__customizer-grid {
  align-items: start;
}

.pl-product__mini-step {
  min-height: 96px;
}

.pl-product__app {
  min-height: 320px;
}

.pl-product__app-block {
  width: 100%;
}

.pl-product__app-block > * {
  width: 100%;
}

.pl-product__app-note {
  margin: 0;
}

.pl-product__option-grid {
  align-items: stretch;
}

.moq-table-wrap {
  box-shadow: 0 18px 55px rgba(74, 51, 45, 0.08);
}

.moq-table--simple {
  min-width: 640px;
}

.feature-grid,
.trust-grid,
.steps-grid {
  align-items: stretch;
}

.feature-card,
.trust-card,
.step-card {
  min-height: 150px;
}

@media screen and (max-width: 989px) {
  .pl-product__hero-grid,
  .pl-product__customizer-grid {
    grid-template-columns: 1fr;
  }

  .pl-product__gallery {
    position: static;
    max-width: 620px;
    margin-inline: auto;
  }

  .pl-product .section-title {
    font-size: clamp(1.9rem, 6vw, 3rem);
  }
}

@media screen and (max-width: 640px) {
  .pl-product .section-spacing {
    padding-block: 3.25rem;
  }

  .pl-product__title {
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  .pl-product .section-title {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }

  .pl-product__facts,
  .pl-product__option-grid {
    grid-template-columns: 1fr;
  }

  .pl-product__facts div,
  .pl-product__option-grid .card {
    min-height: auto;
  }

  .product-media-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
  margin-top: 1.25rem;
}

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

.cart-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1.25rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.cart-item__media {
  display: block;
  overflow: hidden;
  align-self: start;
  border-radius: var(--radius-md);
  background: rgba(250, 247, 242, 0.75);
}

.cart-item__media img,
.cart-item__media svg {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.cart-item__details {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

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

.cart-item__title {
  margin: 0;
  font-family: var(--font-body-family);
  font-size: 1rem;
  line-height: 1.45;
  letter-spacing: 0;
}

.cart-item__variant,
.cart-summary__note {
  margin: 0.35rem 0 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.cart-item__price {
  color: var(--color-accent);
  font-weight: 800;
  white-space: nowrap;
}

.cart-item__properties {
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

.cart-design-assets {
  display: grid;
  gap: 0.85rem;
  padding: 0.9rem;
  border: 1px solid rgba(74, 51, 45, 0.1);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(250, 247, 242, 0.82), rgba(255, 253, 252, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.cart-design-assets__header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: baseline;
  justify-content: space-between;
}

.cart-design-assets__header span {
  color: var(--color-muted);
  font-size: 0.72rem;
}

.cart-design-debug {
  padding: 0.8rem 1rem;
  border: 1px dashed #d97706;
  border-radius: var(--radius-sm);
  background: #fff7ed;
  color: #9a3412;
  font-size: 0.85rem;
  font-weight: 700;
}

.cart-design-assets__title {
  margin: 0;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-design-assets__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 0.75rem;
}

.cart-design-asset {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.4rem;
  min-width: 0;
  padding: 0.55rem;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(74, 51, 45, 0.08);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.cart-design-asset span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.cart-design-asset span::after {
  content: '↗';
  color: var(--color-muted);
  font-size: 0.72rem;
}

.cart-design-asset img {
  display: block;
  width: 100%;
  height: clamp(74px, 9vw, 112px);
  object-fit: contain;
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius-sm) - 4px);
  background: #fbfaf8;
}

.cart-design-asset:hover,
.cart-design-asset:focus-visible {
  border-color: rgba(74, 51, 45, 0.22);
  box-shadow: 0 10px 24px rgba(39, 20, 15, 0.08);
  transform: translateY(-1px);
  outline: 0;
}

.cart-design-asset:hover span,
.cart-design-asset:focus-visible span {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.cart-item__property {
  display: grid;
  gap: 0.35rem;
}

.cart-item__property dt {
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-item__property dd {
  margin: 0;
  color: var(--color-text);
  overflow-wrap: anywhere;
}

.cart-item__property--image dd {
  display: flex;
}

.cart-item__preview {
  display: inline-flex;
  overflow: hidden;
  width: min(240px, 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
}

.cart-item__preview img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

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

.cart-quantity {
  display: inline-flex;
  overflow: hidden;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #fff;
}

.cart-quantity__button,
.cart-quantity__input {
  width: 2.55rem;
  height: 2.55rem;
  border: 0;
  background: transparent;
  color: var(--color-accent);
  text-align: center;
  font: inherit;
  font-weight: 800;
}

.cart-quantity__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.cart-quantity__button:hover,
.cart-quantity__button:focus-visible {
  background: rgba(74, 51, 45, 0.08);
}

.cart-quantity__input {
  appearance: textfield;
  border-inline: 1px solid var(--color-border);
}

.cart-quantity__input::-webkit-outer-spin-button,
.cart-quantity__input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.cart-item__remove {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.cart-summary,
.cart-empty {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.cart-summary {
  position: sticky;
  top: 7rem;
}

.cart-summary h2 {
  margin: 0 0 1rem;
  font-family: var(--font-body-family);
  font-size: 1.1rem;
  letter-spacing: 0;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
  border-block: 1px solid var(--color-border);
}

.cart-summary__actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

@media screen and (max-width: 989px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }
}

@media screen and (max-width: 640px) {
  .cart-item {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 1rem;
  }

  .cart-item__heading {
    display: grid;
  }

  .cart-item__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-design-assets__grid {
    grid-template-columns: 1fr;
  }
}

.cart-flyout-animation {
  position: fixed;
  z-index: 9999;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(33, 22, 18, 0.22);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.68s ease;
}

.cart-flyout-animation img,
.cart-flyout-animation svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-flyout-animation:empty::before {
  content: '';
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--color-accent);
}

.cart-flyout-animation.is-flying {
  opacity: 0.1;
  transform: translate(calc(-50% + var(--cart-flyout-x)), calc(-50% + var(--cart-flyout-y))) scale(0.24);
}

.header-icon-link--cart.is-cart-target {
  animation: cart-target-pop 0.72s ease;
}

@keyframes cart-target-pop {
  0%, 100% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.18);
  }
}
