/** Shopify CDN: Minification failed

Line 626:0 Expected "}" to go with "{"

**/
/* ============================================================================
   PRESTIGE THEME - PRODUCT BUNDLE OFFER STYLES (DOT CTA & PERFECT ALIGNMENT)
   ============================================================================ */

.product-bundle-offer {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  width: 100%;
}

.product-bundle-offer__header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product-bundle-offer__title {
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  font-style: var(--heading-font-style);
  text-transform: var(--heading-text-transform);
  letter-spacing: var(--heading-letter-spacing);
  font-size: var(--text-h5);
  margin: 0;
  color: rgb(var(--text-color));
}

.product-bundle-offer__subtitle {
  font-size: var(--text-xs);
  color: rgb(var(--text-color) / 0.7);
  margin: 0;
}

.product-bundle-offer__admin-notice {
  background: #fff8e6;
  border: 1px solid #ffe58f;
  padding: 8px 12px;
  border-radius: 0px !important;
  font-size: 12px;
  color: #8c6b00;
}

.product-bundle-offer__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* Bundle Offer Card */
.product-bundle-card {
  position: relative;
  border: 1px solid rgb(var(--border-color));
  border-radius: 0px !important;
  padding: 1rem 1.15rem;
  background-color: rgb(var(--background));
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  user-select: none;
}

.product-bundle-card:hover {
  border-color: rgb(var(--text-color) / 0.6);
}

.product-bundle-card--selected {
  border-color: rgb(var(--text-color)) !important;
  border-width: 2px;
  background-color: rgb(var(--background));
  padding: calc(1rem - 1px) calc(1.15rem - 1px);
  box-shadow: var(--shadow-sm);
}

.product-bundle-card__badge-top {
  position: absolute;
  top: -11px;
  right: 14px;
  background-color: rgb(var(--text-color));
  color: rgb(var(--background));
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 0px !important;
  line-height: 1;
  z-index: 2;
}

.product-bundle-card__header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.product-bundle-card__radio-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-bundle-card__radio {
  appearance: none;
  -webkit-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 1.5px solid rgb(var(--text-color) / 0.5);
  border-radius: 50% !important;
  margin: 0;
  cursor: pointer;
  display: grid;
  place-content: center;
  transition: border-color 0.2s ease;
  flex-shrink: 0;
  background-color: rgb(var(--background));
}

.product-bundle-card__radio::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50% !important;
  transform: scale(0);
  transition: transform 0.15s ease-in-out;
  background-color: rgb(var(--text-color));
}

.product-bundle-card--selected .product-bundle-card__radio {
  border-color: rgb(var(--text-color));
}

.product-bundle-card--selected .product-bundle-card__radio::before {
  transform: scale(1);
}

.product-bundle-card__title {
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: var(--heading-letter-spacing);
  text-transform: uppercase;
  color: rgb(var(--text-color));
  line-height: 1.2;
}

.product-bundle-card__prices {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  text-align: right;
  flex-shrink: 0;
}

.product-bundle-card__price {
  font-size: var(--text-base);
  font-weight: 700;
  color: rgb(var(--text-color));
}

.product-bundle-card__compare-price {
  font-size: var(--text-xs);
  color: rgb(var(--text-color) / 0.5);
  text-decoration: line-through;
}

