/* ============================================
   SH HEADER CSS - OPTIMIZED VERSION
   WITH FIXED MENU ICON CENTERING
   AND USER MENU HOVER ANIMATION
============================================ */

:root {
    --icon-slot-size-desktop: clamp(38px, 4.5vw, 48px);
    --icon-slot-size-tablet: clamp(38px, 6vw, 48px);
    --icon-slot-size-mobile: clamp(36px, 8vw, 44px);
    --icon-size-ratio: 0.7;
    --border-radius: 10px;
    --transition: transform 0.25s ease, opacity 0.25s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --hover-bg: rgba(0, 0, 0, 0.05);
}

.sh-header-image {
    display: block;
    width: 240px;
    height: 45px;
    max-width: 100%;
    height: auto;
}

.sh-header-icon-box img,
.sh-header-icon-box i {
    display: inline-block;
    width: 33px;
    height: 33px;
}

@media (max-width: 767px) {
    .sh-header-image {
        max-width: 170px !important;
    }
    .sh-header-wrapper {
        margin-top: 0px;
        margin-bottom: 5px;
        margin-right: -10px !important;
        margin-left: -10px !important;
    }
}

.sh-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-height: 68px;
    flex-wrap: wrap;
    margin-top: 0;
    position: relative;
    z-index: 100;
}

.sh-header-logo {
    flex: 0 0 auto;
}

.sh-header-second-column {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 180px;
}

/* جستجو باکس - دارای ارتفاع ثابت و دیسپلی فلکس برای هماهنگی با آیکون منو */
.sh-search-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    height: var(--icon-slot-size-desktop);
}

/* استایل فرم جستجو داخل باکس */
.sh-search-box form,
.sh-search-box .aws-container,
.sh-search-box .dgwt-wcas-search-wrapp {
    flex: 1;
    height: 100%;
}

.sh-icons-group {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    align-items: center;
    gap: clamp(8px, 2vw, 10px);
}

.sh-icons-group:empty {
    display: none;
}

.sh-icon-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-slot-size-desktop);
    height: var(--icon-slot-size-desktop);
    border-radius: 10px !important;
    transition: var(--transition);
    position: relative;
    flex-shrink: 0;
}

.sh-icon-subheading {font-size:17px;}

.popup-title {font-size: 20px; font-weight: bold; margin-bottom: 5px;}

.lang-popup-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.lang-popup-buttons button {
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
}

.lang-popup-buttons .save-btn {
    background-color: #0073aa;
    color: #fff;
}

@media (max-width: 1024px) {
    .sh-icon-slot {
        width: var(--icon-slot-size-tablet);
        height: var(--icon-slot-size-tablet);
    }
    .sh-search-box {
        height: var(--icon-slot-size-tablet);
    }
}

@media (max-width: 768px) {
    .sh-icon-slot {
        width: var(--icon-slot-size-mobile);
        height: var(--icon-slot-size-mobile);
    }
    .sh-search-box {
        height: var(--icon-slot-size-mobile);
    }
}

.sh-icon-slot:hover {
    background-color: var(--hover-bg);
    border-radius: var(--border-radius);
}

.sh-icon-slot img,
.sh-icon-slot .sh-icon-img {
    display: block;
    width: calc(var(--icon-slot-size-desktop) * var(--icon-size-ratio));
    height: calc(var(--icon-slot-size-desktop) * var(--icon-size-ratio));
    object-fit: contain;
}

/* ============================================
   MENU ICON STYLES - PERFECTLY CENTERED
   ============================================ */
.sh-new-menu-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.sh-new-menu-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.sh-new-menu-icon-img {
    width: calc(var(--icon-slot-size-desktop) * var(--icon-size-ratio));
    height: calc(var(--icon-slot-size-desktop) * var(--icon-size-ratio));
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.rtl .sh-new-menu-icon-img {
  transform: rotate(180deg);
}

/* Menu icon responsive sizes */
@media (max-width: 1024px) {
    .sh-icon-slot img,
    .sh-icon-slot .sh-icon-img,
    .sh-new-menu-icon-img {
        width: calc(var(--icon-slot-size-tablet) * var(--icon-size-ratio));
        height: calc(var(--icon-slot-size-tablet) * var(--icon-size-ratio));
    }
}

@media (max-width: 768px) {
    .sh-icon-slot img,
    .sh-icon-slot .sh-icon-img,
    .sh-new-menu-icon-img {
        width: calc(var(--icon-slot-size-mobile) * var(--icon-size-ratio));
        height: calc(var(--icon-slot-size-mobile) * var(--icon-size-ratio));
    }
}

.sh-icon-slot a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: var(--border-radius);
}

.sh-header-icon-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
    margin-left: 20px;
}

