/*
Theme Name: Imported Makeover Child
Template: hello-elementor
Version: 1.0.0
Text Domain: importedmakeover-child
*/

/* ===========================
   FONTS
   =========================== */
@font-face {
	font-family: 'Brown';
	src: url('fonts/Brown.woff2') format('woff2'),
	     url('fonts/Brown.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0130-0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'Brown';
	src: url('fonts/Brown.woff2') format('woff2'),
	     url('fonts/Brown.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0130-0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'BrownLight';
	src: url('fonts/BrownLight.woff') format('woff'),
	     url('fonts/BrownLight.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0130-0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body {
	font-family: 'Brown', 'Hind Siliguri', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: #1a1a1a;
	line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Brown', 'Hind Siliguri', sans-serif;
	font-weight: 700;
}

/* ===========================
   HEADER
   =========================== */
.im-header {
	position: sticky;
	top: 0;
	z-index: 9999;
	background: #fff;
	border-bottom: 1px solid #f0f0f0;
}
.im-header__inner {
	max-width: 1180px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 24px;
	gap: 24px;
}
.im-header__logo img {
	height: 30px;
	width: auto;
}
.im-header__nav {
	flex: 1;
	display: flex;
	justify-content: center;
}
.im-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 28px;
}
.im-nav-list li a {
	font-family: 'Brown', sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.2s;
	padding: 8px 0;
}
.im-nav-list li a:hover {
	color: #E80B58;
}
.im-nav-list li.menu-item-has-children {
	position: relative;
}
.im-nav-list li.menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	margin-left: 6px;
	vertical-align: middle;
	position: relative;
	top: -2px;
	transition: transform 0.18s ease;
}
.im-nav-list li.menu-item-has-children:hover > a::after {
	transform: rotate(225deg);
	top: 1px;
}
.im-nav-list .sub-menu {
	list-style: none;
	margin: 0;
	padding: 12px;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%, 4px) scale(0.98);
	transform-origin: top center;
	min-width: 230px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 14px;
	box-shadow: 0 4px 10px rgba(20, 20, 20, 0.04), 0 20px 45px rgba(20, 20, 20, 0.10);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
	z-index: 50;
}
.im-nav-list li.menu-item-has-children:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0) scale(1);
}
.im-nav-list .sub-menu li + li {
	margin-top: 2px;
}
.im-nav-list .sub-menu li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 10px 14px;
	font-size: 12.5px;
	letter-spacing: 0.3px;
	text-transform: none;
	font-weight: 600;
	color: #4a4a4a;
	border-radius: 9px;
	white-space: nowrap;
	transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
}
.im-nav-list .sub-menu li a::after {
	content: '';
	width: 5px;
	height: 5px;
	flex-shrink: 0;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(-45deg);
	opacity: 0;
	transition: opacity 0.15s ease, transform 0.15s ease;
}
.im-nav-list .sub-menu li a:hover {
	background: #fdf1f5;
	color: #E80B58;
	padding-left: 18px;
}
.im-nav-list .sub-menu li a:hover::after {
	opacity: 1;
	transform: rotate(-45deg) translateX(2px);
}
.im-header__icons {
	display: flex;
	align-items: center;
	gap: 16px;
}
.im-icon-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1a1a1a;
	text-decoration: none;
	position: relative;
	cursor: pointer;
	background: none;
	border: none;
	padding: 6px;
	transition: color 0.2s;
}
.im-icon-btn:hover {
	color: #E80B58;
}
.im-cart-count {
	position: absolute;
	top: -2px;
	right: -6px;
	background: #E80B58;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

/* Bump animation on the header cart icon when a product is added */
@keyframes im-cart-icon-bump {
	0%   { transform: scale(1); }
	30%  { transform: scale(1.35); }
	55%  { transform: scale(0.9); }
	100% { transform: scale(1); }
}
.im-icon-btn.im-cart-icon.im-cart-bump svg {
	animation: im-cart-icon-bump 0.5s ease;
}
@keyframes im-cart-count-pop {
	0%   { transform: scale(0.4); opacity: 0.5; }
	60%  { transform: scale(1.3); opacity: 1; }
	100% { transform: scale(1); opacity: 1; }
}
.im-icon-btn.im-cart-icon.im-cart-bump .im-cart-count {
	animation: im-cart-count-pop 0.4s ease;
}

/* WooCommerce's own "View cart" link (auto-inserted after the add-to-cart
   button on ajax success) is replaced by the cart drawer + icon bump */
.single_add_to_cart_button + a.added_to_cart {
	display: none !important;
}

/* Search bar */
.im-search-bar {
	border-top: 1px solid #f0f0f0;
	background: #faf8f6;
	padding: 12px 24px;
}
.im-search-bar form {
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	gap: 8px;
}
.im-search-bar input[type="search"] {
	flex: 1;
	padding: 10px 16px;
	border: 1px solid #ddd;
	border-radius: 50px;
	font-family: 'Brown', sans-serif;
	font-size: 14px;
	outline: none;
}
.im-search-bar input[type="search"]:focus {
	border-color: #E80B58;
}
.im-search-bar button {
	background: #1a1a1a;
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

/* ===========================
   FOOTER
   =========================== */
.im-footer {
	background: #1a1a1a;
	color: #ccc;
	font-family: 'Brown', sans-serif;
	margin-top: 0;
}
.im-footer__top {
	max-width: 1180px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
	gap: 40px;
	padding: 60px 24px 40px;
}
.im-footer__logo {
	height: 36px !important;
	width: auto !important;
	margin-bottom: 16px;
	filter: brightness(0) invert(1);
}
.im-footer__tagline {
	font-size: 13px;
	line-height: 1.7;
	color: #999;
	margin-bottom: 16px;
}
.im-footer__social {
	display: flex;
	gap: 12px;
}
.im-footer__social a {
	color: #999;
	transition: color 0.2s;
}
.im-footer__social a:hover {
	color: #E80B58;
}
.im-footer__col h4 {
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 20px;
	font-weight: 700;
}
.im-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.im-footer__col ul li {
	margin-bottom: 10px;
}
.im-footer__col ul li a {
	color: #999;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s;
}
.im-footer__col ul li a:hover {
	color: #E80B58;
}
.im-footer__newsletter p {
	font-size: 13px;
	color: #999;
	line-height: 1.7;
	margin-bottom: 16px;
}
.im-newsletter-form {
	display: flex;
	gap: 8px;
}
.im-newsletter-form input {
	flex: 1;
	padding: 10px 14px;
	border: 1px solid #444;
	border-radius: 4px;
	background: transparent;
	color: #fff;
	font-size: 13px;
	font-family: 'Brown', sans-serif;
}
.im-newsletter-form input::placeholder {
	color: #666;
}
.im-newsletter-form button {
	padding: 10px 20px;
	background: #E80B58;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-family: 'Brown', sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: background 0.2s;
}
.im-newsletter-form button:hover {
	background: #c70a4b;
}
.im-footer__bottom {
	border-top: 1px solid #333;
	text-align: center;
	padding: 20px 24px;
}
.im-footer__bottom p {
	margin: 0;
	font-size: 12px;
	color: #666;
}

/* ===========================
   WOOCOMMERCE PRODUCT CARDS (shop/archive/homepage)
   =========================== */
.woocommerce ul.products::before,
.woocommerce ul.products::after {
	content: none !important;
	display: none !important;
}
.woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 24px;
	width: 100%;
	margin: 0 0 24px !important;
}
.woocommerce ul.products.columns-3 {
	grid-template-columns: repeat(3, 1fr) !important;
}
.woocommerce ul.products li.product {
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 16px;
	background: #fff;
	transition: box-shadow 0.2s;
	display: flex;
	flex-direction: column;
	width: auto !important;
	margin: 0 !important;
	float: none !important;
}
@media (max-width: 1024px) {
	.woocommerce ul.products {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}
@media (max-width: 768px) {
	.woocommerce ul.products {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 14px;
	}
}
@media (max-width: 480px) {
	.woocommerce ul.products {
		grid-template-columns: repeat(1, 1fr) !important;
	}
}
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
	flex: 1;
	display: flex;
	flex-direction: column;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	flex: 1;
}
.woocommerce ul.products li.product a img {
	aspect-ratio: 1 / 1;
	object-fit: contain;
	background: #faf8f6;
}
.woocommerce ul.products li.product:hover {
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.woocommerce ul.products li.product a img {
	border-radius: 6px;
	border: 1px solid #f0f0f0;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: 'Brown', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #1a1a1a;
	padding: 8px 0 4px;
}
.woocommerce ul.products li.product .price {
	font-family: 'Brown', sans-serif;
	font-size: 15px;
	color: #E80B58;
	font-weight: 700;
}
.woocommerce ul.products li.product .price del {
	color: #999;
	font-weight: 400;
	font-size: 13px;
}
.woocommerce ul.products li.product .price ins {
	text-decoration: none;
	font-weight: 700;
}
.woocommerce ul.products li.product .onsale {
	background: #E80B58;
	color: #fff;
	font-family: 'Brown', sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 4px;
	padding: 4px 10px;
	min-height: auto;
	min-width: auto;
	line-height: 1.4;
}
.woocommerce ul.products li.product .button {
	font-family: 'Brown', sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: #1a1a1a;
	color: #fff;
	border-radius: 50px;
	padding: 8px 20px;
	border: none;
	transition: background 0.2s;
}
.woocommerce ul.products li.product .button:hover {
	background: #E80B58;
}

/* ===========================
   SHOP / ARCHIVE PAGE
   =========================== */
.woocommerce-page .woocommerce-breadcrumb {
	display: none;
}
.woocommerce-products-header {
	display: none;
}
.woocommerce-notices-wrapper {
	max-width: 1320px;
	margin: 0 auto;
}

/* Shop toolbar: result count + sort dropdown */
.woocommerce-page .woocommerce-result-count,
.woocommerce-page .woocommerce-ordering {
	font-family: 'Brown', sans-serif;
	font-size: 13px;
}
.woocommerce-page ul.products {
	margin-top: 0 !important;
	clear: both;
}
.woocommerce-page .woocommerce-result-count {
	margin: 32px 0 24px;
	padding: 0 24px;
	color: #888;
	float: left !important;
	display: flex;
	align-items: center;
}
.woocommerce-page .woocommerce-ordering {
	margin: 32px 0 24px;
	padding: 0 24px;
	float: right !important;
	position: relative;
	display: inline-block;
}
.woocommerce-page .woocommerce-ordering::after {
	content: '';
	position: absolute;
	right: 40px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-right: 2px solid #666;
	border-bottom: 2px solid #666;
	transform: translateY(-70%) rotate(45deg);
	pointer-events: none;
}
.woocommerce-page .woocommerce-ordering select {
	-webkit-appearance: none;
	appearance: none;
	width: auto;
	font-family: 'Brown', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #1a1a1a;
	padding: 12px 40px 12px 20px;
	border: 1px solid #e0e0e0;
	border-radius: 50px;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.2s;
}
.woocommerce-page .woocommerce-ordering select:hover,
.woocommerce-page .woocommerce-ordering select:focus {
	border-color: #E80B58;
	outline: none;
}
.woocommerce nav.woocommerce-pagination {
	margin: 48px 0 60px;
}
.woocommerce .woocommerce-pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
	border: none !important;
	font-family: 'Brown', sans-serif;
}
.woocommerce .woocommerce-pagination .page-numbers li {
	display: flex;
}
.woocommerce .woocommerce-pagination .page-numbers li a.page-numbers,
.woocommerce .woocommerce-pagination .page-numbers li span.page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 8px;
	border-radius: 50%;
	font-size: 14px;
	font-weight: 600;
	color: #1a1a1a;
	background: #fff;
	border: 1px solid #eee;
	text-decoration: none;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.woocommerce .woocommerce-pagination .page-numbers li a.page-numbers:hover {
	background: #faf1f5;
	border-color: #E80B58;
	color: #E80B58;
}
.woocommerce .woocommerce-pagination .page-numbers li span.page-numbers.current {
	background: #E80B58;
	border-color: #E80B58;
	color: #fff;
}
.woocommerce .woocommerce-pagination .page-numbers li .page-numbers.dots {
	background: transparent;
	border: none;
	color: #999;
}
.woocommerce .woocommerce-pagination .page-numbers li .next.page-numbers,
.woocommerce .woocommerce-pagination .page-numbers li .prev.page-numbers {
	font-size: 18px;
}

/* ===========================
   SHOP SIDEBAR FILTERS
   =========================== */
.im-shop-wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}
.im-shop-sidebar {
	position: sticky;
	top: 90px;
	padding-right: 8px;
	border-right: 1px solid #f0f0f0;
}
.im-shop-main {
	min-width: 0;
}
.im-filter-block {
	margin-bottom: 32px;
}
.im-filter-block h4 {
	font-family: 'Brown', sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #1a1a1a;
	margin: 0 0 14px;
}
.im-filter-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.im-filter-list li {
	margin-bottom: 8px;
}
.im-filter-list a {
	font-family: 'Brown', sans-serif;
	font-size: 13px;
	color: #666;
	text-decoration: none;
	transition: color 0.2s;
}
.im-filter-list a:hover {
	color: #E80B58;
}
.im-filter-list a.im-filter-active {
	color: #E80B58;
	font-weight: 700;
}
.im-filter-select {
	width: 100%;
	font-family: 'Brown', sans-serif;
	font-size: 13px;
	color: #1a1a1a;
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #fff;
	cursor: pointer;
	appearance: auto;
}
.im-filter-select:focus {
	outline: none;
	border-color: #E80B58;
}
@media (max-width: 900px) {
	.im-shop-wrap {
		grid-template-columns: 1fr;
	}
	.im-shop-sidebar {
		position: static;
		border-right: none;
		border-bottom: 1px solid #f0f0f0;
		padding-bottom: 24px;
		margin-bottom: 24px;
	}
	.im-filter-block {
		margin-bottom: 20px;
	}
}

