/** Shopify CDN: Minification failed

Line 2558:3 Cannot use type selector "--whatsapp" directly after nesting selector "&"
Line 2566:3 Cannot use type selector "--facebook" directly after nesting selector "&"
Line 2574:3 Cannot use type selector "--twitter" directly after nesting selector "&"

**/
/**
 * Bundle Builder - Construtor de Kits Personalizados
 * CSS aninhado seguindo padrão SCSS
 * Mobile-first approach
 */

.custom-bundle-builder {
  padding: 40px 0 60px;
  background: #ffffff;

  /* Mobile: adicionar padding-bottom para não ficar escondido atrás dos botões fixos */
  @media (max-width: 1023px) {
    padding-bottom: 140px; /* Espaço para os botões fixos + margem + safe area */
  }

  @media (min-width: 769px) {
    padding: 60px 0 80px;
  }


  .custom-bundle-builder__header {
    text-align: center;
    margin-bottom: 24px;

    @media (min-width: 769px) {
      margin-bottom: 32px;
    }
  }

  .custom-bundle-builder__stepper-wrapper {
    margin-bottom: 32px;

    @media (min-width: 769px) {
      margin-bottom: 40px;
    }
  }

  .custom-bundle-builder__title {
    font-family: 'Jost', sans-serif;
    font-weight: 800;
    font-size: 28px;
    line-height: 1.2;
    color: #362017;
    margin: 0 0 12px;

    @media (min-width: 769px) {
      font-size: 43px;
      margin-bottom: 16px;
    }
  }

  .custom-bundle-builder__subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;

    @media (min-width: 769px) {
      font-size: 18px;
    }
  }

  .custom-bundle-builder__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;

    @media (min-width: 1024px) {
      grid-template-columns: 2fr 1fr;
      gap: 40px;
      align-items: start;
    }
  }

  .custom-bundle-builder__steps {
    min-width: 0;
  }

  .custom-bundle-builder__preview-wrapper {
    @media (max-width: 1023px) {
      order: -1;
    }

    @media (min-width: 1024px) {
      position: sticky;
      top: 180px;
      align-self: flex-start;
      max-height: calc(100vh - 40px);
    }

    /* Container comum para botões de todos os steps */
    .custom-bundle-step-actions {
      display: none; /* Oculto por padrão, será mostrado via JavaScript quando step correspondente estiver ativo */
      flex-direction: column;
      gap: 12px;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid #e0e0e0;

      /* Mobile: botões fixos no bottom */
      @media (max-width: 1023px) {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #ffffff;
        border-top: 2px solid #e0e0e0;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
        padding: 16px 20px;
        padding-bottom: calc(16px + env(safe-area-inset-bottom));
        margin: 0;
        z-index: 1000;
        max-width: 100vw;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
      }

      @media (min-width: 769px) {
        margin-top: 24px;
        padding-top: 24px;
        gap: 16px;
      }

      &[data-step-actions="1"] {
        align-items: stretch;

        .custom-bundle-step-base__next-btn {
          background: #ff2dfc;
          color: #ffffff;
          border: none;
          border-radius: 8px;
          padding: 10px 16px;
          font-size: 13px;
          font-weight: 600;
          cursor: pointer;
          display: flex;
          align-items: center;
          gap: 6px;
          width: 100%;
          justify-content: center;

          @media (min-width: 769px) {
            padding: 12px 24px;
            font-size: 14px;
          }

          &:hover:not(:disabled) {
            background: #e020d0;
            opacity: 0.9;
          }

          &:disabled {
            opacity: 0.5;
            cursor: not-allowed;
          }

          svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
          }
        }
      }

      &[data-step-actions="2"] {
        @media (max-width: 1023px) {
          flex-direction: row;
          justify-content: space-between;
          gap: 10px;
        }

        @media (min-width: 769px) {
          flex-direction: row;
          justify-content: space-between;
          gap: 12px;
        }

        .custom-bundle-step-charms__back-btn {
          flex: 1;
          background: #f5f5f5;
          color: #362017;
          border: 2px solid #e0e0e0;
          border-radius: 8px;
          padding: 10px 14px;
          font-size: 13px;
          font-weight: 600;
          cursor: pointer;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 6px;

          @media (min-width: 769px) {
            padding: 12px 16px;
            font-size: 14px;
          }

          &:hover {
            background: #e8e8e8;
            border-color: #d0d0d0;
          }

          svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
          }
        }

        .custom-bundle-step-charms__next-btn {
          flex: 1;
          background: #ff2dfc;
          color: #ffffff;
          border: none;
          border-radius: 8px;
          padding: 10px 14px;
          font-size: 13px;
          font-weight: 600;
          cursor: pointer;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 6px;

          @media (min-width: 769px) {
            padding: 12px 16px;
            font-size: 14px;
          }

          &:hover {
            background: #e020d0;
            opacity: 0.9;
          }

          svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
          }
        }
      }

      &[data-step-actions="3"] {
        .custom-bundle-step-additional__actions-row {
          display: flex;
          justify-content: space-between;
          gap: 10px;
          width: 100%;

          @media (min-width: 769px) {
            gap: 12px;
          }
        }

        .custom-bundle-step-additional__back-btn {
          flex: 1;
          min-width: 80px;
          background: #f5f5f5;
          color: #362017;
          border: 2px solid #e0e0e0;
          border-radius: 8px;
          padding: 10px 12px;
          font-size: 12px;
          font-weight: 600;
          cursor: pointer;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 6px;

          @media (min-width: 769px) {
            font-size: 13px;
            padding: 10px 14px;
          }

          &:hover {
            background: #e8e8e8;
            border-color: #d0d0d0;
          }

          svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
          }
        }

        .custom-bundle-step-additional__skip-btn {
          flex: 1;
          min-width: 80px;
          background: #f5f5f5;
          border: 2px solid #e0e0e0;
          border-radius: 8px;
          padding: 10px 12px;
          font-size: 12px;
          font-weight: 600;
          cursor: pointer;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 6px;
          color: #362017;

          @media (min-width: 769px) {
            font-size: 13px;
            padding: 10px 14px;
          }

          &:hover {
            background: #e8e8e8;
            border-color: #d0d0d0;
          }
        }

        .custom-bundle-step-additional__next-btn {
          width: 100%;
          background: #ff2dfc;
          color: #ffffff;
          border: none;
          border-radius: 8px;
          padding: 10px 12px;
          font-size: 13px;
          font-weight: 600;
          cursor: pointer;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 6px;

          @media (min-width: 769px) {
            padding: 12px 16px;
            font-size: 14px;
          }

          &:hover {
            background: #e020d0;
            opacity: 0.9;
          }

          svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
          }
        }
      }

      &[data-step-actions="4"] {
        .custom-bundle-step-review__back-btn {
          background: #f5f5f5;
          color: #362017;
          border: 2px solid #e0e0e0;
          border-radius: 8px;
          padding: 10px 14px;
          font-size: 13px;
          font-weight: 600;
          cursor: pointer;
          display: flex;
          align-items: center;
          gap: 6px;
          width: 100%;
          justify-content: center;

          @media (max-width: 1023px) {
            margin-bottom: 0;
          }

          @media (min-width: 769px) {
            padding: 12px 20px;
            font-size: 14px;
          }

          &:hover {
            background: #e8e8e8;
            border-color: #d0d0d0;
          }

          svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
          }
        }

        .custom-bundle-step-review__actions-group {
          display: flex;
          gap: 10px;
          width: 100%;

          @media (min-width: 769px) {
            gap: 12px;
          }
        }

        .custom-bundle-step-review__share-btn {
          background: #f5f5f5;
          color: #362017;
          border: 2px solid #e0e0e0;
          border-radius: 8px;
          padding: 10px 14px;
          font-size: 13px;
          font-weight: 600;
          cursor: pointer;
          display: flex;
          align-items: center;
          gap: 6px;
          flex-shrink: 0;

          @media (min-width: 769px) {
            padding: 12px 18px;
            font-size: 14px;
          }

          &:hover {
            background: #e8e8e8;
            border-color: #d0d0d0;
          }

          svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
          }

          span {
            white-space: nowrap;
          }
        }

        .custom-bundle-step-review__add-btn {
          flex: 1;
          background: #ff2dfc;
          color: #ffffff;
          border: none;
          border-radius: 8px;
          padding: 10px 14px;
          font-size: 13px;
          font-weight: 700;
          cursor: pointer;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 6px;

          @media (min-width: 769px) {
            padding: 12px 20px;
            font-size: 14px;
          }

          &:hover {
            background: #e020d0;
            opacity: 0.9;
          }

          .custom-bundle-step-review__add-btn-text {
            white-space: nowrap;
          }

          .custom-bundle-step-review__add-btn-loading {
            display: flex;
            align-items: center;
            gap: 6px;
          }
        }
      }
    }
  }

  .custom-bundle-step {
    display: none;

    &.is-active {
      display: block;
      animation: fadeIn 0.3s ease-in-out;
    }
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stepper */
.custom-bundle-stepper {
  margin-bottom: 32px;

  @media (min-width: 769px) {
    margin-bottom: 40px;
  }

  .custom-bundle-stepper__steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;

    @media (min-width: 769px) {
      padding: 0;
    }
  }

  .custom-bundle-stepper__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
    min-width: 60px;
    padding-top: 0;

    @media (min-width: 769px) {
      gap: 8px;
      min-width: 80px;
    }
  }

  .custom-bundle-stepper__step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    border: 2px solid #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;

    @media (min-width: 769px) {
      width: 48px;
      height: 48px;
    }

    .custom-bundle-stepper__step-number {
      font-weight: 600;
      font-size: 16px;
      color: #999;
      line-height: 1;

      @media (min-width: 769px) {
        font-size: 18px;
      }
    }

    .custom-bundle-stepper__check-icon {
      display: none;
      width: 18px;
      height: 18px;
      color: #ffffff;

      @media (min-width: 769px) {
        width: 20px;
        height: 20px;
      }
    }
  }

  .custom-bundle-stepper__step.is-active {
    .custom-bundle-stepper__step-circle {
      background: #ff2dfc;
      border-color: #ff2dfc;

      .custom-bundle-stepper__step-number {
        color: #ffffff;
        font-weight: 700;
      }
    }

    .custom-bundle-stepper__label-text {
      color: #ff2dfc;
      font-weight: 600;
    }
  }

  .custom-bundle-stepper__step.is-completed {
    .custom-bundle-stepper__step-circle {
      background: #4caf50;
      border-color: #4caf50;

      .custom-bundle-stepper__step-number {
        display: none;
      }

      .custom-bundle-stepper__check-icon {
        display: block;
      }
    }

    .custom-bundle-stepper__label-text {
      color: #4caf50;
      font-weight: 600;
    }
  }

  .custom-bundle-stepper__step-label {
    text-align: center;
  }

  .custom-bundle-stepper__label-text {
    font-size: 12px;
    color: #999;
    font-weight: 500;
    display: block;

    @media (min-width: 769px) {
      font-size: 14px;
    }
  }


  .custom-bundle-stepper__connector {
    flex: 1;
    height: 2px;
    background: #d0d0d0;
    min-width: 20px;
    max-width: 60px;
    z-index: 1;
    margin: 0 2px;
    align-self: flex-start;
    margin-top: 19px;

    @media (min-width: 769px) {
      max-width: 100px;
      margin: 0 4px;
      margin-top: 23px;
    }

    &.is-completed {
      background: #4caf50;
    }
  }
}

