/* CUSTOM THEME STYLES */

/* Smooth Animation */

.product-card,
.feature-box,
.blog-card{
transition:all .3s ease;
}

.product-card:hover,
.feature-box:hover,
.blog-card:hover{
transform:translateY(-10px);
}

/* Gold Accent */

.gold-text{
color:#D4AF37;
}

.maroon-bg{
background:#8B0000;
}

/* Rounded Buttons */

.btn{
border-radius:50px;
}

/* Section Spacing */

.section{
padding:100px 0;
}