.sh-icon-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.sh-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(10px, 2vw, 12px);
    font-weight: 700;
    line-height: 1;
    box-sizing: border-box;
}

/* ============================================
   IMPORTANT PAGES DRAWER STYLES (SIDEBAR)
   ============================================ */

/* Drawer Overlay */
.important-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.important-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Drawer Container - LTR: left side, RTL: right side */
.important-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000000; 
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

[dir="rtl"] .important-drawer {
    left: auto;
    right: -100%;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.important-drawer.open {
    left: 0;
}

[dir="rtl"] .important-drawer.open {
    left: auto;
    right: 0;
}

/* Drawer Header */
.important-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #fff;
    flex-shrink: 0;
}

.important-drawer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.important-drawer-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.important-drawer-close:hover {
    background: #f5f5f5;
    color: #000;
}

/* Drawer Content */
.important-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

/* Desktop Layout (1 item per row) */
.important-drawer .important-pages-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.important-drawer .important-page-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 12px;
    text-decoration: none;
    background: #f3f8f4;
    border-radius: 12px;
    transition: var(--transition);
}

.important-drawer .important-page-item:hover {
    transform: translateX(5px);
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

[dir="rtl"] .important-drawer .important-page-item:hover {
    transform: translateX(-5px);
}

.important-drawer .important-page-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background: #f0f0f0;
}

.important-drawer .important-page-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.important-drawer .important-page-image .no-image {
    font-size: 11px;
    color: #999;
    text-align: center;
}

.important-drawer .important-page-info {
    flex: 1;
}

.important-drawer .important-page-title {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin-bottom: 6px;
}

.important-drawer .important-page-subtitle {
    font-size: 13px;
    color: black;
    line-height: 1.4;
}
.woocommerce-js .widget_shopping_cart_content a.remove {
    top: 0;
}
/* Mobile Layout (3 items per row - no title) */
@media (max-width: 768px) {
    .important-drawer {
        width: 100%;
        max-width: 100%;
        left: -100%;
    }
    
    .important-drawer.open {
        left: 0;
    }
    
    [dir="rtl"] .important-drawer {
        right: -100%;
        left: auto;
    }
    
    [dir="rtl"] .important-drawer.open {
        right: 0;
        left: auto;
    }
    
    .important-drawer-header {
        padding: 15px;
    }
    
    .important-drawer-content {
        padding: 15px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Mobile grid: 3 columns */
    .important-drawer .important-pages-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        flex-direction: row;
    }
    
    .important-drawer .important-page-item {
        flex-direction: column;
        padding: 10px 6px;
        text-align: center;
        gap: 6px;
    }
    
    .important-drawer .important-page-item:hover {
        transform: translateY(-3px);
    }
    
    .important-drawer .important-page-image {
        width: 100%;
        max-width: 70px;
        height: 65px;
        margin: 0 auto;
    }
    
    .important-drawer .important-page-info {
        width: 100%;
    }
    
    /* Hide title in mobile */
    .important-drawer .important-page-title {
        display: none;
    }
    
    .important-drawer .important-page-subtitle {
        font-size: 10px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-break: break-word;
        margin-top: 4px;
        min-height: 26px;
    }
}

/* ============================================
   CART STYLES - HOVER ONLY ON DESKTOP
   ============================================ */
.woocommerce-mini-cart-item .quantity,
.woocommerce-mini-cart-item .variation {
    display: none !important;
}

/* ============================================
   USER LOGGED MENU STYLES - SAME AS MINI-CART
   ============================================ */

/* Account menu hover wrapper - same structure as cart */
.sh-account-hover-wrapper {
    position: relative;
    display: inline-block;
}

/* Container for user menu - same positioning and animation as mini-cart */
.user-logged-menu-container {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    z-index: 10000;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    will-change: transform, opacity;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

[dir="rtl"] .user-logged-menu-container {
    right: auto;
    left: 0;
}

/* Hover effect - same as cart */
@media (min-width: 1025px) {
    .sh-account-hover-wrapper:hover .user-logged-menu-container {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* Menu content styling */
.user-logged-menu {
    padding: 8px 0;
    overflow: hidden;
}

.user-logged-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.user-logged-menu a:hover {
    background-color: #f5f5f5;
    color: #000;
    padding-right: 24px;
}

[dir="rtl"] .user-logged-menu a:hover {
    padding-right: 20px;
    padding-left: 24px;
}

/* Login popup same style */
.sh-login-popup {
    padding: 12px 20px;
    text-align: center;
}

.sh-login-popup-link {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.sh-login-popup-link:hover {
    color: #000;
}

/* Hide on tablet and mobile */
@media (max-width: 1024px) {
    .user-logged-menu-container {
        display: none !important;
    }
}

/* ============================================
   CART STYLES (existing)
   ============================================ */
/* محتوای اصلی مینی‌کارت */
.sh-custom-mini-cart {
    max-height: 480px;
    overflow-y: auto;
    padding: 0;
    scrollbar-width: thin;
}

.sh-custom-mini-cart::-webkit-scrollbar {
    width: 4px;
}

.sh-custom-mini-cart::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.sh-custom-mini-cart::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

/* لیست محصولات */
.sh-mini-cart-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* آیتم محصول - بدون خط سفید و بدون هاور */
.sh-mini-cart-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-bottom: 0;
    transition: none;
    background: transparent;
    position: relative;
}

/* حذف کامل افکت هاور از آیتم محصول */
.sh-mini-cart-item:hover {
    background: transparent;
}

/* جداکننده بین آیتم‌ها (اختیاری) */
.sh-mini-cart-item:not(:last-child)::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: #f0f0f0;
}

/* تصویر محصول */
.sh-mini-cart-item-image {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f8f8;
}

.sh-mini-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* جزئیات محصول */
.sh-mini-cart-item-details {
    flex: 1;
    min-width: 0;
}

.sh-mini-cart-item-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 6px;
    color: #1a1a1a;
}

.sh-mini-cart-item-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s;
}

