/* css/producto-detalle.css */

.product-detail-page {
    padding: 40px 0;
}

.breadcrumb {
    margin-bottom: 30px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.product-gallery {
    background: var(--bg-secondary);
    border-radius: 15px;
    padding: 20px;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.product-info h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.product-category {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1rem;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.product-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.btn-add-cart {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-add-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(216, 27, 96, 0.3); 
}

.loading-spinner {
    text-align: center;
    padding: 60px;
    color: var(--text-light);
}

.loading-spinner i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

@media (max-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-info h1 {
        font-size: 1.8rem;
    }
}
.talla-selector {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
    border-left: 3px solid #e83083;
}

.talla-selector label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
}

.talla-selector label i {
    color: #e83083;
    margin-right: 5px;
}

.talla-selector select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.talla-selector select:focus {
    outline: none;
    border-color: #e83083;
    box-shadow: 0 0 0 2px rgba(232, 48, 131, 0.1);
}