/* /css/product-detail-style.css */

.product-info .price {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.product-info .old-price {
    font-size: 1.2rem;
    color: #6c757d;
    margin-left: 10px;
}

.product-info .description ul {
    padding-left: 20px;
}

.nav-tabs .nav-link {
    font-weight: 500;
}

/* --- Estilos para Botones de Compartir en Redes Sociales --- */
.social-share-buttons .share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Círculos perfectos */
    color: #ffffff !important; /* Texto/Icono en blanco */
    text-decoration: none;
    font-size: 20px;
    margin-right: 8px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-share-buttons .share-btn:hover {
    transform: translateY(-3px); /* Efecto de elevación */
    opacity: 0.9;
}

/* Colores de cada marca */
.share-btn.facebook  { background-color: #1877F2; }
.share-btn.twitter   { background-color: #000000; }
.share-btn.whatsapp  { background-color: #25D366; }
.share-btn.pinterest { background-color: #E60023; }