/* ===========================
   SINGLE PRODUCT PAGE — CONVERSION REDESIGN
   =========================== */
.single-product div.product {
	max-width: 1180px;
	margin: 0 auto;
	padding: 48px 24px 60px;
}

/* Desktop: two-column layout via explicit grid placement.
   DOM order stays Title -> Image -> Short desc -> Price -> Stock -> Cart -> Trust -> Meta
   (correct for mobile/SEO); on desktop we re-map each child into a 2-col grid. */
.im-pdp-column {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 100%;
	margin: 0;
}
.im-pdp-column > .images {
	width: 100%;
	max-width: 100%;
	margin: 0 0 32px;
}
.im-pdp-column > .product_title,
.im-pdp-column > .woocommerce-product-details__short-description,
.im-pdp-column > .price,
.im-pdp-column > .im-stock-urgent,
.im-pdp-column > .im-stock-ok,
.im-pdp-column > .im-stock-status,
.im-pdp-column > form.cart,
.im-pdp-column > .im-trust-panel,
.im-pdp-column > .product_meta {
	width: 100%;
	text-align: left !important;
}

.single-product div.product div.images {
	width: 100%;
}
.woocommerce-product-gallery {
	opacity: 1 !important;
}
.woocommerce-product-gallery__wrapper {
	display: grid !important;
	grid-template-columns: 2fr 1fr 1fr !important;
	grid-template-rows: 1fr 1fr !important;
	gap: 16px !important;
}
.woocommerce-product-gallery__image {
	width: 100% !important;
	margin: 0 !important;
	pointer-events: auto !important;
}
.woocommerce-product-gallery__image a {
	pointer-events: none !important;
	cursor: zoom-in !important;
}
.woocommerce-product-gallery__image img {
	border: 1px solid #eee;
	border-radius: 12px;
	overflow: hidden;
	background: #faf8f6;
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 1 / 1 !important;
	object-fit: contain !important;
}
.woocommerce-product-gallery__image:nth-child(1) {
	grid-column: 1 !important;
	grid-row: 1 / 3 !important;
}
.woocommerce-product-gallery__image:nth-child(2) {
	grid-column: 2 !important;
	grid-row: 1 !important;
}
.woocommerce-product-gallery__image:nth-child(3) {
	grid-column: 3 !important;
	grid-row: 1 !important;
}
.woocommerce-product-gallery__image:nth-child(4) {
	grid-column: 2 !important;
	grid-row: 2 !important;
}
.woocommerce-product-gallery__image:nth-child(5) {
	grid-column: 3 !important;
	grid-row: 2 !important;
}

