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

body {
    font-family: 'Poppins', sans-serif;
    background: #f8f8f8;
    color: #222;
    font-size: 14px
}

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

ul {
    list-style: none
}

img {
    display: block;
    max-width: 100%
}

/* NAVBAR */
.navbar-bar {
    background: #fff;
    border-bottom: 2px solid #e8e8e8;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.navbar-bar .inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.logo .logo-icon {
    background: #e53935;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.logo .logo-text {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: .3px;
    line-height: 1.1;
}

.logo .logo-text small {
    display: block;
    font-size: 9px;
    font-weight: 400;
    color: #888;
    letter-spacing: 1px
}

/* Search */
.search-wrap {
    flex: 1;
    position: relative;
    max-width: 560px;
}

.search-wrap form {
    width: 100%;
}

.search-wrap input {
    width: 100%;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    padding: 9px 40px 9px 14px;
    font-size: 13.5px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color .2s;
    color: #333;
}

.search-wrap input::placeholder {
    color: #aaa
}

.search-wrap input:focus {
    border-color: #4caf50
}

.search-wrap .s-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #888;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-wrap .s-btn:hover {
    color: #4caf50
}

/* Nav Right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto
}

.cart-btn {
    position: relative;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    transition: color .2s;
}

.cart-btn:hover {
    color: #4caf50
}

.cart-btn .cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #4caf50;
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #1a1a1a;
    max-height: 600px;
}



.hero-slides {
    display: flex;
    width: 100%;
    transition: transform .5s ease;
    height: 600px;
}

.hero-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Slide 1 – CSS OPEN sign (matching the photo style) */
.slide-open {
    background: linear-gradient(180deg, #2a1a0a 0%, #3d2510 30%, #1a0f05 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.open-sign-photo {
    background: #2196F3;
    border: 8px solid #1565c0;
    border-radius: 12px;
    padding: 20px 50px 18px;
    text-align: center;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .7),
        inset 0 2px 0 rgba(255, 255, 255, .15),
        inset 0 -2px 0 rgba(0, 0, 0, .3);
    position: relative;
    transform: perspective(600px) rotateY(-3deg);
}

.open-sign-photo::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 14px;
    border: 3px solid rgba(255, 255, 255, .1);
    pointer-events: none;
}

.open-word {
    font-size: 90px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 8px;
    font-family: 'Arial Black', 'Poppins', sans-serif;
    text-shadow:
        4px 4px 0 rgba(0, 0, 0, .4),
        0 0 40px rgba(255, 255, 255, .1);
    line-height: 1;
}

.open-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 8px;
}

.open-dots span {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, .5);
    border-radius: 50%;
}

/* ambient lights in bg */
.slide-open .amb1 {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 80px;
    height: 200px;
    background: rgba(255, 100, 50, .15);
    border-radius: 4px;
    filter: blur(6px);
}

.slide-open .amb2 {
    position: absolute;
    top: 5%;
    right: 8%;
    width: 40px;
    height: 120px;
    background: rgba(200, 200, 50, .1);
    filter: blur(4px);
    border-radius: 2px;
}

.slide-open .amb3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(0deg, rgba(0, 0, 0, .6), transparent);
}

/* bottom text */
.slide-bottom-text {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, .5);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 12px;
    font-family: 'Arial Black', sans-serif;
}

/* Slide 2 */
.slide-2 {
    background: linear-gradient(135deg, #1b5e20, #2e7d32, #388e3c);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}

.slide-2 h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700
}

.slide-2 p {
    color: #c8e6c9;
    font-size: 16px
}

.slide-2 .s-badge {
    background: #ffcc02;
    color: #333;
    padding: 8px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px
}

/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .85);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
    transition: all .2s;
}

.slider-arrow:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .3)
}

.arrow-prev {
    left: 14px
}

.arrow-next {
    right: 14px
}

/* SERVICE BAR */
.service-bar {
    background: #fff;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    padding: 14px 0;
}

.service-bar .inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
    border-right: 1px solid #efefef;
}

.service-item:last-child {
    border-right: none
}

.service-item .si-icon {
    font-size: 22px;
    color: #4caf50;
    flex-shrink: 0;
}

.service-item .si-text strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}

.service-item .si-text span {
    font-size: 11px;
    color: #888;
}


/* ════════════════════════════════════
   RELATED PRODUCTS
════════════════════════════════════ */
.related-section {
    max-width: 1280px;
    margin: 20px auto 0;
    padding: 0 20px
}