/* Preview */
.custom-bundle-preview {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 16px;
  overflow-y: auto;

  @media (min-width: 1024px) {
    padding: 18px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }

  .custom-bundle-preview__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
  }

  .custom-bundle-preview__title {
    font-size: 16px;
    font-weight: 700;
    color: #362017;
    margin: 0;

    @media (min-width: 769px) {
      font-size: 18px;
    }
  }

  .custom-bundle-preview__toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: transform 0.3s ease;

    @media (min-width: 1024px) {
      display: none;
    }

    &[aria-expanded="true"] {
      transform: rotate(180deg);
    }
  }

  .custom-bundle-preview__content {
    @media (max-width: 1023px) {
      display: block;

      &[aria-hidden="true"] {
        display: none;
      }
    }
  }

  .custom-bundle-preview__base {
    margin-bottom: 16px;
  }

  .custom-bundle-preview__empty-state {
    text-align: center;
    padding: 20px 12px;
    color: #999;

    svg {
      margin: 0 auto 8px;
      color: #ccc;
    }
  }

  .custom-bundle-preview__empty-text {
    font-size: 13px;
    margin: 0;
  }

  .custom-bundle-preview__charms,
  .custom-bundle-preview__additional {
    margin-bottom: 16px;
  }

  .custom-bundle-preview__charms-header,
  .custom-bundle-preview__additional-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #362017;
  }

  .custom-bundle-preview__charms-count,
  .custom-bundle-preview__additional-count {
    margin-left: 8px;
    color: #666;
    font-weight: 400;
  }

  .custom-bundle-preview__charms-grid,
  .custom-bundle-preview__additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 8px;
  }

  .custom-bundle-preview__charms-grid .custom-bundle-preview__empty-state,
  .custom-bundle-preview__additional-grid .custom-bundle-preview__empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 12px 12px;
    color: #999;
    width: 100%;
    min-width: 0;
    word-wrap: break-word;
  }

  .custom-bundle-preview__summary {
    background: #f9f9f9;
    border-top: 1px solid #e0e0e0;
    padding-top: 12px;
    padding-bottom: 12px;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;

    @media (min-width: 769px) {
      padding-top: 14px;
      padding-bottom: 14px;
      gap: 10px;
    }
  }

  .custom-bundle-preview__price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    line-height: 1.2;
  }

  .custom-bundle-preview__price-row--total {
    margin-top: 2px;
    padding-top: 8px;
    border-top: 2px solid #ffffff;
    font-size: 17px;
    font-weight: 700;

    @media (min-width: 769px) {
      font-size: 18px;
      margin-top: 4px;
      padding-top: 10px;
    }
  }

  .custom-bundle-preview__price-row--pix {
    margin-top: 2px;
    padding-top: 8px;
    border-top: 2px solid #ffffff;
    font-size: 14px;

    @media (min-width: 769px) {
      font-size: 15px;
      margin-top: 4px;
      padding-top: 10px;
    }
  }

  .custom-bundle-preview__price-pix {
    font-weight: 700;
    color: #28a745;
    text-align: right;
  }

  .custom-bundle-preview__price-label {
    color: #362017;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;

    @media (min-width: 769px) {
      font-size: 13px;
    }

    strong {
      font-weight: 700;
      text-transform: none;
    }
  }

  .custom-bundle-preview__price-subtotal,
  .custom-bundle-preview__price-total {
    font-weight: 600;
    color: #362017;
    text-align: right;
  }

  .custom-bundle-preview__price-discount-wrapper {
    display: flex;
    align-items: baseline;
    gap: 6px;
    text-align: right;
  }

  .custom-bundle-preview__price-discount {
    color: #4caf50;
    font-weight: 700;
  }

  .custom-bundle-preview__price-discount-percent {
    color: #4caf50;
    font-weight: 600;
    font-size: 12px;
    opacity: 0.9;

    @media (min-width: 769px) {
      font-size: 13px;
    }
  }

  .custom-bundle-preview__base-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #ffffff;
    border-radius: 8px;
  }

  .custom-bundle-preview__base-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;

    @media (min-width: 769px) {
      width: 60px;
      height: 60px;
    }
  }

  .custom-bundle-preview__base-info {
    flex: 1;
    min-width: 0;
  }

  .custom-bundle-preview__base-title {
    font-size: 12px;
    font-weight: 600;
    color: #362017;
    margin: 0 0 4px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    @media (min-width: 769px) {
      font-size: 14px;
    }
  }

  .custom-bundle-preview__base-price {
    font-size: 12px;
    font-weight: 700;
    color: #362017;
    margin: 0;

    @media (min-width: 769px) {
      font-size: 14px;
    }
  }

  .custom-bundle-preview__base-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 8px;
  }

  .custom-bundle-preview__base-thumb {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
  }

  .custom-bundle-preview__base-thumb-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .custom-bundle-preview__charm-item,
  .custom-bundle-preview__additional-item {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
  }

  .custom-bundle-preview__charm-image,
  .custom-bundle-preview__additional-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Step Base */
