/** Shopify CDN: Minification failed

Line 1650:1 Expected "}" to go with "{"

**/
/* =============================================
   OMIANA PRODUCT HERO - MAIN STYLES
   Designed for 1280px, responsive down to 375px
   ============================================= */

/* --- Reset & Base --- */
.oph * { box-sizing: border-box; margin: 0; padding: 0; }
.oph { font-family: 'Libre Franklin', sans-serif; color: #4D4D4D; background-color: #F5F1E9; }

/* --- Layout --- */
.oph__wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 24px 50px;
  width: 100%;
}
.oph__grid {
  display: grid;
  grid-template-columns: 616fr 556fr;
  gap: 42px;
  align-items: start;
}
.oph__col-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0; /* prevent grid blowout */
}

/* =============================================
   LEFT COLUMN - MEDIA
   ============================================= */
.oph-media {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  min-width: 0; /* prevent flex blowout */
}

/* Main Image — 616×725 at 1280px, scales proportionally */
.oph-media__main {
  position: relative;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 616 / 725;
  display: flex;
  align-items: center;
  justify-content: center;
}
.oph-media__img {
  display: block;
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
}
/* Fallback for img without the class */
.oph-media__main img:not(.oph-media__badge *) {
  display: block;
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.oph-media__main svg {
  max-width: 100%;
}
.oph-media__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px;
  border-radius: 6px;
  background: #5A6764;
  color: #fff;
  font-size: 16px;
  line-height: 1;
}
.oph-media__badge svg { flex-shrink: 0; }

/* Thumbnails — carousel with arrows, 5 visible at full width */
.oph-media__thumbs-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.oph-media__thumbs-viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.oph-media__thumbs-track {
  display: flex;
  gap: 17px;
  transition: transform 0.35s ease;
  will-change: transform;
}
.oph-media__thumb {
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.oph-media__thumb:hover,
.oph-media__thumb.is-active {
  border-color: #5A6764;
}
.oph-media__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #D4D0C8;
  background: #fff;
  color: #5A6764;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s, background 0.2s;
  padding: 0;
}
.oph-media__arrow:hover { background: #F5F1E9; }
.oph-media__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
.oph-media__arrow svg { width: 8px; height: 14px; }

/* Review Card */
.oph-review {
  border-radius: 10px;
  background: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.oph-review__header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.oph-review__avatar {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: #D9D9D9;
  flex-shrink: 0;
  overflow: hidden;
}
.oph-review__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.oph-review__meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.oph-review__name-row {
  display: flex;
  align-items: center;
  gap: 7px;
}
.oph-review__name {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #000;
}
.oph-review__verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 4px;
  background: #D4E9CC;
  color: #2FAF5A;
  font-size: 8px;
  line-height: 1;
}
.oph-review__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.oph-review__text {
  font-size: 16px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.8);
}
.oph-review__details {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.5);
}

/* =============================================
   RIGHT COLUMN - INFO
   ============================================= */
.oph-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0; /* prevent grid blowout */
}

/* --- Header Block --- */
.oph-header { display: flex; flex-direction: column; gap: 15px; }
.oph-header__reviews {
  display: flex;
  align-items: center;
  gap: 4px;
}
.oph-header__stars {
  display: flex;
  align-items: center;
  gap: 3px;
}
.oph-header__review-count {
  font-size: 16px;
  color: #000;
}
.oph-header__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: #4D4D4D;
}
.oph-header__price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.oph-header__price {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: #4D4D4D;
}
.oph-header__price-compare {
  font-size: 24px;
  font-weight: 600;
  color: rgba(0,0,0,0.4);
  text-decoration: line-through;
}
.oph-header__price-detail {
  display: inline-flex;
  align-items: center;
  padding: 5px;
  border-radius: 3px;
  background: #5A6764;
  color: #fff;
  font-size: 14px;
  line-height: 1;
}
.oph-header__afterpay {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
}

/* --- Ingredients Card --- */
.oph-ingredients {
  border-radius: 10px;
  background: #fff;
  border: 1px solid #EAE6DE;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.oph-ingredients__icon { flex-shrink: 0; width: 36px; height: 36px; }
.oph-ingredients__icon svg { width: 100%; height: 100%; }
.oph-ingredients__content { flex: 1; display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.oph-ingredients__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: #4D4D4D;
}
.oph-ingredients__subtitle {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.4;
}
.oph-ingredients__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.oph-ingredients__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 100px;
  background: #F5F1E9;
  font-size: 12px;
  color: #000;
}

