/*================================================================
    BREAKPOINT 1200px
    HEADER
================================================================*/

@media (max-width:1200px){

    .market-header{

        padding:18px 0;

    }

    .market-header .container{

        display:flex;

        align-items:center;

        justify-content:space-between;

        gap:30px;

        min-height:90px;

    }

    /*============================================================
        LOGOTIPO
    ============================================================*/

    .market-logo{

        flex:0 0 180px;

    }

    .market-logo img{

        width:auto;

        height:75px;

    }

    /*============================================================
        BUSCADOR
    ============================================================*/

    .market-search{

        flex:1;

        max-width:700px;

    }

    .market-search input{

        height:54px;

        font-size:15px;

    }

    .market-search button{

        width:56px;

        height:54px;

    }

    /*============================================================
        ACCIONES
    ============================================================*/

    .market-actions{

        flex:0 0 180px;

        justify-content:flex-end;

        gap:14px;

    }

    .market-actions a{

        width:50px;

        height:50px;

        font-size:20px;

    }

}

/*================================================================
    BREAKPOINT 992px
    HEADER
================================================================*/

@media (max-width:992px){

    .market-header{

        padding:16px 0;

    }

    .market-header .container{

        display:flex;

        align-items:center;

        justify-content:space-between;

        gap:24px;

        min-height:85px;

    }

    /*============================================================
        LOGOTIPO
    ============================================================*/

    .market-logo{

        flex:0 0 160px;

    }

    .market-logo img{

        width:auto;

        height:68px;

    }

    /*============================================================
        BUSCADOR
    ============================================================*/

    .market-search{

        flex:1;

        max-width:580px;

    }

    .market-search input{

        height:50px;

        font-size:14px;

        padding:0 20px;

    }

    .market-search button{

        width:52px;

        height:50px;

        font-size:18px;

    }

    /*============================================================
        ACCIONES
    ============================================================*/

    .market-actions{

        flex:0 0 160px;

        justify-content:flex-end;

        gap:12px;

    }

    .market-actions a{

        width:46px;

        height:46px;

        font-size:18px;

    }

}

/*================================================================
    BREAKPOINT 768px
================================================================*/

/*===============================================================
    HEADER
===============================================================*/

@media (max-width:768px){

    .market-header{

        padding:18px 0;

    }

    .market-header .container{

        display:grid;

        grid-template-columns:65% 35%;

        grid-template-areas:
            "logo logo"
            "search actions";

        align-items:center;

        column-gap:10px;

        row-gap:15px;

    }

    /*-----------------------------------------------------------
        LOGOTIPO
    -----------------------------------------------------------*/

    .market-logo{

        grid-area:logo;

        display:flex;

        justify-content:center;

        align-items:center;

    }

    .market-logo img{

        width:auto;

        height:72px;

    }

    /*-----------------------------------------------------------
        BUSCADOR
    -----------------------------------------------------------*/

    .market-search{

        grid-area:search;

        width:95%;

        max-width:100%;
        
    }

    .market-search form{

        display:flex;

        width:100%;

    }

    .market-search input{

        flex:1;

        min-width:0;

        height:50px;

        padding:0 18px;

        font-size:14px;

    }

    .market-search button{

        width:52px;

        height:50px;

        font-size:18px;

        flex-shrink:0;

    }

    /*-----------------------------------------------------------
        ACCIONES DEL USUARIO
    -----------------------------------------------------------*/

    .market-actions{

        grid-area:actions;

        display:flex;

        justify-content:flex-end;

        align-items:center;

        gap:14px;

    }

    .market-actions a{

        width:40px;

        height:40px;

        display:flex;

        justify-content:center;

        align-items:center;

        font-size:18px;

        flex-shrink:0;

    }

}

/*================================================================
    BREAKPOINT 576px
================================================================*/

/*===============================================================
    HEADER
===============================================================*/