.custom-bundle-step-base {
  .custom-bundle-step-base__header {
    text-align: center;
    margin-bottom: 24px;

    @media (min-width: 769px) {
      margin-bottom: 32px;
    }
  }

  .custom-bundle-step-base__title {
    font-size: 20px;
    font-weight: 700;
    color: #362017;
    margin: 0 0 8px;

    @media (min-width: 769px) {
      font-size: 24px;
      margin-bottom: 10px;
    }
  }

  .custom-bundle-step-base__description {
    font-size: 14px;
    color: #666;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;

    @media (min-width: 769px) {
      font-size: 16px;
    }
  }

  .custom-bundle-step-base__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;

    @media (min-width: 640px) {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    @media (min-width: 1024px) {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }
  }

  .custom-bundle-step-base__item {
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .custom-bundle-step-base__radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .custom-bundle-step-base__label {
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    background: #ffffff;

    @media (min-width: 769px) {
      border-radius: 12px;
      padding: 20px;
    }

    &:hover {
      border-color: #ff2dfc;
    }
  }

  .custom-bundle-step-base__radio:checked + .custom-bundle-step-base__label {
    border-color: #ff2dfc;
    background: #ffffff;
  }

  .custom-bundle-step-base__image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 85%;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;

    @media (min-width: 769px) {
      padding-bottom: 80%;
      margin-bottom: 20px;
    }
  }

  .custom-bundle-step-base__image,
  .custom-bundle-step-base__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .custom-bundle-step-base__check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: #ff2dfc;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    z-index: 2;

    svg {
      width: 18px;
      height: 18px;
      stroke-width: 3;
    }
  }

  .custom-bundle-step-base__radio:checked + .custom-bundle-step-base__label .custom-bundle-step-base__check {
    display: flex;
  }

  .custom-bundle-step-base__info {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .custom-bundle-step-base__product-title {
    font-size: 14px;
    font-weight: 600;
    color: #362017;
    margin: 0 0 8px;
    line-height: 1.4;

    @media (min-width: 769px) {
      font-size: 16px;
      margin-bottom: 10px;
    }
  }

  .custom-bundle-step-base__price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
  }

  .custom-bundle-step-base__price-value {
    font-size: 16px;
    font-weight: 700;
    color: #362017;

    @media (min-width: 769px) {
      font-size: 18px;
    }

    @media (min-width: 769px) {
      font-size: 24px;
    }
  }

  .custom-bundle-step-base__compare-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
  }

  .custom-bundle-step-base__variants-info {
    font-size: 12px;
    color: #666;
    margin: 4px 0 0;
  }

  .custom-bundle-step-base__actions {
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }

  .custom-bundle-step-base__next-btn {
    background: #ff2dfc;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;

    @media (min-width: 769px) {
      padding: 14px 32px;
      font-size: 16px;
      gap: 8px;
    }

    &:hover:not(:disabled) {
      background: #ff2dfc;
      opacity: 0.9;
    }

    &:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
  }

  .custom-bundle-step-base__empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
  }
}