/* --- Description --- */
.oph-description {
  font-size: 16px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.7);
}

/* --- Color Picker --- */
.oph-colors { display: flex; flex-direction: column; gap: 15px; }
.oph-colors__label {
  font-size: 20px;
  line-height: 1.3;
  color: #4D4D4D;
}
.oph-colors__label strong { font-weight: 600; }
.oph-colors__groups {
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 6px;
  background: #EAE6DE;
  border: 1px solid #D4D0C8;
  padding: 10px;
}
.oph-colors__group-btn {
  flex: 1;
  padding: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.44);
  border: none;
  cursor: pointer;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
  text-align: center;
  transition: background 0.2s;
}
.oph-colors__group-btn.is-active,
.oph-colors__group-btn:hover {
  background: #fff;
}
.oph-colors__swatches {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  flex-wrap: wrap;
}
.oph-colors__swatch {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  flex-shrink: 0;
}
.oph-colors__swatch:hover { transform: scale(1.1); }
.oph-colors__swatch.is-active { border-color: #5A6764; }
.oph-colors__swatch-hot {
  position: absolute;
  top: -8px;
  right: -4px;
  padding: 2px 4px;
  border-radius: 3px;
  background: #FB1818;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
  pointer-events: none;
  z-index: 2;
}
.oph-colors__stock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #5A6764;
}
.oph-colors__stock svg { flex-shrink: 0; }

/* --- Size Picker --- */
.oph-sizes {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.oph-sizes__label {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #4D4D4D;
  flex-shrink: 0;
}
.oph-sizes__options {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.oph-sizes__option-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.oph-sizes__option-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  z-index: 1;
  position: relative;
}
.oph-sizes__option-badge--popular { background: #5A6764; }
.oph-sizes__option-badge--value { background: #000; }

/* --- Disabled size wrap --- */
.oph-sizes__option-wrap.is-disabled {
  opacity: 0.38;
  cursor: not-allowed;
  pointer-events: none;
}
.oph-sizes__option-wrap.is-disabled .oph-sizes__option {
  cursor: not-allowed;
  border-color: transparent;
  background: #fff;
  position: relative;
  overflow: hidden;
}
/* Diagonal strikethrough line on disabled size button */
.oph-sizes__option-wrap.is-disabled .oph-sizes__option::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -10%;
  width: 120%;
  height: 2px;
  background: #bbb;
  transform: rotate(-20deg);
  transform-origin: center;
}

.oph-sizes__option {
  border-radius: 10px;
  background: #fff;
  padding: 8px;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 100px;
}
.oph-sizes__option-badge + .oph-sizes__option { margin-top: -7px; }
.oph-sizes__option.is-active {
  border-color: #5A6764;
  background: #FFF7E6;
}
.oph-sizes__option:hover { border-color: #5A6764; }
.oph-sizes__option-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #4D4D4D;
}
.oph-sizes__option-price {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.7);
}

/* --- Shipping Bar --- */
.oph-shipping {
  border-radius: 10px;
  background: #fff;
  border: 1px solid #EAE6DE;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.oph-shipping__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.oph-shipping__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: #4D4D4D;
}
.oph-shipping__amount {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.7);
  flex-shrink: 0;
}
.oph-shipping__bar {
  width: 100%;
  height: 8px;
  border-radius: 100px;
  background: #D9D9D9;
  overflow: hidden;
}
.oph-shipping__bar-fill {
  height: 100%;
  border-radius: 100px;
  background: #5A6764;
  transition: width 0.4s ease;
}
.oph-shipping__date {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
}
.oph-shipping__date svg { flex-shrink: 0; }

