/** Shopify CDN: Minification failed

Line 629:0 Unexpected "}"

**/
/* Made-to-measure curtain configurator. 2px corners, sage accent, plenty of
   white space. Inherits Symmetry's tokens so it doesn't look bolted on. */

.cc-root {
  /* Not pulled from the theme: Symmetry's greys are cool, this reads warm. */
  --cc-accent: #828b76;
  --cc-accent-dark: #6d7563;
  --cc-accent-soft: rgba(130, 139, 118, 0.11);
  --cc-accent-ring: rgba(130, 139, 118, 0.3);
  --cc-fg: #17100b;
  --cc-heading: #17100b;
  --cc-bg: #fff;
  --cc-muted: #5c534d;
  --cc-border: #dcd6cf;
  --cc-border-strong: #b9b0a6;
  --cc-subtle: #f2eee7;
  --cc-secondary: #f0eae3;
  --cc-notice: #757b66;
  --cc-radius: 2px;

  --cc-font-display: 'Crimson Text', Georgia, serif;
  --cc-font-body: 'Nunito Sans', system-ui, sans-serif;

  display: block;
  max-width: var(--page-width, 1480px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  color: var(--cc-fg);
  font-family: var(--cc-font-body);
}

/* Crimson Text does the display work. */
.cc-title,
.cc-summary__total strong,
.cc-step__title,
.cc-accordion summary {
  font-family: var(--cc-font-display);
  letter-spacing: -0.02em;
}

/* ------------------------------------------------------------ breadcrumbs */
.cc-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em;
  padding: 1rem 0;
  font-size: 0.75rem;
  color: var(--cc-muted);
}

.cc-crumbs a {
  color: inherit;
  text-decoration: none;
}

.cc-crumbs a:hover {
  color: var(--cc-fg);
  text-decoration: underline;
}

.cc-crumbs__current {
  color: var(--cc-heading);
}

/* ----------------------------------------------------------------- layout */
.cc-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
 padding-top: 15px;
padding-bottom: clamp(1.5rem, 4vw, 3.5rem);
}

@media (min-width: 900px) {
  .cc-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: start;
  }

  .cc-media {
    position: sticky;
    top: 1.5rem;
  }
}

/* ---------------------------------------------------------------- gallery */
.cc-media__stage {
  overflow: hidden;
  border: 1px solid var(--cc-border);
  background: var(--cc-subtle);
}

.cc-media__stage img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* Note: the main product image now uses the theme's native media-gallery /
   modal-dialog / gallery-viewer zoom system (see the liquid), styled by
   the theme's own global stylesheet — no custom CSS needed for it here.
   .cc-media__stage above only still applies to the no-image placeholder
   fallback case. */

.cc-media__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.cc-media__thumb {
  width: 64px;
  height: 64px;
  padding: 0;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  background: none;
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.cc-media__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-media__thumb:hover {
  border-color: rgba(130, 139, 118, 0.4);
}

.cc-media__thumb.is-active {
  border-color: var(--cc-accent);
  box-shadow: 0 0 0 2px var(--cc-accent-ring);
}

/* -------------------------------------------------------------- accordion */
.cc-accordion {
  margin-top: 2rem;
  border-top: 1px solid var(--cc-border);
}
@media (max-width: 768px) {
  .cc-accordion {
    margin-top: 2rem;
    border-top: 1px solid transparent;
  }
}
.cc-accordion details {
  border-bottom: 1px solid var(--cc-border);
}

.cc-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  color: var(--cc-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.cc-accordion summary::-webkit-details-marker {
  display: none;
}

.cc-accordion summary::after {
  content: "";
  width: 0.6em;
  height: 0.6em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-0.15em, -0.15em);
  transition: transform 0.2s ease;
}

.cc-accordion details[open] summary::after {
  transform: rotate(-135deg) translate(-0.15em, -0.15em);
}

.cc-accordion__body {
  padding-bottom: 1.25rem;
  color: var(--cc-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.cc-accordion__body > :first-child { margin-top: 0; }
.cc-accordion__body > :last-child { margin-bottom: 0; }

/* ------------------------------------------------------------ config head */
.cc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin: 0 0 0.75rem;
  padding: 0.35em 0.85em;
  border: 1px solid var(--cc-border);
  background: var(--cc-subtle);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cc-muted);
}

.cc-eyebrow__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cc-accent);
}

