/* ═══ VARIABLES ═══ */
:root {
    --org: #f97316;
    --org-d: #ea6c0a;
    --org-l: #fff7ed;
    --ink: #1a1a1a;
    --ink2: #374151;
    --muted: #6b7280;
    --faint: #9ca3af;
    --border: #e5e7eb;
    --border2: #f3f4f6;
    --bg: #f0f0f0;
    --bgc: #f3f4f6;
    --white: #fff;
    --green: #16a34a;
    --red: #dc2626;
    --blue: #2563eb;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    background: var(--bg);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ═══ TOPBAR ═══ */
.topbar {
    background: #111; /* অথবা var(--ink) বা অন্য কিছু */
    padding: 6px 0;
    font-size: 12px;
    position: relative;
    z-index: 3001;
}

.tb-inner {
    max-width: 1380px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tb-msg {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
}

.tb-msg span {
    color: var(--org);
    font-weight: 700;
}

.tb-links {
    display: flex;
    gap: 2px;
}

.tb-links a {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.4);
    padding: 3px 8px;
    border-radius: 5px;
    transition: all 0.14s;
}

.tb-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.tb-links a.hot {
    color: var(--org);
}

@media (max-width: 767px) {
    .topbar {
        display: none;
    }
}

.mnav {
    background: var(--ink);
    height: 75px; /* 95 → 75 কমাও */
    position: sticky;
    top: 0;
    z-index: 3000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.nw {
    max-width: 1380px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo {
    display: flex;
    align-items: center; /* flex-direction: column সরাও, এটা দাও */
    flex-shrink: 0;
}

.logo img {
    height: 55px; /* 60 → 55 কমাও */
    max-height: 55px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-t {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1;
}

.logo-t .o {
    color: var(--org);
}

.logo-b {
    font-size: 0.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 1px;
}

.srch {
    flex: 1;
    max-width: 540px;
    position: relative;
}

.srch input {
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 100px;
    padding: 9px 44px 9px 40px;
    font-size: 0.83rem;
    color: #333;
    outline: none;
    font-family: inherit;
    transition: box-shadow 0.2s;
}

.srch input::placeholder {
    color: #aaa;
}

.srch input:focus {
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.3);
}

.srch .si {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    font-size: 0.8rem;
    pointer-events: none;
}

.srch .sb {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--org);
    color: #fff;
    border: none;
    border-radius: 100px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: background 0.15s;
}

.srch .sb:hover {
    background: var(--org-d);
}

.nright {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    flex-shrink: 0;
}

.ntxt {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.15s;
    white-space: nowrap;
}

.ntxt:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.ntxt.hot {
    color: var(--org);
}

.nico {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.15s;
    position: relative;
    flex-shrink: 0;
}

.nico:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.cbadge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 17px;
    height: 17px;
    background: var(--org);
    color: #fff;
    border-radius: 50%;
    font-size: 0.55rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--ink);
}

.hbg {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    cursor: pointer;
    flex-shrink: 0;
    background: none;
}

@media (max-width: 991px) {
    .hbg {
        display: flex;
    }

    .ntxt.ht {
        display: none;
    }
}

@media (max-width: 600px) {
    .ntxt {
        display: none;
    }

    .nico.hm {
        display: none;
    }
}

/* ═══ CATEGORY BAR ═══ */
.catbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 75px; /* 56px → 75px (navbar height অনুযায়ী) */
    z-index: 2000;
    box-shadow: 0 1px 0 #eee;
}

.cw {
    max-width: 1380px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    height: 46px;
    overflow-x: auto;
    scrollbar-width: none;
}

.cw::-webkit-scrollbar {
    display: none;
}

.clink {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 12px;
    height: 46px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink2);
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2.5px solid transparent;
    transition: color 0.15s;
    user-select: none;
    flex-shrink: 0;
}