@media (max-width:576px){

    .market-header{

        padding:16px 0;

    }

    .market-header .container{

        display:grid;

        grid-template-columns:65% 35%;

        grid-template-areas:
            "logo logo"
            "search actions";

        align-items:center;

        column-gap:10px;

        row-gap:15px;

    }

    /*-----------------------------------------------------------
        LOGOTIPO
    -----------------------------------------------------------*/

    .market-logo{

        grid-area:logo;

        display:flex;

        justify-content:center;

        align-items:center;

    }

    .market-logo img{

        width:auto;

        height:68px;

    }

    /*-----------------------------------------------------------
        BUSCADOR
    -----------------------------------------------------------*/

    .market-search{

        grid-area:search;

        width:95%;

        max-width:100%;

    }

    .market-search form{

        display:flex;

        width:100%;

    }

    .market-search input{

        flex:1;

        min-width:0;

        height:48px;

        padding:0 16px;

        font-size:14px;

    }

    .market-search button{

        width:50px;

        height:48px;

        font-size:17px;

        flex-shrink:0;

    }

    /*-----------------------------------------------------------
        ACCIONES DEL USUARIO
    -----------------------------------------------------------*/

    .market-actions{

        grid-area:actions;

        display:flex;

        justify-content:flex-end;

        align-items:center;

        gap:12px;

    }

    .market-actions a{

        width:38px;

        height:38px;

        display:flex;

        justify-content:center;

        align-items:center;

        font-size:17px;

        flex-shrink:0;

    }

}

/*================================================================
    BREAKPOINT 420px
================================================================*/

/*===============================================================
    HEADER
===============================================================*/

@media (max-width:420px){

    .market-header{

        padding:14px 0;

    }

    .market-header .container{

        display:grid;

        grid-template-columns:65% 35%;

        grid-template-areas:
            "logo logo"
            "search actions";

        align-items:center;

        column-gap:8px;

        row-gap:14px;

    }

    /*-----------------------------------------------------------
        LOGOTIPO
    -----------------------------------------------------------*/

    .market-logo{

        grid-area:logo;

        display:flex;

        justify-content:center;

        align-items:center;

    }

    .market-logo img{

        width:auto;

        height:64px;

    }

    /*-----------------------------------------------------------
        BUSCADOR
    -----------------------------------------------------------*/

    .market-search{

        grid-area:search;

        width:95%;

        max-width:100%;

    }

    .market-search form{

        display:flex;

        width:100%;

    }

    .market-search input{

        flex:1;

        min-width:0;

        height:46px;

        padding:0 14px;

        font-size:12px;

    }

    .market-search button{

        width:46px;

        height:46px;

        font-size:16px;

        flex-shrink:0;

    }

    /*-----------------------------------------------------------
        ACCIONES DEL USUARIO
    -----------------------------------------------------------*/

    .market-actions{

        grid-area:actions;

        display:flex;

        justify-content:flex-end;

        align-items:center;

        gap:10px;

    }

    .market-actions a{

        width:36px;

        height:36px;

        display:flex;

        justify-content:center;

        align-items:center;

        font-size:16px;

        flex-shrink:0;

    }

}

/*================================================================
    BREAKPOINT 992px
================================================================*/

/*===============================================================
    HERO MARKETPLACE
===============================================================*/

@media (max-width:992px){

    .market-hero{

        min-height:620px;

        background-position:center right;

    }

    /*-----------------------------------------------------------
        CONTENEDOR
    -----------------------------------------------------------*/

    .market-hero .container{

        min-height:620px;

        align-items:center;

    }

    /*-----------------------------------------------------------
        CONTENIDO
    -----------------------------------------------------------*/

    .hero-content{

        max-width:600px;

        padding:50px 0 50px 30px;

    }

    /*-----------------------------------------------------------
        BADGE
    -----------------------------------------------------------*/

    .hero-badge{

        padding:10px 22px;

        font-size:12px;

        margin-bottom:2px;

    }

    /*-----------------------------------------------------------
        TITULO
    -----------------------------------------------------------*/

    .hero-content h1{

        font-size:58px;

        line-height:1.10;

        margin-bottom:10px;

    }

    /*-----------------------------------------------------------
        DESCRIPCION
    -----------------------------------------------------------*/

    .hero-content p{

        max-width:520px;

        font-size:18px;

        line-height:1.6;

        margin-bottom:15px;

    }

    /*-----------------------------------------------------------
        BOTONES
    -----------------------------------------------------------*/

    .hero-buttons{

        gap:14px;

    }

    .btn-primary,

    .btn-secondary{

        padding:16px 30px;

        font-size:15px;

    }

}

/*================================================================
    BREAKPOINT 768px
================================================================*/

/*===============================================================
    HERO MARKETPLACE
===============================================================*/

