/**************************************************************/
/* 	Archivo: forms.css   
/* 	Creado para: https://shop.nyda.mx:443/   
/* 	Creado en: Desarrollado en: NyDa Development tool 5.1 http://www.nyda.mx   
/* 	Creado por: Durrutia   
/**************************************************************/
.shp-product-detail {
    display: flex;
    gap: 30px;
    width: 100%;
    box-sizing: border-box;
}

.shp-product-detail-image {
    flex: 0 0 50%;
    text-align: center;
}

.shp-product-detail-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.shp-product-detail-info {
    flex: 1;
}

.shp-product-detail-info h1 {
    margin-top: 0;
}

.shp-product-detail-price {
    font-size: 28px;
    font-weight: bold;
    margin: 20px 0;
}

.shp-product-detail-sku {
    margin-bottom: 10px;
}

.shp-product-detail-description {
    margin-top: 20px;
}

.shp-product-detail-stock {
    margin-top: 20px;
}

.shp-product-error,
.shp-product-not-found {
    padding: 20px;
}

@media (max-width: 768px) {

    .shp-product-detail {
        flex-direction: column;
    }

    .shp-product-detail-image {
        flex: none;
        width: 100%;
    }
}