/* --- Add to Cart --- */
.oph-cart { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.oph-cart__btn {
  width: 100%;
  border-radius: 8px;
  background: #5A6764;
  color: #fff;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  padding: 24px 10px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s;
}
.oph-cart__btn:hover { background: #4a5654; }
.oph-cart__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.oph-cart__payments {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
.oph-cart__payments img {
  height: 30px;
  width: auto;
}

/* --- Shade Quiz --- */
.oph-shade-quiz {
  border-radius: 10px;
  background: #fff;
  border: 1px solid #EAE6DE;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.oph-shade-quiz__left {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
}
.oph-shade-quiz__icon { flex-shrink: 0; }
.oph-shade-quiz__text { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.oph-shade-quiz__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #4D4D4D;
}
.oph-shade-quiz__subtitle {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
}
.oph-shade-quiz__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #5A6764;
  color: #fff;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  padding: 15px 20px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
  text-decoration: none;
}
.oph-shade-quiz__btn:hover { background: #4a5654; }

/* --- Cross-sell --- */
.oph-crosssell { display: flex; flex-direction: column; gap: 10px; }
.oph-crosssell__heading {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #4D4D4D;
}
.oph-crosssell__item {
  border-radius: 10px;
  background: #fff;
  border: 1px solid #EAE6DE;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.oph-crosssell__item-left {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
}
.oph-crosssell__item-img {
  width: 44px;
  height: auto;
  flex-shrink: 0;
}
.oph-crosssell__item-text { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.oph-crosssell__item-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #4D4D4D;
}
.oph-crosssell__item-subtitle {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
}
.oph-crosssell__item-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.oph-crosssell__item-price {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #4D4D4D;
}
.oph-crosssell__toggle {
  width: 44px;
  height: 24px;
  border-radius: 100px;
  background: #D9D9D9;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
  flex-shrink: 0;
}
.oph-crosssell__toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.3s;
}
.oph-crosssell__toggle.is-active { background: #5A6764; }
.oph-crosssell__toggle.is-active::after { transform: translateX(20px); }

/* --- Save Offer --- */
.oph-save-offer {
  border-radius: 8px;
  border: 1px dashed #5A6764;
  padding: 15px 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #5A6764;
  cursor: pointer;
  transition: background 0.2s;
}
.oph-save-offer:hover { background: rgba(90, 103, 100, 0.05); }

/* --- Benefits --- */
.oph-benefits { display: flex; flex-direction: column; gap: 20px; }
.oph-benefits__list { display: flex; flex-direction: column; gap: 20px; }
.oph-benefits__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.4;
  color: #4D4D4D;
}
.oph-benefits__item svg { flex-shrink: 0; }
.oph-benefits__trust {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.oph-benefits__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px;
  border-radius: 100px;
  border: 1px solid #5A6764;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.7);
}
.oph-benefits__trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5A6764;
  flex-shrink: 0;
}

/* --- Accordions --- */
.oph-accordions { display: flex; flex-direction: column; }
.oph-accordion {
  border-bottom: 1px solid #ADADAD;
}
.oph-accordion:first-child { border-top: 1px solid #ADADAD; }
.oph-accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  font-family: 'Libre Franklin', sans-serif;
  text-align: left;
}
.oph-accordion__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #4D4D4D;
}
.oph-accordion__icon {
  flex-shrink: 0;
  transition: transform 0.3s;
}
.oph-accordion.is-open .oph-accordion__icon { transform: rotate(180deg); }
.oph-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.oph-accordion.is-open .oph-accordion__body { max-height: 2000px; }
.oph-accordion__content {
  padding: 0 0 20px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
}
.oph-accordion__content p + p { margin-top: 10px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .oph__grid { gap: 30px; }
  .oph-sizes { flex-direction: column; align-items: flex-start; }
  .oph-sizes__options { width: 100%; }
  .oph-sizes__option { min-width: 0; flex: 1; }
  .oph-sizes__option-wrap { flex: 1; }
}

@media (max-width: 860px) {
  .oph__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .oph__wrapper { padding: 20px 16px 40px; }
  .oph-media__main { aspect-ratio: 616 / 725; }
  .oph-media__thumbs-track { gap: 12px; }
  .oph-header__title { font-size: 22px; }
  .oph-shade-quiz { flex-direction: column; align-items: flex-start; }
  .oph-shade-quiz__btn { width: 100%; text-align: center; }
  .oph-crosssell__item { flex-direction: column; align-items: flex-start; }
  .oph-crosssell__item-right { width: 100%; justify-content: space-between; }
  .oph-benefits__trust { gap: 10px; }
  .oph-benefits__trust-item { font-size: 14px; padding: 8px; }
  .oph-colors__groups { gap: 10px; padding: 6px; }
  .oph-colors__group-btn { padding: 8px 6px; font-size: 14px; }
}

