.amps-showcase{
    margin:60px 0;
}

.amps-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.amps-header h2{
    margin:0;
    font-size:42px;
    font-weight:700;
    color:#2f335f;
    text-transform:uppercase;
}

.amps-explore{
    text-decoration:none;
    border:1px solid #d92727;
    color:#222;
    padding:12px 24px;
    border-radius:4px;
    transition:.3s;
}

.amps-explore:hover{
    background:#d92727;
    color:#fff;
}

.amps-grid{
    display:grid;
    gap:25px;
}

.amps-grid.columns-4{
    grid-template-columns:repeat(4,1fr);
}

.amps-grid.columns-5{
    grid-template-columns:repeat(5,1fr);
}

.amps-card{
    border:1px solid #d92727;
    border-radius:8px;
    overflow:hidden;
    background:#fff;
    transition:.3s;
    display:flex;
    flex-direction:column;
    height:100%;
}

.amps-card:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.amps-image{
    overflow:hidden;
}

.amps-image img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.4s;
}

.amps-card:hover .amps-image img{
    transform:scale(1.08);
}

.amps-card h3{
    font-size:20px;
    line-height:1.4;
    color:#2f335f;
    margin:15px;
    min-height:56px;
}

.amps-price{
    margin:0 15px 15px;
    font-size:18px;
}

.amps-price ins{
    color:#d92727;
    text-decoration:none;
    font-weight:700;
}

.amps-price del{
    color:#999;
}

.amps-btn{
	display:block;
	width:100%;
	text-align:center;
	padding:14px 20px;
	font-size:16px;
	font-weight:600;
	background:#e53935;
	color:#fff !important;
	border:none;
	border-radius:30px;
	text-decoration:none;
	line-height:1.2;
	transition:.3s;
	box-sizing:border-box;
}

.amps-btn:hover{
	background:#c62828;
	color:#fff !important;
}

.amps-btn:hover{
    opacity:.9;
}

.swiper{
    padding-bottom:40px;
}

.swiper-pagination-bullet-active{
    background:#d92727;
}

@media(max-width:1024px){

    .amps-grid.columns-4,
    .amps-grid.columns-5{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .amps-header{
        flex-direction:column;
        gap:15px;
    }

    .amps-header h2{
        font-size:28px;
    }

    .amps-grid.columns-4,
    .amps-grid.columns-5{
        grid-template-columns:1fr;
    }

}

.amps-price{
	text-align:center;
	margin:15px 0;
	font-size:22px;
	font-weight:600;
}

.amps-price del{
	color:#666;
	margin-right:6px;
}

.amps-price ins{
	text-decoration:none;
	color:#e53935;
}

.amps-slider{
	padding-bottom:45px;
}

.amps-slider .swiper-pagination{
	bottom:0 !important;
}

.amps-card{
	display:flex;
	flex-direction:column;
	height:100%;
}

.amps-card .amps-btn{
	margin-top:auto;
}

.amps-card{
	background:#fff;
	border:1px solid #ff4d4d;
	border-radius:8px;
	padding:15px;
}

.amps-card h3{
	text-align:center;
	font-size:18px;
	font-weight:700;
	line-height:1.4;
	min-height:60px;
	margin:15px 0;
}

.amps-image img{
	width:100%;
	height:280px;
	object-fit:cover;
	display:block;
}