
.shop_details_sidebar_store ul li{position: relative;font-size: 16px;padding-left: 30px;color: #7d7b7b;display: block;margin-top: 12px;}
.shop_details_sidebar_store ul li svg{position: absolute;width: 20px;top: 0;left: 0;}

.shop_details_sidebar_store .rating {color: #f9a61c;font-size: 13px;}

/* Mobile menu auth buttons */
.mobile_auth_row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0 6px;
    width: 100%;
}

.mobile_login_btn,
.mobile_signup_btn {
    flex: 1;
    text-align: center;
    display: inline-block;
    padding: 9px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile_login_btn {
    background: transparent;
    border: 1.5px solid #222;
    color: #222;
}

.mobile_login_btn:hover {
    background: #222;
    color: #fff;
}

.mobile_signup_btn {
    background: #f9a61c;
    border: 1.5px solid #f9a61c;
    color: #fff;
}

.mobile_signup_btn:hover {
    background: #e0920a;
    border-color: #e0920a;
}

/* Mobile logged-in user */
.mobile_user_row {
    padding: 8px 0 4px;
    width: 100%;
}

.mobile_user_link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.mobile_user_link b {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    flex-shrink: 0;
}

.mobile_user_link b img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile_user_name {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    max-width: 90px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* Google Login Button */
.google_login_btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 25px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #444;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    margin-top: 5px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.google_login_btn:hover {
    background: #fcfcfc;
    border-color: #d0d0d0;
    color: #222;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.google_login_btn img {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain !important;
}

/* Brand Icons Responsiveness & Overlap Fix */
.brand_item .img {
    width: 140px !important;
    height: 140px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px !important;
    background: #fff !important;
    border-radius: 50% !important; /* Force true circle for uniform look */
    margin: 10px auto !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05) !important;
}

.brand_item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-top: 5px;
    display: block;
    width: 100%;
}

.brand_img {
    max-height: 80% !important;
    width: auto !important;
    max-width: 80% !important;
    object-fit: contain !important;
    transition: transform 0.3s ease !important;
}

.brand_item:hover .brand_img {
    transform: scale(1.1);
}

@media (max-width: 1199px) {
    .brand_item .img {
        width: 110px !important;
        height: 110px !important;
        padding: 12px !important;
    }
}

@media (max-width: 991px) {
    .brand_item .img {
        width: 90px !important;
        height: 90px !important;
        padding: 10px !important;
    }
    .brand_item h3 {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .brand_item .img {
        width: 75px !important;
        height: 75px !important;
        padding: 8px !important;
        margin: 5px auto !important;
    }
    .brand_item h3 {
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 575px) {
    .brand_item .img {
        width: 65px !important;
        height: 65px !important;
        padding: 6px !important;
    }
    .brand_item h3 {
        font-size: 11px;
    }
}