a {
    text-decoration: none;
}

.navbar {

    .orange-span {
        color: orange;
    }
}

.category {
    .container {
        .content {

            .dropdown-ul {
                list-style: none;
                padding: 0;
            
                .dropdown-li {
                    cursor: pointer;
                    position: relative;
                    padding: 3px 0px 3px 10px;
                    background-color: #f7f5f5;
                    margin: 5px 0;
            
                    &:hover .dropdown-menu-ul {
                        display: block; 
                    }
            
                    .dropdown-li-a {
                        text-decoration: none;
                        color: black;


                        &:hover {
                            color: rgb(235, 155, 34);
                        }
                    }
            
                    .dropdown-menu-ul {
                        display: none; 
                        position: absolute;
                        top: -400%;
                        left: 100%;
                        width: max-content;
                        z-index: 1000;
                        background-color: white;
                        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            
                        .dropdown-li-item {
                            display: block;
                            padding: 10px 15px;
                            color: black;
                            text-decoration: none;
            
                            &:hover {
                                color: blue;
                            }
                        }
                    }
                }
            }

            .product-container {
                
                .single-product-item {
                    height: fit-content;
                }
            }
            
        }
    }
}

.contact-us {
    .orange-span {
        color: orange;
    }
}

.footer {
    .footer-link {
        color: #fff;
        transition: all 0.3s ease;

        &:hover {
            margin-left: 10px;
            color: #919090;
        }
    }
}