.product-bundle-card__meta-row {
  margin-top: 0.35rem;
  padding-left: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

/* RED DISCOUNT TAG ACCENT */
.product-bundle-card__discount-tag {
  display: inline-flex;
  align-items: center;
  background-color: rgba(217, 56, 56, 0.12) !important;
  color: #d93838 !important;
  border: 1px solid rgba(217, 56, 56, 0.3) !important;
  padding: 0.2rem 0.55rem;
  border-radius: 0px !important;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-bundle-card__secondary-text {
  font-size: var(--text-xs);
  color: rgb(var(--text-color) / 0.7);
}

/* SLOTS WITHIN CARD */
.product-bundle-slots {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px dashed rgb(var(--border-color));
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-bundle-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.product-bundle-slot__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.product-bundle-slot__empty-state {
  width: 100%;
}

.product-bundle-slot__filled-state {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
}

.product-bundle-slot__image-placeholder {
  width: 42px;
  height: 56px;
  border-radius: 0px !important;
  border: 1px dashed rgb(var(--border-color));
  background-color: rgb(var(--text-color) / 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  flex-shrink: 0;
}

.product-bundle-slot__image-placeholder:hover {
  border-color: rgb(var(--text-color));
  background-color: rgb(var(--text-color) / 0.06);
}

.product-bundle-slot__image-placeholder .add-icon {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgb(var(--text-color));
  line-height: 1;
}

.product-bundle-slot__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.slot-extra-change-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: rgb(var(--text-color) / 0.7);
}

.slot-extra-change-btn:hover {
  color: rgb(var(--text-color));
}

.product-bundle-slot__image {
  width: 42px;
  height: 56px;
  object-fit: cover;
  border-radius: 0px !important;
  background-color: rgb(var(--text-color) / 0.05);
  border: 1px solid rgb(var(--border-color));
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.product-bundle-slot__info-col {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product-bundle-slot__title {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  color: rgb(var(--text-color));
}

.product-bundle-slot__color-label {
  font-size: var(--text-xs);
  color: rgb(var(--text-color) / 0.7);
  font-weight: 500;
  line-height: 1.2;
}

.product-bundle-slot__size-wrap,
.product-bundle-slot__color-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.select--sm {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgb(var(--border-color));
  border-radius: 0px !important;
  padding: 0.25rem 1.6rem 0.25rem 0.6rem;
  font-size: var(--text-xs);
  font-weight: 600;
  background-color: rgb(var(--background));
  color: rgb(var(--text-color));
  cursor: pointer;
}

.product-bundle-slot__size-wrap .icon-dropdown-chevron,
.product-bundle-slot__color-wrap .icon-dropdown-chevron,
.product-picker-list-item__size-row .icon-dropdown-chevron,
.product-picker-list-item__color-row .icon-dropdown-chevron {
  position: absolute;
  right: 0.4rem;
  pointer-events: none;
  width: 10px;
  height: 10px;
}

.button--sm {
  border-radius: 0px !important;
  padding: 0.4rem 0.95rem;
  font-size: var(--text-xs);
}

/* CTA BUTTON WITH DOT SEPARATOR */
.product-bundle-offer__cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

/* Error message styling */
.product-bundle-offer__error {
  font-size: var(--text-xs);
  color: #d93838;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem;
  background-color: #fde8e8;
  border-radius: 0px !important;
}

/* CHOOSE PRODUCT MODAL (PRESTIGE SHARP STYLING) */
.product-picker-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeInModal 0.2s ease-out;
}

@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

.product-picker-modal {
  background-color: rgb(var(--background));
  border: 1px solid rgb(var(--border-color));
  border-radius: 0px !important;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 480px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-picker-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 0.75rem 1.25rem;
  border-bottom: 1px solid rgb(var(--border-color));
}

.product-picker-modal__title {
  margin: 0;
  font-size: var(--text-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--heading-letter-spacing);
  color: rgb(var(--text-color));
}

.product-picker-modal__close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
  color: rgb(var(--text-color));
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-picker-modal__body {
  padding: 1rem 1.25rem 1.25rem 1.25rem;
  overflow-y: auto;
}

.product-picker-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-picker-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgb(var(--border-color) / 0.5);
}

.product-picker-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.product-picker-list-item__img-box {
  width: 70px;
  height: 90px;
  border: 1px solid rgb(var(--border-color));
  border-radius: 0px !important;
  overflow: hidden;
  flex-shrink: 0;
  background-color: rgb(var(--text-color) / 0.03);
}

.product-picker-list-item__img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-picker-list-item__details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.product-picker-list-item__title {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  color: rgb(var(--text-color));
  line-height: 1.2;
}

.product-picker-list-item__prices {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.product-picker-list-item__price {
  font-size: var(--text-xs);
  font-weight: 700;
  color: rgb(var(--text-color));
}

.product-picker-list-item__compare-price {
  font-size: 0.75rem;
  color: rgb(var(--text-color) / 0.5);
  text-decoration: line-through;
}

.product-picker-list-item__size-row,
.product-picker-list-item__color-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.2rem;
}

.product-picker-list-item__size-row .select-wrap,
.product-picker-list-item__color-row .select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.picker-item-choose-btn {
  border-radius: 0px !important;
  font-weight: 700;
  padding: 0.45rem 1rem !important;
  flex-shrink: 0;
}

/* Mobile responsive */
@media screen and (max-width: 699px) {
  .product-picker-modal-backdrop {
    padding: 0;
    align-items: flex-end;
  }

  .product-picker-modal {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 0px !important;
    animation: slideUpModal 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

/* Product Info block item formatting for size-chart (compact width & tight gap) */
.product-info__block-list > :has([data-block-type="size-chart"]),
.product-info__block-list > :has(.product-size-chart-block),
.product-info__block-item[data-block-type="size-chart"],
.product-size-chart-block {
  width: fit-content !important;
  max-width: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
  align-self: flex-start !important;
  justify-self: start !important;
  --product-info-gap: 0.25rem !important;
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

/* Preserve Prestige native sliding hover fill animation */
/* Disabled Animation (Completely Static Button - Zero Hover Reaction) */
.product-size-chart-block--no-anim button,
.product-size-chart-block--no-anim button:hover,
.product-size-chart-block--no-anim button:focus-visible {
  transition: none !important;
  background-image: none !important;
  background-size: auto !important;
  opacity: 1 !important;
}

.product-size-chart-block--no-anim .button--outline,
.product-size-chart-block--no-anim .button--outline:hover,
.product-size-chart-block--no-anim .button--outline:focus-visible {
  background-color: transparent !important;
  background-image: none !important;
  color: var(--size-chart-text, rgb(var(--button-background, var(--text-color)))) !important;
  border-color: var(--size-chart-border, rgb(var(--button-outline-color, var(--border-color)))) !important;
  opacity: 1 !important;
}

.product-size-chart-block--no-anim .button--outline:hover span,
.product-size-chart-block--no-anim .button--outline:hover svg,
.product-size-chart-block--no-anim .button--outline:hover .icon,
.product-size-chart-block--no-anim .button--outline span,
.product-size-chart-block--no-anim .button--outline svg,
.product-size-chart-block--no-anim .button--outline .icon {
  color: var(--size-chart-text, rgb(var(--button-background, var(--text-color)))) !important;
  fill: currentColor !important;
}

.product-size-chart-block[style*="--size-chart-text"] button:not(:hover) {
  color: var(--size-chart-text) !important;
}

.product-size-chart-block[style*="--size-chart-text"] button:not(:hover) span,
.product-size-chart-block[style*="--size-chart-text"] button:not(:hover) .icon {
  color: var(--size-chart-text) !important;
}

.product-size-chart-block[style*="--size-chart-border"] button {
  border-color: var(--size-chart-border) !important;
}

.product-size-chart-block[style*="--size-chart-radius"] button {
  border-radius: var(--size-chart-radius) !important;
}

/* Isolate closed modal and drawer from parent layout to prevent hidden table content from stretching container width */
.product-size-chart-block x-modal:not([open]),
.product-size-chart-block x-drawer:not([open]) {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