.related-section .sec-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px
}

.related-section .sec-sub {
    font-size: 12.5px;
    color: #999;
    margin-bottom: 18px
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.rel-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .07);
    cursor: pointer;
    transition: box-shadow .2s, transform .2s;
}

.rel-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
    transform: translateY(-2px)
}

.rel-img {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.rel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s
}

.rel-card:hover .rel-img img {
    transform: scale(1.05)
}

.rel-img .rel-delivery-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #12a150;
    color: #fff;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    padding: 5px 9px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 10px rgba(18, 161, 80, .25);
    z-index: 2;
}

.rel-img .rel-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e53935;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 9px;
    font-weight: 700;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    z-index: 2;
}

.rel-body {
    padding: 12px
}

.rel-name {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 45px;
}

.rel-name:hover {
    color: #16a34a
}

.rel-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px
}

.rel-price-row .cur {
    font-size: 15px;
    font-weight: 700;
    color: #16a34a;
}

.rel-price-row .cur::before {
    content: '৳'
}

.rel-price-row .old {
    font-size: 12px;
    color: #bbb;
    text-decoration: line-through
}

.rel-price-row .old::before {
    content: '৳'
}

.rel-btn-order {
    width: 100%;
    padding: 9px;
    border: 1px solid #16a34a;
    border-radius: 6px;
    background: #16a34a;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 6px;
    transition: background .2s;
}

.rel-btn-order:hover {
    background: #107710
}

@keyframes quickOrderBounce {
    0% {
        transform: translateX(0);
    }

    10% {
        transform: translateX(-5px);
    }

    20% {
        transform: translateX(5px);
    }

    30% {
        transform: translateX(-5px);
    }

    40% {
        transform: translateX(5px);
    }

    50% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(0);
    }
}

.rel-btn-cart {
    width: 100%;
    padding: 8px;
    border: 1.5px solid #2563eb;
    border-radius: 6px;
    background: #fff;
    color: #2563eb;
    font-size: 12.5px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background .2s;
}

.rel-btn-cart:hover {
    background: #ebf5fd;
}

/* FOOTER */
.footer {
    background: #1a1a1a;
    color: #999;
    padding: 32px 20px 16px;
    margin-top: 40px;
}

.footer .inner {
    max-width: 1280px;
    margin: 0 auto
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 28px;
}

