.amy-products-section{
    max-width:1400px;
    margin:0 auto;
}

.amy-products-header{
    margin-bottom:40px;
}

.amy-products-heading span{
    display:block;
    color:#c5a46d;
    font-size:12px;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:14px;
}

.amy-heading-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.amy-products-heading h2{
    margin:0;
    font-size:52px;
    font-weight:300;
    letter-spacing:2px;
    line-height:1;
}

.amy-products-heading p{
    margin-top:16px;
    color:#777;
    max-width:550px;
    line-height:1.8;
    font-size:15px;
}

.amy-view-all-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 28px;

    background:#c5a46d;
    color:#fff;

    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;

    border-radius:4px;

    transition:.3s ease;
    white-space:nowrap;
}

.amy-view-all-link:hover{
    background:#b18f57;
    color:#fff;
}

.amy-products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.amy-product-card{
    background:transparent;
}

.amy-product-image{
    display:block;
    overflow:hidden;
    border-radius:12px;
}

.amy-product-image img{
    width:100%;
    height:400px;
    object-fit:cover;
    display:block;
    transition:.4s ease;
}

.amy-product-card:hover img{
    transform:scale(1.05);
}

.amy-product-info{
    padding-top:16px;
}

.amy-product-info h3{
    margin:0 0 8px;
    font-size:17px;
    font-weight:500;
    letter-spacing:1px;
    line-height:1.4;
}

.amy-product-info h3 a{
    text-decoration:none;
    color:#111;
}

.amy-product-price{
    color:#666;
    font-size:15px;
    margin-bottom:10px;
}

.amy-view-product{
    text-decoration:none;
    color:#111;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1px;
    transition:.3s;
}

.amy-view-product:hover{
    color:#c5a46d;
}

@media(max-width:1024px){

    .amy-products-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .amy-product-image img{
        height:300px;
    }

    .amy-products-heading h2{
        font-size:40px;
    }
}

@media(max-width:768px){

    .amy-products-header{
        margin-bottom:25px;
    }

    .amy-heading-row{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .amy-products-heading span{
        font-size:11px;
        letter-spacing:2px;
    }

    .amy-products-heading h2{
        font-size:30px;
        line-height:1.2;
        letter-spacing:1px;
    }

    .amy-products-heading p{
        margin-top:10px;
        font-size:13px;
        line-height:1.7;
    }

    .amy-products-grid{
        grid-template-columns:repeat(2,1fr);
        gap:18px 12px;
    }

    .amy-product-image img{
        height:220px;
    }

    .amy-product-info{
        padding-top:10px;
    }

    .amy-product-info h3{
        font-size:13px;
        margin-bottom:4px;
    }

    .amy-product-price{
        font-size:13px;
        margin-bottom:6px;
    }

    .amy-view-product{
        font-size:11px;
    }

    .amy-view-all-link{
        width:100%;
        justify-content:center;
        padding:12px;
        font-size:12px;
    }
}
