/* Fixed Bundle Styles */
.bundle-products
  .bundle-product-block--fixed
  .bundle-product--product-container {
  display: flex;
  gap: var(--spacer-20);
}

.bundle-products .bundle-product-block--fixed {
  margin-bottom: var(--spacer-20);
}

.bundle-products .bundle-product-block--fixed .box-container:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: unset;
}

.bundle-product--product-block-image {
  flex: 1 1 45%;
  background: var(--color--light-gray);
  aspect-ratio: 4 / 5;
  max-width: 12rem;
}

.bundle-product--product-block-image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.bundle-product--product-block-options {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: var(--spacer-10);
  justify-content: center;
}

.bundle-products-lines {
  margin-bottom: var(--spacer-20);
}

.bundle-products .bundle-product-block--fixed .full-card--title {
  font-size: 0.875rem;
  letter-spacing: 0.0125rem;
  line-height: 1.25;
}

.bundle-product--product-block-inputs {
  display: flex;
  gap: var(--spacer-10);
  flex-wrap: wrap;
}

.bundle-products .bundle-product-block--fixed .full-card--subtitle {
  font-size: 0.875rem;
  line-height: 1.2;
  margin: 0;
}

.bundle-products .bundle-product-block--fixed .input--swatch {
  position: relative;
}

.bundle-products
  .bundle-product-block--fixed
  .input--swatch
  .input--swatch-label {
  position: relative;
  height: 2.5rem;
  min-width: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  padding: var(--spacer-10);
  border: 0.0625rem solid var(--color--pure-black);
  cursor: pointer;
  background-color: var(--color--pure-white);
  font-weight: normal;
  overflow: hidden;
  transition:
    color var(--transition-timing--fast),
    background-color var(--transition-timing--fast);
}

.bundle-products
  .bundle-product-block--fixed
  .input--swatch
  .input--swatch-label:hover {
  color: var(--color--pure-black);
  background-color: var(--color--ticker-tape);
}

.bundle-products
  .bundle-product-block--fixed
  .input--swatch
  .input--swatch-label.disabled-swatch {
  opacity: 0.3;
}

.bundle-products
  .bundle-product-block--fixed
  .input--swatch
  input[type='radio'],
.bundle-products
  .bundle-product-block--fixed
  .input--swatch
  input[type='checkbox'] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.bundle-products
  .bundle-product-block--fixed
  .input--swatch
  input[type='radio']:checked
  ~ .input--swatch-label,
.bundle-products
  .bundle-product-block--fixed
  .input--swatch
  input[type='checkbox']:checked
  ~ .input--swatch-label {
  color: var(--color--pure-white);
  background-color: var(--color--pure-black);
}

.bundle-products
  .bundle-product-block--fixed
  .input--swatch
  input[type='radio']:focus
  ~ .input--swatch-label,
.bundle-products
  .bundle-product-block--fixed
  .input--swatch
  input[type='checkbox']:focus
  ~ .input--swatch-label {
  text-decoration: underline;
}

.bundle-products
  .bundle-product-block--fixed
  .input--swatch
  input[type='radio']:checked
  ~ .input--swatch-label:hover,
.bundle-products
  .bundle-product-block--fixed
  .input--swatch
  input[type='checkbox']:checked
  ~ .input--swatch-label:hover {
  background-color: var(--color--dark-gray);
}

.bundle-products .bundle-add-to-cart-fixed button.button:disabled {
  opacity: 0.5;
}
/* Add more fixed bundle-specific styles here */