.footer-brand .fb-logo {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.footer-brand .fb-logo .fi {
    background: #e53935;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.footer-brand p {
    font-size: 12.5px;
    line-height: 1.7;
    color: #888;
    margin-bottom: 14px
}

.footer-socials {
    display: flex;
    gap: 8px
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #888;
    transition: all .2s;
}

.footer-socials a:hover {
    background: #4caf50;
    border-color: #4caf50;
    color: #fff
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px
}

.footer-col ul li {
    margin-bottom: 8px
}

.footer-col ul li a {
    font-size: 12.5px;
    color: #888;
    transition: color .2s
}

.footer-col ul li a:hover {
    color: #4caf50
}

.footer-col ul li a::before {
    content: '› ';
    color: #4caf50
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom .copy {
    font-size: 12px;
    color: #666
}

.footer-bottom .pay-icons {
    display: flex;
    gap: 6px
}

.footer-bottom .pay-icons span {
    background: #2a2a2a;
    color: #aaa;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 3px;
    border: 1px solid #333;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media(max-width:900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .service-bar .inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

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

    .rel-price-row .cur {
        font-size: 12px;
    }

    .rel-btn-order {
        padding: 5px;
        font-size: 12px;
    }

    .rel-btn-cart {
        padding: 5px;
        font-size: 12px;
    }

    .fixed-order .btn-order {
        padding: 10px;
    }

    .open-word {
        font-size: 56px
    }

    .hero,
    .hero-slides,
    .hero-slide {
        height: 220px
    }

    .slide-open .amb1,
    .slide-open .amb2 {
        display: none
    }

    .navbar-bar .inner {
        gap: 10px
    }

    .logo .logo-text small {
        display: none
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .service-bar .inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px
    }
}

@media(max-width:400px) {
    .products-grid {
        grid-template-columns: 1fr
    }
}

</style><style>* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f5f5;
    color: #222;
    font-size: 14px
}

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

img {
    display: block;
    max-width: 100%
}

.marquee-bar {
    background: #2e7d32;
    color: #fff;
    font-size: 12px;
    padding: 5px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-block;
    animation: marquee 30s linear infinite
}

.marquee-track:hover {
    animation-play-state: paused
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.marquee-bar .m-item {
    display: inline-block;
    margin: 0 36px
}

.marquee-bar .m-item strong {
    color: #ffd54f
}

.countdown-bar {
    background: linear-gradient(90deg, #e53935, #ff6f00);
    color: #fff;
    font-size: 12px;
    padding: 5px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.countdown-bar .cd-label {
    opacity: .9
}

.countdown-bar .cd-boxes {
    display: flex;
    gap: 5px;
    align-items: center
}

.cd-box {
    background: rgba(0, 0, 0, .25);
    border-radius: 4px;
    padding: 2px 8px;
    text-align: center;
    min-width: 38px;
}

.cd-box .cdn {
    font-size: 15px;
    font-weight: 700;
    display: block;
    line-height: 1.2
}

.cd-box .cdl {
    font-size: 9px;
    opacity: .8
}

.countdown-bar .hurry {
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 20px;
    padding: 2px 12px;
    font-size: 11px;
    font-weight: 600;
}

.navbar-bar {
    background: #fff;
    border-bottom: 1.5px solid #e8e8e8;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.navbar-bar .inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    cursor: pointer
}

.logo .logo-icon {
    background: #e53935;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.logo .logo-text {
    font-size: 13.5px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: .3px;
    line-height: 1.1
}

.logo .logo-text small {
    display: block;
    font-size: 9px;
    font-weight: 400;
    color: #888;
    letter-spacing: 1px
}

.search-wrap {
    flex: 1;
    position: relative;
    max-width: 560px
}

.search-wrap input {
    width: 100%;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    padding: 9px 42px 9px 14px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color .2s;
    color: #333;
}

.search-wrap input::placeholder {
    color: #bbb
}

.search-wrap input:focus {
    border-color: #4caf50
}

.search-wrap .s-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #999;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s;
}

.search-wrap .s-btn:hover {
    color: #4caf50
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto
}

.cart-btn {
    position: relative;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    transition: color .2s
}

.cart-btn:hover {
    color: #4caf50
}

.cart-btn .cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #4caf50;
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ════════════════════════════════════
                   BREADCRUMB
                ════════════════════════════════════ */
.breadcrumb-bar {
    background: #fff;
    border-bottom: 1px solid #efefef;
    padding: 9px 0;
    font-size: 12.5px;
    color: #888;
    margin-top: 20px;
}

.breadcrumb-bar .inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 6px
}

.breadcrumb-bar a {
    color: #4caf50
}

.breadcrumb-bar a:hover {
    text-decoration: underline
}

.breadcrumb-bar .sep {
    color: #ccc
}

.product-section {
    max-width: 1280px;
    margin: 20px auto;
    padding: 0 20px
}

.product-wrap {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
    padding: 24px;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 32px;
}

/* ── LEFT: Image Gallery ── */
.prod-gallery {
    position: relative
}

.gallery-main {
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid #efefef;
    background: #f9f9f9;
    aspect-ratio: 1/1;
    position: relative;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.gallery-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e53935;
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    box-shadow: 0 2px 8px rgba(229, 57, 53, .4);
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap
}

.gallery-thumb {
    width: 64px;
    height: 64px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: border-color .2s;
    background: #f5f5f5;
    flex-shrink: 0;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: #4caf50
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

/* ── RIGHT: Product Info ── */
.prod-info {}

.prod-info .p-title {
    font-size: 21px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.35;
    margin-bottom: 12px;
}

.prod-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px
}

.prod-price-row .cur {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
}

.prod-price-row .old {
    font-size: 15px;
    color: #bbb;
    text-decoration: line-through
}

.prod-desc {
    font-size: 12.5px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 14px
}

/* Qty */
.qty-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px
}

.qty-row label {
    font-size: 13px;
    color: #555;
    font-weight: 500
}

.qty-ctrl {
    display: flex;
    align-items: center;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden
}

.qty-ctrl button {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 16px;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}

.qty-ctrl button:hover {
    background: #f5f5f5
}

.qty-ctrl input {
    width: 44px;
    height: 32px;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    font-family: 'Poppins', sans-serif;
    color: #222;
}

/* Action buttons */
.action-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px
}

.btn-order {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #4caf50;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: background .2s;
}

.btn-order.btn-lrmove {
    animation: quickOrderBounce 2s ease-in-out infinite;
    will-change: transform;
}

