.custom-shop-by-categories {
    position: relative;
    display: inline-block;	width:100%
}

.custom-shop-button {
    background-color: #f64c01;    color: white;    padding: 12px 20px;    border: none;    cursor: pointer;    font-size: 12px;    border-radius: 5px;    transition: background 0.3s;    width: 100%;    font-weight: normal;	text-align:left;
}

.custom-shop-button:hover {
    background-color: #005f87;
}

.custom-category-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #fff;
    border: 1px solid #ddd;
    display: none;
    z-index: 1000;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.custom-category-menu {
    list-style: none;
    margin: 0;
    padding: 0;  position: relative;
}

.custom-category-menu .custom-category-item {
  
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.custom-category-menu .custom-category-item > a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.custom-category-item:hover > .custom-subcategory-products {
    display: flex;
}

.custom-subcategory-products {
    position: absolute;
    left: 100%;
    top: 0;
    width: 260px;
    background: #fff;
    border: 1px solid #ddd;
    display: none;
    z-index: 1000;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
}

.custom-subcategory-menu {
    list-style: none;
    margin: 0;
    padding: 10px;
    background: #f9f9f9;
}

.custom-subcategory-menu li a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 5px 0;
}

.custom-latest-products {
    padding: 10px;
}

.custom-product {
    text-align: center;
    margin-bottom: 10px;
}

.custom-product img {
    width: 80px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.custom-product p {
    font-size: 14px;
    margin-top: 5px;
    color: #333;
}