.cc-title {
  margin: 0;
  color: var(--cc-heading);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.1;
}

.cc-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.cc-price {
  font-size: 1.1875rem;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  color: #c20000;
}

@media (min-width: 768px) {
  .cc-price {
    font-size: 1.375rem;
  }
}

.cc-price-note {
  font-size: 0.85rem;
  color: var(--cc-muted);
}

.cc-price-compare {
  font-size: 1.1875rem;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  color: rgb(92, 92, 92);
  text-decoration: line-through;
}

@media (min-width: 768px) {
  .cc-price-compare {
    font-size: 1.375rem;
  }
}

/* Wraps the theme's existing payment-options snippet (Tabby/Tamara
   installments) — matching real source's mt-2 gap below the price. The
   snippet owns its own internal layout/styling; this just positions it. */
.cc-installments {
  margin-top: 0.5rem;
}

.cc-badges {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.4rem 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.65625rem;
  letter-spacing: 0.02em;
  color: var(--cc-muted);
  overflow-x: auto;
}

@media (min-width: 640px) {
  .cc-badges {
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
    font-size: 0.78125rem;
    overflow-x: visible;
  }
}

.cc-badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  white-space: nowrap;
}

.cc-badges .cc-icon {
  width: 1.05em;
  height: 1.05em;
  flex: none;
  color: var(--cc-accent);
}

/* ------------------------------------------------------------------ steps */
.cc-form {
  margin-top: 2rem;
}

.cc-step {
  margin: 0 0 1.75rem;
  padding: 0;
  border: 0;
}

.cc-step__head {
  display: block;
  padding: 0;
  margin-bottom: 0.85rem;
}

.cc-step__num {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-notice);
}

.cc-step__num .cc-icon {
  width: 1.5em;
  height: 1.5em;
  flex: none;
  color: var(--cc-accent);
}

.cc-step__title {
  display: block;
  margin-top: 0.15rem;
  color: var(--cc-heading);
  font-size: 1rem;
  font-weight: 600;
}

.cc-step__hint {
  margin: -0.4rem 0 1rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--cc-muted);
}

/* --------------------------------------------------------- colour swatches */
.cc-tone + .cc-tone {
  margin-top: 1.25rem;
}

.cc-tone__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cc-muted);
}

.cc-swatches {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
  gap: 0.75rem;
}

.cc-swatch {
  display: block;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.cc-swatch__chip {
  display: block;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cc-swatch__chip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-swatch__blank {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cc-subtle);
}

.cc-swatch:hover .cc-swatch__chip {
  border-color: rgba(130, 139, 118, 0.4);
}

.cc-swatch.is-active .cc-swatch__chip {
  border-color: var(--cc-accent);
  box-shadow: 0 0 0 2px var(--cc-accent-ring);
}

.cc-swatch__name {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.68rem;
  line-height: 1.3;
  color: var(--cc-muted);
  overflow-wrap: anywhere;
}

.cc-swatch.is-active .cc-swatch__name {
  color: var(--cc-heading);
  font-weight: 600;
}

/* ------------------------------------------------------------ option cards */
.cc-cards {
  display: grid;
  gap: 0.5rem;
}

.cc-cards--2 { grid-template-columns: repeat(2, 1fr); gap: 0.25rem; }
.cc-cards--3 { grid-template-columns: repeat(auto-fit, minmax(112px, 1fr)); }
.cc-cards--4 { grid-template-columns: repeat(auto-fit, minmax(105px, 1fr)); }

.cc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 0.75rem;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  background: var(--cc-bg);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cc-card:hover {
  border-color: rgba(23, 16, 11, 0.4);
}

/* Standard-size cards specifically use accent-tinted hover (matching their
   own inline styling in the real source), not foreground/40 like the
   other option cards above. */
.cc-card--size:hover {
  border-color: rgba(130, 139, 118, 0.4);
}

.cc-card.is-active {
  border-color: var(--cc-accent);
  box-shadow: 0 0 0 2px var(--cc-accent-ring);
}

.cc-card.is-unavailable {
  opacity: 0.4;
}

.cc-card.is-unavailable .cc-card__price::after {
  content: " — sold out";
  font-weight: 400;
}

.cc-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.cc-card input:focus-visible + .cc-card__tick {
  outline: 2px solid var(--cc-accent);
  outline-offset: 2px;
}

.cc-card__tick {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: none;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--cc-accent);
  color: #fff;
}