.btn-order:hover {
    background: #43a047
}

.btn-cart {
    width: 100%;
    padding: 11px;
    border: 1.5px solid #4caf50;
    border-radius: 6px;
    background: #fff;
    color: #4caf50;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: all .2s;
    margin-top: 10px;
}

.btn-cart:hover {
    background: #f1f8e9
}

.btn-wa {
    width: 100%;
    padding: 11px;
    border: none;
    border-radius: 6px;
    background: #25d366;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: background .2s;
}

.btn-wa:hover {
    background: #1da851
}

.btn-call1 {
    width: 100%;
    padding: 11px;
    border: none;
    border-radius: 6px;
    background: #1976d2;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: background .2s;
}

.btn-call1:hover {
    background: #1565c0
}

.btn-call2 {
    width: 100%;
    padding: 11px;
    border: none;
    border-radius: 6px;
    background: #1976d2;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: background .2s;
}

.btn-call2:hover {
    background: #1565c0
}

.btn-msg {
    width: 100%;
    padding: 11px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(90deg, #e91e63, #9c27b0);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: opacity .2s;
}

.btn-msg:hover {
    opacity: .9
}

/* Delivery info table */
.delivery-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin-bottom: 14px;
}

.delivery-table tr {
    border-bottom: 1px solid #f0f0f0
}

.delivery-table td {
    padding: 8px 4px;
    color: #555
}

.delivery-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #222
}

/* Trust icons */
.trust-icons {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
    margin-top: 4px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px
}

.trust-item i {
    font-size: 22px;
    color: #4caf50
}

.trust-item span {
    font-size: 11px;
    color: #888;
    text-align: center
}

.tabs-section {
    max-width: 1280px;
    margin: 16px auto 0;
    padding: 0 20px
}

.tabs-wrap {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
    overflow: hidden
}

.tab-btns {
    display: flex;
    border-bottom: 2px solid #f0f0f0
}

.tab-btn {
    padding: 13px 22px;
    font-size: 13.5px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    border: none;
    background: transparent;
    color: #888;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all .2s;
}

.tab-btn.active {
    color: #4caf50;
    border-bottom-color: #4caf50;
    font-weight: 600
}

.tab-btn:hover:not(.active) {
    color: #555
}

.tab-content {
    display: none;
    padding: 18px 22px;
    font-size: 13px;
    color: #555;
    line-height: 1.8
}

.tab-content.active {
    display: block
}

.no-reviews {
    text-align: center;
    padding: 24px;
    color: #bbb;
    font-size: 13px
}


.fixed-order {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: #fff;
    border-top: 1.5px solid #e0e0e0;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, .1);
}

.fixed-order .fo-price {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap
}

.fixed-order .fo-price::before {
    content: '৳'
}

.fixed-order .fo-btn {
    flex: 1;
    padding: 11px;
    border: none;
    border-radius: 6px;
    background: #4caf50;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: background .2s;
}

.fixed-order .fo-btn:hover {
    background: #388e3c
}

.fixed-order .fo-icons {
    display: flex;
    gap: 8px
}

.fixed-order .fo-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    color: #555;
    transition: all .2s;
    background: #fff;
}

.fixed-order .fo-icon.wa {
    background: #25d366;
    border-color: #25d366;
    color: #fff
}

.fixed-order .fo-icon.call {
    background: #1976d2;
    border-color: #1976d2;
    color: #fff
}

.floating-socials {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-socials a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 21px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.floating-socials a:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .26);
}

.floating-socials .wa {
    background: #25d366;
}

.floating-socials .call {
    background: #2f80ed;
}

.qs-overlay-shell {
    position: fixed;
    inset: 0;
    z-index: 1005;
    display: none;
}

.qs-overlay-shell.show {
    display: block;
}

.qs-overlay-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 16, 20, .56);
}

.qs-cart-panel,
.qs-checkout-card {
    position: absolute;
    background: #fff;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .24);
    border: 1px solid #e8edf2;
}

