/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 7 ago. 2023, 18:07:57
    Author     : Sergio
*/

/* catalogo */


.view-content{
    /*display: flex;*/
}



/* producto vista*/

.product-grid{
    border: 1px solid #f2f2f2;
    background-color: #f9f9f9;
    width: 275px;
    font-family: 'Montserrat', sans-serif;
    margin-right: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;    
}
.product-grid .image-wrapper .image-overlay img{    
    width: 260px;    
    height: 100%;    
    margin-left: 6px;
    margin-top: 6px;
    border: 1px solid #f2f2f2;    
}

.product-grid .product-info{    
    width: 260px;    
    height: 100%;    
    margin-left: 6px;
    margin-top: 6px;
    margin-bottom: 6px;    
}

.product-grid .product-info .product-name{    
    max-height: 40px;
    font-size: 18px;  
    font-family: 'Montserrat', sans-serif;        
    color: #2b2a29;
    
}

.product-grid .product-info .product-name:hover{
       color: #ef8c53;
       text-decoration: underline;
}

.product-grid .product-info a{   
    text-decoration: none;
}

.product-grid .product-info .product-description{    
    height: 40px;
    font-size: 14px;  
    font-family: 'Montserrat', sans-serif;  
    margin-bottom: 10px;
}


.product-grid .product-info .product-text{    
    height: 50px;
    font-size: 16px;        
    overflow: hidden;   
    width: 260px;    
    text-decoration: none;
    text-overflow: ellipsis;   
    color:#666;
}

.product-grid .product-info .product-price{    
    color: #ef7f1a;
    font-size: 22px;
    border-top: 3px solid #afcb05;  
    padding-top: 5px
}

.product-grid .product-info .product-button button{
    border: none;
    background-color: #afcb05;
    width: 100%;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    padding: 5px;
    letter-spacing: 1px;        
}

.product-grid .product-info .product-button button:hover{    
    background-color: #ef7f1a;         
}

/* PRODUCTO */

/* imagenes */

.standalone-img .field__item .prod-img{ 
    border: 1px solid #e6e6e6;  
    width: 100%;
    height: 100%;
    display: block;
    
}


.product .prod-img.novisible{
    display: none;
}

.product .prod-img-thumbs{
    display: flex;
    /*justify-content:space-around;*/
    margin-top: 15px;
}

.product .thumbs-img img{
    height: auto;
    width: 100px;
}

.product .thumbs-img{
    margin-right: 15px;
    border: 1px solid #e6e6e6;    
}

.product .thumbs-img.select{
    height: auto;
    width: 100px;    
    border: 1px solid #afcb05;
}