.quick-view-content {
  background: #fff;
  max-width: 900px;
  margin: 5% auto;
  padding: 30px;
  position: relative;
  border-radius: 6px;
}

.quick-view-flex {
  display: flex;
  gap: 30px;
}

.qv-image img {
  max-width: 280px;
  height: auto;
}

.qv-summary {
  flex: 1;
}

.qv-summary h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.qv-summary .description,
.full-description {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
}

.variations {
  margin-bottom: 0;
}

.single_variation_wrap {
  margin-top: 10px;
}

.woocommerce-variation-price {
  font-weight: bold;
  font-size: 22px;
  margin: 10px 0;
}

.qv-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.qv-actions .qty {
  width: 70px;
}


/* Chrome, Edge, Safari */

.qv-actions .qty input[type=number]::-webkit-inner-spin-button,

.qv-actions .qty input[type=number]::-webkit-outer-spin-button {
  opacity: 1 !important; /* sempre visível */
  -webkit-appearance: auto !important;
  margin: 0;
	
}

/* Firefox */
.qv-actions .qty input[type=number] {
  -moz-appearance: number-input;
}




.single_add_to_cart_button {
  background: #d9534f;
  color: #fff;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
}

.view-full {
  display: inline-block;
  margin-top: 15px;
  background: #f1c40f;
  color: #000;
  padding: 8px 16px;
  font-weight: bold;
  text-decoration: none;
}

.price {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

.price.range-price-hidden {
  display: none;
}

.range-price-hidden {
  display: none;
}



.quick-view-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  line-height: 1;
  z-index: 10;
}

.quick-view-close:hover {
  color: #d9534f !important;
}


@media (max-width: 768px) {
  
  .quick-view-content {
  padding: 25px;
  max-width: 75%;
  margin: 15% 10px;
  border-radius: 10px;
}

  .quick-view-flex {
    flex-direction: column;
    align-items: center;
  }

  .qv-image img {
    max-width: 100%;
    height: auto;
  }

  .qv-summary {
    width: 100%;
    text-align: center;
  }

  .qv-actions {
    flex-direction: column;
  }

  .qv-actions .qty {
    width: 100px;
    margin-bottom: 10px;
  }

  .single_add_to_cart_button {
    width: 100%;
    font-size: 12px;
    padding: 12px;
  }

  .view-full {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    font-size: 15px;
  }

  .variations {
    width: 100%;
  }

  .variations select {
    width: 100%;
  }

  .woocommerce-variation-price {
    font-size: 20px;
  }
}
