/*
Theme Name: Kadence Child Theme - Catálogo Musical
Theme URI: https://www.kadencewp.com/
Description: Child theme para Kadence WP - Catálogo de Álbumes Musicales
Author: Tu Nombre
Author URI: https://tusitio.com
Template: kadence
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kadence-child
*/

/* 
 * No es necesario importar el style.css del tema padre
 * ya que lo haremos mediante functions.php
 */

/* ========================================
   ESTILOS PERSONALIZADOS PARA BOTONES
   ======================================== */

/* Contenedor de botones personalizados */
.custom-product-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

/* Botón de Descarga de Disco (Soundiiz) */
.btn-download-album {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff !important;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-download-album:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    color: #ffffff !important;
}

.btn-download-album::before {
    content: "🎵";
    margin-right: 10px;
    font-size: 20px;
}

/* Botón Add to Cart personalizado */
.custom-add-to-cart-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.custom-add-to-cart-wrapper .quantity {
    max-width: 80px;
}

.custom-add-to-cart-wrapper .single_add_to_cart_button {
    flex: 1;
    padding: 15px 30px;
    background: #27ae60;
    border: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.custom-add-to-cart-wrapper .single_add_to_cart_button:hover {
    background: #229954;
    transform: translateY(-2px);
}

/* Mensaje cuando no hay stock físico */
.no-physical-stock-message {
    padding: 15px;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    color: #2c3e50;
    font-size: 14px;
    border-radius: 4px;
    margin: 15px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-product-buttons {
        gap: 10px;
    }
    
    .btn-download-album,
    .custom-add-to-cart-wrapper .single_add_to_cart_button {
        padding: 12px 20px;
        font-size: 14px;
    }
}
