
		/* ===== CART FAB ===== */
		.bm-cart-fab {
			position: fixed;
			right: 2rem;
			top: 50%;
			transform: translateY(-50%);
			width: 64px;
			height: 64px;
			border-radius: 50%;
			background: #111;
			color: #fff;
			border: none;
			box-shadow: 0 6px 28px rgba(0,0,0,.42);
			font-size: 1.5rem;
			display: flex;
			align-items: center;
			justify-content: center;
			z-index: 1060;
			cursor: pointer;
			will-change: transform;
			transition: box-shadow .2s;
		}
		.bm-cart-fab:hover { transform: translateY(-50%) scale(1.1); box-shadow: 0 10px 36px rgba(0,0,0,.55); }
		.bm-cart-fab:focus { outline: none; }
		.bm-cart-fab-badge {
			position: absolute;
			top: 2px; right: 2px;
			background: #e74c3c;
			color: #fff;
			border-radius: 50%;
			width: 22px; height: 22px;
			font-size: .7rem; font-weight: 700;
			line-height: 18px; text-align: center;
			display: none;
			border: 2px solid #fff;
			box-sizing: border-box;
		}
		.bm-cart-fab.bm-has-items::before {
			content: '';
			position: absolute;
			inset: -8px;
			border-radius: 50%;
			border: 2px solid rgba(231,76,60,.4);
			animation: bm-pulse 2s ease-out infinite;
			pointer-events: none;
		}
		@keyframes bm-pulse  { 0% { transform: scale(.8); opacity:.9; } 100% { transform: scale(1.3); opacity:0; } }
		@keyframes bm-bounce { 0%,100%{transform:translateY(-50%) scale(1)} 35%{transform:translateY(-50%) scale(1.4)} 70%{transform:translateY(-50%) scale(.9)} 88%{transform:translateY(-50%) scale(1.06)} }
		.bm-cart-fab.bm-bounce { animation: bm-bounce .5s ease; }
		@media (max-width: 480px) {
			.bm-cart-fab { right: 1.2rem; width: 56px; height: 56px; font-size: 1.3rem; }
			#bmCartOffcanvas { width: 100vw !important; }
		}

		/* ===== CART OFFCANVAS ===== */
		#bmCartOffcanvas { width: 380px; }
		#bmCartOffcanvas .offcanvas-header { border-bottom: 1px solid #f0f0f0; padding: 1.1rem 1.4rem; }
		#bmCartOffcanvas .offcanvas-title  { font-weight: 700; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .05em; }
		#bmCartOffcanvas .offcanvas-body   { padding: 0; display: flex; flex-direction: column; overflow: hidden; }

		#bm-cart-empty-state {
			flex: 1;
			display: flex; flex-direction: column;
			align-items: center; justify-content: center;
			text-align: center;
			padding: 2rem 1.5rem;
			color: #bbb;
		}
		#bm-cart-empty-state .bm-empty-icon { font-size: 5.5rem; opacity: .09; display: block; line-height: 1; }
		#bm-cart-empty-state p     { margin: 1.1rem 0 .3rem; font-size: .95rem; font-weight: 600; color: #999; }
		#bm-cart-empty-state small { font-size: .78rem; }

		#bm-cart-items-wrap  { flex: 1; overflow-y: auto; padding: .25rem 1.4rem 1.5rem; }
		#bm-offcanvas-footer { padding: 1rem 0 .25rem; border-top: 1px solid #eee; margin-top: .5rem; }

		.bm-cart-item { display: flex; align-items: center; gap: .75rem; padding: .8rem 0; border-bottom: 1px solid #f5f5f5; list-style: none; }
		.bm-cart-item:last-child { border-bottom: none; }
		.bm-cart-item-info { flex: 1; min-width: 0; }
		.bm-cart-item-name { font-weight: 600; font-size: 1rem; color: #212529; text-decoration: none; display: block; line-height: 1.3; }
		.bm-cart-item-name:hover { color: #000; text-decoration: underline; }
		.bm-cart-item-cat  { font-size: .88rem; color: #999; margin-top: 3px; }
		.bm-remove-item {
			flex-shrink: 0;
			background: none; border: none;
			color: #ccc; padding: 4px 8px; font-size: .85rem;
			cursor: pointer; transition: color .15s; line-height: 1;
		}
		.bm-remove-item:hover { color: #e74c3c; }

		/* ===== FONT FAMILY ===== */
		html, body, h1, h2, h3, h4, h5, h6,
		p, span, a, li, button, input, textarea, select, label,
		.nav-link, .btn, .offcanvas-title, .modal-title,
		.bm-cart-item-name, .bm-cart-item-cat, .bm-card-btn {
			font-family: 'Poppins', sans-serif !important;
		}

		/* ===== DARK THEME ===== */
		html, body, .body { background: #171616 !important; color: #f0f0f0 !important; }

		/* Header */
		.header-body,
		.header-nav-main nav > ul > li > a,
		.header-nav-main nav > ul > li.active > a { background: #171616 !important; color: #f0f0f0 !important; }
		#header .header-body { border-bottom: 1px solid #2a2a2a !important; box-shadow: none !important; }
		.header-logo a img { filter: brightness(1); }

		/* Nav links */
		.header-nav-main nav > ul > li > a { color: #ddd !important; }
		.header-nav-main nav > ul > li > a:hover,
		.header-nav-main nav > ul > li.active > a { color: #fff !important; }
		.header-nav-main nav > ul > li.active > a::after { border-color: #fff transparent transparent transparent !important; }

		/* Mobile nav toggle */
		.btn.header-btn-collapse-nav { color: #f0f0f0; background: transparent; border: none; }

		/* Hero text */
		h1, h2, h3, h4, h5, h6 { color: #f0f0f0 !important; }
		p, span, a { color: inherit; }
		.opacity-6 { color: #bbb !important; }
		hr { border-color: #2e2e2e !important; }

		/* Category tabs */
		.nav-pills .nav-link { color: #bbb !important; background: transparent !important; }
		.nav-pills .nav-link.active,
		.nav-pills .nav-link:hover { color: #fff !important; background: #333 !important; }

		/* Item cards */
		.portfolio-item, .thumb-info { background: #1f1f1f !important; }
		.thumb-info-bottom-info { background: rgba(23,22,22,.85) !important; }
		.thumb-info-inner { color: #fff !important; }
		.thumb-info-type { color: #aaa !important; }

		/* Load more btn */
		#load-more-btn { color: #ddd !important; border-color: #555 !important; background: transparent !important; }
		#load-more-btn:hover { color: #fff !important; border-color: #fff !important; background: #333 !important; }

		/* Footer */
		#footer,
		.footer-copyright,
		.footer-copyright.footer-copyright-style-2 { background: #111 !important; color: #bbb !important; border-top: 1px solid #2a2a2a !important; }
		#footer p, #footer a, #footer span { color: #bbb !important; }
		#footer a:hover { color: #fff !important; }

		/* Offcanvas - dark */
		#bmCartOffcanvas { background: #1e1e1e !important; color: #f0f0f0 !important; }
		#bmCartOffcanvas .offcanvas-header { border-bottom-color: #333 !important; }
		#bmCartOffcanvas .offcanvas-title { color: #fff !important; }
		#bmCartOffcanvas .btn-close { filter: invert(1); }
		#bm-cart-empty-state { color: #666 !important; }
		#bm-cart-empty-state p { color: #555 !important; }
		.bm-cart-item { border-bottom-color: #2e2e2e !important; }
		.bm-cart-item-name { color: #f0f0f0 !important; }
		.bm-cart-item-name:hover { color: #fff !important; }
		.bm-cart-item-cat { color: #777 !important; }
		.bm-remove-item { color: #555 !important; }
		.bm-remove-item:hover { color: #e74c3c !important; }
		#bm-offcanvas-footer { border-top-color: #333 !important; }
		#bm-offcanvas-item-count { color: #aaa !important; }

		/* Modals - dark */
		.modal-content { background: #1e1e1e !important; color: #f0f0f0 !important; border-color: #333 !important; }
		.modal-header { border-bottom-color: #333 !important; }
		.modal-footer { border-top-color: #333 !important; }
		.modal-title { color: #fff !important; }
		.modal .btn-close { filter: invert(1); }
		.modal label { color: #ccc !important; }
		.modal .form-control { background: #2a2a2a !important; border-color: #444 !important; color: #f0f0f0 !important; }
		.modal .form-control::placeholder { color: #666 !important; }
		.modal .form-control:focus { border-color: #777 !important; box-shadow: none !important; }

		/* ===== FONT SIZES ===== */
		body { font-size: 17px !important; line-height: 1.72 !important; }
		p { font-size: 1rem !important; }
		.nav-pills .nav-link { font-size: 1rem !important; letter-spacing: .04em; }
		.thumb-info-inner { font-size: 1.05rem !important; }
		.thumb-info-type { font-size: .92rem !important; }

		/* ===== CONTACT ME BUTTON ===== */
		a.btn-primary.btn-with-arrow,
		.btn-primary.btn-with-arrow {
			background: #e8e8e8 !important;
			border-color: #e8e8e8 !important;
			color: #171616 !important;
		}
		a.btn-primary.btn-with-arrow:hover,
		.btn-primary.btn-with-arrow:hover {
			background: #fff !important;
			border-color: #fff !important;
			color: #000 !important;
		}
		.btn-primary.btn-with-arrow span,
		.btn-primary.btn-with-arrow span i { color: #171616 !important; }

		/* ===== SOCIAL ICONS ===== */
		.social-icons li a,
		.social-icons li a i { color: #fff !important; opacity: 1 !important; }
		.social-icons-opacity-light li a { opacity: .75 !important; }
		.social-icons-opacity-light li a:hover { opacity: 1 !important; }
		.social-icons-clean li a { background: transparent !important; }

		/* ===== CARD BASKET BUTTON ===== */
		.bm-card-btn {
			flex-shrink: 0;
			display: flex;
			align-items: center;
			gap: 0.35rem;
			padding: 0.3rem 0.65rem;
			border-radius: 20px;
			border: 1px solid #555;
			background: #2a2a2a;
			color: #fff;
			cursor: pointer;
			font-size: 0.78rem;
			white-space: nowrap;
			transition: background .15s, border-color .15s;
		}
		.bm-card-btn.bm-card-btn-active {
			background: #1a6e3e !important;
			border-color: #2ecc71 !important;
		}

		/* ===== HERO CONTAINER ===== */

		/* — Desktop (≥992px): side-by-side, logo 33% / text 66% — */
		@media (min-width: 992px) {
			#hero-container { padding-top: 2.5rem !important; padding-bottom: 2rem !important; }
			#hero-container .row { align-items: center !important; }
			#hero-container .col-lg-4 { padding-top: 0 !important; display: flex; justify-content: center; align-items: center; }
			#hero-container .col-lg-8 { padding-top: 0 !important; }
			#hero-container .col-lg-4 img { width: 210px !important; height: auto; padding: 0 !important; }
			#hero-container h2.font-weight-bold { margin: 0 0 0.45rem 0 !important; }
			#hero-container h2.font-weight-bold span { font-size: 1.85rem !important; line-height: 1.16 !important; }
			#hero-container h2:not(.font-weight-bold) { margin: 0 !important; }
			#hero-container h2:not(.font-weight-bold) span { font-size: 1.1rem !important; line-height: 1.42 !important; }
		}

		/* — Tablet (576px–991px): stacked, centered — */
		@media (min-width: 481px) and (max-width: 991px) {
			#hero-container { padding-top: 1.5rem !important; padding-bottom: 1.2rem !important; }
			#hero-container .row { display: flex; flex-direction: column; align-items: center; gap: .7rem; }
			#hero-container .col-lg-4, #hero-container .col-lg-8 { width: 100%; max-width: 100%; padding-top: 0 !important; text-align: center; }
			#hero-container .col-lg-4 img { width: 175px !important; height: auto; padding: 0 !important; }
			#hero-container h2.font-weight-bold span { font-size: 1.55rem !important; line-height: 1.18 !important; }
			#hero-container h2:not(.font-weight-bold) span { font-size: 1.05rem !important; line-height: 1.38 !important; }
		}

		/* — Mobile (≤480px): stacked, centered — */
		@media (max-width: 480px) {
			#hero-container { padding-top: 1rem !important; padding-bottom: 0.8rem !important; }
			#hero-container .row { display: flex; flex-direction: column; align-items: center; gap: .6rem; }
			#hero-container .col-lg-4, #hero-container .col-lg-8 { width: 100%; max-width: 100%; padding-top: 0 !important; padding-left: .75rem; padding-right: .75rem; text-align: center; }
			#hero-container .col-lg-4 img { width: 150px !important; height: auto; padding: 0 !important; }
			#hero-container h2.font-weight-bold { margin: 0 0 .25rem 0 !important; }
			#hero-container h2.font-weight-bold span { font-size: 1.45rem !important; line-height: 1.18 !important; }
			#hero-container h2:not(.font-weight-bold) { margin: 0 !important; }
			#hero-container h2:not(.font-weight-bold) span { font-size: 0.95rem !important; line-height: 1.35 !important; }
		}

		/* ===== ORDER ITEMS PREVIEW ===== */
		#bm-order-items-preview {
			background: #2a2a2a !important;
			color: #ddd !important;
			border: 1px solid #333 !important;
			padding: .75rem !important;
			border-radius: .25rem !important;
		}