   /* Header */
        .header {
            background: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .logo {
            font-family: 'Noto Serif Bengali', serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-orange);
            text-decoration: none;
            white-space: nowrap;
        }

        .search-bar {
            flex: 1;
            position: relative;
        }

        .search-bar input {
            width: 100%;
            padding: 12px 50px 12px 20px;
            border: 2px solid #000 ;
            border-radius: 4px;
            font-size: 14px;
            font-family: 'Hind Siliguri', sans-serif;
        }

        .search-bar input:focus {
            outline: none;
            border-color: var(--primary-orange);
        }

        .search-bar button {
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            background: var(--primary-orange);
            color: white;
            border: none;
            padding: 0 20px;
            cursor: pointer;
            border-radius: 0 4px 4px 0;
            transition: background 0.3s;
        }

        .search-bar button:hover {
            background: #e5541f;
        }

        .header-actions {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .header-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--dark-text);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .header-btn:hover {
            color: var(--primary-orange);
        }

        .cart-badge {
            background: var(--primary-orange);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 600;
        }

        /* Navigation */
      .nav {
    background: var(--light-gray);
    border-bottom: 1px solid var(--border-gray);
}

/* container */
.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
}

/* nav item wrapper */
.nav-item {
    position: relative;
}

/* main links (unchanged) */
.nav a {
    display: block;
    padding: 12px 0;
    color: var(--dark-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--primary-orange);
}

/* ---------------- Submenu ---------------- */

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    border: 1px solid var(--border-gray);
    display: none;
    flex-direction: column;
    z-index: 1000;
}

/* submenu links */
.submenu a {
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 400;
    color: var(--dark-text);
    white-space: nowrap;
}

.submenu a:hover {
    background: var(--light-gray);
    color: var(--primary-orange);
}

/* show submenu on hover */
.nav-item.has-submenu:hover .submenu {
    display: flex;
}
/* add space for arrow */
.nav-item.has-submenu > a {
    padding-right: 14px;
    position: relative;
}

/* arrow icon */
.nav-item.has-submenu > a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--dark-text);
    border-bottom: 2px solid var(--dark-text);
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s, border-color 0.3s;
}

/* hover state */
.nav-item.has-submenu:hover > a::after {
    transform: translateY(-50%) rotate(225deg); /* arrow up */
    border-color: var(--primary-orange);
}


/* home css  */
.bengal_home_sider {
    width: 100%;
    overflow: hidden;
}

.bengalHomeSwiper {
	width: 100%;
	max-height: 800px;
}

.bengalHomeSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* home category  */
.bengal_home_cat {
    padding: 40px 0;
}

.bengal_cat_grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 24px;
}

.bengal_cat_item {
    text-align: center;
}
.bengal_cat_item a {
    text-decoration: none;
    color: inherit;
    display: block;
}
.bengal_cat_img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
}
.bengal_cat_info {
    margin-top: 12px;
}

.bengal_cat_title {
    font-size: 18px;
    margin: 0 0 4px;
}

.bengal_cat_count {
    font-size: 14px;
    color: #777;
}

.bengal_container {
	padding: 0 50px;
}

/* product details page css start  */



/* EasyZoom core styles */

.easyzoom {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
}

.easyzoom > a {
    margin: auto;
    display: block;
}

.easyzoom img {
    vertical-align: bottom;
}

.easyzoom > a > img {
    margin: auto;
    max-width: 100%;
    object-fit: contain;
}

.easyzoom.is-loading img {
    cursor: progress;
}

.easyzoom.is-ready img {
    cursor: crosshair;
}

.easyzoom.is-error img {
    cursor: not-allowed;
}

.easyzoom-notice {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 150;
    width: 10em;
    margin: -1em 0 0 -5em;
    line-height: 2em;
    text-align: center;
    background: #FFF;
    box-shadow: 0 0 10px #888;
}

.easyzoom-flyout {
    position: absolute;
    z-index: 100;
    overflow: hidden;
    background: #FFF;
}

