body {
    background-color: #f5f5f5;
    font-family: "Segoe UI", tahoma, sans-serif;
}

/* Category Box */
.category-box {
    transition: 0.2s;
}
.category-box:hover {
    background-color: #ffefe5;
    transform: translateY(-3px);
}

/* Product Card */
.product-card {
    border-radius: 10px;
    overflow: hidden;
    transition: .2s ease;
}
.product-card:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.card-title {
    font-size: 15px;
    line-height: 1.3em;
}

/* Navbar */
.navbar {
    background-color: #ff5722 !important;
}
.navbar-brand img {
    width: 38px;
    height: 38px;
}

/* Search box */
.search-box input {
    border-radius: 20px 0 0 20px;
}
.search-box button {
    border-radius: 0 20px 20px 0;
}