@media (max-width: 480px) {
  .oph__wrapper { padding: 16px 12px 30px; }
  .oph-media__badge { font-size: 13px; padding: 8px; top: 12px; left: 12px; }
  .oph-review { padding: 20px; }
  .oph-review__name { font-size: 16px; }
  .oph-review__text { font-size: 14px; }
  .oph-header__title { font-size: 20px; }
  .oph-header__price { font-size: 22px; }
  .oph-ingredients { flex-direction: column; }
  .oph-ingredients__icon { width: 32px; height: 32px; }
  .oph-ingredients__title { font-size: 18px; }
  .oph-colors__swatches { gap: 6px; }
  .oph-colors__swatch { width: 32px; height: 32px; }
  .oph-sizes__options { gap: 8px; }
  .oph-sizes__option { padding: 4px; min-width: 0; }
  .oph-sizes__option-name { font-size: 14px; }
  .oph-cart__btn { font-size: 18px; padding: 20px 10px; }
  .oph-accordion__title { font-size: 18px; }
  .oph-benefits__trust { flex-direction: column; }
  .oph-benefits__trust-item { width: 100%; justify-content: center; }
  .oph-media__thumbs-track { gap: 10px; }
  .oph-media__arrow { width: 24px; height: 24px; }
  .oph-media__thumbs-wrap { gap: 6px; }
}

/* --- Disabled swatch state --- */
.oph-colors__swatch.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.oph-colors__swatch.is-disabled::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #999;
  transform: rotate(-45deg);
}
/* =============================================
   CSS FIXES — append to omiana-product-hero.css
   Matches Figma export at 1280px exactly
   ============================================= */

/* ======================
   COLOR GROUP TABS FIX
   Figma: buttons are Hug 98×32, gap 25px
   Height: 16px × 140% = 22.4px + 5px×2 padding = ~32px
   ====================== */
.oph-colors__groups {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  border-radius: 6px;
  background: #EAE6DE;
  border: 1px solid #D4D0C8;
  padding: 10px;
  max-width: 100%;
  overflow: hidden;
  align-self: flex-start;
}
.oph-colors__group-btn {
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.44);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border: none;
  cursor: pointer;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 16px;
  line-height: 140%;
  color: #000;
  text-align: center;
  transition: background 0.2s;
  white-space: nowrap;
  flex: 0 1 auto;
  min-width: 0;
}
.oph-colors__group-btn.is-active,
.oph-colors__group-btn:hover {
  background: #fff;
}

/* ======================
   INGREDIENTS CARD FIX
   Figma: 20px padding, 15px gap, 20px title
   ====================== */
.oph-ingredients {
  border-radius: 10px;
  background: #fff;
  border: 1px solid #EAE6DE;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 20px;
  color: #4D4D4D;
}
.oph-ingredients__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
}
.oph-ingredients__icon svg {
  width: 100%;
  height: 100%;
}
.oph-ingredients__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  min-width: 0;
}
.oph-ingredients__title {
  align-self: stretch;
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  color: #4D4D4D;
}
.oph-ingredients__subtitle {
  align-self: stretch;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.4;
}
.oph-ingredients__tags {
  align-self: stretch;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #000;
}
.oph-ingredients__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  border-radius: 100px;
  background: #F5F1E9;
  font-size: 12px;
  color: #000;
  position: relative;
  cursor: help;
}

/* ======================
   COLOR SWATCH — 2px border on selected
   ====================== */
.oph-colors__swatch {
  width: 40px;
  height: 38.22px;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  flex-shrink: 0;
  padding: 0;
  outline: none;
}
.oph-colors__swatch:hover {
  transform: scale(1.1);
}
.oph-colors__swatch.is-active {
  border: 2px solid #5A6764;
}

/* ======================
   SWATCH WRAP for filtering
   ====================== */
.oph-colors__swatch-wrap {
  position: relative;
  display: inline-block;
}

/* ======================
   DISABLED SWATCH
   ====================== */
.oph-colors__swatch.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* ======================
   INGREDIENT TOOLTIPS
   ====================== */
.oph-ingredients__tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  width: 200px;
  text-align: center;
  margin-bottom: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 100;
  font-weight: normal;
  pointer-events: none;
  line-height: 1.4;
}
.oph-ingredients__tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #333;
}
.oph-ingredients__tag:hover .oph-ingredients__tooltip {
  opacity: 1;
  visibility: visible;
}

/* ======================
   RESPONSIVE OVERRIDES
   ====================== */
