bundle-picker {
  --bundle-picker-font-color: #0D0D0D;
  .bundle-picker-box {
    display: block;
    position: relative;
    width: 100%;
    .bundle-picker-title {
      display: flex;
      gap: 3px;
      position: relative;
      width: 100%;
      margin-bottom: 8px;
      color: var(--bundle-picker-font-color);
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      .title, .title-from-selected {
        margin: 0;
      }
      .title-from-selected {
        color: #4B4A4A;
        text-transform: none;
      }
    }
    .bundle-picker-options {
      display: block;
      position: relative;
      width: 100%;
      margin-bottom: 20px;
      ul {
        justify-content: center;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        list-style: none;
        margin: 0;
        padding: 0;
        li {
          display: flex;
          flex-direction: column;
          justify-content: center; /* Center horizontally */
          align-items: center;    /* Center vertically */
          gap: 0;
          position: relative;
          width: 160px;
          height: 160px;
          border: 2px solid #DDDDDD;
          border-radius: 20px;
          overflow: hidden;
          &:has(.bundle-handle:checked) {
            border: 2px solid #062D3E;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
          }
        }
      }
      bundle-picker-option {
        display: block;
        position: relative;
        width: 100%;
        height: 100%;
        label {
          display: flex;
          flex-direction: column;
          align-self: center;
          justify-content: center; /* Center horizontally */
          align-items: center;    /* Center vertically */
          width: 100%;
          height: 100%;
          gap: 0;
          cursor: pointer;
          .option-name {
            color: var(--bundle-picker-font-color);
            font-size: 36px;
            font-weight: 900;
            text-align: center;
            line-height: 1;
            width: 100%;
          }
          .option-price {
            display: flex;
            flex-direction: row;
            gap: 0;
            color: var(--bundle-picker-font-color);
            line-height: 1;
            width: 100%;
            span {
              flex: 1;
              width: 100%;
              text-align: center;
              &.option-saved-amount {
                font-size: 10px;
                font-weight: 700;
              }
              &.option-sale-price,
              &.option-compare-price {
                display: none;
              }
            }
          }
          .bundle-handle {
            display: none;
          }
        }
      }
    }
    .bundle-picker-variant-options {
      .bundle-picker-options {
        opacity: 0;
        transition: opacity 0.5s ease;
        &.open {
          opacity: 1;
        }
      }
      bundle-picker-option {
        label {
          padding: 0;
          .option-name,
          .option-price {
            display: none;
          }
          .option-feature-image {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
            &:hover {
              transform: scale(1.1);
            }
          }
        }
      }
    }
  }
}