/* لینک عنوان محصول می‌تواند هاور داشته باشد (اختیاری) */
.sh-mini-cart-item-title a:hover {
    color: #000000;
}

/* قیمت و تعداد در یک خط */
.sh-mini-cart-item-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.sh-mini-cart-item-price {
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
}

.sh-mini-cart-item-quantity {
    font-size: 12px;
    color: #888;
}

/* دکمه حذف - هاور فقط روی این دکمه فعال باشد */
.sh-mini-cart-item-remove {
    flex-shrink: 0;
}

.sh-mini-cart-item-remove a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #999;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
}

/* فقط اینجا هاور فعال است - دکمه حذف */
.sh-mini-cart-item-remove a:hover {
    background: #fee2e2;
    color: #e74c3c;
}

/* حالت خالی سبد خرید */
.sh-mini-cart-empty {
    text-align: center;
    padding: 48px 24px;
    color: #888;
}

.sh-mini-cart-empty p {
    margin: 0;
    font-size: 14px;
}

/* انیمیشن loading برای AJAX */
.sh-mini-cart-updating {
    position: relative;
    opacity: 0.7;
    pointer-events: none;
}

.sh-mini-cart-updating::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    margin: -16px 0 0 -16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #1a1a1a;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    z-index: 1;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ریسپانسیو */
@media (max-width: 480px) {
    .sh-custom-mini-cart-container {
        width: 320px;
        right: -10px;
    }
    
    .sh-mini-cart-item {
        padding: 12px 16px;
        gap: 10px;
    }
    
    .sh-mini-cart-item-image {
        width: 48px;
        height: 48px;
    }
}

/* RTL پشتیبانی */
[dir="rtl"] .sh-custom-mini-cart-container {
    right: auto;
    left: 0;
}

.sh-lang-country-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.14);
    z-index: 10000;
    max-width: 90vw;
    width: 500px;
    text-align: center;
    box-sizing: border-box;
}

.sh-lang-country-popup select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
}

.sh-lang-country-popup label {
    display: block;
    margin-bottom: 5px;
}