@media (max-width: 900px) {
	.single-product div.product {
		max-width: 640px;
		padding: 32px 20px 48px;
	}
	.im-pdp-column > .images {
		margin: 0 0 24px;
	}
	.woocommerce-product-gallery__wrapper {
		grid-template-columns: repeat(4, 1fr) !important;
		grid-template-rows: auto !important;
	}
	.woocommerce-product-gallery__image:nth-child(1) {
		grid-column: span 4 !important;
		grid-row: auto !important;
	}
	.woocommerce-product-gallery__image:nth-child(2),
	.woocommerce-product-gallery__image:nth-child(3),
	.woocommerce-product-gallery__image:nth-child(4),
	.woocommerce-product-gallery__image:nth-child(5) {
		grid-column: auto !important;
		grid-row: auto !important;
	}
}

/* Brand + title */
.single-product div.product .product_title {
	font-family: 'Brown', sans-serif;
	font-size: 30px;
	font-weight: 700;
	color: #1a1a1a;
	letter-spacing: 0.3px;
	line-height: 1.3;
	margin: 4px 0 10px;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Price block */
.single-product div.product .price {
	font-family: 'Brown', 'Hind Siliguri', sans-serif;
	font-size: 28px;
	color: #E80B58;
	font-weight: 700;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.single-product div.product .price del {
	color: #999;
	font-weight: 400;
	font-size: 19px;
	margin-right: 8px;
}
.single-product div.product .price ins {
	text-decoration: none;
}
.single-product div.product p.price {
	padding: 14px 20px;
	background: #fff9fa;
	border: 1px solid rgba(232, 11, 88, 0.08);
	border-radius: 12px;
	margin-bottom: 20px;
	box-shadow: 0 2px 8px rgba(232, 11, 88, 0.02);
}
.im-price-savings-badge {
	font-family: 'Brown', sans-serif;
	font-size: 11px;
	font-weight: 700;
	background: #E80B58;
	color: #fff;
	padding: 4px 8px;
	border-radius: 4px;
	margin-left: 12px;
	display: inline-block;
	vertical-align: middle;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

/* Stock status & Progress Bar */
.im-stock-status {
	font-family: 'Brown', 'Hind Siliguri', sans-serif;
	margin-bottom: 24px;
}
.im-stock-status__label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
}
.im-stock-status--urgent .im-stock-status__label {
	color: #c0392b;
}
.im-stock-status--warning .im-stock-status__label {
	color: #d35400;
}
.im-stock-status--ok .im-stock-status__label {
	color: #2e7d32;
}

/* Pulse Dot Animation */
.im-stock-pulse {
	width: 8px;
	height: 8px;
	background: #c0392b;
	border-radius: 50%;
	display: inline-block;
	box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.4);
	animation: imPulse 1.8s infinite;
}
.im-stock-dot {
	width: 8px;
	height: 8px;
	background: #2e7d32;
	border-radius: 50%;
	display: inline-block;
}
.im-stock-dot--warning {
	background: #d35400;
}
@keyframes imPulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.7);
	}
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 6px rgba(192, 57, 43, 0);
	}
	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(192, 57, 43, 0);
	}
}