/* Step Charms */
.custom-bundle-step-charms {
  .custom-bundle-step-charms__header {
    text-align: center;
    margin-bottom: 24px;

    @media (min-width: 769px) {
      margin-bottom: 32px;
    }
  }

  .custom-bundle-step-charms__title {
    font-size: 20px;
    font-weight: 700;
    color: #362017;
    margin: 0 0 8px;

    @media (min-width: 769px) {
      font-size: 24px;
      margin-bottom: 10px;
    }
  }

  .custom-bundle-step-charms__description {
    font-size: 14px;
    color: #666;
    margin: 0 0 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;

    @media (min-width: 769px) {
      font-size: 16px;
      margin-bottom: 16px;
    }
  }

  .custom-bundle-step-charms__counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #362017;
    padding: 12px 24px;
    background: #fff5ff;
    border-radius: 24px;
    display: inline-flex;
  }

  .custom-bundle-step-charms__counter-value {
    color: #ff2dfc;
    font-size: 20px;
  }

  .custom-bundle-step-charms__counter-max {
    color: #666;
    font-weight: 400;
  }

  .custom-bundle-step-charms__incentive {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #fff5ff 0%, #ffe5ff 100%);
    border-radius: 12px;
    margin-bottom: 24px;
    border: 2px solid #ff2dfc;
  }

  .custom-bundle-step-charms__incentive-icon {
    font-size: 32px;
    flex-shrink: 0;
  }

  .custom-bundle-step-charms__incentive-text {
    flex: 1;
    font-size: 14px;
    color: #362017;
    line-height: 1.4;

    strong {
      color: #ff2dfc;
    }
  }

  .custom-bundle-step-charms__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;

    @media (min-width: 640px) {
      gap: 16px;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    @media (min-width: 1024px) {
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
  }

  .custom-bundle-step-charms__item {
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .custom-bundle-step-charms__checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .custom-bundle-step-charms__label {
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    background: #ffffff;

    @media (min-width: 769px) {
      border-radius: 12px;
      padding: 16px;
    }

    &:hover {
      border-color: #ff2dfc;
    }
  }

  .custom-bundle-step-charms__checkbox:checked + .custom-bundle-step-charms__label {
    border-color: #ff2dfc;
    background: #ffffff;
  }

  .custom-bundle-step-charms__image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;

    @media (min-width: 769px) {
      margin-bottom: 16px;
    }
  }

  .custom-bundle-step-charms__image,
  .custom-bundle-step-charms__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .custom-bundle-step-charms__check {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    background: #ff2dfc;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    z-index: 2;

    svg {
      width: 14px;
      height: 14px;
      stroke-width: 3;
    }
  }

  .custom-bundle-step-charms__checkbox:checked + .custom-bundle-step-charms__label .custom-bundle-step-charms__check {
    display: flex;
  }

  .custom-bundle-step-charms__info {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .custom-bundle-step-charms__product-title {
    font-size: 13px;
    font-weight: 600;
    color: #362017;
    margin: 0 0 6px;
    line-height: 1.4;

    @media (min-width: 769px) {
      font-size: 15px;
      margin-bottom: 8px;
    }
  }

  .custom-bundle-step-charms__price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .custom-bundle-step-charms__price-value {
    font-size: 14px;
    font-weight: 700;
    color: #362017;

    @media (min-width: 769px) {
      font-size: 16px;
    }
  }

  .custom-bundle-step-charms__compare-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
  }

  .custom-bundle-step-charms__actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;

    @media (min-width: 769px) {
      gap: 16px;
      margin-top: 32px;
    }
  }

  .custom-bundle-step-charms__back-btn {
    flex: 1;
    background: #f5f5f5;
    color: #362017;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    @media (min-width: 769px) {
      padding: 14px 24px;
      font-size: 16px;
      gap: 8px;
    }

    &:hover {
      background: #e8e8e8;
      border-color: #d0d0d0;
    }

    &:active {
      background: #e0e0e0;
    }
  }

  .custom-bundle-step-charms__next-btn {
    flex: 1;
    background: #ff2dfc;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    @media (min-width: 769px) {
      padding: 14px 24px;
      font-size: 16px;
      gap: 8px;
    }

    &:hover:not(:disabled) {
      background: #ff2dfc;
      opacity: 0.9;
    }

    &:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
  }

  .custom-bundle-step-charms__empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
  }
}