.cc-card__tick svg {
  width: 0.65rem;
  height: 0.65rem;
}

.cc-card.is-active .cc-card__tick {
  display: grid;
}

.cc-card__figure {
  display: grid;
  place-items: center;
  width: 100%;
  margin-bottom: 0.5rem;
  overflow: hidden;
  color: var(--cc-muted);
}

.cc-card__figure img,
.cc-card__figure .cc-heading-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cc-card__figure .cc-heading-icon {
  width: auto;
  height: 72px;
  aspect-ratio: auto;
  object-fit: contain;
}

.cc-card__label {
  color: var(--cc-heading);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.25;
}

.cc-card__meta {
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--cc-fg);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.cc-card__price {
  margin-top: 0.4rem;
  color: var(--cc-accent);
  font-size: 0.9rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.cc-card__price:empty {
  display: none;
}

/* Standard-size cards: left-aligned, name+price inline on one line (not
   stacked), dims line below — matching today's real-source update exactly. */
.cc-card--size {
  align-items: flex-start;
  text-align: left;
  padding: 0.75rem 0.875rem;
}

.cc-card__nameline {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  white-space: nowrap;
}

.cc-card--size .cc-card__label {
  font-size: 0.78125rem;
  font-weight: 600;
  line-height: 1;
}

.cc-card--size .cc-card__meta {
  display: block;
  margin-top: 0.375rem;
  color: rgba(23, 16, 11, 0.6);
  font-weight: 400;
  font-size: 0.5625rem;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.cc-card--size .cc-card__price {
  margin-top: 0;
  color: var(--cc-heading);
  font-size: 0.71875rem;
  font-weight: 600;
  line-height: 1;
}


  /* On the narrowest phones, drop the reserved tick-badge corner space so
     the label/meta text has full width instead of wrapping around it. */
  .cc-card--size {
    padding: 0.6rem 0.7rem;
  }
  .cc-card--size .cc-card__label {
    font-size: 0.72rem;
  }
  .cc-card--size .cc-card__price {
    font-size: 0.66rem;
  }
}

/* ------------------------------------------------------- measurement paths */
/* Legacy tab styling — no longer used by the sizing step (see .cc-sizepath
   below); left here in case anything else on the page still references it. */
.cc-paths {
  border: 1px solid var(--cc-border);
}

.cc-paths__tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 560px) {
  .cc-paths__tabs {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cc-paths__tab {
  padding: 0.65rem 0.75rem;
  border: 0;
  border-right: 1px solid var(--cc-border);
  border-bottom: 1px solid var(--cc-border);
  background: var(--cc-bg);
  text-align: left;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.cc-paths__tab:hover {
  background: var(--cc-subtle);
}

.cc-paths__tab.is-active {
  background: var(--cc-accent-soft);
}

@media (min-width: 560px) {
  .cc-paths__tab {
    border-bottom: 0;
  }
  .cc-paths__tab:last-child {
    border-right: 0;
  }
}

.cc-paths__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--cc-heading);
}

.cc-paths__tab.is-active .cc-paths__label {
  color: var(--cc-accent);
}

.cc-paths__sub {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.68rem;
  line-height: 1.2;
  color: var(--cc-muted);
}

.cc-paths__body {
  border-top: 1px solid var(--cc-border);
  padding: 1rem;
}

/* ------------------------------------------------- sizing: radio list ---- */
/* Matches the approved design: a vertical list of options, each with a
   radio dot, label and (optionally) a price on the right. The chosen row's
   fields expand directly beneath it via .cc-sizepath__body. Same
   data-cc-path / data-cc-panel mechanism as the old tabs — no JS changes. */
.cc-sizepath {
  border: 1px solid var(--cc-border);
}

.cc-sizepath__row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  width: 100%;
  padding: 0.875rem 0.75rem 0.875rem  0.75rem;
  border: 0;
  border-left: 2px solid transparent;
  border-bottom: 1px solid var(--cc-border);
  background: var(--cc-bg);
  text-align: left;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.cc-sizepath__row:last-of-type {
  border-bottom: 0;
}

.cc-sizepath__row:hover {
  background: rgba(240, 234, 227, 0.4);
}

.cc-sizepath__row.is-active {
  border-left-color: var(--cc-accent);
  background: transparent;
 border-bottom: 1px solid transparent;
}

.cc-sizepath__radio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  flex: none;
  border: 2px solid rgba(23, 16, 11, 0.4);
  border-radius: 50%;
  background: var(--cc-bg);
}