.text-gradient {
    background: linear-gradient(
        87deg,
        #f0522d 11.97%,
        #f4801f 37.45%,
        #fbaf42 59.69%,
        #852df0 83.31%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.clink:hover,
.clink.active {
    color: var(--org);
    border-bottom-color: var(--org);
}

.clink .arr {
    font-size: 0.56rem;
    color: var(--faint);
    transition: transform 0.2s;
}

.clink:hover .arr {
    transform: rotate(180deg);
    color: var(--org);
}

/* Dropdown L1 */
.cat-item {
    position: relative;
}

.ddl1 {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-top: 2.5px solid var(--org);
    border-radius: 0 0 12px 12px;
    min-width: 215px;
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    display: none;
    z-index: 100;
    animation: ddA 0.14s ease;
}

@keyframes ddA {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cat-item:hover .ddl1,
.cat-item.open .ddl1 {
    display: block;
}

.dr {
    position: relative;
    display: flex;
    align-items: center;
    padding: 9px 14px;
    gap: 9px;
    font-size: 0.81rem;
    font-weight: 500;
    color: var(--ink2);
    cursor: pointer;
    transition: all 0.14s;
}

.dr:hover {
    background: var(--org-l);
    color: var(--org);
}

.dr.ac {
    background: var(--org);
    color: #fff;
}

.dr-ico {
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.dr-lbl {
    flex: 1;
}

.dr-arr {
    font-size: 0.56rem;
    color: var(--faint);
    margin-left: auto;
    flex-shrink: 0;
}

.dr.ac .dr-arr {
    color: #fff;
}

/* L2 flyout */
.ddl2 {
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-top: 2.5px solid var(--org);
    border-radius: 0 12px 12px 0;
    min-width: 195px;
    box-shadow: 14px 12px 44px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    display: none;
    z-index: 101;
    animation: ddB 0.14s ease;
}

@keyframes ddB {
    from {
        opacity: 0;
        transform: translateX(5px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dr:hover .ddl2,
.dr.l2o .ddl2 {
    display: block;
}

.l2r {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    font-size: 0.81rem;
    font-weight: 500;
    color: var(--ink2);
    cursor: pointer;
    transition: all 0.14s;
}

.l2r:hover {
    background: var(--org-l);
    color: var(--org);
}

.l2ico {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: var(--bgc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: background 0.14s;
}

.l2r:hover .l2ico {
    background: #fed7aa;
}

/* Mega panel */
.ddmega {
    position: fixed;
    top: 121px; /* navbar(75) + catbar(46) = 121px */
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    border-top: 2px solid var(--org);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 2999;
    display: none;
}

.cat-item:hover .ddmega,
.cat-item.open .ddmega {
    display: block;
}

.mgrid {
    max-width: 1380px;
    margin: 0 auto;
    padding: 22px 16px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 22px;
}

.mcol h6 {
    font-size: 0.62rem;
    font-weight: 800;
    color: var(--faint);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--border2);
}

.ma {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--ink2);
    transition: color 0.14s;
}

.ma:hover {
    color: var(--org);
}

.mai {
    width: 27px;
    height: 27px;
    border-radius: 8px;
    background: var(--bgc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    flex-shrink: 0;
    transition: background 0.14s;
}

.ma:hover .mai {
    background: #fed7aa;
}

.mpromo {
    background: linear-gradient(135deg, #1a1a1a, #2e2e2e);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 130px;
    position: relative;
    overflow: hidden;
}

.mpromo::before {
    content: "💻";
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 2.8rem;
    opacity: 0.12;
}

.mpromo h5 {
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 3px;
}

.mpromo p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
}

.mpromo a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    font-size: 0.73rem;
    font-weight: 700;
    color: var(--org);
    transition: gap 0.2s;
}

.mpromo a:hover {
    gap: 8px;
}

@media (max-width: 991px) {
    .catbar {
        display: none;
    }
}

/* ═══ MOBILE OFFCANVAS DRAWER ═══ */
.offcanvas {
    width: min(86vw, 320px) !important;
}

.offcanvas-header {
    background: var(--ink);
    padding: 12px 16px;
}

.drawer-logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}

.drawer-logo .o {
    color: var(--org);
}

.offcanvas-header .btn-close {
    filter: invert(1);
    opacity: 0.6;
}

.dsrch .input-group {
    background: var(--bgc);
    border-radius: 10px;
    overflow: hidden;
}

.dsrch .form-control {
    background: var(--bgc);
    border: none;
    font-size: 0.83rem;
    padding: 9px 12px;
}

.dsrch .form-control:focus {
    box-shadow: none;
    background: var(--bgc);
}

.dsrch .input-group-text {
    background: var(--bgc);
    border: none;
    color: #bbb;
}

.dquick {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border2);
    scrollbar-width: none;
}

.dquick::-webkit-scrollbar {
    display: none;
}

.dqb {
    white-space: nowrap;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: 8px;
    background: var(--bgc);
    color: var(--ink2);
    border: none;
    cursor: pointer;
    transition: all 0.15s;
    flex-shrink: 0;
}

.dqb:hover,
.dqb.active {
    background: var(--org);
    color: #fff;
}

.drawer-acc .accordion-button {
    font-size: 0.84rem;
    font-weight: 600;
    padding: 12px 16px;
    background: #fff;
    color: var(--ink);
}

.drawer-acc .accordion-button:not(.collapsed) {
    color: var(--org);
    background: #fff;
    box-shadow: none;
}

.drawer-acc .accordion-body {
    padding: 0;
    background: #fafafa;
}

.drawer-acc .accordion-item {
    border: none;
    border-bottom: 1px solid var(--border2);
    border-radius: 0 !important;
}

.acc-link {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px 9px 44px;
    font-size: 0.79rem;
    font-weight: 500;
    color: var(--ink2);
    cursor: pointer;
    transition: all 0.14s;
    border-bottom: 1px solid #f0f0f0;
}

.acc-link:last-child {
    border-bottom: none;
}

.acc-link:hover {
    background: var(--org-l);
    color: var(--org);
}

.acc-link .al-ico {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
    transition: background 0.14s;
}

.acc-link:hover .al-ico {
    background: #fed7aa;
}

.sub-acc .accordion-button {
    font-size: 0.79rem;
    font-weight: 600;
    padding: 9px 16px 9px 44px;
    background: #fafafa;
    color: var(--ink2);
}

.sub-acc .accordion-button:not(.collapsed) {
    color: var(--org);
    background: var(--org-l);
    box-shadow: none;
}

.sub-acc .accordion-body {
    padding: 0;
    background: #fff;
}

.sub-acc .accordion-item {
    border: none;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0 !important;
}

.sub-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px 8px 62px;
    font-size: 0.77rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.14s;
    border-bottom: 1px solid #f5f5f5;
}

.sub-link:last-child {
    border-bottom: none;
}

.sub-link:hover {
    color: var(--org);
    background: var(--org-l);
}

.sub-link::before {
    content: "›";
    color: #d1d5db;
    font-size: 0.85rem;
}

.offcanvas-footer {
    border-top: 1px solid var(--border);
    padding: 13px 16px;
    display: flex;
    gap: 8px;
}

.offcanvas-footer .btn {
    flex: 1;
    font-size: 0.77rem;
    font-weight: 700;
    border-radius: 10px;
    padding: 10px;
}

/* ═══ HERO SECTION ═══ */
.hero-section {
    background: var(--bg);
    padding: 14px 0 16px;
}

.hero-outer {
    max-width: 1380px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 336px;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr 290px;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr 250px;
    }
}

@media (max-width: 767px) {
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .main-slider-col {
        grid-row: 1;
    }

    .promo-top {
        grid-row: 2;
        grid-column: 1;
    }

    .promo-bot {
        grid-row: 3;
        grid-column: 1;
    }
}

/* Main slider col */
.main-slider-col {
    grid-row: 1/3;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #000;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    min-height: 400px;
}

@media (max-width: 767px) {
    .main-slider-col {
        min-height: 220px;
        grid-row: 1;
    }
}

.slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.slide-list {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.sl {
    min-width: 100%;
    height: 100%;
    min-height: 400px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    cursor: pointer;
}

@media (max-width: 767px) {
    .sl {
        min-height: 220px;
    }
}

.sl img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 16px;
    pointer-events: none;
    user-select: none;
    transition: transform 0.6s ease;
}

.sl:hover img {
    transform: scale(1.025);
}

/* Arrows */
.sl-arr {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.82rem;
    cursor: pointer;
    z-index: 20;
    transition: all 0.2s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.sl-arr:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.sl-arr.lf {
    left: 14px;
}

.sl-arr.rt {
    right: 14px;
}

/* Dots */
.sl-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 20;
}

.sdot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.22s;
}

.sdot.on {
    background: var(--org);
    width: 22px;
    border-radius: 4px;
}

/* Promo cards */
.promo-top {
    grid-column: 2;
    grid-row: 1;
}

.promo-bot {
    grid-column: 2;
    grid-row: 2;
}

.promo-card {
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    min-height: 192px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.13);
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    display: block;
}

