.rtlx-iconbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 60px;
    height: 100vh;
    background: #f7f3f3;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: width 0.3s ease;
    z-index: 99999;
}

.rtlx-iconbar:hover {
    width: 220px;
}

.rtlx-item {
    position: relative;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-left: 25px;
}

.rtlx-item img {
    width: 20px;
    height: 20px;
    margin-left: 5px;
    transition: width 0.3s ease;
}

.rtlx-iconbar:hover .rtlx-item img {
    width: 20px;
}

.rtlx-text {
    margin-left: 10px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rtlx-iconbar:hover .rtlx-text {
    opacity: 1;
}
/* ==================== */

.rtlx-topbar {
    height: 60px;
    background: #1f4aa8;
    color: #fff;
    display: flex;
    align-items: center;
    padding-left: 70px;
    padding-right: 15px;
    gap: 15px;
}

.rtlx-menu-btn {
    background: #1c4498;
    border: 3px solid #fff;
    color: white;
    cursor: pointer;
    padding: 10px;
    margin-right: 10px;
    border-radius: 50%;
    padding-left: 12px;
    padding-right: 12px;
}
.rtlx-menu-btn:hover {
    background: #1c4498;
    border: 3px solid #fff;
    color: white;
    cursor: pointer;
    padding: 10px;
    margin-right: 10px;
    border-radius: 50%;
    padding-left: 12px;
    padding-right: 12px;
}

.rtlx-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 1050;
}
.rtlx-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.navBar-Padding{
    padding: 10px;
}

@media (max-width: 768px) {
    .rtlx-iconbar {
        display: none;
    }
    .rtlx-banner {
        margin-left: 0;
    }
    .shopping-Icon-Img {
        display: none;
    }
    .navBar-Padding{
        padding: 0;
    }
}

.rtlx-iconbar.open {
    width: 220px;
}

.rtlx-iconbar.open .rtlx-text {
    opacity: 1;
}

.pc-popular-wrapper {
    /* padding: 60px 0; */
}

.pc-section-header {
    text-align: center;
}

.pc-section-subtitle {
    color: #1c4498;
    margin-bottom: 6px;
    font-size: 15px;
}

.pc-section-title {
    font-weight: 700;
    letter-spacing: 1px;
}

.pc-title-line-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
}

.pc-title-line {
    height: 2px;
    width: 120px;
    background: #ddd;
}

.pc-title-line-active {
    background: #1c4498;
    width: 80px;
    margin: 0 10px;
}

.pc-category-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 26px 15px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    height: 100%;
}

.pc-category-card:hover {
    transform: translateY(-6px);
}

.pc-category-img {
    max-width: 90px;
    height: auto;
    margin-bottom: 14px;
}

.pc-category-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    color: #000;
}