.cc-sizepath__row.is-active .cc-sizepath__radio {
  border-color: var(--cc-accent);
  background: var(--cc-accent);
}

.cc-sizepath__row.is-active .cc-sizepath__radio::after {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #fff;
}

.cc-sizepath__label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--cc-heading);
}

@media (min-width: 640px) {
  .cc-sizepath__label {
    font-size: 0.875rem;
  }
}

.cc-sizepath__sub {
  margin-left: auto;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--cc-heading);
}

@media (min-width: 640px) {
  .cc-sizepath__sub {
    font-size: 1rem;
  }
}

/* "How to measure" — lives inline in the custom row's header now (moved
   there in today's update), not inside the expanded panel. Only visible
   once that row is the active one. */
.cc-sizepath__measurelink {
  display: none;
  margin-left: auto;
  flex: none;
}

.cc-sizepath__row.is-active .cc-sizepath__measurelink {
  display: inline-flex;
}

.cc-sizepath__measurelink .cc-measure-link {
  font-size: 0.625rem;
}

.cc-sizepath__measurelink .cc-measure-link .cc-icon {
  width: 0.75em;
  height: 0.75em;
}

.cc-sizepath__body {
  padding: 0.25rem 0.75rem 0.875rem 2.5rem;
  border-left: 2px solid transparent;
  border-bottom: 1px solid var(--cc-border);
}

@media (max-width: 380px) {
  .cc-sizepath__body {
    padding-left: 1.25rem;
  }
}

.cc-sizepath__body:not([hidden]) {
  border-left-color: var(--cc-accent);
  background: transparent;
}

.cc-sizepath__body:last-child {
  border-bottom: 0;
}

.cc-sizepath__body[hidden] {
  display: none;
}

/* Custom panel had no border-left treatment at all (it doesn't use
   .cc-sizepath__body since its content stays full-width, unindented) —
   that's why the accent line stopped after the row instead of running
   continuously down through the width/drop fields, matching the real
   design where the border-left is one unbroken line. */
.cc-panel[data-cc-panel="custom"].is-active {
  padding: 0.25rem 0.75rem 0.875rem;
  border-left: 2px solid var(--cc-accent);
  border-bottom: 1px solid var(--cc-border);
}

.cc-panel[hidden] {
  display: none;
}

.cc-panel__note {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--cc-muted);
  margin-top:-10px;
  margin-bottom: 0.5rem;
}

.cc-panel__fineprint {
  margin: 0;
  font-size: 0.6875rem;
  line-height: 1.5;
  color: var(--cc-muted);
}

/* ------------------------------------------------------------- dimensions */
.cc-dims__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.cc-dims__help {
  font-size: 0.75rem;
  color: var(--cc-muted);
}

/* Custom panel only: the unit toggle floats over the top-right corner of
   the width/drop grid instead of sitting in its own header row (today's
   update — "How to measure" moved out of here entirely, so this row was
   no longer needed). */
.cc-dims-grid {
  position: relative;
}