.easyzoom--overlay .easyzoom-flyout {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.easyzoom--adjacent .easyzoom-flyout {
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    margin-left: 20px;
} 

.content-max,
.controller-max {
    margin: 0 auto;
    max-width: 630px;
}

.controller-max {
    margin-top: 10px;
}


.ratio {
    position: relative;
    width: 100%;
}

.ratio::before {
    content: "";
    display: block;
}

.ratio > * {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

.ratio.ratio-4x3 {
    background-color: #FFF;
    border: 1px solid #DDD;
}

.ratio.ratio-4x3::before {
    padding-top: 75%;
}


/* ========== Product Details CSS ========== */
:root {
    --primary-color: #222;
    --secondary-color: #767676;
    --accent-color: #222;
    --border-color: #e4e4e4;
    --light-bg: #f5f5f5;
    --star-color: #ffb800;
}

.product-details-wrapper {
    font-family: 'Jost', sans-serif;
    padding: 30px 0 60px;
}

.container {
    max-width: 94%;
    margin: 0 auto;
    padding: 0 15px;
}

/* ========== Breadcrumb ========== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    text-transform: uppercase;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
}

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

.breadcrumb-separator {
    color: var(--secondary-color);
}

/* ========== Product Single Layout ========== */
.product-single {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.product-single__media {
    flex: 0 0 55%;
    max-width: 55%;
    display: flex;
    gap: 15px;
    flex-direction:column ;
}

.product-single__info {
    flex: 0 0 calc(45% - 40px);
    max-width: calc(45% - 40px);
}

/* ========== Product Gallery ========== */
.product-single__thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100px;
}

.product-single__thumbnail-item {
    width: 100px;
    height: 100px;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.3s;
}

.product-single__thumbnail-item:hover,
.product-single__thumbnail-item.active {
    border-color: var(--primary-color);
}

.product-single__thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-single__main-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.product-single__main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.zoom-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.zoom-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.zoom-btn svg {
    width: 16px;
    height: 16px;
}

/* ========== Product Info ========== */
.product-single__name {
    font-size: 26px;
    font-weight: 500;
    margin: 0 0 15px;
    color: var(--primary-color);
    line-height: 1.3;
}

.product-single__price {
    margin-bottom: 20px;
}

.current-price {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
}

.old-price {
    font-size: 20px;
    color: var(--secondary-color);
    text-decoration: line-through;
    margin-left: 10px;
}

.product-single__short-desc {
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-size: 15px;
    line-height: 1.7;
}

/* ========== Swatches ========== */
.product-single__swatches {
    margin-bottom: 25px;
}

.product-swatch {
    margin-bottom: 20px;
}

.product-swatch label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.swatch-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Size Swatches */
.text-swatches .swatch-list input[type="radio"] {
    display: none;
}

.text-swatches .swatch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.text-swatches .swatch:hover,
.text-swatches input[type="radio"]:checked + .swatch {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
}

.sizeguide-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    color: var(--primary-color);
    text-decoration: underline;
}

/* Color Swatches */
.color-swatches .swatch-list input[type="radio"] {
    display: none;
}

.color-swatches .swatch-color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: currentColor;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.color-swatches .swatch-color::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid transparent;
    border-radius: 50%;
    transition: border-color 0.3s;
}

.color-swatches input[type="radio"]:checked + .swatch-color::before {
    border-color: var(--primary-color);
}

/* ========== Add to Cart ========== */
.product-single__addtocart {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    height: 50px;
    position: relative;
}

.btn-addtocart {
    flex: 1;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: inherit;
}

.btn-addtocart:hover {
    background: #444;
}

/* ========== Add to Links ========== */
.product-single__addtolinks {
    display: flex;
    gap: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.product-single__addtolinks a,
.product-single__addtolinks button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}

.product-single__addtolinks a:hover,
.product-single__addtolinks button:hover {
    text-decoration: underline;
}

.product-single__addtolinks svg {
    width: 16px;
    height: 16px;
}

/* ========== Meta Info ========== */
.product-single__meta-info {
    font-size: 14px;
}

.meta-item {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.meta-item label {
    font-weight: 600;
    color: var(--primary-color);
}

.meta-item span {
    color: var(--secondary-color);
}

/* ========== Product Tabs ========== */
.product-single__details-tab {
    margin-top: 60px;
}

.product-single__details-tab .nav-tabs {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    border-bottom: 1px solid var(--border-color);
}

.product-single__details-tab .nav-tabs .nav-item {
    margin-bottom: -1px;
}

.product-single__details-tab .nav-tabs .nav-link {
    display: block;
    padding: 15px 5px;
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.product-single__details-tab .nav-tabs .nav-link:hover,
.product-single__details-tab .nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.product-single__details-tab .tab-content {
    display: none;
}

.product-single__details-tab .tab-content.active {
    display: block;
}

/* Description Tab */
.product-single__details-tab .product-single__description .block-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}



/* product wrapper  */
.product-card-wrapper {
	padding: 10px;
}
.product-card {
    position: relative;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    font-family: sans-serif;
}
.pc__img-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.pc__img-wrapper img.pc__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s;
}
.pc__img-wrapper:hover img.pc__img {
    transform: scale(1.05);
}

.pc__img-prev,
.pc__img-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    padding: 5px;
    z-index: 10;
}
.pc__img-prev { left: 10px; }
.pc__img-next { right: 10px; }

.pc__atc {
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
	background: #000;
	color: #fff;
	padding: 8px 16px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
	width: 100%;
    padding: 15px;
}