/* Step Additional */
.custom-bundle-step-additional {
  .custom-bundle-step-additional__header {
    text-align: center;
    margin-bottom: 24px;

    @media (min-width: 769px) {
      margin-bottom: 32px;
    }
  }

  .custom-bundle-step-additional__title {
    font-size: 20px;
    font-weight: 700;
    color: #362017;
    margin: 0 0 8px;

    @media (min-width: 769px) {
      font-size: 24px;
      margin-bottom: 10px;
    }
  }

  .custom-bundle-step-additional__description {
    font-size: 14px;
    color: #666;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;

    @media (min-width: 769px) {
      font-size: 16px;
    }
  }

  .custom-bundle-step-additional__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;

    @media (min-width: 640px) {
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    @media (min-width: 1024px) {
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
  }

  .custom-bundle-step-additional__item {
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .custom-bundle-step-additional__checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .custom-bundle-step-additional__label {
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    background: #ffffff;

    @media (min-width: 769px) {
      border-radius: 12px;
      padding: 20px;
    }

    &:hover {
      border-color: #ff2dfc;
    }
  }

  .custom-bundle-step-additional__checkbox:checked + .custom-bundle-step-additional__label {
    border-color: #ff2dfc;
    background: #ffffff;
  }

  .custom-bundle-step-additional__image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    margin-bottom: 8px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
  }

  .custom-bundle-step-additional__image,
  .custom-bundle-step-additional__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .custom-bundle-step-additional__check {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    background: #ff2dfc;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    z-index: 2;

    svg {
      width: 14px;
      height: 14px;
      stroke-width: 3;
    }
  }

  .custom-bundle-step-additional__checkbox:checked + .custom-bundle-step-additional__label .custom-bundle-step-additional__check {
    display: flex;
  }

  .custom-bundle-step-additional__info {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .custom-bundle-step-additional__product-title {
    font-size: 13px;
    font-weight: 600;
    color: #362017;
    margin: 0 0 6px;
    line-height: 1.3;

    @media (min-width: 769px) {
      font-size: 14px;
    }
  }

  .custom-bundle-step-additional__price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .custom-bundle-step-additional__price-value {
    font-size: 14px;
    font-weight: 700;
    color: #362017;

    @media (min-width: 769px) {
      font-size: 16px;
    }
  }

  .custom-bundle-step-additional__compare-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
  }

  .custom-bundle-step-additional__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;

    @media (min-width: 769px) {
      flex-direction: row;
      justify-content: space-between;
      gap: 16px;
      margin-top: 32px;
    }
  }

  .custom-bundle-step-additional__actions-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    width: 100%;

    @media (min-width: 769px) {
      gap: 16px;
      width: auto;
      flex: 1;
    }
  }

  .custom-bundle-step-additional__back-btn {
    flex: 1;
    min-width: 80px;
    background: #f5f5f5;
    color: #362017;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    @media (min-width: 769px) {
      min-width: 120px;
      padding: 14px 24px;
      font-size: 16px;
      gap: 8px;
    }

    &:hover {
      background: #e8e8e8;
      border-color: #d0d0d0;
    }
  }

  .custom-bundle-step-additional__skip-btn {
    flex: 1;
    min-width: 80px;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #362017;

    @media (min-width: 769px) {
      min-width: 120px;
      padding: 14px 24px;
      font-size: 16px;
      gap: 8px;
    }

    &:hover {
      background: #e8e8e8;
      border-color: #d0d0d0;
    }
  }

  .custom-bundle-step-additional__next-btn {
    width: 100%;
    background: #ff2dfc;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    @media (min-width: 769px) {
      width: auto;
      flex: 1;
      min-width: 120px;
      padding: 14px 24px;
      font-size: 16px;
      gap: 8px;
    }

    &:hover:not(:disabled) {
      background: #ff2dfc;
      opacity: 0.9;
    }

    &:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
  }

  .custom-bundle-step-additional__next-btn {
    background: #ff2dfc;
    color: #ffffff;

    &:hover {
      background: #e020d0;
      opacity: 0.9;
    }
  }

  .custom-bundle-step-additional__empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
  }
}