@media (max-width: 860px) {
  .oph-colors__groups {
    gap: 12px;
    padding: 8px;
  }
  .oph-colors__group-btn {
    padding: 5px 8px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .oph-colors__groups {
    gap: 6px;
    padding: 6px;
  }
  .oph-colors__group-btn {
    padding: 4px 6px;
    font-size: 13px;
  }
  .oph-ingredients {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
  }
  .oph-ingredients__icon {
    width: 32px;
    height: 32px;
  }
  .oph-ingredients__title {
    font-size: 18px;
  }
  .oph-ingredients__tags {
    gap: 8px;
  }
  .oph-ingredients__tag {
    padding: 8px 6px;
  }
  .oph-ingredients__tooltip {
    width: 160px;
    font-size: 11px;
    padding: 6px 10px;
  }
  .oph-colors__swatch {
    width: 32px;
    height: 30.22px;
  }
}

/* ======================
   ADD TO CART BUTTON FIX
   Figma: 572×63, full width of column
   ====================== */

/* Shipping bar — JS renders all amounts in USD */
.oph-shipping__title {
  font-size: 16px;
  line-height: 140%;
  font-weight: 500;
  font-family: 'Libre Franklin', sans-serif;
  color: #4d4d4d;
}
.oph-shipping__amount {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.oph-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.oph-cart form {
  width: 100%;
}
.oph-cart__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 63px;
  border-radius: 8px;
  background: #5A6764;
  color: #fff;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  padding: 0 24px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s;
  box-sizing: border-box;
}
.oph-cart__btn:hover { background: #4a5654; }
.oph-cart__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.oph-cart__payments {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
.oph-cart__payments img {
  height: 30px;
  width: auto;
}

/* ======================
   CROSS-SELL SELECTED STATE
   ====================== */
.oph-crosssell__item {
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  overflow: hidden;
}

/* 20px gap between cross-sell product cards */
.oph-crosssell__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.oph-crosssell__item.is-selected {
  background-color: #F0F7F0;
  border-color: #5A8F5A;
  border-width: 2px;
}

/* Item right side — price + toggle aligned, no overflow */
.oph-crosssell__item-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Toggle switch — contained, no overflow */
.oph-crosssell__toggle-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 24px;
}
.oph-crosssell__toggle {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background-color: #D1D5DB;
  border: none;
  position: relative;
  transition: background-color 0.2s ease;
  cursor: pointer;
  display: block;
  padding: 0;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
.oph-crosssell__toggle-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: left 0.2s ease;
  display: block;
  pointer-events: none;
}
.oph-crosssell__toggle.is-active {
  background-color: #22C55E;
}
.oph-crosssell__toggle.is-active .oph-crosssell__toggle-knob {
  left: 22px;
}

/* Shipping text above cross-sell items — per Figma */
.oph-crosssell__shipping-text {
  font-size: 16px;
  line-height: 140%;
  font-weight: 500;
  font-family: 'Libre Franklin', sans-serif;
  color: #4d4d4d;
  text-align: left;
  margin-bottom: 8px;
}

/* Bundle badge */
.oph-crosssell__bundle-badge {
  font-size: 12px;
  font-weight: 600;
  background-color: #EDF5ED;
  color: #5A8F5A;
  padding: 4px 10px;
  border-radius: 10px;
  margin-top: 4px;
}

/* Save offer CTA — per Figma */
.oph-save-offer {
  width: 100%;
  position: relative;
  border-radius: 8px;
  border: 1px dashed #5a6764;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  text-align: left;
  font-size: 16px;
  color: #5a6764;
  font-family: 'Libre Franklin', sans-serif;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.oph-save-offer:hover {
  background: rgba(90, 103, 100, 0.05);
}
.oph-save-offer__text {
  position: relative;
  line-height: 130%;
  font-weight: 600;
}

/* ======================
   FAQ MODAL OVERLAY
   ====================== */
.oph-faq-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.oph-faq-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
.oph-faq-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s ease;
  font-family: 'Libre Franklin', sans-serif;
}
.oph-faq-overlay.is-active .oph-faq-modal {
  transform: scale(1);
}
.oph-faq-modal__header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #EAE6DE;
}
.oph-faq-modal__title {
  font-weight: 600;
  font-size: 18px;
  color: #4D4D4D;
  margin: 0;
  line-height: 1.3;
}
.oph-faq-modal__subtitle {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  margin: 4px 0 0 0;
}
.oph-faq-modal__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.5);
  transition: background 0.2s;
  flex-shrink: 0;
}
.oph-faq-modal__close:hover {
  background: #f5f5f5;
}
.oph-faq-modal__body {
  padding: 20px;
  max-height: 400px;
  overflow-y: auto;
}
.oph-faq-modal__page-content {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
}
.oph-faq-modal__page-content p + p { margin-top: 12px; }
.oph-faq-item {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #EAE6DE;
}
.oph-faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.oph-faq-item__question {
  font-weight: 600;
  font-size: 14px;
  color: #4D4D4D;
  margin: 0 0 8px 0;
  line-height: 1.3;
}
.oph-faq-item__answer {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
  line-height: 1.5;
}
.oph-faq-modal__footer {
  padding: 20px;
  border-top: 1px solid #EAE6DE;
  text-align: center;
  background: #FAFAF8;
}
.oph-faq-modal__footer-title {
  font-weight: 600;
  font-size: 14px;
  color: #4D4D4D;
  margin: 0 0 4px 0;
}
.oph-faq-modal__footer-email {
  font-size: 14px;
  color: #5A6764;
  margin: 0 0 4px 0;
}
.oph-faq-modal__footer-email a {
  color: #5A6764;
  text-decoration: underline;
}
.oph-faq-modal__footer-note {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  margin: 0;
}

