/* Fix overflow on vertical menu title */
header.page-header .header-main-content .header-main-inner .vertical-menu .title {
    padding-top: 25px !important;   /* your desired value */
   
    overflow: visible !important;    /* keep this if needed */
}



/* Make sure each footer list item is positioned relative */
.footer-link li {
    position: relative;
}

/* For nested lists inside each footer li */
.footer-link li ul {
    display: none;
    position: absolute;
    top: 0;
    right: 100%; /* For RTL: opens to the left of the parent item */
    background-color: #fff;
    min-width: 200px;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 10px;
    white-space: nowrap;
}

/* Show the footer submenu on hover */
.footer-link li:hover > ul {
    display: block;
}

/* Footer submenu alternative selector */
.footer-link li .submenu {
    display: none;
    position: absolute;
    top: 0;
    right: 100%; /* For RTL direction */
    background-color: #fff;
    min-width: 200px;
    z-index: 999;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

/* Show the footer submenu on hover alternative */
.footer-link li:hover > .submenu {
    display: block;
}

/* Styles for the 'Add to Cart' button */
.action.tocart {
    background-color: #d32f2f; /* Red */
    color: #fff;
    border-color: #b71c1c;
}

.action.tocart:hover {
    background-color: #b71c1c;
}



/* Rushil CSS*/

.product-brand-layout-fixed {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    background: #f8f8f8;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.brand-logo-wrapper img {
    max-height: 50px;
    width: auto;
    display: block;
}

.brand-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 14px;
}

.brand-text-wrapper .brand-label {
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
}

.brand-text-wrapper .brand-subtext {
    color: #555;
    margin-bottom: 6px;
}

.brand-text-wrapper .visit-store-link {
    color: white !important;
    font-weight: 600;
    text-decoration: underline;
}