.cc-units--floating {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.cc-units {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding: 1px;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  background: var(--cc-bg);
}

.cc-units__btn {
  padding: 0.2rem 0.55rem;
  border: 0;
  border-radius: var(--cc-radius);
  background: none;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--cc-muted);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.cc-units__btn.is-active {
  background: var(--cc-secondary);
  color: var(--cc-heading);
  font-weight: 500;
}

/* Reinforced against the theme's base button styles beating the rules
   above on specificity (same pattern as the .cc-dim__number override). */
.cc-root .cc-units button.cc-units__btn {
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0.2rem 0.55rem;
  border: 0;
  border-radius: var(--cc-radius);
  background: none;
  box-shadow: none;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--cc-muted);
}

.cc-root .cc-units button.cc-units__btn.is-active {
  background: var(--cc-secondary);
  color: var(--cc-heading);
  font-weight: 500;
}

.cc-root .cc-units button.cc-units__btn:focus,
.cc-root .cc-units button.cc-units__btn:focus-visible {
  border: 0;
  box-shadow: none;
  outline: none;
}

.cc-dims {
  display: grid;
  gap: 0.5rem;
}


  .cc-dims {
    grid-template-columns: 1fr 1fr;
  }


.cc-dim__head {
  display: block;
  margin-bottom: 0.5rem;
  margin-top:0px !important;
}

.cc-dim__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cc-heading);
  
}

.cc-dim__range {
  display: none;
}

.cc-dim__field {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--cc-border);
  background: var(--cc-bg);
}

.cc-dim__field:focus-within {
  border-color: var(--cc-accent);
}

.cc-dim__number {
  width: 100%;
  min-width: 0;
  padding: 0.75rem 1rem;
  border: 0;
  background: none;
  font-size: 1.5rem;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  color: var(--cc-heading);
  outline: none;
  -moz-appearance: textfield;
}

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

.cc-dim__suffix {
  display: flex;
  align-items: center;
  padding-right: 0.625rem;
  font-size: 0.6875rem;
  color: var(--cc-muted);
}

.cc-dim__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 1rem;
  margin-top: 0.75rem;
  background: transparent;
  cursor: pointer;
}

.cc-dim__slider::-webkit-slider-runnable-track {
  height: 2px;
  background: var(--cc-border);
}

.cc-dim__slider::-moz-range-track {
  height: 2px;
  background: var(--cc-border);
  border: 0;
}

.cc-dim__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1rem;
  height: 1rem;
  margin-top: -0.5rem;
  border-radius: 50%;
  background: var(--cc-bg);
  border: 2px solid var(--cc-accent);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.cc-dim__slider::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--cc-bg);
  border: 2px solid var(--cc-accent);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* ---------------------------------------------------------------- booking */
.cc-booking {
  padding: 1rem;
  border: 1px solid rgba(220, 214, 207, 0.6);
  background: rgba(240, 234, 227, 0.3);
}

.cc-booking__dates {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 520px) {
  .cc-booking__dates {
    grid-template-columns: 1fr 1fr;
  }
}

.cc-booking__time {
  margin-top: 1rem;
}

.cc-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.cc-chip {
  padding: 0.375rem 0.25rem;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  background: var(--cc-bg);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: center;
  color: var(--cc-muted);
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.cc-chip:hover {
  border-color: rgba(23, 16, 11, 0.4);
}

.cc-chip.is-active {
  border-color: var(--cc-accent);
  background: var(--cc-accent-soft);
  color: var(--cc-heading);
  font-weight: 500;
}

@media (max-width: 360px) {
  /* "AFTERNOON" is the longest label; give it a hair more room on the
     smallest phones so it doesn't visually crowd the box edges. */
  .cc-chip {
    padding: 0.35rem 0.1rem;
    font-size: 0.58rem;
  }
}

/* ------------------------------------------------------------------ fields */
.cc-field {
  display: block;
}

.cc-field__label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cc-heading);
}

.cc-field input,
.cc-field textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  background: var(--cc-bg);
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--cc-fg);
}

.cc-field input:focus,
.cc-field textarea:focus {
  border-color: var(--cc-accent);
  outline: none;
}

/* ---------------------------------------------------------------- quantity */
.cc-qty {
  margin-bottom: 0;
}

.cc-qty > .cc-field__label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cc-muted);
}

.cc-qty[hidden] {
  display: none;
}

.cc-qty__control {
  display: inline-flex;
  align-items: center;
  margin-top: 0.4rem;
  border: 1px solid var(--cc-border);
}