/* Step Review */
.custom-bundle-step-review {
  .custom-bundle-step-review__header {
    text-align: center;
    margin-bottom: 16px;

    @media (min-width: 769px) {
      margin-bottom: 24px;
    }
  }

  .custom-bundle-step-review__title {
    font-size: 20px;
    font-weight: 700;
    color: #362017;
    margin: 0;

    @media (min-width: 769px) {
      font-size: 24px;
    }
  }

  .custom-bundle-step-review__content {
    margin-bottom: 24px;

    @media (min-width: 769px) {
      margin-bottom: 32px;
    }
  }

  .custom-bundle-step-review__summary {
    margin-bottom: 20px;

    @media (min-width: 769px) {
      margin-bottom: 28px;
    }
  }

  .custom-bundle-step-review__section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;

    @media (min-width: 769px) {
      margin-bottom: 24px;
      padding-bottom: 24px;
    }

    &:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }
  }

  .custom-bundle-step-review__section-title {
    font-size: 18px;
    font-weight: 700;
    color: #362017;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;

    @media (min-width: 769px) {
      font-size: 20px;
      margin-bottom: 16px;
    }
  }

  .custom-bundle-step-review__section-count {
    font-size: 16px;
    font-weight: 400;
    color: #666;
  }

  .custom-bundle-step-review__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.3s ease;

    @media (min-width: 769px) {
      padding: 16px;
      gap: 16px;
      border-radius: 12px;
    }

    &:hover {
      border-color: #ff2dfc;
    }
  }

  .custom-bundle-step-review__items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;

    @media (min-width: 640px) {
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    @media (min-width: 1024px) {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
  }

  .custom-bundle-step-review__empty-state {
    text-align: center;
    padding: 20px 16px;
    color: #999;
    font-size: 14px;
    background: #f9f9f9;
    border-radius: 8px;

    @media (min-width: 769px) {
      padding: 24px 20px;
      font-size: 16px;
      border-radius: 12px;
    }
  }

  .custom-bundle-step-review__item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background: #f5f5f5;

    @media (min-width: 769px) {
      width: 100px;
      height: 100px;
      border-radius: 10px;
    }
  }

  .custom-bundle-step-review__item-info {
    flex: 1;
    min-width: 0;
  }

  .custom-bundle-step-review__item-title {
    font-size: 14px;
    font-weight: 600;
    color: #362017;
    margin: 0 0 6px;
    line-height: 1.4;

    @media (min-width: 769px) {
      font-size: 16px;
      margin-bottom: 8px;
    }
  }

  .custom-bundle-step-review__item-price {
    font-size: 16px;
    font-weight: 700;
    color: #362017;
    margin: 0;

    @media (min-width: 769px) {
      font-size: 18px;
    }
  }

  .custom-bundle-step-review__pricing {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;

    @media (min-width: 769px) {
      padding: 24px;
      border-radius: 8px;
      margin-bottom: 32px;
      gap: 14px;
    }
  }

  .custom-bundle-step-review__pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    line-height: 1.2;

    @media (min-width: 769px) {
      font-size: 16px;
    }
  }

  .custom-bundle-step-review__pricing-row--total {
    margin-top: 4px;
    padding-top: 12px;
    border-top: 2px solid #ffffff;
    font-size: 18px;
    font-weight: 700;

    @media (min-width: 769px) {
      font-size: 20px;
      margin-top: 6px;
      padding-top: 14px;
    }
  }

  .custom-bundle-step-review__pricing-row--pix {
    margin-top: 4px;
    padding-top: 12px;
    border-top: 2px solid #ffffff;
    font-size: 15px;

    @media (min-width: 769px) {
      font-size: 16px;
      margin-top: 6px;
      padding-top: 14px;
    }
  }

  .custom-bundle-step-review__pricing-value--pix {
    font-weight: 700;
    color: #28a745;
    font-size: 18px;

    @media (min-width: 769px) {
      font-size: 20px;
    }
  }

  .custom-bundle-step-review__pricing-label {
    color: #362017;
    font-weight: 600;
    font-size: 14px;

    @media (min-width: 769px) {
      font-size: 15px;
    }

    strong {
      font-weight: 700;
    }
  }

  .custom-bundle-step-review__pricing-value {
    font-weight: 600;
    color: #362017;
    text-align: right;
  }

  .custom-bundle-step-review__pricing-value-wrapper {
    display: flex;
    align-items: baseline;
    gap: 6px;
    text-align: right;
  }

  .custom-bundle-step-review__pricing-value--discount {
    color: #4caf50;
    font-weight: 700;
  }

  .custom-bundle-step-review__pricing-value--discount-percent {
    color: #4caf50;
    font-weight: 600;
    font-size: 13px;
    opacity: 0.9;

    @media (min-width: 769px) {
      font-size: 14px;
    }
  }

  .custom-bundle-step-review__pricing-value--total {
    font-size: 20px;
    color: #362017;
    font-weight: 700;

    @media (min-width: 769px) {
      font-size: 22px;
    }
  }

  .custom-bundle-step-review__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;

    @media (min-width: 769px) {
      margin-top: 40px;
      gap: 20px;
    }
  }

  .custom-bundle-step-review__actions-group {
    display: flex;
    gap: 12px;
    width: 100%;

    @media (min-width: 769px) {
      gap: 20px;
    }
  }

  .custom-bundle-step-review__back-btn {
    background: #f5f5f5;
    color: #362017;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;

    @media (min-width: 769px) {
      padding: 18px 32px;
      font-size: 17px;
      gap: 8px;
    }

    &:hover {
      background: #e8e8e8;
      border-color: #d0d0d0;
    }
  }

  .custom-bundle-step-review__share-btn {
    background: #f5f5f5;
    color: #362017;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;

    @media (min-width: 769px) {
      padding: 18px 28px;
      font-size: 17px;
    }

    svg {
      width: 20px;
      height: 20px;
    }

    span {
      @media (max-width: 768px) {
        display: none;
      }
    }

    &:hover {
      background: #e8e8e8;
      border-color: #d0d0d0;
    }
  }

  .custom-bundle-step-review__add-btn {
    flex: 1;
    background: #ff2dfc;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    @media (min-width: 769px) {
      padding: 20px 40px;
      font-size: 20px;
      gap: 12px;
    }

    &:hover:not(:disabled) {
      background: #ff2dfc;
      opacity: 0.9;
    }

    &:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }
  }

  .custom-bundle-step-review__add-btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .spinner {
    animation: spin 1s linear infinite;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Share Modal */
.custom-bundle-share-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fadeIn 0.3s ease;
  overflow-x: hidden;
  box-sizing: border-box;

  @media (min-width: 769px) {
    padding: 20px;
  }
}

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