@media (max-width:768px){

    .market-hero{

        min-height:560px;

        background-position:center;

    }

    /*-----------------------------------------------------------
        CONTENEDOR
    -----------------------------------------------------------*/

    .market-hero .container{

        min-height:560px;

        align-items:center;

    }

    /*-----------------------------------------------------------
        CONTENIDO
    -----------------------------------------------------------*/

    .hero-content{

        max-width:520px;

        padding:45px 0 45px 25px;

    }

    /*-----------------------------------------------------------
        BADGE
    -----------------------------------------------------------*/

    .hero-badge{

        padding:9px 20px;

        font-size:12px;

        letter-spacing:1.5px;

        margin-bottom:2px;

    }

    /*-----------------------------------------------------------
        TITULO
    -----------------------------------------------------------*/

    .hero-content h1{

        font-size:48px;

        line-height:1.10;

        margin-bottom:10px;

    }

    /*-----------------------------------------------------------
        DESCRIPCION
    -----------------------------------------------------------*/

    .hero-content p{

        max-width:460px;

        font-size:17px;

        line-height:1.6;

        margin-bottom:15px;

    }

    /*-----------------------------------------------------------
        BOTONES
    -----------------------------------------------------------*/

    .hero-buttons{

        gap:12px;

    }

    .btn-primary,

    .btn-secondary{

        padding:15px 28px;

        font-size:14px;

    }

}

/*================================================================
    BREAKPOINT 576px
================================================================*/

/*===============================================================
    HERO MARKETPLACE
===============================================================*/

@media (max-width:576px){

    .market-hero{

        min-height:500px;

        background-position:center;

    }

    /*-----------------------------------------------------------
        CONTENEDOR
    -----------------------------------------------------------*/

    .market-hero .container{

        min-height:500px;

        align-items:center;

    }

    /*-----------------------------------------------------------
        CONTENIDO
    -----------------------------------------------------------*/

    .hero-content{

        max-width:460px;

        padding:40px 0 40px 20px;

    }

    /*-----------------------------------------------------------
        BADGE
    -----------------------------------------------------------*/

    .hero-badge{

        padding:8px 18px;

        font-size:11px;

        letter-spacing:1.2px;

        margin-bottom:2px;

    }

    /*-----------------------------------------------------------
        TITULO
    -----------------------------------------------------------*/

    .hero-content h1{

        font-size:40px;

        line-height:1.12;

        margin-bottom:10px;

    }

    /*-----------------------------------------------------------
        DESCRIPCION
    -----------------------------------------------------------*/

    .hero-content p{

        max-width:420px;

        font-size:16px;

        line-height:1.6;

        margin-bottom:15px;

    }

    /*-----------------------------------------------------------
        BOTONES
    -----------------------------------------------------------*/

    .hero-buttons{

        gap:10px;

    }

    .btn-primary,

    .btn-secondary{

        padding:14px 24px;

        font-size:14px;

    }

}

/*================================================================
    BREAKPOINT 420px
================================================================*/

/*===============================================================
    HERO MARKETPLACE
===============================================================*/

@media (max-width:420px){

    .market-hero{

        min-height:460px;

        background-position:center;

    }

    /*-----------------------------------------------------------
        CONTENEDOR
    -----------------------------------------------------------*/

    .market-hero .container{

        min-height:460px;

        align-items:center;

    }

    /*-----------------------------------------------------------
        CONTENIDO
    -----------------------------------------------------------*/

    .hero-content{

        max-width:100%;

        padding:35px 20px;

    }

    /*-----------------------------------------------------------
        BADGE
    -----------------------------------------------------------*/

    .hero-badge{

        padding:8px 16px;

        font-size:10px;

        letter-spacing:1px;

        margin-bottom:2px;

    }

    /*-----------------------------------------------------------
        TITULO
    -----------------------------------------------------------*/

    .hero-content h1{

        font-size:34px;

        line-height:1.15;

        margin-bottom:5px;

    }

    /*-----------------------------------------------------------
        DESCRIPCION
    -----------------------------------------------------------*/

    .hero-content p{

        max-width:100%;

        font-size:15px;

        line-height:1.6;

        margin-bottom:18px;

    }

    /*-----------------------------------------------------------
        BOTONES
    -----------------------------------------------------------*/

    .hero-buttons{

        display:flex;

        flex-direction:column;

        align-items:flex-start;

        gap:10px;

        width:100%;

    }

    .btn-primary,

    .btn-secondary{

        width:100%;

        justify-content:center;

        padding:14px 22px;

        font-size:14px;

    }

}

/*================================================================
    BREAKPOINT 992px
================================================================*/

/*===============================================================
    EXPLORA EL MARKETPLACE
===============================================================*/