.cc-qty__btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: none;
  font-size: 1.1rem;
  color: var(--cc-muted);
  cursor: pointer;
}

.cc-qty__btn:hover {
  color: var(--cc-heading);
}

.cc-qty__value {
  min-width: 2.25rem;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

/* ----------------------------------------------------------------- notices */
.cc-notice {
  display: grid;
  gap: 0.25rem;
  margin: 1.25rem 0;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--cc-accent);
  background: var(--cc-subtle);
  font-size: 0.85rem;
  line-height: 1.55;
}

.cc-notice--error {
  border-left-color: #b3261e;
  color: #b3261e;
}

.cc-notice:focus {
  outline: 2px solid var(--cc-accent);
  outline-offset: 2px;
}

/* ----------------------------------------------------------------- enquiry */
.cc-enquiry[hidden] {
  display: none;
}

.cc-enquiry__form {
  margin-top: 1.5rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid var(--cc-border);
  background: var(--cc-subtle);
}

.cc-enquiry__head .cc-step__num {
  color: var(--cc-accent);
}

.cc-enquiry__intro {
  margin: 0.35rem 0 1.25rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--cc-muted);
}

.cc-enquiry__fields {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 520px) {
  .cc-enquiry__fields {
    grid-template-columns: 1fr 1fr;
  }
  .cc-field--wide {
    grid-column: 1 / -1;
  }
}

/* ---------------------------------------------------------------- summary */
.cc-summary {
  margin-top: 1.25rem;
  padding: 1rem;
  border: 1px solid var(--cc-border);
  background: var(--cc-bg);
  box-shadow: 0 1px 2px rgba(23, 16, 11, 0.06);
}

.cc-summary__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--cc-heading);
}

.cc-summary__head .cc-icon {
  width: 1em;
  height: 1em;
  flex: none;
}

.cc-summary__rows {
  margin: 0;
}

.cc-summary__rows > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.25rem 0;
  font-size: 0.8125rem;
}

.cc-summary__rows dt {
  flex: none;
  font-weight: 700;
  color: var(--cc-heading);
}

.cc-summary__rows dd {
  margin: 0;
  text-align: right;
  font-weight: 500;
  color: var(--cc-heading);
}

.cc-summary__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
}

.cc-summary__chip img {
  width: 1.1em;
  height: 1.1em;
  border: 1px solid var(--cc-border);
  object-fit: cover;
}

/* Price breakdown row(s) — "Curtain, track & installation" / "Measuring
   visit" — sits between the label rows' divider and Quantity. Label muted,
   value dark, matching the real source's text-muted-foreground pattern. */
.cc-summary__breakdown > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.25rem 0;
  font-size: 0.8125rem;
  color: var(--cc-muted);
}

.cc-summary__breakdown dd {
  margin: 0;
  color: var(--cc-heading);
  font-variant-numeric: tabular-nums;
}

.cc-summary__rule {
  height: 1px;
  margin: 0.75rem 0;
  background: var(--cc-border);
}

/* Quantity and Total now share one row instead of stacking separately. */
.cc-summary__qtytotal {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

/* Booking path: bare "Total" word on the left, replacing the Quantity
   control (there's nothing to count). */
.cc-summary__total-word {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cc-heading);
}

.cc-summary__total {
  text-align: right;
}

/* Purchase paths only: small caption sitting above the price. Hidden
   entirely on the booking path, where "Total" appears on the left instead. */
.cc-summary__total-caption {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cc-muted);
}

.cc-summary__total strong {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  color: #c20000;
  font-family: "Nunito Sans", sans-serif;
}

.cc-summary__total-compare {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  color: rgb(92, 92, 92);
  text-decoration: line-through;
  margin-right: 0.4em;
  font-family: "Nunito Sans", sans-serif;
}

@media (min-width: 480px) {
  .cc-summary__total strong,
  .cc-summary__total-compare {
    font-size: 1.25rem;
  }
}

.cc-submit {
  width: 100%;
  margin-top: 1.5rem;
  border-radius: var(--cc-radius);
  background: var(--cc-accent);
  border-color: var(--cc-accent);
  color: #fff;
}

