/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Description: Child Theme para Astra
Author: Andrés Ramírez
Template: astra
Version: 1.0.0
*/
/* Contenedor general */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Contenedor general */
.custom-single-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 20px;
}

/* Info */
.product-summary {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-title {
  font-size: 2rem;
  font-weight: 700;
}

.product-price {
  font-size: 1.5rem;
  color: #00796b;
  font-weight: bold;
}

.product-cart .single_add_to_cart_button {
  background: #00796b;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  transition: 0.3s ease;
}

.product-cart .single_add_to_cart_button:hover {
  background: #004d40;
}

/* Tabs */
.product-tabs {
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Productos relacionados */
.related-products {
  margin-top: 80px;
  padding: 40px 20px;
  background: #f9f9f9;
  border-radius: 20px;
}
.related-products h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
}
