#hmenu li a {
    display: block;
    padding: 0 10px;  
    transition: all 0.3s ease;
}

#hmenu li a:hover {
    font-weight: bold;
    color: black;   
    background-color:aqua;
    border-radius: 5px;
}

.categories li {
    transition: 0.3s;
}

.categories li:hover {
    background-color: #cfc6c6; 
    transform: translateX(5px);
}

.product_box {
    transition: all 0.3s ease;
}

.product_box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.pro_img img {
    transition: 0.3s;
}

.pro_img img:hover {
    transform: scale(1.1);
}

.pro_cart a {
    transition: 0.3s;
}

.pro_cart a:hover {
    color: red;
    font-weight: bold;
}

.pro_title a:hover {
    color: #ff6600;
}

.box_content {
    transition: 0.3s;
}

.box_content:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

button {
    transition: 0.3s;
}

button:hover {
    background-color: #777;
}