/* Info Section */
.pc__info {
    padding: 10px 12px;
    position: relative;
}

.pc__category {
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}

.pc__title {
    font-size: 16px;
    margin: 0 0 6px 0;
}

.pc__title a {
    text-decoration: none;
    color: #222;
}

.pc__title a:hover {
    color: #000;
}

.pc__price {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 6px;
}

/* Reviews */
.pc__review {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #666;
}

.pc__stars {
    display: flex;
    gap: 2px;
}

.review-star {
    width: 14px;
    height: 14px;
    fill: #ccc;
}

.review-star.filled {
    fill: #ffcc00;
}

.pc__review-count {
    margin-left: 4px;
}

/* Wishlist button */
.pc__btn-wl {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Labels */
.pc__labels {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
}

.pc-label {
    display: inline-block;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 3px;
    color: #fff;
}

.pc-label_new {
    background: #fff;
    color: #000;
}

.pc-label_sale {
    background: #000;
}


/* header live search  */
.live-search-list li {
	list-style: none;
	margin: 15px 10px;
}
.live-search-list li img {
	margin-right: 20px;
	height: 80px;
	width: 80px;
	object-fit: cover;
}
.live-search-list {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: #fff;
	border: 1px solid #ddd;
	z-index: 9999;
	max-height: 320px;
	overflow-y: auto;
	overflow-x: hidden;
}
.live-search-list li a {
	display: flex;
}



/* ========== Responsive ========== */

@media (max-width: 991px) {
    .product-single__media {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .product-single__info {
        flex: 0 0 100%;
        max-width: 100%;
    }

}

@media (max-width: 767px) {
    .product-single__media {
        flex-direction: column-reverse;
    }

    .product-single__thumbnails {
        flex-direction: row;
        width: 100%;
    }

    .product-single__thumbnail-item {
        width: 80px;
        height: 80px;
    }


    .nav-tabs {
        flex-wrap: wrap;
        gap: 15px;
    }

    .product-single__description .row {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .product-single__name {
        font-size: 22px;
    }

    .current-price {
        font-size: 24px;
    }

    .product-single__addtocart {
        flex-direction: column;
    }

    .btn-addtocart {
        width: 100%;
    }
}


/* product details page css end  */

/* cart page css start  */

.my-custom-cart-page .woocommerce-cart-form {
	background: #f9f9f9;
	padding: 30px;
	width: 90%;
}
.my-custom-cart-page table.shop_table {
    border: 2px solid #000;
}
.my-custom-cart-page .woocommerce {
	display: flex;
	justify-content: center;
	align-items: center;
}
.my-custom-cart-page .woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals {
	width: 60%;
}
.my-custom-cart-page .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
	width: 90%;
	padding-right: 25px;
}
.my-custom-cart-page .checkout-button.button.alt.wc-forward {
	background: #000;
}
.my-custom-cart-page .coupon button {
	background: #000 !important;
	border-radius: 0px !important;
	padding: 10px 20px !important;
	color: #fff !important;
}
.my-custom-cart-page .button {
	background: #000 !important;
	color: #fff !important;
	border-radius: 0px !important;
}


/* cart page css end  */


/* checkout page css start  */

.my-custom-checkout-wrapper {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
}

.my-custom-checkout-wrapper .woocommerce-checkout {
    margin: auto;
}

.my-custom-checkout-wrapper .woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
	width: 100%;
}

.my-custom-checkout-wrapper .woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
	background: #000;
	border-radius: 0px;
	padding: 15px 20px;
}
.my-custom-checkout-wrapper #customer_details {
	float: left;
	width: 50%;
	padding-right: 30px;
}
.my-custom-checkout-wrapper #order_review {
	float: right;
	width: 50%;
}
.my-custom-checkout-wrapper { 
	position: inherit;
	min-height: 800px;
	max-width: 90%;
	margin: 0 auto;
}
/* checkout page css end  */



/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
	font-size: 16px;
	margin-bottom: 15px;
	font-family: 'Noto Serif Bengali', serif;
	color: #fff;
	text-decoration: underline;
}

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #bdc3c7;
    font-size: 14px;
}


/* responsive css start  */

@media (max-width: 768px) {

.my-custom-cart-page .woocommerce {
	display: block;
}
.my-custom-cart-page .woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals {
	width: 100%;
}
.my-custom-cart-page .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
	width: 100%;
}
.my-custom-cart-page .woocommerce-cart-form {
	width: 100%;
}
.my-custom-cart-page .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
	padding-left: 25px;
}
    .bengalHomeSwiper {
        max-height: 250px;
    }
    .bengal_cat_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .bengal_container {
	    padding: 0 25px;
    }   

}


