/* Global Breadcrumb */
    .cat-top-sec {
    background: #ffffff;
    border-bottom: 1px solid #ddd;
    margin-top: 0;
    padding-top:1px;
}
    .breadcrumbs {
        padding: 0;
        list-style: none;
        display: flex;
        align-items: center;
        font-size: 14px;
        margin: 10px 0;
    }
    .breadcrumbs li {
        display: flex;
        align-items: center;
        color: #777;
    }
    .breadcrumbs li a {
        color: #1d1d1d;
        text-decoration: none;
        font-weight: 500;
    }
    .breadcrumbs li:not(:first-child)::before {
        content: "/";
        margin: 0 8px;
        color: #777;
        font-weight: 300;
    }
    @media (max-width: 576px) {
        .breadcrumbs li:last-child span {
            display: inline-block;
            max-width: 15ch;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            vertical-align: middle;
        }
    }



/* ==========================================================================
   TechPickly Combined Header & Menu Style (Copy-Paste)
   ========================================================================== */

/* ১. মেইন হেডার লেআউট */
.tp-main-header {
    background-color: #131921;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.tp-header-top-row {
    background-color: #131921;
    min-height: 60px;
}

/* টেক্সট গাইডলাইন */
.tp-sub-text {
    font-size: 11px;
    color: #cccccc !important;
    line-height: 1.2;
}

.tp-bold-text {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff !important;
}

/* হোভার এফেক্ট */
.tp-header-delivery, 
.tp-localization-box, 
.tp-account-dropdown, 
.tp-orders-box, 
.tp-header-cart-box {
    padding: 6px 8px;
    border: 1px solid transparent;
    cursor: pointer;
    border-radius: 2px;
    transition: border 0.1s ease-in-out;
}

.tp-header-delivery:hover, 
.tp-localization-box:hover, 
.tp-account-dropdown:hover, 
.tp-orders-box:hover, 
.tp-header-cart-box:hover {
    border: 1px solid #ffffff;
}

/* ২. সার্চ বার স্টাইল */
.tp-header-search #search .input-group {
    display: flex;
    width: 100%;
    height: 40px;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}

.tp-header-search #search input.form-control {
    border: none !important;
    box-shadow: none !important;
    padding: 0 12px;
    font-size: 15px;
    height: 100%;
    color: #111111;
}

.tp-header-search #search .btn {
    background-color: #febd69 !important;
    border: none !important;
    width: 45px;
    height: 100%;
    color: #111111 !important;
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tp-header-search #search .btn:hover {
    background-color: #f3a847 !important;
}

/* ৩. মেনুবার এবং ক্যাটাগরি স্টাইল */
.tp-header-bottom-row {
    background-color: #232f3e;
    min-height: 35px;
    padding: 5px 15px !important;
}

#tp-menu {
    padding: 0 !important;
}

#tp-menu .navbar-nav {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

#tp-menu .nav-link {
    color: #ffffff !important;
    font-size: 13px;
    padding: 6px 10px !important;
    border: 1px solid transparent;
}

#tp-menu .nav-link:hover {
    border: 1px solid #ffffff;
    border-radius: 2px;
}

/* ৪. অন্যান্য ছোটখাটো ফিক্স */
.tp-all-menu-btn {
    font-weight: bold;
}

#tp-menu .dropdown-menu {
    margin-top: 0 !important;
    border-radius: 0;
}

.tp-localization-box .btn,
.tp-localization-box .btn-link {
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 0 !important;
    border: none !important;
    font-size: 13px;
    font-weight: 700;
}

/* কার্ট বাটনের জন্য একদম এক্সাক্ট ডিজাইন */
.tp-cart-button {
    background: transparent !important;
    border: 1px solid transparent !important;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    padding: 0 10px !important; /* প্যাডিং ঠিক করা */
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
}

.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px; /* আইকনের জায়গা নির্দিষ্ট করা */
    height: 35px;
}

.cart-icon-wrapper i {
    font-size: 28px !important; /* ইমেজের মতো আইকন সাইজ */
    display: block;
}

/* সংখ্যাটির পজিশন ইমেজের মতো ঠিক করা */
.tp-cart-count {
    position: absolute;
    top: 5px; /* ইমেজের মতো আইকনের ভেতরে সেট করতে এটি অ্যাডজাস্ট করুন */
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px; /* ফন্ট সাইজ ছোট রাখা */
    font-weight: 900;
    color: #f3a847 !important; /* গোল্ডেন কালার */
    line-height: 1;
}

/* "Cart" লেখাটি আইকনের ডানে */
.tp-cart-text {
    margin-left: 5px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    /* হেডারের সব আইটেমকে মোবাইলে ভার্টিক্যাল করা */
    .tp-header-top-row {
        flex-direction: column !important;
        padding: 10px !important;
        height: auto !important;
    }

    /* লোগো সেকশন সেন্টারে আনা */
    #tp-logo-section {
        margin: 0 0 10px 0 !important;
    }

    /* সার্চ বার পূর্ণ প্রস্থ (Full Width) করা */
    .tp-header-search {
        width: 100% !important;
        margin: 0 0 10px 0 !important;
    }

    /* রাইট ন্যাভ (অ্যাকাউন্ট, কার্ট) একসাথে সাজানো */
    .tp-header-right-nav {
        width: 100%;
        justify-content: space-between;
        margin-top: 10px;
    }

    /* ডেলিভারি লোকেশন মোবাইল স্ক্রিনে লুকিয়ে রাখা (যাতে জায়গা বাঁচে) */
    .tp-header-delivery {
        display: none !important;
    }
}

/* সার্চ বার মোবাইল হাইট ফিক্স */
@media (max-width: 576px) {
    .tp-header-search #search .input-group {
        height: 35px !important;
    }
}

