.shop-section {
  width: 100%;
  max-width: 76rem;
  margin: 0 auto;
  padding: 5rem 0;
}

.shop-section--container {
  display: flex;
  justify-content: center;
  flex-flow: column;
}

.shop-section--header {
  display: flex;
  justify-content: center;
  flex-flow: column;
  padding-bottom: 80px;
}

.shop-section--header-tag {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  padding-bottom: 16px;
}

.shop-section--header-title {
  font-weight: 600;
  font-size: 48px;
  line-height: 57.6px;
  text-align: center;
  padding-bottom: 24px;
}

.shop-section--header-description {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
}

.shop-section--content {
  display: flex;
  justify-content: center;
  flex-flow: row;
  gap: 25px;
}

.shop-section--content-item {
  width: 33%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.shop-section--content-image {
  height: 280px;
  margin-bottom: 24px;
  width: 100%;
}

.shop-section--content-image img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-section--content-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 33.6px;
  padding-bottom: 10px;
}

.shop-section--content-price {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}


.product-section {
  width: 100%;
  max-width: 76rem;
  margin: 0 auto;
  padding: 5rem 0;
}

.product-section--container {
  display: flex;
  flex-flow: row;
  gap: 80px;
}

.product-section--details-breadcrumb {
  display: flex;
  flex-flow: row;
  align-items: center;
  gap: 15px;
}

.product-section--details-breadcrumb-shop {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: #111111;
}

.product-section--details-breadcrumb-product {
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: #111111;
}

.product-section--details-title {
  padding-top: 24px;
  padding-bottom: 24px;
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  color: #111111;
}

.product-section--details-price {
  font-weight: 600;
  font-size: 24px;
  line-height: 33.6px;
  color: #111111;
  padding-bottom: 24px;
}

.product-section--details-short-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #444444;
  padding-bottom: 50px;
}

.product-section--details-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.product-section--details-add-to-cart {
  flex: 1;
  padding: 12px;
  background-color: #0a63e8;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.product-section--details-extra {
  width: 90%;
}

.product-section--details-qty-label {
  width: 50px;
  padding-bottom: 15px;
}

.product-section--details-qty-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-section--details-qty-input {
  width: 50px;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-align: center;
  height: 45px;
}

.product-section--details-qty-input:focus-visible {
  outline: none;
}

.product-section--details-description {
  padding-top: 80px;
  h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #111111;
    padding-bottom: 18px;
  }
  p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #444444;
  }
}


.product-section--images {
  width: 50%;
}

.product-main-image {
  height: 500px;
  img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  }
}

.product-thumbnails {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  padding-top: 16px;
  img {
    cursor: pointer;
    height: 96px;
    max-width: 94px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  }
}

.product-section--details {
  width: 50%;
}
