/** Shopify CDN: Minification failed

Line 160:38 Unexpected "{"
Line 160:47 Expected ":"
Line 160:54 Unexpected "{"

**/
/* ─────────────────────────────────────────────────────────────────────────────
   CENAIRE — Product Page Overrides
   Editorial, spacious, high-fashion. Noir / Porcelain / Off-white. Archivo.
───────────────────────────────────────────────────────────────────────────── */

/* ── Layout ──────────────────────────────────────────────────────────────── */

.cenaire-product-wrap {
  background: #ffffff;
}

.cenaire-product-wrap .page-width {
  max-width: 1440px;
  padding: 0 4rem;
}

.cenaire-product-wrap .product.grid {
  grid-template-columns: 55% 1fr;
  gap: 0;
  align-items: start;
  padding-top: 4rem;
}

.cenaire-product-wrap .product__media-wrapper {
  position: sticky;
  top: 0;
}

.cenaire-product-wrap .product__info-wrapper {
  padding: 4rem 0 6rem 5rem;
}

/* ── Gallery ─────────────────────────────────────────────────────────────── */

.cenaire-product-wrap .product__media-gallery,
.cenaire-product-wrap .product-media-gallery {
  gap: 0.3rem;
}

.cenaire-product-wrap .product__media-item {
  background: #F3F0ED;
  overflow: hidden;
}

.cenaire-product-wrap .product__media-item img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.cenaire-product-wrap .product__media-item:hover img {
  transform: scale(1.02);
}

/* ── Product info column ─────────────────────────────────────────────────── */

.cenaire-product-wrap .product__info-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Title ───────────────────────────────────────────────────────────────── */

.cenaire-product-wrap .product__title h1,
.cenaire-product-wrap .product__title h2 {
  font-family: var(--font-heading-family);
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #000000;
  margin: 0;                /* title bottom margin handled by its block wrapper */
}

/* hide the duplicate anchor Dawn renders */
.cenaire-product-wrap .product__title a {
  display: none;
}

/* title block → swatches: max 16px */
.cenaire-product-wrap .product__title {
  margin-bottom: 16px;
}

/* ── Price ───────────────────────────────────────────────────────────────── */

.cenaire-product-wrap .price {
  margin: 0 0 1.8rem;
}

.cenaire-product-wrap .price__regular .price-item,
.cenaire-product-wrap .price .price-item--regular {
  font-family: var(--font-body-family);
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #272727;
}

.cenaire-product-wrap .product__tax {
  font-size: 0.82rem;
  color: #888;
  margin-top: -1rem;
  margin-bottom: 1.4rem;
  letter-spacing: 0.06em;
}

/* ── Colour swatches ─────────────────────────────────────────────────────── */

/* swatches → price: max 12px */
.cenaire-product-wrap .cenaire-swatches {
  margin-top: 0;
  margin-bottom: 12px;
}

/* ── Buy button ──────────────────────────────────────────────────────────── */

.cenaire-product-wrap .product-form__submit,
.cenaire-product-wrap .btn-atc {
  width: 100%;
  background: #000000;
  color: #FFFCF8;
  border: none;
  font-family: var(--font-body-family);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.3rem 2rem;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-bottom: 0;
}

.cenaire-product-wrap .product-form__submit:hover {
  background: #272727;
}

.cenaire-product-wrap .product-form__submit[disabled] {
  background: #888;
  cursor: not-allowed;
}

/* Hide dynamic checkout buttons (Keep It Clean™) */
.cenaire-product-wrap .shopify-payment-button {
  display: none !important;
}

/* ── Quantity selector — hide it entirely (one-size product) ─────────────── */
.cenaire-product-wrap #Quantity-Form-{{ section.id }} {
  display: none;
}

/* ── Accordions ──────────────────────────────────────────────────────────── */

