.shop-products-wrapper {
  position: relative;
  padding: 1rem 0 1rem 3rem;
  background-color: #1b667f;
  overflow: hidden;
}
.products-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  scroll-margin-top: -1.8rem;
  gap: 40px;
}
.product-gallery-info {
  width: 700px;
  flex-shrink: 0;
}
.product-gallery-info h2 {
  width: 100%;
  color: #ff8b2b;
  font-family: "obviously";
  font-weight: 500;
  letter-spacing: -1px;
  font-size: clamp(2rem, 3vw, 6rem);
  text-transform: uppercase;
  -webkit-text-stroke: 2px #202020;
}
.product-gallery-info p {
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 30px;
  max-width: 500px;
}
.product-gallery {
  height: 930px;
  display: flex;
  align-items: center;
  flex: 1;
  overflow: hidden;
}
.product-gallery-inner {
  display: flex;
  gap: 22px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card {
  flex-shrink: 0;
  width: 390px;
  height: 290px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.9);
  opacity: 0.7;
  box-shadow: 16px 20px 12px -6px rgba(0, 0, 0, 0.25);
  transition: all 0.5s ease;
}
.product-card.active {
  width: 620px;
  height: 400px;
  background-color: #ff8b2b;
  transform: scale(1);
  opacity: 1;
  border: 2px solid #202020;
  z-index: 2;
}
.product-card.active:nth-child(2) {
  margin-left: 16rem;
}
.product-card img {
  width: 230px;
}
.product-card.active img {
  width: 260px;
}
.product-nav-arrows {
  position: absolute;
  right: 40px;
  bottom: 5rem;
  display: flex;
  gap: 20px;
  z-index: 10;
}
.arrow-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.arrow-btn.disabled {
  opacity: 0.3;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .products-container {
    flex-direction: column;
    align-items: start;
    scroll-margin-top: 2rem;
    gap: 6rem;
  }

  .shop-products-wrapper {
    min-height: 810px;
    padding: 5rem 0 0 1.2rem;
  }

  .product-gallery {
    min-height: 0;
    overflow: visible;
  }

  .product-gallery-inner {
    gap: 20px;
  }

  .product-gallery-info h2 {
    margin-bottom: 8px;
  }

  .product-card,
  .product-card.active {
    width: 90vw;
    height: 300px;
    overflow: visible;
    position: relative;
  }

  .product-card img,
  .product-card.active img {
    position: absolute;
    width: 140px;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
  }

  .product-gallery-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-right: 2.1rem;
  }

  .product-nav-arrows {
    width: 140px;
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    padding: 1rem;
    justify-content: space-between;
  }

  .product-card.active:nth-child(2) {
    margin-left: 0;
  }
}
