.head-shop {
  width: 100%;
  padding: 60px 20px 80px;
  background: #fff !important;
}

.head-shop__container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  text-align: center;
  background: #fff !important;
}

.head-shop__header h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.head-shop__header p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
  color: #222;
}

.head-shop__slider {
  position: relative;
  margin-top: 40px;
  background: #fff !important;
}

.head-shop__viewport {
  overflow: hidden;
  background: #fff !important;
}

.head-shop__track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s ease;
  background: #fff !important;
}

.head-shop__card {
  flex: 0 0 calc((100% - 60px) / 4);
  max-width: calc((100% - 60px) / 4);
  background: #fff !important;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  box-shadow: none;
}

.head-shop__thumb img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 16px;
}

.head-shop__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.head-shop__body h3 {
  font-size: 18px;
  margin: 0;
  color: #111;
}

.head-shop__price {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
}

.head-shop__button {
  margin-top: auto;
  border: 1px solid #000;
  background: transparent;
  color: #000;
  padding: 10px 28px;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}

.head-shop__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
  z-index: 1;
}

.head-shop__arrow--prev {
  left: -12px;
}

.head-shop__arrow--next {
  right: -12px;
}

@media (max-width: 1024px) {
  .head-shop__card {
    flex: 0 0 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
  }
}

@media (max-width: 768px) {
  .head-shop__card {
    flex: 0 0 calc(100% - 20px);
    max-width: calc(100% - 20px);
  }

  .head-shop__arrow {
    display: none;
  }
}
