.guitar-details-delivery {
  display: grid;
  gap: 2rem;

  .guitar-details-delivery__items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;

    @media (max-width: 640px) {
      display: flex;
      overflow: auto clip;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;

      &::-webkit-scrollbar {
        display: none;
      }
    }
  }

  article {
    display: grid;
    gap: 1rem;
    align-content: start;

    @media (max-width: 640px) {
      min-width: 100%;
      scroll-snap-align: start;
    }
  }

  .guitar-details-delivery__image {
    aspect-ratio: 1.8 / 1;
    padding: 2rem;
    background: var(--a);

    img {
      object-fit: contain;
    }
  }

  .common-text {
    max-width: none;
  }

  .guitar-details-delivery__stepper {
    display: none;

    @media (max-width: 640px) {
      display: flex;
      justify-content: center;
      gap: 0.75rem;
    }

    button {
      all: unset;
      width: 0.75rem;
      aspect-ratio: 1;
      border: 1px solid currentColor;
      border-radius: 50%;
      color: white;
      cursor: pointer;

      &.--active {
        background: currentColor;
      }
    }
  }
}

@media (max-width: 900px) {
  .guitar-details-delivery__items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