@media (max-width:992px){

    .market-categories{

        padding:90px 0;

    }

    /*-----------------------------------------------------------
        ENCABEZADO
    -----------------------------------------------------------*/

    .categories-header{

        max-width:700px;

        margin:0 auto 60px;

    }

    .section-badge{

        padding:10px 24px;

        font-size:12px;

    }

    .categories-header h2{

        font-size:42px;

        margin-bottom:18px;

    }

    .categories-header p{

        max-width:620px;

        font-size:18px;

        line-height:1.7;

    }

    /*-----------------------------------------------------------
        GRID
    -----------------------------------------------------------*/

    .categories-grid{

        grid-template-columns:repeat(4,1fr);

        gap:24px;

    }

    /*-----------------------------------------------------------
        TARJETAS
    -----------------------------------------------------------*/

    .category-card{

        padding:38px 24px;

    }

    .category-card i{

        font-size:46px;

        margin-bottom:20px;

    }

    .category-card h3{

        font-size:20px;

    }

    .category-card span{

        font-size:15px;

    }

}

/*================================================================
    BREAKPOINT 768px
================================================================*/

/*===============================================================
    EXPLORA EL MARKETPLACE
===============================================================*/

@media (max-width:768px){

    .market-categories{

        padding:80px 0;

    }

    /*-----------------------------------------------------------
        ENCABEZADO
    -----------------------------------------------------------*/

    .categories-header{

        max-width:620px;

        margin:0 auto 50px;

    }

    .section-badge{

        padding:9px 22px;

        font-size:12px;

        letter-spacing:1.5px;

        margin-bottom:16px;

    }

    .categories-header h2{

        font-size:36px;

        line-height:1.2;

        margin-bottom:16px;

    }

    .categories-header p{

        max-width:560px;

        font-size:17px;

        line-height:1.6;

    }

    /*-----------------------------------------------------------
        GRID
    -----------------------------------------------------------*/

    .categories-grid{

        grid-template-columns:repeat(2,1fr);

        gap:24px;

    }

    /*-----------------------------------------------------------
        TARJETAS
    -----------------------------------------------------------*/

    .category-card{

        padding:35px 25px;

        border-radius:20px;

    }

    /*-----------------------------------------------------------
        ICONOS
    -----------------------------------------------------------*/

    .category-card i{

        font-size:44px;

        margin-bottom:18px;

    }

    /*-----------------------------------------------------------
        TITULO
    -----------------------------------------------------------*/

    .category-card h3{

        font-size:20px;

        margin-bottom:10px;

    }

    /*-----------------------------------------------------------
        DESCRIPCION
    -----------------------------------------------------------*/

    .category-card span{

        font-size:15px;

        line-height:1.5;

    }

}

/*================================================================
    BREAKPOINT 576px
================================================================*/

/*===============================================================
    EXPLORA EL MARKETPLACE
===============================================================*/

@media (max-width:576px){

    .market-categories{

        padding:70px 0;

    }

    /*-----------------------------------------------------------
        ENCABEZADO
    -----------------------------------------------------------*/

    .categories-header{

        max-width:500px;

        margin:0 auto 45px;

    }

    .section-badge{

        padding:8px 20px;

        font-size:11px;

        letter-spacing:1.2px;

        margin-bottom:14px;

    }

    .categories-header h2{

        font-size:32px;

        line-height:1.2;

        margin-bottom:14px;

    }

    .categories-header p{

        max-width:480px;

        font-size:16px;

        line-height:1.6;

    }

    /*-----------------------------------------------------------
        GRID
    -----------------------------------------------------------*/

    .categories-grid{

        grid-template-columns:repeat(2,1fr);

        gap:18px;

    }

    /*-----------------------------------------------------------
        TARJETAS
    -----------------------------------------------------------*/

    .category-card{

        padding:30px 20px;

        border-radius:18px;

    }

    /*-----------------------------------------------------------
        ICONOS
    -----------------------------------------------------------*/

    .category-card i{

        font-size:40px;

        margin-bottom:16px;

    }

    /*-----------------------------------------------------------
        TITULO
    -----------------------------------------------------------*/

    .category-card h3{

        font-size:18px;

        margin-bottom:8px;

    }

    /*-----------------------------------------------------------
        DESCRIPCION
    -----------------------------------------------------------*/

    .category-card span{

        font-size:14px;

        line-height:1.5;

    }

}

/*================================================================
    BREAKPOINT 420px
================================================================*/

/*===============================================================
    EXPLORA EL MARKETPLACE
===============================================================*/