.qs-cart-panel {
    top: 0;
    right: 0;
    width: min(420px, 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.qs-checkout-card {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(760px, calc(100% - 24px));
    max-height: calc(100vh - 24px);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.qs-cart-head,
.qs-checkout-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 18px 14px;
    border-bottom: 1px solid #edf1f4;
    background: linear-gradient(180deg, #fff, #fbfcfd);
}

.qs-kicker {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #16a34a;
    margin-bottom: 4px;
}

.qs-cart-head h3,
.qs-checkout-head h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    color: #17212b;
}

.qs-close-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0;
    background: #f3f5f7;
    color: #52606d;
    cursor: pointer;
    flex: 0 0 auto;
}

.qs-cart-items,
.qs-checkout-items {
    padding: 14px 18px;
    overflow: auto;
    flex: 1;
}

.qs-cart-item,
.qs-checkout-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border: 1px solid #e8edf2;
    border-radius: 14px;
    background: #fff;
    margin-bottom: 10px;
}

.qs-cart-item img,
.qs-checkout-item img {
    width: 62px;
    height: 62px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #edf1f4;
    flex-shrink: 0;
}

.qs-cart-info,
.qs-checkout-info {
    flex: 1;
    min-width: 0;
}

.qs-cart-name,
.qs-checkout-name {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.35;
    margin-bottom: 4px;
}

.qs-cart-sub,
.qs-checkout-sub {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.qs-cart-actions,
.qs-checkout-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.qs-qty-group {
    display: inline-flex;
    border: 1px solid #dce3ea;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.qs-qty-group a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #334155;
    font-weight: 700;
    font-size: 16px;
    background: #fff;
}

.qs-qty-group a:hover {
    background: #f6f8fb;
}

.qs-remove-link {
    color: #ef4444;
    font-size: 13px;
    font-weight: 600;
}

.qs-cart-footer,
.qs-checkout-footer {
    padding: 14px 18px 18px;
    border-top: 1px solid #edf1f4;
    background: #fbfcfd;
}

.qs-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #17212b;
    font-weight: 700;
}

.qs-total-row small {
    display: block;
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
}

.qs-checkout-btn,
.qs-checkout-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    background: linear-gradient(90deg, #16a34a, #22c55e);
}

.qs-checkout-btn:hover,
.qs-checkout-link:hover {
    color: #fff;
}

.qs-empty-box {
    padding: 36px 18px;
    text-align: center;
    color: #6b7280;
}

.qs-empty-box h4 {
    margin: 10px 0 6px;
    font-size: 18px;
    color: #17212b;
}

.qs-empty-box p {
    font-size: 13px;
    line-height: 1.6;
}

.qs-toast-wrap {
    position: fixed;
    right: 22px;
    bottom: 20px;
    z-index: 1600;
    display: grid;
    gap: 8px;
    pointer-events: none;
}

.qs-toast {
    min-width: 280px;
    max-width: 380px;
    background: #fff;
    border: 1px solid #dbe4ea;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .13);
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: qsToastIn .2s ease;
    pointer-events: auto;
}

.qs-toast.success i {
    color: #16a34a;
}

.qs-toast.error i {
    color: #ef4444;
}

@keyframes qsToastIn {
    from {
        transform: translateY(8px);
        opacity: 0;
    }

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

.qs-checkout-item {
    align-items: center;
}

.qs-checkout-item .qs-checkout-name {
    margin-bottom: 2px;
}

.qs-checkout-item .qs-checkout-sub {
    margin-bottom: 0;
}

.qs-checkout-summary {
    border-top: 1px dashed #dfe5ea;
    margin-top: 8px;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #17212b;
}

@media(max-width:600px) {
    .qs-cart-panel {
        width: 100%;
    }

    .qs-checkout-card {
        width: calc(100% - 16px);
        max-height: calc(100vh - 16px);
        border-radius: 16px;
    }

    .qs-cart-head,
    .qs-checkout-head,
    .qs-cart-items,
    .qs-checkout-items,
    .qs-cart-footer,
    .qs-checkout-footer {
        padding-left: 12px;
        padding-right: 12px;
    }

    .qs-toast-wrap {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .qs-toast {
        min-width: 0;
        width: 100%;
    }
}

@media(max-width:600px) {
    .floating-socials {
        right: 20px;
        bottom: 20px;
    }

    .floating-socials a {
        width: 35px;
        height: 35px;
        font-size: 15px;
    }
}



/* ════════════════════════════════════
                   RESPONSIVE
                ════════════════════════════════════ */
@media(max-width:900px) {
    .product-wrap {
        grid-template-columns: 1fr;
        gap: 20px
    }



    .related-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:600px) {

    .product-section,
    .related-section,
    .tabs-section,
    .reviews-section {
        padding: 0 10px
    }

    .product-wrap {
        padding: 14px
    }

    .prod-info .p-title {
        font-size: 17px
    }


    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px
    }

}
