/* =========================
   Estrutura e Containers
   ========================= */
.item-details {
  padding-bottom: 50px;
}

.product-content {}

.product-detail.info {
  display: flex;
  flex-direction: column;
}

.product-detail.info p,
.product-detail.info .info-text,
.product-detail.info .title {
  color: var(--color-pri);
}

.product-detail.info p {
  font-weight: 400;
  line-height: 20px;
  padding-bottom: 8px;
}

.product-detail.info .info-text {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.product-detail.info .title {
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  padding-bottom: 8px;
}

.product-detail.info .bottom-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-radius: 8px;
  margin: 15px 0px;
  gap: 8px;
}

/* =========================
   Compartilhamento/Social
   ========================= */
.product-detail.info .share {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
}

.product-detail.info .share .social {
  display: flex;
  width: 40%;
  justify-content: space-between;
}

.product-detail.info .share button {
  display: flex;
  width: 60%;
  height: 50px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: var(--color-share-btn);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  border-radius: 4px;
  border: 2px solid var(--color-share-btn-border);
  background-color: transparent;
}

.product-detail.info .share .social a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--color-share-btn-border);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.product-detail.info .share .social a i {
  color: var(--color-share-icon);
}

/* =========================
   Inputs Customizados
   ========================= */
.custom-qty-input {
  display: flex;
  align-items: center;
  background: var(--color-qty-bg);
  border-radius: 5px;
  border: 2px solid var(--color-pri);
  padding: 6px 12px;
  width: 38%;
  justify-content: center;
}

.custom-qty-input .qty-btn {
  background: var(--color-qty-bg);
  color: var(--color-pri);
  border: none;
  height: 36px;
  aspect-ratio: 38/36;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}

.custom-qty-input .qty-btn:active {
  background: var(--color-qty-btn-bg-active);
}

.custom-qty-input input.qty-input {
  width: 50px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 20px;
  font-weight: 400;
  color: var(--color-overlay);
  outline: none;
  pointer-events: none;
  padding: 0;
}

/* Responsividade */
@media (max-width: 991px) {
  .product-carousel-thumb-display {
    display: none;
  }
  .product-content {
    max-height: none;
    height: 100%;
    overflow-y: unset;
    gap: 25px;
  }
  .product-detail.info .bottom-content {
    margin: 8px 0px;
  }
}

@media (max-width: 600px) {
  .product-detail.info .share {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .product-detail.info .share .social {
    width: 100%;
    justify-content: center;
    gap: 12px;
  }
  .product-detail.info .share button {
    width: 100%;
    min-width: 0;
    font-size: 15px;
    height: 44px;
  }
  .product-detail.info .share .social a {
    width: 44px;
    height: 44px;
  }
}