.cc-submit:hover:not([disabled]) {
  background: var(--cc-accent-dark);
  border-color: var(--cc-accent-dark);
  color: #fff;
}

.cc-submit[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.cc-error {
  margin-top: 1rem;
  color: #b3261e;
  font-size: 0.85rem;
}

.cc-error[hidden] {
  display: none;
}

.cc-reassurance {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--cc-muted);
  text-align: center;
}

.cc-reassurance p {
  margin: 0.25rem 0 0;
}

.cc-reassurance p:first-child {
  margin-top: 0;
}

.cc-reassurance__included {
  font-weight: 600;
  color: var(--cc-heading);
}

@media (prefers-reduced-motion: reduce) {
  .cc-card,
  .cc-swatch__chip,
  .cc-media__thumb,
  .cc-accordion summary::after {
    transition: none;
  }
}

/* Photo cards (heading styles) let the image run to the edges. */
.cc-card--photo {
  padding: 0.5rem 0.5rem 0.85rem;
  gap: 0;
}

/* Colourway picked out in the accent colour. */
.cc-title__colour {
  color: var(--cc-accent);
}

/* Overridden everywhere it's used. */
.cc-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
}

/* "How to measure" modal. Overlay and focus trap come from Symmetry's
   <modal-dialog>; this is just the panel content. */
.cc-measure-opener {
  display: inline-block;
}

.cc-measure-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0;
  border: 0;
  background: none;
  font-family: var(--cc-font-body, inherit);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cc-accent, #828b76);
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.cc-measure-link:hover { opacity: 0.8; }

.cc-measure-link .cc-icon {
  width: 0.95em;
  height: 0.95em;
  flex: none;
}

.cc-measure__window {
  --cc-accent: #828b76;
  --cc-fg: #17100b;
  --cc-muted: #5c534d;
  --cc-border: #dcd6cf;
  --cc-subtle: #f2eee7;

  width: min(46rem, 94vw);
  max-height: 88vh;
  color: var(--cc-fg);
}

.cc-measure__scroll {
  max-height: 88vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.cc-measure__head {
  padding: 1.6rem 1.5rem 1.35rem;
  border-bottom: 1px solid var(--cc-border);
}

.cc-measure__eyebrow {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cc-accent);
}

.cc-measure__eyebrow--quiet { color: var(--cc-muted); }

.cc-measure__title {
  margin: 0.5rem 0 0;
  font-family: var(--cc-font-display, Georgia, serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--cc-fg);
}

.cc-measure__intro,
.cc-measure__sub {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--cc-muted);
  max-width: 56ch;
}

.cc-measure__sub { font-size: 0.75rem; margin-top: 0.25rem; }

/* --------------------------------------------------- annotated photograph */
.cc-measure__figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--cc-border);
  background: var(--cc-subtle);
}

.cc-measure__figure img,
.cc-measure__scenario img {
  display: block;
  width: 100%;
  height: auto;
}

.cc-measure__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--cc-accent);
}

.cc-measure__badge circle { fill: var(--cc-accent); }
.cc-measure__badge text { fill: #fff; font-family: var(--cc-font-body, sans-serif); }

/* ------------------------------------------------------- the two numbers */
.cc-measure__points {
  display: grid;
  gap: 1.25rem;
  margin: 0;
  padding: 1.5rem;
  list-style: none;
}

@media (min-width: 40rem) {
  .cc-measure__points { grid-template-columns: 1fr 1fr; }
}

.cc-measure__points li {
  display: flex;
  gap: 0.75rem;
}

.cc-measure__key {
  display: grid;
  place-items: center;
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: var(--cc-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
}

.cc-measure__point-title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
}

.cc-measure__point-body {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  line-height: 1.65;
  color: var(--cc-muted);
}

/* ------------------------------------------------------ common set-ups */
.cc-measure__scenarios {
  padding: 1.35rem 1.5rem;
  border-top: 1px solid var(--cc-border);
}

.cc-measure__grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 40rem) {
  .cc-measure__grid { grid-template-columns: repeat(3, 1fr); }
}

.cc-measure__card { border: 1px solid var(--cc-border); }