.cenaire-product-wrap .product__accordion {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cenaire-product-wrap .product__accordion:last-of-type {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cenaire-product-wrap .product__accordion details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.cenaire-product-wrap .product__accordion details summary::-webkit-details-marker {
  display: none;
}

.cenaire-product-wrap .accordion__title {
  font-family: var(--font-body-family);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
}

/* Hide Dawn's default accordion icon */
.cenaire-product-wrap .product__accordion .summary__title svg {
  display: none;
}

/* Custom +/- indicator */
.cenaire-product-wrap .product__accordion details summary::after {
  content: '+';
  font-family: var(--font-body-family);
  font-size: 1.1rem;
  font-weight: 200;
  color: #000000;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s ease;
}

.cenaire-product-wrap .product__accordion details[open] summary::after {
  content: '−';
}

.cenaire-product-wrap .accordion__content {
  font-family: var(--font-body-family);
  font-size: 1.15rem !important;
  font-weight: 300;
  line-height: 1.8;
  color: #272727;
  padding: 0 0 1.6rem;
}

.cenaire-product-wrap .accordion__content p,
.cenaire-product-wrap .accordion__content li {
  margin: 0 0 0.5rem;
  font-weight: 300;
  font-size: 1.15rem !important;
}

.cenaire-product-wrap .accordion__content ul {
  padding-left: 1rem;
}

/* ── Icon-with-text (features bullets) ──────────────────────────────────── */

.cenaire-product-wrap .icon-with-text .icon-with-text__item span {
  font-size: 1.5rem !important;
}

/* ── Dividers / spacing helpers ──────────────────────────────────────────── */

.cenaire-product-wrap .product__view-details {
  display: none;
}

.cenaire-product-wrap .product-form {
  margin-bottom: 1.6rem;
}

/* ── Mobile ──────────────────────────────────────────────────────────────── */

@media screen and (max-width: 989px) {
  .cenaire-product-wrap .page-width {
    padding: 0 1.6rem;
  }

  .cenaire-product-wrap .product.grid {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .cenaire-product-wrap .product__media-wrapper {
    position: static;
  }

  .cenaire-product-wrap .product__info-wrapper {
    padding: 2.8rem 0 4rem;
  }
}


/* ─────────────────────────────────────────────────────────────────────────────
   CENAIRE — Seen On Section
───────────────────────────────────────────────────────────────────────────── */

.cenaire-seen-on {
  background: #ffffff;
  padding: 6rem 0;
  overflow: hidden;
}

.cenaire-seen-on__header {
  padding: 0 4rem 2.8rem;
}

.cenaire-seen-on__label {
  font-family: var(--font-body-family);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #272727;
  margin: 0;
}

.cenaire-seen-on__track {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0 4rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.cenaire-seen-on__track::-webkit-scrollbar {
  display: none;
}

.cenaire-seen-on__item {
  flex: 0 0 calc(33.333% - 0.3rem);
  scroll-snap-align: start;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #E8E4E0;
  position: relative;
}

.cenaire-seen-on__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.cenaire-seen-on__item:hover img {
  transform: scale(1.03);
}

.cenaire-seen-on__item .placeholder-svg {
  width: 100%;
  height: 100%;
  opacity: 0.18;
}

@media screen and (max-width: 989px) {
  .cenaire-seen-on__header {
    padding: 0 1.6rem 2rem;
  }

  .cenaire-seen-on__track {
    padding: 0 1.6rem;
  }

  .cenaire-seen-on__item {
    flex: 0 0 72vw;
  }
}


/* ─────────────────────────────────────────────────────────────────────────────
   CENAIRE — Reviews Section
───────────────────────────────────────────────────────────────────────────── */

.cenaire-reviews {
  background: #FFFCF8;
  padding: 7rem 4rem;
  max-width: 1440px;
  margin: 0 auto;
}

.cenaire-reviews__header {
  margin-bottom: 4rem;
}

.cenaire-reviews__label {
  font-family: var(--font-body-family);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #272727;
  margin: 0 0 1rem;
}

.cenaire-reviews__headline {
  font-family: var(--font-heading-family);
  font-size: clamp(1.6rem, 2.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #000000;
  margin: 0;
}

.cenaire-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.cenaire-review {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.cenaire-review__stars {
  display: flex;
  gap: 0.2rem;
  align-items: center;
}

.cenaire-review__star {
  width: 0.9rem;
  height: 0.9rem;
  color: #000000;
}

.cenaire-review__star svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.cenaire-review__text {
  font-family: var(--font-body-family);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: #272727;
  margin: 0;
  font-style: italic;
}

.cenaire-review__text::before {
  content: '\201C';
}

.cenaire-review__text::after {
  content: '\201D';
}

.cenaire-review__author {
  font-family: var(--font-body-family);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
}

.cenaire-review__location {
  font-family: var(--font-body-family);
  font-size: 0.7rem;
  font-weight: 300;
  color: #888;
  margin: 0;
}

@media screen and (max-width: 989px) {
  .cenaire-reviews {
    padding: 4rem 1.6rem;
  }

  .cenaire-reviews__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media screen and (min-width: 990px) and (max-width: 1199px) {
  .cenaire-reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