.promo-card:hover {
    transform: scale(1.015);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 14px;
    pointer-events: none;
    user-select: none;
    transition: transform 0.4s ease;
}

.promo-card:hover img {
    transform: scale(1.04);
}

/* ═══ TRUST STRIP ═══ */
.trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    max-width: 1380px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.titem {
    padding: 16px;
    text-align: center;
    border-right: 1px solid var(--border2);
    transition: background 0.15s;
}

.titem:last-child {
    border-right: none;
}

.titem:hover {
    background: #fafafa;
}

.tico {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.ttitle {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
}

.tdesc {
    font-size: 0.7rem;
    color: var(--muted);
    line-height: 1.4;
}

@media (max-width: 600px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .titem {
        border-bottom: 1px solid var(--border2);
    }

    .titem:nth-child(2) {
        border-right: none;
    }

    .titem:nth-child(3) {
        border-bottom: none;
    }

    .titem:nth-child(4) {
        border-bottom: none;
        border-right: none;
    }
}

/* ═══ CAT ICONS STRIP ═══ */
.cat-icons-strip {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.ci-wrap {
    max-width: 1380px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 6px;
}

@media (max-width: 991px) {
    .ci-wrap {
        grid-template-columns: repeat(8, 1fr);
    }
}

@media (max-width: 600px) {
    .ci-wrap {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 400px) {
    .ci-wrap {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ci-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 6px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.ci-item:hover {
    background: var(--bgc);
}

.ci-item.on {
    background: var(--org-l);
}

.ci-ico {
    width: 44px;
    height: 44px;
    background: var(--bgc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.ci-item:hover .ci-ico {
    background: var(--white);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.09);
}

.ci-item.on .ci-ico {
    background: var(--org);
    font-size: 1.15rem;
}

.ci-name {
    font-size: 0.662rem;
    font-weight: 600;
    color: var(--muted);
    line-height: 1.2;
}

.ci-item.on .ci-name {
    color: var(--org);
    font-weight: 700;
}

/* ═══ SECTION SHARED ═══ */
section {
    padding: 36px 0;
}

.sec-wrap {
    max-width: 1380px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

.sec-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 10px;
}

.sec-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.3px;
    margin: 0;
}

.sec-title span {
    color: var(--org);
}

.sec-sub {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 2px;
    margin-bottom: 0;
}

.see-all {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--org);
    transition: gap 0.2s;
}

.see-all:hover {
    gap: 8px;
}

/* ═══ FLASH SALE ═══ */
.flash-hd {
    background: linear-gradient(120deg, #1a1a1a, #2a1500);
    padding: 16px 20px;
    border-radius: 14px 14px 0 0;
}

.flash-body {
    padding: 16px;
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 14px 14px;
    background: var(--white);
}

.cd-box {
    background: var(--org);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    min-width: 42px;
    height: 42px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-variant-numeric: tabular-nums;
}

.cd-sep {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 800;
}

/* ═══ PRODUCT CARD ═══ */
.p-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.25s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.p-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
    transform: translateY(-4px);
    border-color: transparent;
}

.p-img {
    background: transparent !important;
    padding: 8px; /* কম padding */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.p-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0 !important; /* blade-এর inline padding override */
}

.p-img::after {
    display: none;
}

.p-emi {
    font-size: 4.2rem;
    line-height: 1;
    transition: transform 0.3s;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 1;
}

.p-card:hover .p-emi {
    transform: scale(1.09);
}

.pbadge {
    position: absolute;
    top: 9px;
    left: 9px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 100px;
}

.bn {
    background: var(--ink);
    color: #fff;
}

.bs {
    background: var(--org);
    color: #fff;
}

.bh {
    background: var(--red);
    color: #fff;
}

.bb {
    background: var(--blue);
    color: #fff;
}

.br {
    background: var(--green);
    color: #fff;
}

.pwish {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--faint);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.pwish:hover {
    color: var(--red);
}

.pwish.on {
    color: var(--red);
}

.p-body {
    padding: 13px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.p-brand {
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--faint);
    margin-bottom: 4px;
}

.p-name {
    font-weight: 700;
    font-size: 0.86rem;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 8px;
}

.p-tag {
    background: var(--bgc);
    color: var(--muted);
    font-size: 0.61rem;
    font-weight: 500;
    padding: 2px 7px;
    border-radius: 5px;
}

.p-stars i {
    color: #f0a500;
    font-size: 0.63rem;
}

.p-stars .rc {
    font-size: 0.63rem;
    color: var(--faint);
}

.p-foot {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--border2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-price {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--ink);
    line-height: 1;
}

.p-old {
    font-size: 0.67rem;
    color: var(--faint);
    text-decoration: line-through;
    margin-top: 2px;
}

.p-save {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--green);
    margin-left: 4px;
}

.btn-add {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--org);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.btn-add:hover {
    background: var(--org-d);
    transform: scale(1.06);
}

/* ═══ PROMO BANNERS ═══ */
.banner-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    min-height: 190px;
    display: flex;
    align-items: flex-end;
    padding: 22px;
    cursor: pointer;
    transition: transform 0.25s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.banner-card:hover {
    transform: scale(1.015);
}

.banner-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.banner-body {
    position: relative;
    z-index: 1;
}

.banner-eyebrow {
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.banner-title {
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 8px;
}

.banner-cta {
    font-size: 0.76rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}

.banner-cta:hover {
    gap: 9px;
}

/* Fallback gradient banners (no img needed) */
.bn-macbook {
    background: linear-gradient(135deg, #1a1a1a, #2e2e2e);
}

.bn-iphone {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.bn-tradein {
    background: linear-gradient(135deg, #fff7ed, #fef3c7);
}

.ddmega {
    position: fixed;
    top: auto;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 2px solid var(--org);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 2999;
    display: none;
}

.cat-item.open .ddmega {
    display: block;
}

.mega-layout {
    display: flex;
    max-width: 1380px;
    margin: 0 auto;
    min-height: 320px;
}

/* Left panel */
.mega-left {
    width: 220px;
    flex-shrink: 0;
    border-right: 1px solid #f0f0f0;
    padding: 12px 0;
    background: #fafafa;
}

.mega-sub-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    color: var(--ink);
    transition:
        background 0.15s,
        color 0.15s;
    border-left: 3px solid transparent;
}

.mega-sub-item:hover,
.mega-sub-item.active {
    background: #fff;
    color: var(--org);
    border-left-color: var(--org);
    font-weight: 500;
}

/* Right panel */
.mega-right {
    flex: 1;
    padding: 20px 28px;
}

.mega-subsub-panel {
    display: none;
    flex-wrap: wrap;
    gap: 4px;
}

.mega-subsub-panel.active {
    display: flex;
}

.mega-subsub-panel .ma {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13.5px;
    color: #333;
    text-decoration: none;
    width: calc(33.33% - 4px);
    transition: background 0.15s;
}

.mega-subsub-panel .ma:hover {
    background: #fff3e0;
    color: var(--org);
}

/* ═══ top bar menu ═══ */

.mega-layout {
    display: flex;
    max-width: 1380px;
    margin: 0 auto;
    min-height: 300px;
    max-height: 480px;
}

.mega-left {
    width: 200px;
    flex-shrink: 0;
    border-right: 1px solid #f0f0f0;
    padding: 10px 0;
    background: #fafafa;
    overflow-y: auto;
}

.mega-sub-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    font-size: 13.5px;
    cursor: pointer;
    color: #333;
    border-left: 3px solid transparent;
    transition: all 0.15s;
}

.mega-sub-item:hover,
.mega-sub-item.active {
    background: #fff;
    color: var(--org);
    border-left-color: var(--org);
    font-weight: 500;
}

.mega-right {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    overflow-y: auto;
}

.mega-subsub-panel {
    display: none;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 4px;
    flex: 1;
}

.mega-subsub-panel.active {
    display: flex;
}

.mega-subsub-panel .ma {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    width: calc(33.33% - 4px);
    transition: background 0.15s;
}

.mega-subsub-panel .ma:hover {
    background: #fff3e0;
    color: var(--org);
}

.mega-promo {
    width: 180px;
    flex-shrink: 0;
}

/* ═══ BRAND SECTION ═══ */

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 14px 10px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.brand-item:hover {
    border-color: var(--org);
    background: var(--org-l);
}

.brand-ico {
    font-size: 1.7rem;
    line-height: 1;
}

.brand-name {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--muted);
}

.brand-item:hover .brand-name {
    color: var(--org);
}

/* ═══ NEWSLETTER ═══ */
.nl-wrap {
    background: linear-gradient(135deg, #1a1a1a, #2d1400);
    border-radius: 14px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.nl-wrap::before {
    content: "📱";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8rem;
    opacity: 0.07;
}

.nl-wrap::after {
    content: "💻";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8rem;
    opacity: 0.07;
}

.nl-inp {
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.84rem;
    padding: 11px 20px;
    font-family: inherit;
}

.nl-inp::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.nl-inp:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: none;
    color: #fff;
}

.btn-nl {
    background: var(--org);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 11px 24px;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-nl:hover {
    background: var(--org-d);
}

/* ═══ FOOTER ═══ */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.65);
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}

.footer-logo img {
    height: 70px;
    max-height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-logo .o {
    color: var(--org);
}

.footer-desc {
    font-size: 0.81rem;
    line-height: 1.7;
    opacity: 0.55;
    max-width: 240px;
}

.footer-h {
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 13px;
}

.footer-a {
    display: block;
    font-size: 0.81rem;
    color: rgba(255, 255, 255, 0.52);
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-a:hover {
    color: #fff;
}

.footer-soc a {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
    transition: all 0.2s;
}

.footer-soc a:hover {
    border-color: var(--org);
    color: var(--org);
}

.footer-bot {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-copy {
    font-size: 0.73rem;
    opacity: 0.33;
    color: #fff;
}

.pay-tag {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 5px;
    padding: 4px 9px;
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.38);
}

/* ═══ BACK TO TOP ═══ */
#btt {
    position: fixed;
    bottom: 24px;
    right: 22px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--org);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 900;
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.45);
    transition: all 0.2s;
    opacity: 0;
    pointer-events: none;
}

#btt.show {
    opacity: 1;
    pointer-events: all;
}

#btt:hover {
    transform: translateY(-3px);
}
.ci-ico {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    padding: 2px; /* image আর edge-এর মাঝে gap */
}

.ci-ico img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply; /* এটা যোগ করো — white background মিলিয়ে যাবে */
}

.ci-item.on .ci-ico,
.ci-item:hover .ci-ico {
    transform: scale(1.08);
}

/* ═══ TOAST ═══ */
#toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: #fff;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
    white-space: nowrap;
    animation: tIn 0.22s ease;
}

@keyframes tIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}