@media (max-width:420px){

    .market-categories{

        padding:60px 0;

    }

    /*-----------------------------------------------------------
        ENCABEZADO
    -----------------------------------------------------------*/

    .categories-header{

        max-width:100%;

        margin:0 auto 40px;

    }

    .section-badge{

        padding:8px 18px;

        font-size:10px;

        letter-spacing:1px;

        margin-bottom:12px;

    }

    .categories-header h2{

        font-size:28px;

        line-height:1.2;

        margin-bottom:12px;

    }

    .categories-header p{

        max-width:100%;

        font-size:15px;

        line-height:1.6;

    }

    /*-----------------------------------------------------------
        GRID
    -----------------------------------------------------------*/

    .categories-grid{

        grid-template-columns:1fr;

        gap:16px;

    }

    /*-----------------------------------------------------------
        TARJETAS
    -----------------------------------------------------------*/

    .category-card{

        padding:28px 20px;

        border-radius:18px;

    }

    /*-----------------------------------------------------------
        ICONOS
    -----------------------------------------------------------*/

    .category-card i{

        font-size:38px;

        margin-bottom:14px;

    }

    /*-----------------------------------------------------------
        TITULO
    -----------------------------------------------------------*/

    .category-card h3{

        font-size:18px;

        margin-bottom:8px;

    }

    /*-----------------------------------------------------------
        DESCRIPCION
    -----------------------------------------------------------*/

    .category-card span{

        font-size:14px;

        line-height:1.5;

    }

}

/*================================================================
    BREAKPOINT 992px
================================================================*/

/*===============================================================
    PRODUCTOS DESTACADOS
===============================================================*/

@media (max-width:992px){

    .featured-products{

        padding:90px 0;

    }

    /*-----------------------------------------------------------
        ENCABEZADO
    -----------------------------------------------------------*/

    .products-header{

        gap:30px;

        margin-bottom:60px;

    }

    .products-header h2{

        font-size:42px;

    }

    .products-header p{

        font-size:18px;

        line-height:1.7;

    }

    .view-all{

        padding:15px 24px;

        font-size:15px;

    }

    /*-----------------------------------------------------------
        GRID
    -----------------------------------------------------------*/

    .products-grid{

        grid-template-columns:repeat(4,1fr);

        gap:24px;

    }

    /*-----------------------------------------------------------
        TARJETAS
    -----------------------------------------------------------*/

    .product-card{

        border-radius:22px;

    }

    .product-image img{

        height:240px;

        object-fit:cover;

    }

    .product-info{

        padding:24px;

    }

    .product-info h3{

        font-size:20px;

    }

    .product-price{

        font-size:28px;

    }

    .product-button{

        padding:15px;

        font-size:15px;

    }

}

/*================================================================
    BREAKPOINT 768px
================================================================*/

/*===============================================================
    PRODUCTOS DESTACADOS
===============================================================*/

@media (max-width:768px){

    .featured-products{

        padding:80px 0;

    }

    /*-----------------------------------------------------------
        ENCABEZADO
    -----------------------------------------------------------*/

    .products-header{

        flex-direction:column;

        align-items:flex-start;

        gap:20px;

        margin-bottom:50px;

    }

    .products-header>div{

        max-width:100%;

    }

    .products-header h2{

        font-size:36px;

        margin:16px 0;

    }

    .products-header p{

        font-size:17px;

        line-height:1.6;

    }

    .view-all{

        padding:14px 22px;

        font-size:14px;

    }

    /*-----------------------------------------------------------
        GRID
    -----------------------------------------------------------*/

    .products-grid{

        display:grid;

        grid-template-columns:repeat(2,1fr);

        gap:24px;

    }

    /*-----------------------------------------------------------
        TARJETAS
    -----------------------------------------------------------*/

    .product-card{

        border-radius:20px;

    }

    .product-image img{

        height:220px;

        object-fit:cover;

    }

    .product-info{

        padding:22px;

    }

    .product-info small{

        font-size:13px;

    }

    .product-info h3{

        font-size:20px;

        line-height:1.3;

        margin:10px 0;

    }

    .product-rating{

        margin-bottom:12px;

    }

    .product-price{

        font-size:26px;

        margin-bottom:14px;

    }

    .product-purpose{

        font-size:14px;

        margin-bottom:18px;

    }

    .product-button{

        width:100%;

        justify-content:center;

        padding:14px;

        font-size:14px;

    }

}

/*================================================================
    BREAKPOINT 576px
================================================================*/

/*===============================================================
    PRODUCTOS DESTACADOS
===============================================================*/