/* Progress track */
.im-stock-progress {
	width: 100%;
	height: 6px;
	background: #f0f0f0;
	border-radius: 3px;
	overflow: hidden;
}
.im-stock-progress__bar {
	height: 100%;
	border-radius: 3px;
	transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.im-stock-progress__bar--urgent {
	background: linear-gradient(90deg, #c0392b, #e74c3c);
}
.im-stock-progress__bar--warning {
	background: linear-gradient(90deg, #d35400, #f39c12);
}
.im-stock-status--ok .im-stock-progress__bar {
	background: linear-gradient(90deg, #2e7d32, #4caf50);
}

/* Short description bullets */
.single-product div.product .woocommerce-product-details__short-description {
	font-family: 'Brown', sans-serif;
	font-size: 15px;
	color: #444;
	line-height: 1.8;
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid #f0f0f0;
}

/* Quantity + Add to cart row */
.woocommerce div.product form.cart,
.woocommerce-page div.product form.cart,
.single-product div.product form.cart {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 14px !important;
	flex-wrap: wrap !important;
	margin: 0 0 12px 0 !important;
	padding: 0 !important;
}
/* Hide duplicate WooCommerce English stock text */
.single-product div.product .stock {
	display: none !important;
}

.woocommerce div.product form.cart .quantity,
.single-product div.product form.cart .quantity,
.single-product div.product .quantity {
	display: inline-flex !important;
	align-items: stretch !important;
	justify-content: space-between !important;
	border: 1px solid #dcdcdc !important;
	border-radius: 10px !important;
	padding: 0 !important;
	background: #fff !important;
	height: 52px !important;
	width: 132px !important;
	min-width: 132px !important;
	box-sizing: border-box !important;
	overflow: hidden !important;
	margin: 0 0 0 -8px !important;
	float: none !important;
	box-shadow: 0 1px 2px rgba(0,0,0,0.04) !important;
}
.single-product div.product .quantity::before,
.single-product div.product .quantity::after {
	display: none !important;
}
.single-product div.product .quantity .qty {
	font-family: 'Brown', 'Hind Siliguri', sans-serif !important;
	border: none !important;
	background: transparent !important;
	width: 44px !important;
	height: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	text-align: center !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	color: #1a1a1a !important;
	box-shadow: none !important;
	outline: none !important;
	-moz-appearance: textfield !important;
	float: none !important;
	order: 2 !important;
}
.single-product div.product .quantity .qty::-webkit-outer-spin-button,
.single-product div.product .quantity .qty::-webkit-inner-spin-button {
	-webkit-appearance: none !important;
	margin: 0 !important;
}
.im-qty-btn {
	width: 44px !important;
	height: 100% !important;
	border: none !important;
	background: transparent !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	color: #888 !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 0 !important;
	transition: background 0.15s, color 0.15s !important;
	padding: 0 !important;
	margin: 0 !important;
	box-shadow: none !important;
	outline: none !important;
	flex-shrink: 0 !important;
}
.im-qty-minus {
	order: 1 !important;
	border-right: 1px solid #eaeaea !important;
}
.im-qty-plus {
	order: 3 !important;
	border-left: 1px solid #eaeaea !important;
}
.im-qty-btn:hover {
	background: #f5f5f5 !important;
	color: #1a1a1a !important;
}
.im-qty-btn:active {
	background: #ececec !important;
}
.single-product div.product .single_add_to_cart_button {
	font-family: 'Brown', sans-serif;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	background: #E80B58;
	color: #fff;
	border: none;
	border-radius: 50px;
	height: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	cursor: pointer;
	transition: background 0.2s, transform 0.1s;
	flex: 1;
	min-width: 200px;
	text-align: center;
}
.single-product div.product .single_add_to_cart_button .im-cart-icon {
	flex-shrink: 0;
}
.single-product div.product .single_add_to_cart_button:hover {
	background: #c70a4b;
	transform: translateY(-1px);
}

.im-order-whatsapp-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	height: 54px !important;
	box-sizing: border-box !important;
	flex: 1;
	min-width: 180px;
	padding: 0 24px !important;
	margin: 0 !important;
	text-decoration: none !important;
	white-space: nowrap !important;

	/* Explicit design overrides matching add to cart button */
	font-family: 'Brown', sans-serif !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 2px !important;
	background: #25D366 !important;
	color: #fff !important;
	border: none !important;
	border-radius: 50px !important;
	cursor: pointer !important;
	transition: background 0.2s, transform 0.1s !important;
}
.im-order-whatsapp-btn:hover {
	background: #1ebe57 !important;
	transform: translateY(-1px) !important;
	color: #fff !important;
}
.im-order-whatsapp-btn svg {
	color: currentColor !important;
	flex-shrink: 0 !important;
	width: 20px !important;
	height: 20px !important;
	transition: transform 0.2s, fill 0.2s !important;
}
.im-order-whatsapp-btn:hover svg {
	transform: scale(1.15) !important;
	fill: currentColor !important;
}

@media (min-width: 901px) {
	.single-product div.product .single_add_to_cart_button {
		flex: 0 0 auto !important;
		width: 280px !important;
	}
	.im-order-whatsapp-btn {
		flex: 0 0 auto !important;
		width: 220px !important;
	}
}

/* Trust / authenticity panel under Add to Cart — dark, professional */
.im-trust-panel {
	margin: 28px 0;
	padding: 28px;
	background: #1a1a1a;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}
.im-trust-panel__header {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding-bottom: 22px;
	margin-bottom: 22px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.im-trust-panel__badge {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}
.im-trust-panel__title {
	margin: 0 0 6px;
	font-family: 'Brown', sans-serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.3px;
	color: #fff;
}
.im-trust-panel__subtitle {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.75);
}
.im-trust-panel__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.im-trust-panel__item {
	padding: 18px 16px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.im-trust-panel__item:hover {
	background: rgba(255, 255, 255, 0.13);
	border-color: rgba(255, 255, 255, 0.22);
	transform: translateY(-3px);
}
.im-trust-panel__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 14px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}
.im-trust-panel__item h4 {
	margin: 0 0 6px;
	font-family: 'Brown', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.2px;
}
.im-trust-panel__item p {
	margin: 0;
	font-size: 12.5px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.72);
}
@media (max-width: 900px) {
	.im-trust-panel__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 480px) {
	.im-trust-panel {
		padding: 20px;
	}
	.im-trust-panel__grid {
		grid-template-columns: 1fr;
	}
	.im-trust-panel__header {
		flex-direction: column;
	}
}

/* Magnifier hover-zoom on gallery images */
.woocommerce-product-gallery__image {
	position: relative;
	overflow: hidden !important;
	cursor: zoom-in !important;
}
.woocommerce-product-gallery__image img {
	transition: transform 0.15s ease-out !important;
	will-change: transform;
}
.woocommerce-product-gallery__image.im-zoom-active img {
	transform: scale(1.8);
}

/* Meta (SKU / categories) */
.single-product div.product .product_meta {
	font-family: 'Brown', sans-serif;
	font-size: 12px;
	color: #999;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #f0f0f0;
}
.single-product div.product .product_meta a {
	color: #666;
	text-decoration: none;
}

/* Full inline product description (replaces tabs) */
.im-pdp-description-wrap {
	max-width: 100%;
	margin: 24px auto 0;
	padding: 0 0 60px;
	border-top: 1px solid #f0f0f0;
}
.im-pdp-description-heading {
	font-family: 'Brown', sans-serif;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #1a1a1a;
	margin: 0 0 18px;
	text-align: left;
}
.im-pdp-description-divider {
	width: 100%;
	height: 1px;
	background: #eee;
	margin: 0 0 28px;
}
.im-pdp-description {
	font-family: 'Hind Siliguri', 'Brown', sans-serif;
	font-size: 16px;
	line-height: 1.9;
	color: #333;
	text-align: left;
	column-count: 1;
}
.im-pdp-description img,
.im-pdp-description figure {
	display: none !important;
}
.im-pdp-description h2,
.im-pdp-description h3 {
	font-family: 'Hind Siliguri', 'Brown', sans-serif;
	font-size: 19px;
	color: #1a1a1a;
	margin: 28px 0 14px;
	break-after: avoid;
}
.im-pdp-description p {
	margin-bottom: 18px;
	break-inside: avoid;
}
.im-pdp-description img {
	max-width: 100%;
	width: 100%;
	height: auto;
	border-radius: 10px;
	display: block;
	margin: 12px auto 30px;
}
.im-pdp-description strong {
	font-weight: 700;
	color: #1a1a1a;
}

.single-product div.product .onsale {
	background: #E80B58;
	color: #fff;
	font-family: 'Brown', sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 4px;
	padding: 6px 14px;
	min-height: auto;
	min-width: auto;
	line-height: 1.4;
	z-index: 2;
}

/* Reviews */
#reviews h2 {
	font-family: 'Brown', sans-serif;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 2px;
}
#reviews #respond .form-submit input {
	font-family: 'Brown', sans-serif;
	background: #E80B58;
	color: #fff;
	border-radius: 50px;
	padding: 12px 32px;
	border: none;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	cursor: pointer;
}

@media (max-width: 700px) {
	.single-product div.product {
		padding: 24px 16px 40px;
	}
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
	.im-header__nav {
		display: none;
	}
	.im-header__inner {
		padding: 10px 16px;
	}
	.im-footer__top {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 40px 16px 30px;
	}
}
@media (max-width: 1024px) and (min-width: 769px) {
	.im-footer__top {
		grid-template-columns: 1fr 1fr;
	}
	.im-nav-list {
		gap: 16px;
	}
	.im-nav-list li a {
		font-size: 11px;
	}
}

/* ===========================
   ELEMENTOR OVERRIDES
   =========================== */
.elementor-widget-heading .elementor-heading-title,
.elementor-widget-text-editor {
	font-family: 'Brown', 'Hind Siliguri', sans-serif;
}

/* Hide Hello Elementor's default header/footer if they still render */
.site-header,
#site-footer.site-footer,
footer.site-footer {
	display: none !important;
}

/* ===========================
   HERO SLIDER
   =========================== */
.im-hero-slider {
	position: relative;
	overflow: hidden;
	width: 100%;
}
.im-hero-slides {
	position: relative;
	min-height: 560px;
}
.im-hero-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	opacity: 0;
	transition: opacity 0.8s ease;
	pointer-events: none;
	z-index: 1;
	overflow: hidden;
}
.im-hero-slide-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 1;
}
.im-hero-slide--cream {
	background: linear-gradient(160deg, #050505 0%, #0b1f2e 35%, #0d2b2b 65%, #050505 100%);
}
.im-hero-slide--cream .im-hero-dark { color: #fff; }
.im-hero-slide--cream .im-hero-kicker {
	color: #f2b8c9;
	background: rgba(255,255,255,0.08);
}
.im-hero-slide--cream .im-hero-desc { color: rgba(255,255,255,0.72); }
.im-hero-slide--cream .im-hero-badge {
	background: rgba(255,255,255,0.06);
	border-color: rgba(255,255,255,0.14);
	color: #eee;
}
.im-hero-slide--cream .im-hero-badge svg { color: #f2b8c9; }
.im-hero-slide--dark { background: #1a1a1a; }
.im-hero-slide--pink { background: linear-gradient(135deg,#E80B58 0%,#c70a4b 100%); }
.im-hero-slide--tan { background: #f5f0eb; }
.im-hero-slide--active {
	opacity: 1;
	pointer-events: auto;
	z-index: 2;
}
.im-hero-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.5;
	z-index: 0;
	pointer-events: none;
}
.im-hero-blob--white {
	width: 300px;
	height: 300px;
	background: rgba(255,255,255,0.25);
	top: -60px;
	left: 5%;
}
.im-hero-content {
	position: relative;
	z-index: 1;
	max-width: 520px;
	text-align: left;
	padding: 60px 0;
	flex: 1 1 460px;
	animation: im-hero-content-in 0.7s ease both;
}
@keyframes im-hero-content-in {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}
.im-hero-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Brown', sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #E80B58;
	background: rgba(232,11,88,0.08);
	padding: 6px 16px;
	border-radius: 50px;
	margin-bottom: 16px;
}
.im-hero-kicker::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	flex-shrink: 0;
}
.im-hero-kicker--dark {
	color: #fff;
	background: rgba(255,255,255,0.12);
}
.im-hero-title {
	font-family: 'Brown', sans-serif;
	font-size: 52px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.5px;
	margin: 0 0 20px;
}
.im-hero-dark { color: #1a1a1a; }
.im-hero-pink { color: #E80B58; }
.im-hero-slide--pink .im-hero-pink { color: #fff; }
.im-hero-desc {
	font-family: 'Brown', sans-serif;
	font-size: 16px;
	color: #666;
	line-height: 1.7;
	margin: 0 0 28px;
}
.im-hero-slide--pink .im-hero-desc { color: rgba(255,255,255,0.9); }
.im-hero-cta {
	display: inline-block;
	font-family: 'Brown', sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	background: #E80B58;
	color: #fff;
	padding: 16px 42px;
	border-radius: 50px;
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(232,11,88,0.28);
	transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.im-hero-cta:hover {
	background: #c70a4b;
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(232,11,88,0.36);
}
.im-hero-cta--dark {
	background: #1a1a1a;
}
.im-hero-cta--dark:hover { background: #333; }
.im-hero-slide--pink .im-hero-cta:not(.im-hero-cta--dark) {
	background: #fff;
	color: #E80B58;
}
.im-hero-slide--pink .im-hero-cta:not(.im-hero-cta--dark):hover { background: #fff0f5; }
.im-hero-badges {
	display: flex;
	gap: 12px;
	margin-top: 28px;
	flex-wrap: wrap;
}
.im-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Brown', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #444;
	background: #fff;
	border: 1px solid #eee;
	padding: 8px 14px;
	border-radius: 50px;
}
.im-hero-badge svg { color: #E80B58; flex-shrink: 0; }
.im-hero-badge--dark {
	background: rgba(255,255,255,0.08);
	border-color: rgba(255,255,255,0.15);
	color: #eee;
}
.im-hero-slide--pink .im-hero-badge {
	background: rgba(255,255,255,0.15);
	border-color: rgba(255,255,255,0.25);
	color: #fff;
}
.im-hero-slide--pink .im-hero-badge svg { color: #fff; }
.im-hero-media {
	position: relative;
	z-index: 1;
	flex: 1 1 380px;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 400px;
}
.im-hero-media img {
	width: 100%;
	max-width: 360px;
	height: auto;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}
.im-hero-media--slider {
	display: block !important;
	width: 100%;
	max-width: 360px;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}
.im-hero-slide-track {
	display: flex;
	width: 400%;
	height: 100%;
	transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}
.im-hero-slide-track img {
	width: 25%;
	height: 100%;
	flex-shrink: 0;
	object-fit: cover;
	max-width: none;
	aspect-ratio: auto;
	border-radius: 0;
	box-shadow: none;
}
.im-hero-media--cutout {
	position: relative;
}
.im-hero-media--cutout::before {
	content: '';
	position: absolute;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(232,11,88,0.22) 0%, rgba(232,11,88,0) 70%);
	z-index: -1;
}
.im-hero-media--cutout img {
	aspect-ratio: auto;
	max-width: 320px;
	object-fit: contain;
	border-radius: 0;
	box-shadow: none;
	filter: drop-shadow(0 24px 40px rgba(0,0,0,0.35));
	animation: im-hero-media-float 5s ease-in-out infinite;
}
@keyframes im-hero-media-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}
@keyframes im-hero-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}
@keyframes im-hero-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}
.im-hero-dots {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 3;
}
.im-hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 2px solid #1a1a1a;
	background: transparent;
	cursor: pointer;
	padding: 0;
	transition: background 0.2s;
}
.im-hero-dot--active {
	background: #E80B58;
	border-color: #E80B58;
}
.im-hero-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.85);
	border: 1px solid #eee;
	color: #1a1a1a;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	font-size: 22px;
	cursor: pointer;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}
.im-hero-arrow:hover { background: #fff; }
.im-hero-arrow--prev { left: 24px; }
.im-hero-arrow--next { right: 24px; }

@media (max-width: 900px) {
	.im-hero-slide-inner {
		flex-direction: column-reverse;
		justify-content: center;
		padding: 32px 20px;
		gap: 8px;
	}
	.im-hero-slides { min-height: 640px; }
	.im-hero-title { font-size: 32px; }
	.im-hero-content {
		padding: 20px 0;
		text-align: center;
		align-items: center;
		max-width: 100%;
	}
	.im-hero-kicker,
	.im-hero-badges { justify-content: center; margin-left: auto; margin-right: auto; }
	.im-hero-desc { margin-left: auto; margin-right: auto; }
	.im-hero-media { max-width: 220px; }
	.im-hero-media img { max-width: 220px; }
	.im-hero-arrow { display: none; }
}

/* ===========================
   BLOG ARCHIVE & SINGLE
   =========================== */
.im-blog-wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 40px 24px;
	text-align: center;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.im-blog-card {
	border: 1px solid #f0f0f0;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	transition: box-shadow 0.2s;
	text-align: center;
	display: flex;
	flex-direction: column;
}
.im-blog-card:hover {
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.im-blog-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}
.im-blog-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
}
.im-blog-card__excerpt {
	flex: 1;
}
.im-blog-pagination {
	grid-column: 1 / -1;
}
.im-blog-card__body {
	padding: 28px;
}
.im-blog-card__meta {
	font-family: 'Hind Siliguri', 'Brown', sans-serif;
	font-size: 12px;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
}
.im-blog-card__title {
	font-family: 'Hind Siliguri', 'Brown', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 12px;
	line-height: 1.4;
}
.im-blog-card__title a {
	color: inherit;
	text-decoration: none;
}
.im-blog-card__title a:hover {
	color: #E80B58;
}
.im-blog-card__excerpt {
	font-family: 'Hind Siliguri', 'Brown', sans-serif;
	font-size: 15px;
	color: #666;
	line-height: 1.8;
	margin-bottom: 16px;
	text-align: left;
}
.im-blog-card__read-more {
	font-family: 'Brown', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: #E80B58;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.im-blog-card__read-more:hover {
	color: #c70a4b;
}

/* Blog single layout */
.im-blog-layout {
	max-width: 1180px;
	margin: 0 auto;
	padding: 48px 24px 80px;
	display: grid;
	grid-template-columns: 8fr 3fr;
	gap: 56px;
	align-items: flex-start;
}
.im-blog-layout__content {
	min-width: 0;
}
.im-blog-layout__sidebar {
	position: sticky;
	top: 100px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.im-blog-single__title {
	font-family: 'Hind Siliguri', 'Brown', sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.3;
	margin: 0 0 16px;
	text-align: left;
}
.im-blog-single__meta {
	font-family: 'Brown', sans-serif;
	font-size: 13px;
	color: #888;
	margin-bottom: 32px;
	text-align: left;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.im-blog-single__meta a {
	color: #888;
	text-decoration: none;
}
.im-blog-single__meta a:hover {
	color: #E80B58;
}
.im-blog-single__featured-wrapper {
	width: 100%;
	margin-bottom: 36px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #f0f0f0;
}
.im-blog-single__featured {
	width: 100%;
	height: auto;
	max-height: 480px;
	object-fit: cover;
	display: block;
}
.im-blog-single__content {
	font-family: 'Hind Siliguri', 'Brown', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 17px;
	color: #333;
	line-height: 1.8;
	text-align: left;
}
.im-blog-single__content p {
	margin-bottom: 24px;
}
.im-blog-single__content h2 {
	font-size: 28px;
	margin-top: 40px;
	margin-bottom: 16px;
}
.im-blog-single__content h3 {
	font-size: 22px;
	margin-top: 32px;
	margin-bottom: 14px;
}
.im-blog-single__content strong {
	font-weight: 700;
}
.im-blog-single__tags {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid #eee;
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	font-family: 'Brown', sans-serif;
	font-size: 14px;
}
.im-blog-single__tags-label {
	font-weight: 700;
	color: #1a1a1a;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.im-blog-single__tags a {
	color: #666;
	text-decoration: none;
	background: #f5f5f5;
	padding: 4px 12px;
	border-radius: 4px;
	transition: background 0.2s, color 0.2s;
}
.im-blog-single__tags a:hover {
	background: #E80B58;
	color: #fff;
}

/* Sidebar widgets */
.im-sidebar-widget {
	border-bottom: 1px solid #f0f0f0;
	padding-bottom: 32px;
}
.im-sidebar-widget:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.im-sidebar-widget__title {
	font-family: 'Brown', sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #1a1a1a;
	margin: 0 0 20px;
	position: relative;
	padding-bottom: 8px;
}
.im-sidebar-widget__title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 30px;
	height: 2px;
	background: #E80B58;
}

/* Recent Posts widget cards */
.im-sidebar-post-card {
	display: flex;
	gap: 16px;
	margin-bottom: 20px;
	align-items: center;
}
.im-sidebar-post-card:last-child {
	margin-bottom: 0;
}
.im-sidebar-post-card__image-link {
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid #eee;
}
.im-sidebar-post-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.im-sidebar-post-card__body {
	flex: 1;
	min-width: 0;
}
.im-sidebar-post-card__title {
	font-family: 'Hind Siliguri', 'Brown', sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 4px;
}
.im-sidebar-post-card__title a {
	color: #1a1a1a;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.im-sidebar-post-card__title a:hover {
	color: #E80B58;
}
.im-sidebar-post-card__date {
	font-family: 'Brown', sans-serif;
	font-size: 11px;
	color: #999;
}

/* Categories widget list */
.im-sidebar-categories {
	list-style: none;
	margin: 0;
	padding: 0;
}
.im-sidebar-categories li {
	margin-bottom: 12px;
}
.im-sidebar-categories li:last-child {
	margin-bottom: 0;
}
.im-sidebar-categories a {
	font-family: 'Hind Siliguri', 'Brown', sans-serif;
	font-size: 14px;
	color: #444;
	text-decoration: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: color 0.2s;
}
.im-sidebar-categories a:hover {
	color: #E80B58;
}
.im-sidebar-categories__count {
	font-family: 'Brown', sans-serif;
	font-size: 12px;
	color: #999;
}

/* Featured Products widget cards */
.im-sidebar-product-card {
	display: flex;
	gap: 16px;
	margin-bottom: 20px;
	align-items: center;
}
.im-sidebar-product-card:last-child {
	margin-bottom: 0;
}
.im-sidebar-product-card__image-link {
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid #eee;
	background: #faf8f6;
}
.im-sidebar-product-card__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.im-sidebar-product-card__body {
	flex: 1;
	min-width: 0;
}
.im-sidebar-product-card__title {
	font-family: 'Brown', sans-serif;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 4px;
}
.im-sidebar-product-card__title a {
	color: #1a1a1a;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.im-sidebar-product-card__title a:hover {
	color: #E80B58;
}
.im-sidebar-product-card__price {
	font-family: 'Brown', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: #E80B58;
}
.im-sidebar-product-card__price del {
	color: #999;
	font-size: 11px;
	font-weight: 400;
	margin-right: 4px;
}
.im-sidebar-product-card__price ins {
	text-decoration: none;
}

/* Responsive layout */
@media (max-width: 900px) {
	.im-blog-layout {
		grid-template-columns: 1fr;
		gap: 48px;
		padding: 32px 20px 60px;
	}
	.im-blog-layout__sidebar {
		position: static;
		gap: 32px;
		border-top: 1px solid #eee;
		padding-top: 32px;
	}
}

/* Blog page title */
.im-blog-page-title {
	font-family: 'Brown', sans-serif;
	font-size: 32px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
	text-align: center;
	padding: 40px 0 0;
	margin: 0;
	color: #1a1a1a;
}

/* Blog pagination */
.im-blog-pagination {
	text-align: center;
	padding: 20px 0 40px;
}
.im-blog-pagination a,
.im-blog-pagination span {
	font-family: 'Brown', sans-serif;
	font-size: 14px;
	padding: 8px 16px;
	margin: 0 4px;
	border-radius: 4px;
	text-decoration: none;
	color: #666;
	border: 1px solid #eee;
}
.im-blog-pagination .current {
	background: #E80B58;
	color: #fff;
	border-color: #E80B58;
}

@media (max-width: 900px) {
	.im-blog-wrap {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 600px) {
	.im-blog-wrap {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 768px) {
	.im-blog-wrap {
		padding: 20px 16px;
	}
	.im-blog-single__title {
		font-size: 24px;
	}
}

/* ===========================
   SHORTCODE: CATEGORY GRID
   =========================== */
.im-cat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: 100%;
	margin: 0 auto;
}
.im-cat-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #f0f0f0;
	transition: box-shadow 0.2s, transform 0.2s;
}
.im-cat-card:hover {
	box-shadow: 0 8px 30px rgba(0,0,0,0.08);
	transform: translateY(-4px);
}
.im-cat-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.im-cat-placeholder {
	width: 100%;
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
}
.im-cat-illustration {
	width: 100%;
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}
.im-cat-card:hover .im-cat-illustration {
	transform: scale(1.06);
}
.im-cat-illustration svg {
	transition: transform 0.3s ease;
}
.im-cat-card:hover .im-cat-illustration svg {
	transform: rotate(-6deg);
}
.im-cat-placeholder span {
	color: #fff;
	font-family: 'Brown', sans-serif;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
}
.im-cat-card h4 {
	font-family: 'Brown', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #1a1a1a;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 16px 12px;
	margin: 0;
	text-align: center;
}
@media (max-width: 768px) {
	.im-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ===========================
   SHORTCODE: GUIDES GRID
   =========================== */
.im-guides-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 100%;
	margin: 0 auto;
}
.im-guide-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #f0f0f0;
	transition: box-shadow 0.2s, transform 0.2s;
}
.im-guide-card:hover {
	box-shadow: 0 8px 30px rgba(0,0,0,0.08);
	transform: translateY(-4px);
}
.im-guide-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}
.im-guide-card__body {
	padding: 20px;
	text-align: center;
}
.im-guide-card h4 {
	font-family: 'Brown', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 8px;
	line-height: 1.4;
}
.im-guide-card__excerpt {
	font-family: 'Brown', sans-serif;
	font-size: 14px;
	color: #666;
	margin: 0 auto 16px;
	line-height: 1.6;
	max-width: 280px;
}
.im-guide-card__link {
	font-family: 'Brown', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: #E80B58;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.im-guides-grid {
	justify-content: center;
}
@media (max-width: 768px) {
	.im-guides-grid { grid-template-columns: 1fr; }
}

/* ===========================
   SHORTCODE: TRUST BADGES
   =========================== */
.im-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	max-width: 100%;
	margin: 0 auto;
}
.im-trust-card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 32px 24px;
	text-align: center;
	transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.im-trust-card:hover {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(232, 11, 88, 0.3);
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.im-trust-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	background: rgba(232, 11, 88, 0.08);
	border-radius: 50%;
	margin-bottom: 20px;
	transition: background 0.3s, transform 0.3s;
}
.im-trust-card:hover .im-trust-icon {
	background: rgba(232, 11, 88, 0.15);
	transform: rotate(5deg);
}
.im-trust-svg {
	width: 32px;
	height: 32px;
	stroke: #E80B58;
	transition: stroke 0.3s, transform 0.3s;
}
.im-trust-card:hover .im-trust-svg {
	stroke: #ff3377;
	transform: scale(1.1);
}
.im-trust-card h5 {
	font-family: 'Brown', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin: 0 0 8px;
}
.im-trust-card p {
	font-family: 'Brown', sans-serif;
	font-size: 14px;
	color: #999;
	line-height: 1.6;
	margin: 0;
}
@media (max-width: 768px) {
	.im-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ===========================
   FRONT PAGE SECTIONS
   =========================== */
.im-section {
	max-width: 1180px;
	margin: 0 auto;
	padding: 80px 24px;
	text-align: center;
}
.im-section--tinted {
	max-width: 100%;
	background: #faf8f6;
}
.im-section--tinted > * {
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
	box-sizing: border-box;
}
.im-section--dark {
	max-width: 100%;
	background: linear-gradient(160deg, #050505 0%, #0b1f2e 35%, #0d2b2b 65%, #050505 100%);
}
.im-section--dark > * {
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
	box-sizing: border-box;
}
.im-section--pink {
	max-width: 100%;
	background: #fef5f7;
}
.im-section--pink > * {
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
	box-sizing: border-box;
}
.im-section-title {
	font-family: 'Brown', sans-serif;
	font-size: 30px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: #1a1a1a;
	margin: 0 auto 20px;
	text-align: center !important;
	width: 100%;
}
.im-section-title--light {
	color: #ffffff;
}
.im-section-title--pink {
	color: #E80B58;
}
.im-section-divider {
	width: 60px;
	height: 2px;
	background: #e0e0e0;
	margin: 0 auto 24px;
}
.im-section-divider--dark {
	background: #444444;
}
.im-section-divider--pink {
	background: #E80B58;
}
.im-section-subtitle {
	font-family: 'Brown', sans-serif;
	font-size: 16px;
	color: #666666;
	line-height: 1.7;
	max-width: 600px;
	margin: 0 auto 32px;
}
.im-section-cta {
	margin-top: 40px;
}

/* Promo banner */
.im-promo-banner {
	position: relative;
	background: linear-gradient(135deg, #0f242c 0%, #16333d 45%, #2a1b30 100%);
	padding: 70px 40px;
	text-align: center;
	overflow: hidden;
}
.im-promo-banner::before,
.im-promo-banner::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	filter: blur(10px);
	pointer-events: none;
}
.im-promo-banner::before {
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(232,11,88,0.35) 0%, rgba(232,11,88,0) 70%);
	top: -140px;
	right: -80px;
}
.im-promo-banner::after {
	width: 260px;
	height: 260px;
	background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 70%);
	bottom: -120px;
	left: -60px;
}
.im-promo-banner__inner {
	position: relative;
	z-index: 1;
}
.im-promo-banner__kicker {
	display: block;
	font-family: 'Brown', sans-serif;
	font-size: 20px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 4px;
	color: #ff8fb3;
	margin-bottom: 8px;
}
.im-promo-banner__title {
	font-family: 'Brown', sans-serif;
	font-size: 38px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 16px;
}
.im-promo-banner__desc {
	font-family: 'Brown', sans-serif;
	font-size: 16px;
	color: #ffffffcc;
	margin: 0 0 28px;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

/* Shared CTA button */
.im-cta-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Brown', sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	background: linear-gradient(135deg, #ff2d78 0%, #E80B58 60%, #c70a4b 100%);
	color: #fff;
	padding: 16px 32px 16px 42px;
	border-radius: 50px;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(232, 11, 88, 0.25);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-position 0.4s ease;
	background-size: 160% 160%;
	background-position: 0% 50%;
}
.im-cta-button__arrow {
	flex-shrink: 0;
	transition: transform 0.25s ease;
}
.im-cta-button:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(232, 11, 88, 0.35);
	background-position: 100% 50%;
}
.im-cta-button:hover .im-cta-button__arrow {
	transform: translateX(5px);
}
.im-cta-button--light {
	background: linear-gradient(135deg, #ffffff 0%, #ffe6ef 60%, #ffd3e4 100%);
	background-size: 160% 160%;
	background-position: 0% 50%;
	color: #7a1f42;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.im-cta-button--light:hover {
	background-position: 100% 50%;
	color: #7a1f42;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

@media (max-width: 768px) {
	.im-section { padding: 50px 20px; }
	.im-promo-banner { padding: 50px 20px; }
	.im-section-title { font-size: 24px; letter-spacing: 2px; }
}

/* ===========================
   CART & CHECKOUT (WooCommerce Blocks)
   These pages use the block-based Cart/Checkout (wc-block-* classes),
   not the classic shortcode markup.
   =========================== */
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
	max-width: 1180px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding: 48px 24px 80px;
	font-family: 'Brown', sans-serif;
}
.im-checkout-title {
	max-width: 1180px;
	margin: 0 auto;
	padding: 24px 24px 0;
	font-family: 'Brown', sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: #1a1a1a;
}

/* Cart line items */
.wc-block-cart-items__header {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #999;
	border-bottom: 1px solid #eee;
}
.wc-block-cart-items__row {
	border-bottom: 1px solid #f0f0f0;
	padding: 20px 0;
}
.wc-block-cart-item__image img,
.wc-block-components-product-image img {
	border-radius: 12px;
	border: 1px solid #eee;
	background: #faf8f6;
}
.wc-block-components-product-name {
	color: #1a1a1a;
	font-weight: 600;
	text-decoration: none;
}
.wc-block-components-product-name:hover { color: #E80B58; }
.wc-block-cart-item__total .wc-block-components-formatted-money-amount,
.wc-block-components-product-price .wc-block-components-formatted-money-amount {
	font-weight: 700;
	color: #E80B58;
}
.wc-block-cart-item__remove-link {
	color: #888 !important;
	font-weight: 600;
	text-decoration: none;
}
.wc-block-cart-item__remove-link:hover { color: #E80B58 !important; }

/* Quantity stepper (native to the block) */
.wc-block-components-quantity-selector {
	border: 1px solid #dcdcdc;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.wc-block-components-quantity-selector__button {
	color: #888;
}
.wc-block-components-quantity-selector__button:hover {
	background: #f5f5f5;
	color: #1a1a1a;
}
.wc-block-components-quantity-selector__input {
	font-family: 'Brown', sans-serif;
	font-weight: 600;
	color: #1a1a1a;
}

/* Sidebar totals (cart + checkout) */
.wc-block-components-sidebar,
.wc-block-cart__sidebar {
	background: #faf8f6;
	border: 1px solid #f0eae7;
	border-radius: 16px;
	padding: 24px 28px;
}
.wc-block-cart__totals-title,
.wc-block-components-checkout-order-summary__title {
	font-family: 'Brown', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #1a1a1a;
}
.wc-block-components-totals-item__label { color: #666; }
.wc-block-components-totals-item__value,
.wc-block-components-totals-item .wc-block-components-formatted-money-amount {
	font-weight: 600;
	color: #1a1a1a;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.wc-block-components-totals-footer-item .wc-block-components-formatted-money-amount {
	font-size: 17px;
	font-weight: 700;
	color: #E80B58;
}
.wc-block-components-totals-coupon__input input,
.wc-block-components-text-input input,
.wc-block-components-address-form input,
.wc-block-components-address-form select {
	border-radius: 8px !important;
}
/* Store only ships within Bangladesh — hide the single-option country field */
.wc-block-components-address-form__country {
	display: none !important;
}
.wc-block-components-text-input input:focus,
.wc-block-components-address-form input:focus,
.wc-block-components-totals-coupon__input input:focus {
	border-color: #E80B58 !important;
	box-shadow: 0 0 0 1px #E80B58 !important;
}

/* Proceed to checkout / place order buttons */
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button,
.wc-block-components-totals-coupon__button {
	font-family: 'Brown', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	border-radius: 50px !important;
}
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
	background: #E80B58 !important;
	border-color: #E80B58 !important;
	color: #fff !important;
	box-shadow: 0 12px 28px rgba(232,11,88,0.28);
	transition: background 0.2s, transform 0.2s;
}
.wc-block-cart__submit-button *,
.wc-block-components-checkout-place-order-button * {
	color: #fff !important;
}
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover {
	background: #c70a4b !important;
	border-color: #c70a4b !important;
	transform: translateY(-2px);
}

/* Empty cart / empty checkout states */
.wc-block-cart__empty-cart__title,
.wc-block-checkout-empty__title {
	font-family: 'Brown', sans-serif;
	color: #1a1a1a;
}

/* Checkout steps */
.wc-block-components-checkout-step {
	border-bottom: 1px solid #f0f0f0;
	padding-bottom: 24px;
	margin-bottom: 24px;
}
.wc-block-components-checkout-step__title {
	font-family: 'Brown', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
	counter-increment: im-step-num !important;
}
.wc-block-checkout__form {
	counter-reset: im-step-num !important;
}
.wc-block-components-checkout-step__title::before {
	content: counter(im-step-num) '. ';
	color: #E80B58;
}
.wc-block-components-radio-control__input:checked {
	accent-color: #E80B58;
}

/* Trust badges under place-order (injected via render_block filter) */
.im-checkout-trust {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 20px;
}
.im-checkout-trust__item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Brown', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #666;
}
.im-checkout-trust__item svg { color: #E80B58; }

@media (max-width: 900px) {
	.wp-block-woocommerce-cart .wc-block-cart__main,
	.wp-block-woocommerce-checkout .wc-block-checkout__main {
		width: 100%;
	}
}

/* My Account page width */
.woocommerce-account .woocommerce {
	max-width: 1180px;
	margin: 0 auto;
	padding: 48px 24px 80px;
	font-family: 'Brown', sans-serif;
}

/* ===========================
   CHECKOUT — Shopify-style layout
   Minimal distraction-free header/footer + 2-col sticky order summary
   =========================== */
.im-checkout-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1180px !important;
	margin: 0 auto !important;
	padding: 20px 24px;
}
.im-checkout-header__logo {
	display: flex;
	align-items: center;
}
.im-checkout-header__logo img {
	height: 28px;
	width: auto;
}
.im-checkout-header__secure {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Brown', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #2e7d32;
	background: rgba(46,125,50,0.08);
	padding: 6px 14px;
	border-radius: 50px;
}
.im-checkout-header__secure svg { color: #2e7d32; flex-shrink: 0; }

/* Separator between header and page content */
.im-checkout-header-sep {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}
.im-checkout-header-sep::after {
	content: '';
	display: block;
	border-bottom: 1px solid #eee;
}

.im-checkout-footer {
	max-width: 1180px;
	margin: 0 auto;
	padding: 24px 24px 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	font-family: 'Brown', sans-serif;
	font-size: 12px;
	color: #999;
	border-top: 1px solid #f0f0f0;
	margin-top: 20px;
}
.im-checkout-footer__links {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}
.im-checkout-footer__links a {
	color: #999;
	text-decoration: none;
}
.im-checkout-footer__links a:hover { color: #E80B58; }

/* Two-column layout with sticky order summary (Shopify pattern) */
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout {
	display: flex !important;
	flex-direction: row;
	flex-wrap: nowrap !important;
	align-items: flex-start;
	gap: 56px;
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar {
	flex: 0 0 400px;
	position: sticky;
	top: 24px;
	background: #faf8f6;
	border-radius: 16px;
	padding: 32px;
}
.wp-block-woocommerce-checkout .wc-block-checkout__main {
	flex: 1 1 auto;
	min-width: 0;
	padding-top: 8px;
}
.wc-block-components-checkout-order-summary__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}

@media (max-width: 900px) {
	.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout {
		flex-direction: column;
	}
	.wp-block-woocommerce-checkout .wc-block-checkout__sidebar {
		position: static;
		flex: 1 1 auto;
		width: 100%;
		order: -1;
	}
	.im-checkout-header,
	.im-checkout-footer {
		padding-left: 20px;
		padding-right: 20px;
	}
}

/* ===========================
   PRODUCT DESCRIPTION TYPOGRAPHY FIX
   =========================== */
.product-description-bengali h1 {
	font-size: 38px !important;
	margin-top: 32px !important;
	margin-bottom: 18px !important;
	color: #111 !important;
}
.product-description-bengali h2 {
	font-size: 26px !important;
	margin-top: 28px !important;
	margin-bottom: 16px !important;
	color: #1a1a1a !important;
}
.product-description-bengali h3 {
	font-size: 24px !important;
	margin-top: 24px !important;
	margin-bottom: 14px !important;
	color: #222 !important;
}
.product-description-bengali h4 {
	font-size: 20px !important;
	margin-top: 20px !important;
	margin-bottom: 12px !important;
	color: #333 !important;
}
.product-description-bengali h5 {
	font-size: 18px !important;
	margin-top: 18px !important;
	margin-bottom: 10px !important;
	color: #444 !important;
}
.product-description-bengali p, 
.product-description-bengali ul, 
.product-description-bengali ol {
	font-size: 16px !important;
	line-height: 1.7 !important;
	margin-bottom: 18px !important;
	color: #333 !important;
}
.product-description-bengali li {
	margin-bottom: 8px !important;
	font-size: 16px !important;
	line-height: 1.7 !important;
}

/* Single Product Breadcrumb Styling */
.im-pdp-breadcrumb .woocommerce-breadcrumb {
	display: block !important;
	font-family: 'Brown', sans-serif;
	font-size: 13px;
	color: #777;
	margin: 0 0 16px 0;
	padding: 0;
	list-style: none;
	text-align: left;
}
.im-pdp-breadcrumb .woocommerce-breadcrumb a {
	color: #666;
	text-decoration: none;
	transition: color 0.2s;
}
.im-pdp-breadcrumb .woocommerce-breadcrumb a:hover {
	color: #E80B58;
}
.im-pdp-breadcrumb .woocommerce-breadcrumb span {
	color: #999;
}

/* We don't collect billing address — the Shipping Address block itself
   ships a "Use same address for billing" toggle (fallback UI for when the
   dedicated Billing Address block is removed from checkout) that reveals an
   inline billing form when unchecked. Hide the toggle and the fields it
   would reveal, so shipping address is always used and billing can never
   be shown regardless of checkbox state. */
.wc-block-checkout__use-address-for-billing,
.wc-block-checkout__billing-fields {
	display: none !important;
}

/* ===== Right-side cart drawer ===== */
.im-cart-drawer__overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease;
	z-index: 9998;
}
.im-cart-drawer__panel {
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	width: 400px;
	max-width: 90vw;
	background: #fff;
	box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12);
	transform: translateX(100%);
	transition: transform 0.3s ease;
	z-index: 9999;
	display: flex;
	flex-direction: column;
}
.im-cart-drawer--open .im-cart-drawer__overlay {
	opacity: 1;
	visibility: visible;
}
.im-cart-drawer--open .im-cart-drawer__panel {
	transform: translateX(0);
}
.im-cart-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid #eee;
	flex-shrink: 0;
}
.im-cart-drawer__header h3 {
	margin: 0;
	font-family: 'Brown', sans-serif;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #1a1a1a;
}
.im-cart-drawer__close {
	background: none;
	border: none;
	font-size: 28px;
	line-height: 1;
	color: #999;
	cursor: pointer;
	padding: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s;
}
.im-cart-drawer__close:hover {
	color: #1a1a1a;
}
.im-cart-drawer__panel .widget_shopping_cart_content {
	flex: 1;
	overflow-y: auto;
	padding: 16px 24px 24px;
	display: flex;
	flex-direction: column;
}
.im-cart-drawer__panel .woocommerce-mini-cart {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
	flex: 1;
}
.im-cart-drawer__panel .woocommerce-mini-cart-item {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px 12px;
	padding: 14px 30px 14px 0;
	border-bottom: 1px solid #f0f0f0;
}
.im-cart-drawer__panel .woocommerce-mini-cart-item img {
	width: 56px;
	height: 56px;
	object-fit: cover;
	border-radius: 8px;
	border: 1px solid #eee;
	flex-shrink: 0;
}
.im-cart-drawer__panel .woocommerce-mini-cart-item a:not(.remove) {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1 1 auto;
	min-width: 0;
	color: #1a1a1a;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.4;
}
.im-cart-drawer__panel .woocommerce-mini-cart-item .quantity {
	display: block;
	flex: 0 0 100%;
	margin-left: 68px;
	color: #777;
	font-size: 13px;
	white-space: nowrap;
}
.im-cart-drawer__panel .woocommerce-mini-cart-item .quantity .woocommerce-Price-amount {
	color: #E80B58;
	font-weight: 600;
}
.im-cart-drawer__panel .woocommerce-mini-cart-item .remove {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #bbb !important;
	font-size: 18px;
	text-decoration: none !important;
	border-radius: 50%;
	transition: background 0.2s, color 0.2s;
}
.im-cart-drawer__panel .woocommerce-mini-cart-item .remove:hover {
	background: #fdeef2;
	color: #E80B58 !important;
}
.im-cart-drawer__panel .woocommerce-mini-cart__empty-message {
	text-align: center;
	color: #999;
	font-size: 14px;
	margin: auto 0;
	padding: 40px 0;
}
.im-cart-drawer__panel .woocommerce-mini-cart__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: 'Brown', sans-serif;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding-top: 16px;
	border-top: 2px solid #1a1a1a;
	margin: 0 0 16px;
}
.im-cart-drawer__panel .woocommerce-mini-cart__total .woocommerce-Price-amount {
	color: #E80B58;
	font-size: 17px;
}
.im-cart-drawer__panel .woocommerce-mini-cart__buttons {
	display: flex;
	gap: 10px;
	margin: 0;
	flex-shrink: 0;
}
.im-cart-drawer__panel .woocommerce-mini-cart__buttons a {
	flex: 1;
	text-align: center;
	padding: 14px 12px;
	border-radius: 50px;
	font-family: 'Brown', sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	transition: background 0.2s, transform 0.1s;
}
.im-cart-drawer__panel .woocommerce-mini-cart__buttons a.wc-forward:not(.checkout) {
	background: #f5f5f5;
	color: #1a1a1a;
}
.im-cart-drawer__panel .woocommerce-mini-cart__buttons a.wc-forward:not(.checkout):hover {
	background: #ececec;
}
.im-cart-drawer__panel .woocommerce-mini-cart__buttons a.checkout {
	background: #E80B58;
	color: #fff;
}
.im-cart-drawer__panel .woocommerce-mini-cart__buttons a.checkout:hover {
	background: #c70a4b;
	transform: translateY(-1px);
}
@media (max-width: 480px) {
	.im-cart-drawer__panel {
		width: 100vw;
		max-width: 100vw;
	}
}