/* ======================
   BENEFIT ICONS — prevent cropping
   ====================== */
.oph-benefits__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 140%;
  color: #333;
}

.oph-benefits__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.oph-benefits__icon svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  flex-shrink: 0;
}

.oph-benefits__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ======================
   TRUST BADGES — Figma specs
   ====================== */
.oph-benefits__trust {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  font-family: 'Libre Franklin', sans-serif;
  
}

@media (max-width: 480px) {
  .oph-benefits__trust {
    flex-wrap: wrap;
  }
}

.oph-benefits__trust-item {
  border-radius: 100px;
  border: 1px solid #5a6764;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 5px;
  height: 32px;
  white-space: nowrap;
  font-size: 14px;
  line-height: 140%;
  color: rgba(0, 0, 0, 0.7);
}

.oph-benefits__trust-item span {
  line-height: 140%;
  font-size: 15px;
}

.oph-benefits__trust-dot {
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: #5a6764;
  flex-shrink: 0;
}

/* ======================
   ACCORDION ICON — new filled chevron
   ====================== */
.oph-accordion__icon {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.oph-accordion.is-open .oph-accordion__icon {
  transform: rotate(180deg);
}

@media (max-width: 480px) {
  .oph-cart__btn {
    height: 56px;
    font-size: 18px;
  }
  .oph-faq-modal {
    max-width: 100%;
    border-radius: 12px;
  }
  .oph-faq-modal__body {
    max-height: 300px;
  }
  .oph-crosssell__item-title {
    font-size: 13px;
  }
  .oph-crosssell__item-price {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .omiana-pdp__trust-icons {
    gap: 6px;
  }

  .omiana-pdp__trust-item {
    font-size: 12px;
    gap: 8px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .omiana-pdp__trust-item svg {
    width: 18px;
    height: 18px;
  }

  .omiana-pdp__security {
    gap: 4px 6px;
    justify-content: center;
  }

  .omiana-pdp__security-item {
    font-size: 11px;
    gap: 4px;
  }

  .omiana-pdp__security-item svg {
    width: 14px;
    height: 14px;
  }

  .omiana-pdp__security-divider {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
    .oph-benefits__trust {
        flex-wrap: wrap!important;
    }
    .oph-benefits__list {
    gap: 10px!important;
}
.oph-crosssell__item-text {
  gap: 0px !important;
}

/* ── Shade quiz text gap ── */
.oph-shade-quiz__text {
  gap: 0px !important;
}

/* ── Cross-sell items list gap ── */
.oph-crosssell__items {
  gap: 10px !important;
}

@media (max-width: 768px) {
.oph-review{
  display:none!important;
} }

@media (max-width: 480px) {
    .oph-ingredients {
        flex-direction: row!important;}
    .oph-ingredients__tags {
        gap: 4px!important;
    }
  }


.oph-accordion.is-open .oph-accordion__body {
    max-height: 2500px !important;
}
.oph-accordion.is-open .oph-accordion__body {
    max-height: 2500px !important;
}
.oph-accordion__content {
  padding: 10px 0 20px!important;
}

.oph-header__title
 {
    margin-top: -10px!important;
 }

 