@media (max-width:576px){

    .featured-products{

        padding:70px 0;

    }

    /*-----------------------------------------------------------
        ENCABEZADO
    -----------------------------------------------------------*/

    .products-header{

        flex-direction:column;

        align-items:flex-start;

        gap:18px;

        margin-bottom:45px;

    }

    .products-header>div{

        max-width:100%;

    }

    .products-header h2{

        font-size:32px;

        margin:14px 0;

    }

    .products-header p{

        font-size:16px;

        line-height:1.6;

    }

    .view-all{

        padding:13px 20px;

        font-size:14px;

    }

    /*-----------------------------------------------------------
        GRID
    -----------------------------------------------------------*/

    .products-grid{

        display:grid;

        grid-template-columns:repeat(2,1fr);

        gap:20px;

    }

    /*-----------------------------------------------------------
        TARJETA PRODUCTO
    -----------------------------------------------------------*/

    .product-card{

        border-radius:18px;

    }

    /*-----------------------------------------------------------
        IMAGEN
    -----------------------------------------------------------*/

    .product-image img{

        height:200px;

        object-fit:cover;

    }

    /*-----------------------------------------------------------
        INFORMACIÓN
    -----------------------------------------------------------*/

    .product-info{

        padding:20px;

    }

    .product-info small{

        font-size:12px;

    }

    .product-info h3{

        font-size:18px;

        line-height:1.3;

        margin:10px 0;

    }

    /*-----------------------------------------------------------
        CALIFICACIÓN
    -----------------------------------------------------------*/

    .product-rating{

        margin-bottom:10px;

    }

    /*-----------------------------------------------------------
        PRECIO
    -----------------------------------------------------------*/

    .product-price{

        font-size:24px;

        margin-bottom:12px;

    }

    /*-----------------------------------------------------------
        PROPÓSITO SOCIAL
    -----------------------------------------------------------*/

    .product-purpose{

        font-size:13px;

        line-height:1.5;

        margin-bottom:16px;

    }

    /*-----------------------------------------------------------
        BOTÓN
    -----------------------------------------------------------*/

    .product-button{

        width:100%;

        justify-content:center;

        padding:13px;

        font-size:13px;

    }

}

/*================================================================
    BREAKPOINT 420px
================================================================*/

/*===============================================================
    PRODUCTOS DESTACADOS
===============================================================*/

@media (max-width:420px){

    .featured-products{

        padding:60px 0;

    }

    /*-----------------------------------------------------------
        ENCABEZADO
    -----------------------------------------------------------*/

    .products-header{

        flex-direction:column;

        align-items:flex-start;

        gap:16px;

        margin-bottom:40px;

    }

    .products-header>div{

        max-width:100%;

    }

    .products-header h2{

        font-size:28px;

        line-height:1.2;

        margin:12px 0;

    }

    .products-header p{

        font-size:15px;

        line-height:1.6;

    }

    .view-all{

        width:100%;

        justify-content:center;

        padding:12px 18px;

        font-size:13px;

    }

    /*-----------------------------------------------------------
        GRID
    -----------------------------------------------------------*/

    .products-grid{

        display:grid;

        grid-template-columns:1fr;

        gap:18px;

    }

    /*-----------------------------------------------------------
        TARJETA PRODUCTO
    -----------------------------------------------------------*/

    .product-card{

        border-radius:18px;

    }

    /*-----------------------------------------------------------
        IMAGEN
    -----------------------------------------------------------*/

    .product-image img{

        height:220px;

        object-fit:cover;

    }

    /*-----------------------------------------------------------
        INFORMACIÓN
    -----------------------------------------------------------*/

    .product-info{

        padding:20px;

    }

    .product-info small{

        font-size:12px;

    }

    .product-info h3{

        font-size:20px;

        line-height:1.3;

        margin:10px 0;

    }

    /*-----------------------------------------------------------
        CALIFICACIÓN
    -----------------------------------------------------------*/

    .product-rating{

        margin-bottom:10px;

    }

    /*-----------------------------------------------------------
        PRECIO
    -----------------------------------------------------------*/

    .product-price{

        font-size:26px;

        margin-bottom:12px;

    }

    /*-----------------------------------------------------------
        PROPÓSITO SOCIAL
    -----------------------------------------------------------*/

    .product-purpose{

        font-size:14px;

        line-height:1.5;

        margin-bottom:16px;

    }

    /*-----------------------------------------------------------
        BOTÓN
    -----------------------------------------------------------*/

    .product-button{

        width:100%;

        justify-content:center;

        padding:14px;

        font-size:14px;

    }

}