.custom-bundle-share-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.custom-bundle-share-modal__content {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  animation: slideUp 0.3s ease;
  box-sizing: border-box;

  @media (min-width: 769px) {
    border-radius: 16px;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.custom-bundle-share-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid #e0e0e0;

  @media (min-width: 769px) {
    padding: 24px;
  }
}

.custom-bundle-share-modal__title {
  font-size: 18px;
  font-weight: 700;
  color: #362017;
  margin: 0;

  @media (min-width: 769px) {
    font-size: 20px;
  }
}

.custom-bundle-share-modal__close {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;

  svg {
    width: 20px;
    height: 20px;

    @media (min-width: 769px) {
      width: 24px;
      height: 24px;
    }
  }

  &:hover {
    color: #362017;
  }
}

.custom-bundle-share-modal__body {
  padding: 16px;
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;

  @media (min-width: 769px) {
    padding: 24px;
  }
}

.custom-bundle-share-modal__link-section {
  margin-bottom: 20px;

  @media (min-width: 769px) {
    margin-bottom: 32px;
  }
}

.custom-bundle-share-modal__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #362017;
  margin-bottom: 12px;
}

.custom-bundle-share-modal__link-wrapper {
  display: flex;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.custom-bundle-share-modal__link-input {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  color: #362017;
  background: #f9f9f9;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;

  @media (min-width: 769px) {
    padding: 12px 16px;
    font-size: 14px;
  }

  &:focus {
    outline: none;
    border-color: #2196f3;
    background: #ffffff;
  }
}

.custom-bundle-share-modal__copy-btn {
  background: #2196f3;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-size: 0;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  white-space: nowrap;
  flex-shrink: 0;
  box-sizing: border-box;
  min-width: 44px;

  @media (min-width: 769px) {
    padding: 12px 20px;
    font-size: 14px;
    gap: 6px;
    min-width: auto;
  }

  span {
    display: none;

    @media (min-width: 769px) {
      display: inline;
    }
  }

  svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;

    @media (min-width: 769px) {
      width: 18px;
      height: 18px;
    }
  }

  &:hover {
    background: #1976d2;
  }
}

.custom-bundle-share-modal__social-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;

  @media (min-width: 769px) {
    gap: 12px;
  }
}

.custom-bundle-share-modal__social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  font-size: 10px;
  font-weight: 500;
  color: #362017;
  box-sizing: border-box;
  width: 100%;

  @media (min-width: 769px) {
    gap: 8px;
    padding: 16px;
    font-size: 14px;
    border-radius: 12px;
  }

  svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;

    @media (min-width: 769px) {
      width: 32px;
      height: 32px;
    }
  }

  &:hover {
    border-color: #2196f3;
  }

  &--whatsapp {
    &:hover {
      border-color: #25d366;
      background: #f0fdf4;
      color: #25d366;
    }
  }

  &--facebook {
    &:hover {
      border-color: #1877f2;
      background: #f0f4ff;
      color: #1877f2;
    }
  }

  &--twitter {
    &:hover {
      border-color: #1da1f2;
      background: #f0f9ff;
      color: #1da1f2;
    }
  }
}