.cc-measure__card-media {
  padding: 0.75rem;
  background: var(--cc-subtle);
}

.cc-measure__scenario {
  position: relative;
  overflow: hidden;
}

.cc-measure__droplabel {
  position: absolute;
  transform: translateY(-50%);
  padding: 0.1rem 0.25rem;
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.5625rem;
  line-height: 1;
  color: var(--cc-accent);
  white-space: nowrap;
}

.cc-measure__card-body {
  padding: 0.75rem;
  border-top: 1px solid var(--cc-border);
}

.cc-measure__card-title {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
}

.cc-measure__card-caption {
  margin: 0.15rem 0 0;
  font-size: 0.6875rem;
  line-height: 1.45;
  color: var(--cc-muted);
}

.cc-measure__bullets {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cc-measure__bullets li {
  position: relative;
  padding-left: 0.75rem;
  font-size: 0.6875rem;
  line-height: 1.6;
  color: var(--cc-muted);
}

.cc-measure__bullets li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--cc-accent);
}

/* --------------------------------------------------------- good to know */
.cc-measure__tips {
  padding: 1.5rem;
  border-top: 1px solid var(--cc-border);
  background: var(--cc-subtle);
}

.cc-measure__tiplist {
  display: grid;
  gap: 0.75rem 2.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 40rem) {
  .cc-measure__tiplist { grid-template-columns: 1fr 1fr; }
}

.cc-measure__tiplist li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.75rem;
  line-height: 1.65;
  color: var(--cc-muted);
}

.cc-measure__tiplist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cc-accent);
}

.cc-measure__closing {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--cc-border);
  font-size: 0.75rem;
  line-height: 1.65;
  color: var(--cc-muted);
}

/* Undo Symmetry's global input styling: it drew a second box inside our
   wrapper and left the "cm" off-centre. The wrapper owns the border. */
.cc-root .cc-dim__field input.cc-dim__number {
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0.35rem 0 0.35rem 1rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 1rem;
  font-weight: 400;
}

.cc-root .cc-dim__field input.cc-dim__number:focus,
.cc-root .cc-dim__field input.cc-dim__number:focus-visible {
  border: 0;
  box-shadow: none;
  outline: none;
}

/* Right-align the unit, flush with no left padding, matching the real
   MeasureField (pr-2.5 only, no reserved left column). */
.cc-root .cc-dim__suffix {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0.625rem 0 0;
  font-size: 0.6875rem;
}

/* One dimension block, shared by both measurement paths. */
.cc-dims-shared[hidden] { display: none; }
.cc-dims-shared .cc-panel__fineprint[hidden] { display: none; }

.cc-date-field {
  cursor: pointer;
}

.cc-date-field input[type="date"] {
  width: 100%;
  cursor: pointer;
}

.cc-accordion--mobile {
  display: none;
}

@media (max-width: 767px) {
  .cc-accordion--desktop {
    display: none;
  }

  .cc-accordion--mobile {
    display: block;
   
  }
}

.cc-date-mobile-note {
  display: none;
}

@media (max-width: 767px) {
  .cc-date-field {
    position: relative;
  }

  .cc-date-mobile-note {
    display: block;
    position: absolute;
    left: 14px;
    bottom: 12px;
    font-size: 11px;
    color: #b5b5b5;
    pointer-events: none;
  }

  .cc-date-field.has-date .cc-date-mobile-note {
    display: none;
  }
  .cc-summary__total-compare {font-size: 1rem;
  }
  .cc-summary__total strong {font-size: 1rem;
  
  }
  .cc-dim__head {
  display: block;
  margin-bottom: 0.5rem;
  margin-top:0px !important;
}
.cc-sizepath__body[data-cc-panel="standard"] > .cc-panel__note {
  margin-top: 0rem !important;
  margin-bottom: 0.5rem;
}
}
.cc-sizepath__units-inline {
  display: none;
  margin-left: auto;
  flex: none;
}

.cc-sizepath__row.is-active .cc-sizepath__units-inline {
  display: inline-flex;
}
@media (max-width: 767.98px) {
    .media-gallery {
       margin-top: 20px !important;
    }
}