.cmp26 {
  --cmp-font: HKRepro, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --cmp-bg: #ffffff;
  --cmp-color-body: #1a1a1a;
  --cmp-color-muted: #6b6b6b;
  --cmp-color-border: #e8e8e8;
  --cmp-color-badge-bg: #E1FED9;
  --cmp-color-badge-txt: #1D1D1F;
  --cmp-color-toggle-on: #E1FED9;
  --cmp-color-swatch-ring: rgba(0, 0, 0, 0.8);
  --cmp-radius-img: 14px;
  --cmp-radius-swatch: 50%;
  --cmp-swatch-size: 30px;
  --cmp-icon-size: 52px;
  --cmp-col-gap: 32px;
  --cmp-padding-x: 80px;
  --cmp-padding-y: 60px;
  --cmp-max-width: 960px;
  --cmp-diff-row-gap: 30px;
  font-family: var(--cmp-font);
  background: var(--cmp-bg);
  color: var(--cmp-color-body);
  padding: var(--cmp-padding-y) var(--cmp-padding-x);
  font-feature-settings: "liga" 0, "clig" 1, "calt" 1, "kern" 1;
  -webkit-font-feature-settings: "liga" 0, "clig" 1, "calt" 1, "kern" 1;
  font-variant-ligatures: normal;
}
.cmp26__inner {
  max-width: var(--cmp-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--cmp-col-gap);
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .cmp26__inner {
    grid-template-columns: 1fr;
  }
}
.cmp26__left {
  position: sticky;
  top: 80px;
}
.cmp26__title {
  margin: 0 0 20px;
}
.cmp26__title * {
  font-size: 38px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--cmp-color-body);
  margin: 0;
}
@media (max-width: 1024px) {
  .cmp26__title br {
    display: none;
  }
}
.cmp26__toggle-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
}
.cmp26__toggle-label, .cmp26__toggle-state {
  font-size: 14px;
  color: var(--cmp-color-body);
}
.cmp26__toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 44px;
  height: 26px;
  flex-shrink: 0;
  cursor: pointer;
}
.cmp26__toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.cmp26__toggle-track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--cmp-color-toggle-on);
  transition: background 0.2s ease;
}
.cmp26__toggle input:not(:checked) ~ .cmp26__toggle-track {
  background: #d0d0d0;
}
.cmp26__toggle-thumb {
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
  pointer-events: none;
}
.cmp26__toggle input:checked ~ .cmp26__toggle-thumb {
  transform: translateY(-50%) translateX(18px);
}
.cmp26__right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cmp26__products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--cmp-col-gap);
}
.cmp26__product {
  border-bottom: 1px solid var(--cmp-color-border);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 30px;
}
.cmp26__product-media {
  position: relative;
  border-radius: var(--cmp-radius-img);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #f5f5f3;
  margin-bottom: 16px;
}
.cmp26__product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.cmp26__product-img--active {
  opacity: 1;
}
.cmp26__product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.cmp26__product-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.2;
}
.cmp26__product-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.cmp26__product-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cmp-color-body);
  line-height: 1.3;
}
.cmp26__product-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cmp-color-badge-txt);
  background: var(--cmp-color-badge-bg);
  border-radius: 4px;
  padding: 2px 6px;
  white-space: nowrap;
}
.cmp26__product-copy {
  font-size: 0.75rem;
  opacity: 60%;
  line-height: 1.5;
  margin: 0 0 12px;
}
.cmp26__product-price {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cmp-color-body);
  margin-bottom: 12px;
}
.cmp26__product-colour-label {
  font-size: 0.75rem;
  color: var(--cmp-color-muted);
  margin-bottom: 20px;
}
.cmp26__product-colour-label span {
  color: var(--cmp-color-body);
  font-size: 0.875rem;
}
.cmp26__swatches {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cmp26__swatch {
  width: var(--cmp-swatch-size);
  height: var(--cmp-swatch-size);
  border-radius: var(--cmp-radius-swatch);
  cursor: pointer;
  border: none;
  outline: none;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 3.5px transparent;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
  background-clip: padding-box;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.cmp26__swatch:hover {
  transform: scale(1.08);
}
.cmp26__swatch--selected {
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 3.5px var(--cmp-color-swatch-ring);
}
.cmp26__divider {
  height: 1px;
  background: var(--cmp-color-border);
  margin-bottom: 40px;
}
.cmp26__diffs {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cmp26__diff-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--cmp-col-gap);
  padding: var(--cmp-diff-row-gap) 0;
}
.cmp26--hide-same .cmp26__diff-row[data-same=true] {
  display: none;
}
.cmp26__diff-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.cmp26__diff-cell--na {
  opacity: 0.35;
}
.cmp26__diff-icon {
  width: var(--cmp-icon-size);
  height: var(--cmp-icon-size);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cmp26__diff-icon img,
.cmp26__diff-icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.cmp26__diff-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cmp26__diff-name * {
  font-size: 12px;
  font-weight: 400;
  color: var(--cmp-color-body);
  line-height: 1.3;
}
.cmp26__diff-copy {
  max-width: 180px;
}
.cmp26__diff-copy * {
  font-size: 12px;
  color: var(--cmp-color-muted);
  line-height: 1.5;
}
.cmp26__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--cmp-col-gap);
  margin-top: 5px;
}
.cmp26__button-cell {
  display: flex;
  align-items: flex-start;
}
.cmp26__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 20px 30px;
}
@media (max-width: 599px) {
  .cmp26__product-copy p {
  font-size: 12px;

}
  .cmp26__btn {
    width: 100%;
  }
}
.cmp26__btn {
  background: var(--cmp-color-body);
  color: #ffffff;
  border: 1px solid var(--cmp-color-body);
}
.cmp26__btn:hover {
  opacity: 0.85;
  color: white;
}
.cmp26__btn--outline {
  background: transparent;
  color: var(--cmp-color-body);
  border-color: var(--cmp-color-body);
}
.cmp26__btn--outline:hover {
  background: #fafafa;
  color: var(--cmp-color-body);
  opacity: 1;
}
@media (max-width: 1024px) {
  .cmp26 {
    --cmp-padding-x: 40px;
    --cmp-padding-y: 40px;
    --cmp-col-gap: 20px;
  }
  .cmp26__title * {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .cmp26 {
    --cmp-padding-x: 20px;
    --cmp-padding-y: 32px;
    --cmp-col-gap: 14px;
  }
  .cmp26__inner {
    flex-direction: column;
  }
  .cmp26__left {
    flex: unset;
    max-width: 100%;
    width: 100%;
    position: static;
    text-align: center;
  }
  .cmp26__toggle-wrap {
    justify-content: center;
  }
  .cmp26__title * {
    font-size: 1.625rem;
    text-align: center;
  }
  
}
@media (max-width: 480px) {
  .cmp26__diff-row {
    gap: 10px;
  }
  .cmp26__diff-icon {
    --cmp-icon-size: 40px;
  }
}