@media (max-width: 1024px) {
    .sh-header-icon-box {
        display: none;
    }
    .sh-header-logo {
        order: 1;
        flex: 0 0 auto;
    }
    .sh-header-icons {
        order: 2;
    }
    .sh-header-second-column {
        order: 3;
        flex-basis: 100%;
        width: 100%;
        margin-top: 10px;
    }
    /* Hide hover menus on tablet */
    .sh-account-hover-wrapper:hover .user-logged-menu-container,
    .sh-cart-hover-wrapper:hover .sh-custom-mini-cart-container {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .sh-header-icon-box {
        display: flex;
    }
}

/* Menu icon hidden on desktop and tablet, visible only on mobile */
.sh-new-menu-icon.hide-desktop,
.sh-new-menu-icon.hide-tablet {
    display: inline-block;
}

@media (min-width: 769px) {
    .sh-new-menu-icon {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .sh-new-menu-icon {
        margin-top: 8px;
    }
}

.ht_ctc_an_bounce {
    z-index: 99 !important;       
}

@media (max-width: 768px) {
    .sh-icons-group {
        gap: clamp(4px, 3vw, 4px);
    }
    .sh-cart-count {
        top: -2px;
        right: -2px;
        min-width: 16px;
        height: 16px;
        font-size: 9px;
    }
}

.sh-header-icons {
    display: flex;
    align-items: center;
    gap: clamp(10px, 2vw, 20px);
}

/* مینی‌کارت - فقط در دسکتاپ با hover نمایش داده می‌شود */
.sh-cart-hover-wrapper {
    position: relative;
    display: inline-block;
}

.sh-custom-mini-cart-container {
    position: absolute;
    top: 100%;
    right: 0;
    width: 360px;
    max-width: 90vw;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    z-index: 10000;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    will-change: transform, opacity;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* فقط در دسکتاپ (حداقل عرض 1025px) hover فعال باشد */
@media (min-width: 1025px) {
    .sh-cart-hover-wrapper:hover .sh-custom-mini-cart-container {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* در تبلت و موبایل مینی‌کارت مخفی بماند */
@media (max-width: 1024px) {
    .sh-custom-mini-cart-container {
        display: none !important;
    }
}

.rtl .sh-login-popup {
    right: unset;
    left: 0;
}
/* ========================================
  Vertical Menu
======================================== */

.sh-vertical-tabs-wrapper { 
    position: relative; 
    font-size: .95em; 
    max-width: 80%;
    display: flex; /* این باعث می‌شود آیتم‌ها کنار هم قرار بگیرند */
    flex-wrap: nowrap; /* جلوگیری از شکست خط */
    align-items: center; /* تراز عمودی */
    gap: 10px; /* فاصله بین آیتم‌ها */
}

.sh-vertical-tabs-menu-wrapper {
    display: flex;          /* مشخص می‌کند نوع جعبه‌ی ایجاد شده */
    align-items: center;    /* چینش عمودی آیتم‌ها */
    gap: 10px;              /* فاصله بین آیتم‌ها */
}

.sh-tab-title { 
    display: inline-flex; 
    align-items: center; 
    gap: 6px; 
    font-weight: bold; 
    font-size: 14px; 
    cursor: pointer; 
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 0;
    padding-right: 0;
    background: transparent; 
    border: none; 
    outline: none; 
    margin: 0; 
}
.sh-tab-icon img { 
    width: 20px; 
    height: 20px; 
}
.sh-tabs-content { 
    position: absolute; 
    top: 100%; 
    background: #fff; 
    border: 1px solid #ddd; 
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px; 
    box-shadow: 0 12px 30px rgba(0,0,0,.12); 
    display: none; 
    z-index: 10000; 
    max-height: 600px; 
    overflow: hidden; 
}
.sh-vertical-tabs-wrapper.open .sh-tabs-content { 
    display: flex; 
}
.sh-tabs-list { 
    width: 270px; 
    background: #f9f9f9; 
    display: flex; 
    flex-direction: column; 
    border-inline-end: 1px solid #eee; 
    max-height: 600px; 
    overflow-y: auto;
    display: flex;
}

.sh-menu-after-tabs a {
    margin-right: 15px;
    text-decoration: none; /* اگر لازم است */
}

.sh-tab { 
    padding: 10px 12px; 
    cursor: pointer; 
    border-bottom: 1px solid #eee; 
    font-size: 14px; 
    white-space: nowrap; 
}
.sh-tab:hover { 
    background: #f0f0f0; 
}
.sh-tab-panels { 
    flex: 1; 
    padding: 14px; 
    width: 800px; 
    max-width: 60vw; 
    max-height: 570px !important; 
    overflow: auto; 
}
.sh-tab-columns { 
    column-count: 3; 
    column-gap: 30px; 
    margin-bottom: 20px;
}
.sh-tab-block { 
    break-inside: avoid; 
    margin-bottom: 12px; 
    display: block; 
}
.sh-tab-link { 
    display: block; 
    margin: 10px 0; 
    font-size: 14px; 
    line-height: 1.5; 
    color: #333; 
    text-decoration: none; 
    transition: color 0.2s ease; 
}
.sh-tab-link:hover { 
    color: #fcb800; 
}
.sh-tab-link.level-0 { 
    font-weight: 700; 
    margin-top: 0; 
}
.sh-tab-link.level-1,
.sh-tab-link.level-2,
.sh-tab-link.level-3 { 
    font-weight: 400; 
    font-size: 13px; 
}
.sh-tab-all-products { 
    margin-bottom: 10px; 
}
.sh-tab-link.all-products {
    color:#0073e6;
    font-size:13px;
    display:flex;
    align-items:center;
    gap:6px;
    margin-bottom:10px;
    margin-top:2px !important;
    text-decoration:none;
}
.sh-tab-link.all-products:hover { 
    color:#005bb5; 
}
.sh-tab-link.all-products .right-arrow {
    width: 16px; 
    height: 16px; 
    fill: var(--color-icon-secondary); 
    color:#0073e6;
}
.sh-tabs-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 100;
}
.sh-vertical-tabs-wrapper.open .sh-tabs-overlay {
    opacity: 1;
    visibility: visible;
}
.sh-menu-after-tabs a:hover {
    color:#fcb800;
    text-decoration: underline;
}