/*======================================================

                PRODUCTS SECTION

======================================================*/

.products-section{

    padding:140px 0;

    background:#f5f5f7;

    overflow:hidden;

}

/*====================================

Heading

====================================*/

.products-section .section-heading{

    text-align:center;

    max-width:760px;

    margin:0 auto 80px;

}

.products-section .section-subtitle{

    display:inline-block;

    font-size:14px;

    letter-spacing:5px;

    text-transform:uppercase;

    color:#8b8b8b;

    margin-bottom:18px;

    font-weight:600;

}

.products-section h2{

    font-size:62px;

    line-height:1.12;

    font-weight:700;

    color:#111;

    margin-bottom:25px;

}

.products-section p{

    font-size:20px;

    color:#666;

    line-height:1.8;

}

/*====================================

Grid

====================================*/

.products-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/*====================================

Card

====================================*/

.product-card{

    position:relative;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    background:#fff;

    border-radius:32px;

    padding:40px;

    min-height:460px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.06);

    transition:.45s;

    transform-style:preserve-3d;

    will-change:transform;

}

/* Reflection */

.product-card::before{

    content:"";

    position:absolute;

    top:-120%;

    left:-40%;

    width:80%;

    height:250%;

    background:linear-gradient(

        rgba(255,255,255,0),

        rgba(255,255,255,.45),

        rgba(255,255,255,0)

    );

    transform:rotate(28deg);

    transition:1s;

}

.product-card:hover::before{

    left:140%;

}

/* Hover */

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:0 35px 80px rgba(0,0,0,.10);

}

/*====================================

Image

====================================*/

.product-card img{

    width:100%;

    height:260px;

    object-fit:contain;

    object-position:center;

    transition:.45s ease;

}

.product-card:hover img{

    transform:scale(1.12) rotate(-2deg);

}

/*====================================

Product Info

====================================*/

.product-info{

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    gap:20px;

    margin-top:25px;

}

.product-text{

    flex:1;

}

.product-text h4{

    font-size:30px;

    font-weight:700;

    color:#111;

    line-height:1.25;

    height:76px;          /* Same height for all titles */

    display:flex;

    align-items:flex-start;

    margin-bottom:12px;

}

.product-text p{

    font-size:15px;

    color:#777;

    line-height:1.6;

    height:48px;          /* Same height for description */

    margin:0;

}

/*====================================

Arrow

====================================*/

.product-arrow{

    width:52px;

    height:52px;

    border-radius:50%;

    background:#f3f3f3;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#111;

    transition:.35s;

    flex-shrink:0;

}

.product-card:hover .product-arrow{

    background:#000;

    color:#fff;

    transform:translateX(6px);

}

/*====================================

Button

====================================*/

.products-btn{

    text-align:center;

    margin-top:70px;

}
.products-section{
    padding:120px 0 80px;
}
.products-btn .primary-btn{

    width:260px;

    height:62px;

    border-radius:999px;

    position:relative;

    overflow:hidden;

}

/* Shine */

.products-btn .primary-btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:70%;

    height:100%;

    background:linear-gradient(

        transparent,

        rgba(255,255,255,.4),

        transparent

    );

    transform:skewX(-25deg);

    transition:.8s;

}

.products-btn .primary-btn:hover::before{

    left:170%;

}

/*====================================

Responsive

====================================*/

@media(max-width:1200px){

.products-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.products-grid{

grid-template-columns:1fr;

}

.products-section h2{

font-size:42px;

}

.product-card{

min-height:390px;

}

}