/*
Theme Name: Bin Bashir Child
Theme URI: https://mintcream-gull-708732.hostingersite.com
Description: Custom dark-theme child theme for Bin Bashir clothing store, based on Astra
Author: Aisha
Template: astra
Version: 1.0.8
*/


/* ==========================================================================
   VARIABLES
   ========================================================================== */

:root {
	--bb-bg: #000000;
	--bb-bg-alt: #0d0d0d;
	--bb-text: #ffffff;
	--bb-text-muted: #cfcfcf;
	--bb-accent-red: #e2231a;
	--bb-accent-green: #2e7d32;
	--bb-border: #2a2a2a;
	--bb-font: 'Poppins', sans-serif;
}


/* ==========================================================================
   GLOBAL
   ========================================================================== */

* {
	box-sizing: border-box;
}


html,
body,
.site,
#page,
.ast-separate-container,
.ast-container,
.site-content,
.ast-page-builder-template .site-content {
	background-color: var(--bb-bg) !important;
	color: var(--bb-text) !important;
	font-family: var(--bb-font);
}


a {
	color: var(--bb-text);
	text-decoration: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--bb-font);
	color: var(--bb-text);
}


img {
	max-width: 100%;
}


body.bb-panel-open {
	overflow: hidden;
}


/* ==========================================================================
   HEADER
   ========================================================================== */

.bb-header {
	position: sticky;
	top: 0;
	z-index: 999;
	width: 100%;
	background: var(--bb-bg);
	border-bottom: 1px solid var(--bb-border);
}


.bb-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1600px;
	margin: 0 auto;
	padding: 18px 30px;
}


.bb-header-search-desktop {
	display: none;
}


.bb-logo {
	flex: 1;
	color: var(--bb-text);
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 1px;
	text-align: center;
}


.bb-header-left,
.bb-header-right {
	display: flex;
	align-items: center;
	gap: 18px;
	flex: 1;
}


.bb-header-right {
	justify-content: flex-end;
}


.bb-icon-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 2px;
	background: none;
	border: 0;
	color: #ffffff;
	cursor: pointer;
}


.bb-header-icon-svg {
	width: 26px;
	height: 26px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}


.bb-icon-count {
	position: absolute;
	top: -6px;
	right: -8px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 40px;
	background: var(--bb-accent-red);
	color: #ffffff;
	font-size: 10px;
	font-weight: 600;
	line-height: 1;
}


.bb-hamburger {
	display: none;
	margin: 0;
	padding: 0;
	background: none;
	border: 0;
	color: #ffffff;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}


/* ==========================================================================
   SEARCH
   ========================================================================== */

.bb-search-form {
	position: relative;
	width: 100%;
	max-width: 420px;
}


.bb-search-input {
	width: 100%;
	padding: 10px 16px;
	background: var(--bb-bg-alt);
	border: 1px solid var(--bb-border);
	border-radius: 30px;
	color: #ffffff;
	font-family: var(--bb-font);
	font-size: 14px;
}


.bb-search-results {
	display: none;
	position: absolute;
	top: 110%;
	left: 0;
	right: 0;
	z-index: 1000;
	max-height: 400px;
	overflow-y: auto;
	background: var(--bb-bg-alt);
	border: 1px solid var(--bb-border);
	border-radius: 10px;
}


.bb-search-results.active {
	display: block;
}


.bb-search-result-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border-bottom: 1px solid var(--bb-border);
}


.bb-search-result-item img {
	width: 46px;
	height: 60px;
	object-fit: contain;
	background: #ffffff;
}


.bb-search-result-item .bb-sr-title {
	font-size: 13px;
}


.bb-search-result-item .bb-sr-price {
	color: var(--bb-accent-red);
	font-size: 12px;
}


/* ==========================================================================
   DESKTOP PRIMARY MENU
   ========================================================================== */

.bb-primary-menu {
	display: flex;
	justify-content: center;
	gap: 28px;
	max-width: 1600px;
	margin: 0 auto;
	padding: 10px 30px 16px;
	border-top: 1px solid var(--bb-border);
}


.bb-primary-menu ul {
	display: flex;
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}


.bb-primary-menu a {
	font-size: 14px;
	letter-spacing: .5px;
	text-transform: uppercase;
}


.bb-primary-menu a:hover {
	color: var(--bb-accent-red);
}


/* ==========================================================================
   PANEL OVERLAY
   ========================================================================== */

.bb-panel-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9998;
	background: rgba(0, 0, 0, .58);
}


.bb-panel-overlay.active {
	display: block;
}


/* ==========================================================================
   LEFT MENU
   ========================================================================== */

.bb-menu-panel {
	position: fixed;
	top: 0;
	left: -85%;
	z-index: 9999;
	width: 85%;
	max-width: 340px;
	height: 100%;
	overflow-y: auto;
	background: #ffffff;
	color: #111111;
	transition: left .3s ease;
}


.bb-menu-panel.active {
	left: 0;
}


.bb-menu-panel-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 20px;
}


.bb-menu-panel-title {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}


.bb-menu-panel-close,
.bb-search-panel-close {
	margin: 0;
	padding: 0;
	background: none;
	border: 0;
	color: #111111;
	font-size: 27px;
	cursor: pointer;
}


.bb-menu-panel-line {
	width: 100%;
	height: 3px;
	background: var(--bb-accent-red);
}


.bb-menu-panel-list {
	margin: 0;
	padding: 0;
	list-style: none;
}


.bb-menu-panel-list li {
	border-bottom: 1px solid #eeeeee;
}


.bb-menu-panel-list a,
.bb-menu-panel-list button {
	display: flex;
	width: 100%;
	padding: 16px 20px;
	background: none;
	border: 0;
	color: #111111;
	font-family: var(--bb-font);
	font-size: 15px;
	text-align: left;
	cursor: pointer;
}


/* ==========================================================================
   SEARCH PANEL
   ========================================================================== */

.bb-search-panel {
	position: fixed;
	top: 0;
	right: -90%;
	z-index: 9999;
	width: 88%;
	max-width: 390px;
	height: 100%;
	overflow-y: auto;
	background: #ffffff;
	color: #111111;
	transition: right .3s ease;
}


.bb-search-panel.active {
	right: 0;
}


.bb-search-panel-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 20px;
	border-bottom: 1px solid #eeeeee;
}


.bb-search-panel-title {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}


.bb-search-panel-body {
	padding: 18px 20px;
}


.bb-search-panel-body input {
	width: 100%;
	padding: 11px 16px;
	border: 1px solid #dddddd;
	border-radius: 30px;
	font-family: var(--bb-font);
	font-size: 14px;
}


.bb-search-panel .bb-search-results {
	position: static;
	margin-top: 10px;
	background: transparent;
	border: 0;
}


.bb-search-panel .bb-sr-title {
	color: #111111;
}


/* ==========================================================================
   CART DRAWER
   ========================================================================== */

.bb-cart-drawer {
	position: fixed;
	top: 0;
	right: -470px;
	z-index: 10000;
	display: flex;
	flex-direction: column;
	width: 420px;
	max-width: 92vw;
	height: 100dvh;
	background: #ffffff;
	color: #111111;
	box-shadow: -12px 0 40px rgba(0, 0, 0, .2);
	transition: right .32s ease;
}


.bb-cart-drawer.active {
	right: 0;
}


.bb-cart-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px;
	border-bottom: 1px solid #eeeeee;
}


.bb-cart-drawer-title {
	display: block;
	color: #111111;
	font-size: 17px;
	font-weight: 700;
	text-transform: uppercase;
}


.bb-cart-drawer-count-text {
	display: block;
	margin-top: 3px;
	color: #999999;
	font-size: 10px;
}


.bb-cart-drawer-count-text .bb-cart-count {
	color: #555555;
}


.bb-cart-drawer-close {
	padding: 0;
	background: transparent;
	border: 0;
	color: #111111;
	font-size: 30px;
	cursor: pointer;
}


.bb-cart-drawer-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 0;
}


.bb-cart-drawer-items {
	flex: 1;
	overflow-y: auto;
	padding: 3px 20px;
}


.bb-cart-drawer-item {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 15px;
	padding: 18px 0;
	border-bottom: 1px solid #eeeeee;
}


.bb-cart-drawer-image {
	width: 92px;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: #f7f7f7;
}


.bb-cart-drawer-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}


.bb-cart-drawer-product-title {
	display: -webkit-box;
	overflow: hidden;
	color: #111111;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.45;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}


.bb-cart-drawer-price {
	margin-top: 7px;
	color: #111111;
	font-size: 12px;
	font-weight: 600;
}


.bb-cart-drawer-price del {
	margin-right: 5px;
	color: #999999;
}


.bb-cart-drawer-price ins {
	color: var(--bb-accent-red);
	text-decoration: none;
}


.bb-cart-drawer-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 14px;
}


.bb-mini-qty {
	display: inline-flex;
	align-items: center;
	height: 35px;
	overflow: hidden;
	border: 1px solid #222222;
	border-radius: 30px;
}


.bb-mini-qty button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 100%;
	padding: 0;
	background: none;
	border: 0;
	color: #111111;
	font-size: 18px;
}


.bb-mini-qty-number {
	min-width: 28px;
	color: #111111;
	font-size: 12px;
	font-weight: 600;
	text-align: center;
}


.bb-mini-remove {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	background: transparent;
	border: 1px solid #eeeeee;
	color: #555555;
}


.bb-mini-remove svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
}


.bb-cart-drawer-footer {
	padding: 18px 20px 22px;
	background: #ffffff;
	border-top: 1px solid #e8e8e8;
}


.bb-cart-drawer-subtotal {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	color: #111111;
	font-size: 14px;
}


.bb-cart-drawer-note {
	margin: 6px 0 16px;
	color: #999999;
	font-size: 10px;
	line-height: 1.5;
	text-align: right;
}


.bb-cart-view-btn,
.bb-cart-checkout-btn,
.bb-drawer-shop-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 45px;
	border-radius: 30px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}


.bb-cart-view-btn {
	margin-bottom: 10px;
	background: #f2f2f2;
	color: #111111;
}


.bb-cart-checkout-btn {
	background: #000000;
	color: #ffffff;
}


.bb-cart-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	flex-direction: column;
	padding: 50px 30px;
	text-align: center;
}


.bb-cart-empty-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	margin-bottom: 18px;
	background: #f5f5f5;
	border-radius: 50%;
}


.bb-cart-empty-icon svg {
	width: 31px;
	fill: none;
	stroke: #111111;
}


.bb-cart-empty h3 {
	margin: 0 0 7px;
	color: #111111;
}


.bb-cart-empty p {
	color: #777777;
	font-size: 11px;
}


/* ==========================================================================
   MOBILE BOTTOM NAV
   ========================================================================== */

.bb-bottom-nav {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9000;
	padding: 7px 9px 8px;
	background: #ffffff;
	border-top: 1px solid #e9e9e9;
}


.bb-bottom-nav-inner {
	display: flex;
	width: 100%;
	max-width: 620px;
	margin: 0 auto;
}


.bb-bottom-nav-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 25%;
	gap: 4px;
	padding: 3px 4px;
	background: none;
	border: 0;
	color: #171717;
	font-family: var(--bb-font);
}


.bb-bn-icon-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 31px;
	height: 31px;
}


.bb-bn-svg {
	width: 27px;
	height: 27px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}


.bb-bn-label {
	color: #171717;
	font-size: 11.5px;
	font-weight: 600;
}


.bb-bottom-nav-item .bb-icon-count {
	top: -5px;
	right: -9px;
	background: #111111;
}


/* ==========================================================================
   HERO - 1700PX CONTAINER
   ========================================================================== */

.bb-hero-outer {
	width: calc(100% - 32px);
	max-width: 1700px;
	margin: 18px auto 0;
}


.bb-hero-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #111111;
}


.bb-hero-slide {
	display: none;
	width: 100%;
}


.bb-hero-slide.active {
	display: block;
}


.bb-hero-slide img {
	display: block;
	width: 100%;
	height: auto;
}

/* Bottom homepage banner - same 1700px centered container as hero */
.bb-bottom-banner-outer {
	width: calc(100% - 32px);
	max-width: 1700px;
	margin: 0 auto 28px;
}

.bb-bottom-banner {
	width: 100%;
	overflow: hidden;
	background: #111111;
}

.bb-bottom-banner img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
}


/* ==========================================================================
   PRODUCT SECTIONS
   ========================================================================== */

.bb-section {
	max-width: 1600px;
	margin: 0 auto;
	padding: 50px 20px;
}


.bb-section-heading {
	margin-bottom: 10px;
	font-size: 24px;
	letter-spacing: 2px;
	text-align: center;
	text-transform: uppercase;
}


.bb-section-heading-line {
	width: 60px;
	height: 3px;
	margin: 0 auto 40px;
	background: var(--bb-accent-red);
}


.bb-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: start;
	gap: 22px;
}


.bb-product-card {
	position: relative;
	min-width: 0;
}


/*
 * SAME BOX SIZE + COMPLETE IMAGE.
 *
 * contain = no cutting from top/bottom.
 */
.bb-product-thumb {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: #f3f3f3;
}


.bb-product-image-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}


.bb-product-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	object-fit: contain;
	object-position: center;
	transition: transform .25s ease;
}


.bb-product-card:hover .bb-product-thumb img {
	transform: scale(1.01);
}


/* SALE BADGE */

.bb-badge-discount,
.woocommerce span.onsale {
	position: absolute !important;
	top: 12px !important;
	left: 12px !important;
	right: auto !important;
	z-index: 5 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 47px !important;
	height: 47px !important;
	min-width: 47px !important;
	min-height: 47px !important;
	padding: 0 !important;
	background: rgba(0, 0, 0, .70) !important;
	border-radius: 50% !important;
	color: #ffffff !important;
	font-size: 10px !important;
	font-weight: 600 !important;
	line-height: 1 !important;
}


/* PRODUCT CART BUTTON */

.bb-cart-btn {
	position: absolute !important;
	right: 10px;
	bottom: 10px;
	z-index: 6;
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 38px !important;
	height: 38px !important;
	min-height: 0 !important;
	padding: 0 !important;
	background: rgba(30, 30, 30, .78) !important;
	border: 0 !important;
	border-radius: 50% !important;
	color: #ffffff !important;
}


.bb-cart-btn svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
}


.bb-product-title {
	margin: 10px 0 0;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.45;
}


.bb-product-title a {
	color: #ffffff;
}


.bb-product-price {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px 8px;
	margin-top: 4px;
	font-size: 12px;
}


.bb-product-price del {
	color: var(--bb-text-muted);
}


.bb-product-price ins {
	color: var(--bb-accent-red);
	font-weight: 600;
	text-decoration: none;
}


.bb-load-more-wrap {
	margin-top: 40px;
	text-align: center;
}


.bb-load-more-btn,
.bb-view-all-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 34px;
	background: var(--bb-accent-red);
	border: 0;
	border-radius: 30px;
	color: #ffffff;
	font-family: var(--bb-font);
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;
}


/* Woo archive full product image */

.woocommerce ul.products li.product img {
	width: 100% !important;
	aspect-ratio: 3 / 4;
	height: auto !important;
	padding: 0;
	background: #f3f3f3;
	object-fit: contain !important;
	object-position: center !important;
}


/* ==========================================================================
   CART + CHECKOUT PAGE BACKGROUND
   ========================================================================== */

.woocommerce-cart .site-content,
.woocommerce-cart .ast-container,
.woocommerce-cart .site-main,
.woocommerce-cart .entry-content,
.woocommerce-checkout .site-content,
.woocommerce-checkout .ast-container,
.woocommerce-checkout .site-main,
.woocommerce-checkout .entry-content {
	width: 100% !important;
	max-width: none !important;
	padding: 0 !important;
	background: #f7f7f7 !important;
	color: #111111 !important;
}


/* ==========================================================================
   CART / CHECKOUT 1600PX CONTAINER
   ========================================================================== */

.bb-direct-cart-page,
.bb-direct-checkout-page {
	width: 100%;
	min-height: 75vh;
	background: #f7f7f7;
	color: #111111;
}


.bb-direct-cart-container,
.bb-direct-checkout-container {
	width: calc(100% - 48px);
	max-width: 1600px;
	margin: 0 auto;
	padding: 50px 0 80px;
}


.bb-native-cart-wrap,
.bb-native-checkout-wrap {
	width: 100%;
	max-width: 100%;
}


/* PAGE HEADING */

.bb-direct-page-heading {
	max-width: 800px;
	margin: 0 auto 36px;
	text-align: center;
}


.bb-direct-eyebrow {
	display: block;
	margin-bottom: 7px;
	color: #999999;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 1.6px;
	text-transform: uppercase;
}


.bb-direct-page-heading h1 {
	margin: 0;
	color: #111111 !important;
	font-size: 32px;
	font-weight: 600;
	line-height: 1.2;
}


.bb-direct-page-heading p {
	margin: 9px 0 0;
	color: #777777;
	font-size: 12px;
}


/* ==========================================================================
   CART PAGE
   ========================================================================== */

.bb-native-cart-wrap > .woocommerce {
	width: 100%;
	padding: 34px 36px;
	background: #ffffff;
	border: 1px solid #e7e7e7;
	box-shadow: 0 10px 30px rgba(0,0,0,.03);
}


.bb-native-cart-wrap table.shop_table {
	width: 100%;
	margin: 0 !important;
	border: 0 !important;
	border-collapse: collapse !important;
}


.bb-native-cart-wrap table.shop_table thead th {
	padding: 16px 14px !important;
	background: #fafafa !important;
	border: 0 !important;
	border-bottom: 1px solid #e1e1e1 !important;
	color: #333333 !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	letter-spacing: .45px;
	text-transform: uppercase;
	vertical-align: middle !important;
}

.bb-native-cart-wrap table.shop_table thead th.product-name,
.bb-native-cart-wrap table.shop_table td.product-name {
	text-align: left !important;
}

.bb-native-cart-wrap table.shop_table thead th.product-price,
.bb-native-cart-wrap table.shop_table thead th.product-quantity,
.bb-native-cart-wrap table.shop_table thead th.product-subtotal,
.bb-native-cart-wrap table.shop_table td.product-price,
.bb-native-cart-wrap table.shop_table td.product-quantity,
.bb-native-cart-wrap table.shop_table td.product-subtotal {
	text-align: center !important;
}


.bb-native-cart-wrap table.shop_table td {
	padding: 22px 14px !important;
	background: #ffffff !important;
	border: 0 !important;
	border-bottom: 1px solid #ececec !important;
	color: #111111 !important;
	vertical-align: middle !important;
	font-size: 12.5px;
}


.bb-native-cart-wrap td.product-thumbnail {
	width: 125px;
}


.bb-native-cart-wrap td.product-thumbnail img {
	width: 90px !important;
	height: 120px !important;
	padding: 3px;
	background: #f4f4f4;
	object-fit: contain;
}


.bb-native-cart-wrap td.product-name a {
	color: #111111 !important;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.5;
}


.bb-native-cart-wrap td.product-price,
.bb-native-cart-wrap td.product-subtotal {
	color: #111111 !important;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}


.bb-native-cart-wrap td.product-remove a {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 30px !important;
	height: 30px !important;
	border: 1px solid #e2e2e2;
	border-radius: 50%;
	color: #666666 !important;
}


.bb-native-cart-wrap th.product-remove,
.bb-native-cart-wrap td.product-remove {
	width: 60px;
}

.bb-native-cart-wrap th.product-thumbnail,
.bb-native-cart-wrap td.product-thumbnail {
	width: 130px;
}

.bb-native-cart-wrap th.product-name,
.bb-native-cart-wrap td.product-name {
	width: 40%;
}

.bb-native-cart-wrap th.product-price,
.bb-native-cart-wrap td.product-price {
	width: 18%;
}

.bb-native-cart-wrap th.product-quantity,
.bb-native-cart-wrap td.product-quantity {
	width: 18%;
}

.bb-native-cart-wrap th.product-subtotal,
.bb-native-cart-wrap td.product-subtotal {
	width: 18%;
}

.bb-native-cart-wrap .quantity {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto !important;
}

.bb-native-cart-wrap .quantity .qty {
	width: 76px !important;
	height: 40px !important;
	padding: 0 8px !important;
	background: #ffffff !important;
	border: 1px solid #bbbbbb !important;
	border-radius: 22px !important;
	color: #111111 !important;
	font-size: 12px !important;
	text-align: center;
}


.bb-native-cart-wrap button.button {
	min-height: 42px !important;
	padding: 0 23px !important;
	background: #111111 !important;
	border-radius: 23px !important;
	color: #ffffff !important;
	font-family: var(--bb-font) !important;
	font-size: 10px !important;
	font-weight: 600 !important;
}



/* CART COUPON + APPLIED COUPON NOTICE */

.bb-native-cart-wrap .actions {
	padding: 24px 12px 8px !important;
	vertical-align: middle !important;
}

.bb-native-cart-wrap .actions .coupon {
	display: flex !important;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	float: left;
}

.bb-native-cart-wrap .actions .coupon label {
	display: none !important;
}

.bb-native-cart-wrap .actions .coupon .input-text,
.bb-native-cart-wrap #coupon_code {
	width: 260px !important;
	min-width: 260px !important;
	height: 44px !important;
	margin: 0 !important;
	padding: 0 16px !important;
	background: #ffffff !important;
	border: 1px solid #cfcfcf !important;
	border-radius: 6px !important;
	color: #111111 !important;
	font-family: var(--bb-font) !important;
	font-size: 12px !important;
	line-height: 44px !important;
}

.bb-native-cart-wrap .actions .coupon .input-text::placeholder,
.bb-native-cart-wrap #coupon_code::placeholder {
	color: #8b8b8b !important;
	opacity: 1;
}

.bb-native-cart-wrap .actions .coupon button.button {
	height: 44px !important;
	min-height: 44px !important;
	margin: 0 !important;
	padding: 0 22px !important;
}

.bb-native-cart-wrap .woocommerce-message,
.bb-native-cart-wrap .woocommerce-info,
.bb-native-cart-wrap .woocommerce-error {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 48px;
	margin: 0 0 18px !important;
	padding: 13px 18px 13px 42px !important;
	background: #f7f7f7 !important;
	border: 1px solid #e2e2e2 !important;
	border-top: 1px solid #e2e2e2 !important;
	color: #2d2d2d !important;
	font-size: 12px !important;
	line-height: 1.5;
}

.bb-native-cart-wrap .woocommerce-message::before,
.bb-native-cart-wrap .woocommerce-info::before {
	top: 50% !important;
	left: 16px !important;
	transform: translateY(-50%);
	color: #222222 !important;
}

.bb-native-cart-wrap .woocommerce-error::before {
	top: 50% !important;
	left: 16px !important;
	transform: translateY(-50%);
}


/* CART TOTALS */

.bb-native-cart-wrap .cart-collaterals {
	display: flex;
	justify-content: flex-end;
	margin-top: 30px;
}


.bb-native-cart-wrap .cart_totals {
	float: none !important;
	width: 420px !important;
	padding: 27px;
	background: #fafafa;
	border: 1px solid #e4e4e4;
}


.bb-native-cart-wrap .cart_totals h2 {
	margin: 0 0 20px;
	color: #111111 !important;
	font-size: 18px;
	font-weight: 600;
}


.bb-native-cart-wrap .cart_totals table {
	width: 100%;
}


.bb-native-cart-wrap .cart_totals th,
.bb-native-cart-wrap .cart_totals td {
	padding: 12px 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-bottom: 1px solid #e6e6e6 !important;
	color: #333333 !important;
	font-size: 11px;
}


.bb-native-cart-wrap .cart_totals .order-total th,
.bb-native-cart-wrap .cart_totals .order-total td {
	padding-top: 17px !important;
	color: #111111 !important;
	font-size: 15px !important;
	font-weight: 600 !important;
}


.bb-native-cart-wrap .wc-proceed-to-checkout {
	padding: 22px 0 0 !important;
}


.bb-native-cart-wrap .checkout-button {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 100% !important;
	min-height: 48px !important;
	margin: 0 !important;
	background: #000000 !important;
	border-radius: 28px !important;
	color: #ffffff !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	letter-spacing: .8px;
	text-transform: uppercase;
}


/* ==========================================================================
   CHECKOUT PAGE
   ========================================================================== */

.bb-checkout-delivery-alert {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	max-width: 900px;
	margin: -5px auto 25px;
	padding: 14px 17px;
	background: #fff8e8;
	border: 1px solid #edd9a8;
}


.bb-checkout-alert-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	background: #f4b000;
	border-radius: 50%;
	color: #111111;
	font-size: 11px;
	font-weight: 700;
}


.bb-checkout-delivery-alert strong {
	display: block;
	color: #222222;
	font-size: 11px;
}


.bb-checkout-delivery-alert p {
	margin: 3px 0 0;
	color: #777777;
	font-size: 9.5px;
}


.bb-native-checkout-wrap > .woocommerce {
	width: 100%;
}


.bb-native-checkout-wrap form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
	align-items: start;
	gap: 40px;
}


/* LEFT CHECKOUT CARD */

.bb-native-checkout-wrap #customer_details {
	width: 100%;
	padding: 30px;
	background: #ffffff;
	border: 1px solid #e6e6e6;
}


.bb-native-checkout-wrap #customer_details .col-1 {
	float: none !important;
	width: 100% !important;
}


.bb-native-checkout-wrap #customer_details .col-2 {
	display: none !important;
}


.bb-native-checkout-wrap .woocommerce-billing-fields h3 {
	margin: 0 0 25px;
	color: #111111 !important;
	font-size: 18px;
	font-weight: 600;
}


/*
 * Every field occupies full row.
 * Prevent fields from overlapping.
 */
.bb-native-checkout-wrap .form-row,
.bb-native-checkout-wrap .form-row-first,
.bb-native-checkout-wrap .form-row-last,
.bb-native-checkout-wrap .form-row-wide {
	display: block !important;
	float: none !important;
	clear: both !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 0 18px !important;
	padding: 0 !important;
}


.bb-native-checkout-wrap label {
	display: block;
	width: 100%;
	margin: 0 0 7px;
	color: #333333 !important;
	font-size: 10.5px;
	font-weight: 500;
}


/*
 * ALL fields fit perfectly inside box.
 */
.bb-native-checkout-wrap input.input-text,
.bb-native-checkout-wrap input[type="text"],
.bb-native-checkout-wrap input[type="tel"],
.bb-native-checkout-wrap input[type="email"],
.bb-native-checkout-wrap select,
.bb-native-checkout-wrap textarea {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	height: 48px !important;
	min-height: 48px !important;
	margin: 0 !important;
	padding: 0 14px !important;
	background: #ffffff !important;
	border: 1px solid #d8d8d8 !important;
	border-radius: 5px !important;
	color: #111111 !important;
	box-shadow: none !important;
	font-family: var(--bb-font) !important;
	font-size: 12px !important;
	line-height: 48px !important;
	outline: none;
}


.bb-native-checkout-wrap input.input-text:focus,
.bb-native-checkout-wrap input[type="text"]:focus,
.bb-native-checkout-wrap input[type="tel"]:focus {
	border-color: #222222 !important;
}


/*
 * Select2 alignment fix.
 */
.bb-native-checkout-wrap .select2-container {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
}


.bb-native-checkout-wrap .select2-container .select2-selection--single {
	display: flex !important;
	align-items: center !important;
	width: 100% !important;
	height: 48px !important;
	padding: 0 14px !important;
	background: #ffffff !important;
	border: 1px solid #d8d8d8 !important;
	border-radius: 5px !important;
}


.bb-native-checkout-wrap .select2-selection__rendered {
	width: 100%;
	padding: 0 !important;
	color: #111111 !important;
	font-size: 12px;
	line-height: 46px !important;
}


.bb-native-checkout-wrap .select2-selection__arrow {
	top: 11px !important;
	right: 9px !important;
}


/* Hide hidden country cleanly */

.bb-native-checkout-wrap
#billing_country_field {
	display: none !important;
}


/* RIGHT SUMMARY */

.bb-native-checkout-wrap #order_review_heading {
	margin: 0;
	padding: 25px 27px 0;
	background: #ffffff;
	border: 1px solid #e6e6e6;
	border-bottom: 0;
	color: #111111 !important;
	font-size: 18px;
	font-weight: 600;
}


.bb-native-checkout-wrap #order_review {
	width: 100%;
	padding: 20px 27px 27px;
	background: #ffffff !important;
	border: 1px solid #e6e6e6;
	border-top: 0;
}


.bb-native-checkout-wrap #order_review table {
	width: 100%;
	margin: 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-collapse: collapse !important;
}


.bb-native-checkout-wrap #order_review th,
.bb-native-checkout-wrap #order_review td {
	padding: 11px 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-bottom: 1px solid #eeeeee !important;
	color: #333333 !important;
	font-size: 10.5px;
	vertical-align: middle;
}


.bb-native-checkout-wrap #order_review td:last-child {
	text-align: right;
}


.bb-native-checkout-wrap #order_review .order-total th,
.bb-native-checkout-wrap #order_review .order-total td {
	padding-top: 17px !important;
	color: #111111 !important;
	font-size: 14px !important;
	font-weight: 600 !important;
}


/* PAYMENT */

.bb-native-checkout-wrap #payment {
	margin-top: 20px !important;
	background: #fafafa !important;
	border: 1px solid #eeeeee;
}


.bb-native-checkout-wrap #payment ul.payment_methods {
	margin: 0 !important;
	padding: 18px !important;
	border: 0 !important;
}


.bb-native-checkout-wrap #payment ul.payment_methods li {
	color: #111111;
	font-size: 11px;
}


.bb-native-checkout-wrap #payment .payment_box {
	margin: 10px 0 0 !important;
	padding: 12px !important;
	background: #f0f0f0 !important;
	color: #666666 !important;
	font-size: 9.5px !important;
}


.bb-native-checkout-wrap #payment .payment_box::before {
	display: none !important;
}


.bb-native-checkout-wrap #payment .place-order {
	padding: 18px !important;
	background: #ffffff;
}


.bb-native-checkout-wrap #place_order {
	display: flex !important;
	align-items: center;
	justify-content: center;
	float: none !important;
	width: 100% !important;
	min-height: 49px !important;
	margin: 12px 0 0 !important;
	padding: 0 25px !important;
	background: #000000 !important;
	border: 0 !important;
	border-radius: 28px !important;
	color: #ffffff !important;
	font-family: var(--bb-font) !important;
	font-size: 10.5px !important;
	font-weight: 600 !important;
	letter-spacing: 1px;
	text-transform: uppercase;
}


/* Checkout validation messages */

.bb-native-checkout-wrap .woocommerce-error,
.bb-native-checkout-wrap .woocommerce-info,
.bb-native-checkout-wrap .woocommerce-message {
	width: 100%;
	margin: 0 0 20px !important;
	padding: 13px 16px !important;
	background: #ffffff;
	color: #333333;
	font-size: 11px;
}


/* EMPTY CHECKOUT */

.bb-checkout-empty {
	padding: 80px 20px;
	background: #ffffff;
	text-align: center;
}


.bb-checkout-empty h2 {
	color: #111111 !important;
}


.bb-checkout-empty p {
	color: #777777;
}


.bb-checkout-empty a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 45px;
	margin-top: 15px;
	padding: 0 25px;
	background: #000000;
	border-radius: 30px;
	color: #ffffff;
}


/* ==========================================================================
   DESKTOP
   ========================================================================== */

@media (min-width: 1200px) {

	.bb-header-left {
		display: none;
	}


	.bb-logo {
		flex: 0 0 auto;
		text-align: left;
	}


	.bb-header-search-desktop {
		display: flex;
		justify-content: center;
		flex: 1;
		padding: 0 30px;
	}


	.bb-header-right {
		flex: 0 0 auto;
	}

}


/* ==========================================================================
   TABLET + MOBILE HEADER
   ========================================================================== */

@media (max-width: 1199px) {

	.bb-primary-menu {
		display: none;
	}


	.bb-hamburger {
		display: block;
	}


	.bb-header-inner {
		position: relative;
		padding: 14px;
	}


	.bb-header-left {
		flex: 0 0 auto;
	}


	.bb-logo {
		position: absolute;
		top: 50%;
		left: 50%;
		z-index: 1;
		width: auto;
		flex: none;
		transform: translate(-50%, -50%);
		text-align: center;
	}


	.bb-logo .custom-logo-link {
		display: flex;
		align-items: center;
		justify-content: center;
	}


	.bb-logo img {
		display: block;
		margin: 0 auto;
	}


	.bb-header-right {
		flex: 0 0 auto;
		margin-left: auto;
	}


	.bb-header-wishlist-top {
		display: none;
	}


	.bb-bottom-nav {
		display: block;
	}


	body {
		padding-bottom: 68px;
	}


	.bb-native-checkout-wrap form.checkout {
		grid-template-columns: 1fr;
	}


	.bb-native-checkout-wrap #order_review_heading {
		margin-top: 10px;
	}

}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 1199px) and (min-width: 768px) {

	.bb-product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}


	.bb-cart-drawer {
		width: 390px;
	}


	.bb-direct-cart-container,
	.bb-direct-checkout-container {
		width: calc(100% - 36px);
	}


	.bb-hero-outer,
	.bb-bottom-banner-outer {
		width: calc(100% - 24px);
	}

}


/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 767px) {

	.bb-hero-outer,
	.bb-bottom-banner-outer {
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	.bb-hero-outer {
		margin-top: 0;
	}

	.bb-bottom-banner-outer {
		margin-bottom: 18px;
	}


	.bb-section {
		padding: 40px 12px;
	}


	.bb-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}


	.bb-section-heading {
		font-size: 20px;
	}


	.bb-badge-discount,
	.woocommerce span.onsale {
		top: 8px !important;
		left: 8px !important;
		width: 39px !important;
		height: 39px !important;
		min-width: 39px !important;
		min-height: 39px !important;
		font-size: 8.5px !important;
	}


	.bb-cart-btn {
		right: 8px;
		bottom: 8px;
		width: 34px !important;
		height: 34px !important;
	}


	.bb-cart-btn svg {
		width: 17px;
		height: 17px;
	}


	.bb-product-title {
		margin-top: 8px;
		font-size: 11.5px;
	}


	.bb-product-price {
		font-size: 10.5px;
	}


	/* Drawer */

	.bb-cart-drawer {
		right: -92%;
		width: 88%;
		max-width: none;
	}


	.bb-cart-drawer-header {
		padding: 18px 16px 15px;
	}


	.bb-cart-drawer-items {
		padding: 2px 15px;
	}


	.bb-cart-drawer-item {
		grid-template-columns: 86px minmax(0, 1fr);
		gap: 12px;
	}


	.bb-cart-drawer-image {
		width: 86px;
	}


	.bb-cart-drawer-footer {
		padding: 15px;
	}


	/* Cart / checkout */

	.bb-direct-cart-container,
	.bb-direct-checkout-container {
		width: calc(100% - 24px);
		padding: 32px 0 65px;
	}


	.bb-direct-page-heading {
		margin-bottom: 25px;
	}


	.bb-direct-page-heading h1 {
		font-size: 25px;
	}


	.bb-native-cart-wrap > .woocommerce {
		padding: 15px;
	}


	/* Mobile cart rows */

	.bb-native-cart-wrap table.shop_table thead {
		display: none;
	}


	.bb-native-cart-wrap table.shop_table,
	.bb-native-cart-wrap table.shop_table tbody,
	.bb-native-cart-wrap table.shop_table tr,
	.bb-native-cart-wrap table.shop_table td {
		display: block;
		width: 100%;
	}


	.bb-native-cart-wrap table.shop_table tr.cart_item {
		position: relative;
		display: grid;
		grid-template-columns: 95px minmax(0, 1fr);
		gap: 12px;
		padding: 18px 0;
	}


	.bb-native-cart-wrap table.shop_table td {
		padding: 0 !important;
		border: 0 !important;
	}


	.bb-native-cart-wrap td.product-thumbnail {
		grid-row: 1 / 6;
		width: 95px !important;
	}


	.bb-native-cart-wrap td.product-thumbnail img {
		width: 95px !important;
		height: 126px !important;
		object-fit: contain;
	}


	.bb-native-cart-wrap td.product-name,
	.bb-native-cart-wrap td.product-price,
	.bb-native-cart-wrap td.product-quantity,
	.bb-native-cart-wrap td.product-subtotal {
		grid-column: 2;
		padding-right: 24px !important;
	}


	.bb-native-cart-wrap td.product-remove {
		position: absolute;
		top: 0;
		right: 0;
		width: auto !important;
	}


	.bb-native-cart-wrap .cart-collaterals {
		display: block;
	}


	.bb-native-cart-wrap .cart_totals {
		width: 100% !important;
		padding: 20px 17px;
	}


	/* Checkout */

	.bb-checkout-delivery-alert {
		margin-bottom: 18px;
	}


	.bb-native-checkout-wrap #customer_details {
		padding: 20px 16px;
	}


	.bb-native-checkout-wrap #order_review_heading {
		padding: 20px 16px 0;
	}


	.bb-native-checkout-wrap #order_review {
		padding: 16px;
	}


	.bb-native-checkout-wrap input.input-text,
	.bb-native-checkout-wrap input[type="text"],
	.bb-native-checkout-wrap input[type="tel"],
	.bb-native-checkout-wrap select {
		height: 47px !important;
		min-height: 47px !important;
		line-height: 47px !important;
		font-size: 12px !important;
	}

}



/* ==========================================================================
   FINAL RESPONSIVE POLISH
   ========================================================================== */

@media (max-width: 1199px) {
	.bb-native-checkout-wrap form.checkout {
		grid-template-columns: minmax(0, 1fr) 340px;
		gap: 20px;
	}
}

@media (max-width: 900px) {
	.bb-native-checkout-wrap form.checkout {
		grid-template-columns: 1fr;
	}

	.bb-native-checkout-wrap #order_review_heading {
		margin-top: 0;
	}

	.bb-native-cart-wrap .actions .coupon {
		float: none;
		width: 100%;
	}

	.bb-native-cart-wrap .actions .coupon .input-text,
	.bb-native-cart-wrap #coupon_code {
		flex: 1 1 220px;
		width: auto !important;
		min-width: 0 !important;
	}
}

@media (max-width: 767px) {
	.bb-direct-checkout-container {
		width: calc(100% - 24px);
		padding: 28px 0 62px;
	}

	.bb-direct-checkout-page .bb-direct-page-heading h1 {
		font-size: 24px;
	}

	.bb-native-checkout-wrap form.checkout_coupon {
		grid-template-columns: 1fr;
	}

	.bb-native-checkout-wrap form.checkout_coupon button.button {
		width: 100% !important;
	}

	.bb-native-checkout-wrap #customer_details {
		padding: 18px 14px;
	}

	.bb-native-checkout-wrap #order_review_heading {
		padding: 16px 14px 10px;
	}

	.bb-native-checkout-wrap #order_review {
		padding: 0 14px 14px;
	}

	.bb-native-cart-wrap .actions .coupon {
		display: grid !important;
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.bb-native-cart-wrap .actions .coupon .input-text,
	.bb-native-cart-wrap #coupon_code,
	.bb-native-cart-wrap .actions .coupon button.button {
		width: 100% !important;
		min-width: 0 !important;
	}

	.bb-native-cart-wrap .actions > button[name="update_cart"] {
		width: 100%;
		margin-top: 10px !important;
	}
}


/* ==========================================================================
   FINAL CHECKOUT V2 - SAPPHIRE-INSPIRED CLEAN DARK CHECKOUT
   ========================================================================== */

body.woocommerce-checkout,
.woocommerce-checkout .site,
.woocommerce-checkout #page,
.woocommerce-checkout .site-content,
.woocommerce-checkout .ast-container,
.woocommerce-checkout .site-main,
.woocommerce-checkout .entry-content,
.bb-direct-checkout-page {
	background: #111111 !important;
	color: #ffffff !important;
}

.bb-direct-checkout-page {
	min-height: 80vh;
}

.bb-direct-checkout-container {
	width: calc(100% - 48px);
	max-width: 1600px;
	margin: 0 auto;
	padding: 38px 0 80px;
}

.bb-checkout-shell {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
}

.bb-checkout-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 18px;
	padding-bottom: 16px;
	border-bottom: 1px solid #2d2d2d;
}

.bb-checkout-topbar-title {
	margin: 0;
	color: #ffffff !important;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 1.8px;
	text-transform: uppercase;
}

.bb-checkout-edit-cart {
	color: #b9b9b9 !important;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .4px;
	text-transform: uppercase;
}

.bb-checkout-edit-cart:hover {
	color: #ffffff !important;
}

.bb-checkout-delivery-alert {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	width: 100%;
	max-width: none;
	margin: 0 0 16px;
	padding: 12px 14px;
	background: #181818;
	border: 1px solid #333333;
	border-left: 3px solid #d0a13b;
	border-radius: 2px;
}

.bb-checkout-alert-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 21px;
	height: 21px;
	background: #d0a13b;
	border-radius: 50%;
	color: #111111;
	font-size: 10px;
	font-weight: 700;
}

.bb-checkout-delivery-alert strong {
	display: block;
	color: #ffffff;
	font-size: 10.5px;
	font-weight: 600;
}

.bb-checkout-delivery-alert p {
	margin: 3px 0 0;
	color: #9d9d9d;
	font-size: 9.5px;
	line-height: 1.55;
}

.bb-native-checkout-wrap,
.bb-native-checkout-wrap > .woocommerce {
	width: 100%;
	max-width: none;
	margin: 0;
	color: #ffffff;
}

/* Notices */
.bb-native-checkout-wrap .woocommerce-error,
.bb-native-checkout-wrap .woocommerce-info,
.bb-native-checkout-wrap .woocommerce-message {
	width: 100%;
	margin: 0 0 14px !important;
	padding: 11px 14px !important;
	background: #181818 !important;
	border: 1px solid #343434 !important;
	border-top: 1px solid #343434 !important;
	border-radius: 2px;
	color: #c9c9c9 !important;
	font-size: 9.5px !important;
	line-height: 1.5;
}

.bb-native-checkout-wrap .woocommerce-error::before,
.bb-native-checkout-wrap .woocommerce-info::before,
.bb-native-checkout-wrap .woocommerce-message::before {
	display: none !important;
}

/* Coupon */
.bb-native-checkout-wrap .woocommerce-form-coupon-toggle {
	margin: 0 0 12px;
}

.bb-native-checkout-wrap .woocommerce-form-coupon-toggle .woocommerce-info {
	display: flex;
	align-items: center;
	min-height: 42px;
	margin: 0 !important;
	padding: 10px 13px !important;
	background: #151515 !important;
	border: 1px solid #303030 !important;
	color: #9e9e9e !important;
}

.bb-native-checkout-wrap .woocommerce-form-coupon-toggle a {
	margin-left: 5px;
	color: #ffffff !important;
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.bb-native-checkout-wrap form.checkout_coupon {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) 150px;
	align-items: center;
	gap: 9px;
	width: 100%;
	margin: 0 0 16px !important;
	padding: 12px !important;
	background: #151515 !important;
	border: 1px solid #303030 !important;
	border-radius: 2px;
}

.bb-native-checkout-wrap form.checkout_coupon p {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

.bb-native-checkout-wrap form.checkout_coupon .input-text {
	display: block !important;
	width: 100% !important;
	height: 40px !important;
	min-height: 40px !important;
	margin: 0 !important;
	padding: 0 12px !important;
	background: #0f0f0f !important;
	border: 1px solid #414141 !important;
	border-radius: 2px !important;
	color: #ffffff !important;
	font-family: var(--bb-font) !important;
	font-size: 10px !important;
	line-height: 40px !important;
}

.bb-native-checkout-wrap form.checkout_coupon .input-text::placeholder {
	color: #6e6e6e !important;
	opacity: 1;
}

.bb-native-checkout-wrap form.checkout_coupon button.button {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 100% !important;
	height: 40px !important;
	min-height: 40px !important;
	margin: 0 !important;
	padding: 0 14px !important;
	background: #000000 !important;
	border: 1px solid #414141 !important;
	border-radius: 2px !important;
	color: #ffffff !important;
	font-family: var(--bb-font) !important;
	font-size: 9.5px !important;
	font-weight: 600 !important;
	letter-spacing: .45px;
	text-transform: uppercase;
}

/* Two-column checkout */
.bb-native-checkout-wrap form.woocommerce-checkout {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) 390px !important;
	align-items: start;
	gap: 22px;
	width: 100%;
}

/* Left side */
.bb-native-checkout-wrap #customer_details {
	grid-column: 1;
	width: 100%;
	margin: 0;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
}

.bb-native-checkout-wrap #customer_details .col-1 {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

.bb-native-checkout-wrap #customer_details .col-2 {
	display: none !important;
}

.bb-native-checkout-wrap .woocommerce-billing-fields {
	padding: 20px;
	background: #151515;
	border: 1px solid #303030;
	border-radius: 2px;
}

.bb-native-checkout-wrap .woocommerce-billing-fields h3 {
	position: relative;
	margin: 0 0 18px;
	padding: 0 0 12px 31px;
	border-bottom: 1px solid #2f2f2f;
	color: #ffffff !important;
	font-size: 12px;
	font-weight: 600;
	line-height: 20px;
}

.bb-native-checkout-wrap .woocommerce-billing-fields h3::before {
	content: "1";
	position: absolute;
	top: -1px;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 21px;
	height: 21px;
	background: #000000;
	border: 1px solid #4a4a4a;
	border-radius: 50%;
	color: #ffffff;
	font-size: 9px;
	font-weight: 600;
}

.bb-native-checkout-wrap .woocommerce-billing-fields h3::after {
	content: "Delivery Information";
}

/* Hide WooCommerce's original Billing details text while keeping the h3 box */
.bb-native-checkout-wrap .woocommerce-billing-fields h3 {
	font-size: 0;
}

.bb-native-checkout-wrap .woocommerce-billing-fields h3::after {
	font-size: 12px;
}

/* Fields */
.bb-native-checkout-wrap .woocommerce-billing-fields__field-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}

.bb-native-checkout-wrap .form-row,
.bb-native-checkout-wrap .form-row-first,
.bb-native-checkout-wrap .form-row-last,
.bb-native-checkout-wrap .form-row-wide {
	display: block !important;
	float: none !important;
	clear: both !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 0 12px !important;
	padding: 0 !important;
}

.bb-native-checkout-wrap .form-row:last-child {
	margin-bottom: 0 !important;
}

.bb-native-checkout-wrap label {
	display: block !important;
	width: 100%;
	margin: 0 0 5px !important;
	color: #a9a9a9 !important;
	font-size: 9px !important;
	font-weight: 500 !important;
	line-height: 1.35 !important;
}

.bb-native-checkout-wrap abbr.required {
	color: #e36b6b !important;
	text-decoration: none !important;
}

.bb-native-checkout-wrap input.input-text,
.bb-native-checkout-wrap input[type="text"],
.bb-native-checkout-wrap input[type="tel"],
.bb-native-checkout-wrap select,
.bb-native-checkout-wrap textarea {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	height: 40px !important;
	min-height: 40px !important;
	margin: 0 !important;
	padding: 0 11px !important;
	background: #101010 !important;
	border: 1px solid #3d3d3d !important;
	border-radius: 2px !important;
	color: #ffffff !important;
	box-shadow: none !important;
	font-family: var(--bb-font) !important;
	font-size: 10px !important;
	line-height: 40px !important;
	outline: none !important;
}

.bb-native-checkout-wrap input.input-text:focus,
.bb-native-checkout-wrap input[type="text"]:focus,
.bb-native-checkout-wrap input[type="tel"]:focus {
	border-color: #666666 !important;
}

.bb-native-checkout-wrap input::placeholder {
	color: #696969 !important;
	opacity: 1;
}

/* Only requested fields visible */
.bb-native-checkout-wrap #billing_country_field,
.bb-native-checkout-wrap #billing_state_field,
.bb-native-checkout-wrap #billing_postcode_field,
.bb-native-checkout-wrap #billing_email_field,
.bb-native-checkout-wrap #billing_last_name_field,
.bb-native-checkout-wrap #billing_company_field,
.bb-native-checkout-wrap #billing_address_2_field {
	display: none !important;
}

/* Right side order review */
.bb-native-checkout-wrap #order_review_heading {
	grid-column: 2;
	grid-row: 1;
	margin: 0 !important;
	padding: 14px 16px 10px !important;
	background: #151515 !important;
	border: 1px solid #303030 !important;
	border-bottom: 0 !important;
	color: #ffffff !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	letter-spacing: .35px;
	text-transform: uppercase;
}

.bb-native-checkout-wrap #order_review {
	grid-column: 2;
	grid-row: 2 / span 4;
	width: 100%;
	margin: 0 !important;
	padding: 0 16px 16px !important;
	background: #151515 !important;
	border: 1px solid #303030 !important;
	border-top: 0 !important;
	border-radius: 0 0 2px 2px;
}

.bb-native-checkout-wrap #order_review table.shop_table {
	width: 100%;
	margin: 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-collapse: collapse !important;
}

.bb-native-checkout-wrap #order_review table.shop_table thead {
	display: none;
}

.bb-native-checkout-wrap #order_review table.shop_table tbody tr.cart_item {
	border-bottom: 1px solid #2d2d2d;
}

.bb-native-checkout-wrap #order_review table.shop_table tbody td {
	padding: 12px 0 !important;
	background: transparent !important;
	border: 0 !important;
	color: #dedede !important;
	font-size: 9px !important;
	vertical-align: top !important;
}

.bb-native-checkout-wrap #order_review .product-name {
	padding-right: 12px !important;
	font-weight: 500 !important;
	line-height: 1.45 !important;
}

.bb-native-checkout-wrap #order_review .product-total {
	width: 100px;
	color: #ffffff !important;
	font-weight: 500 !important;
	text-align: right !important;
	white-space: nowrap;
}

/* Product image inserted by functions.php */
.bb-checkout-item-wrap {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr);
	align-items: start;
	gap: 10px;
}

.bb-checkout-item-thumb {
	position: relative;
	width: 56px;
	height: 74px;
	overflow: hidden;
	background: #202020;
}

.bb-checkout-item-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.bb-checkout-item-copy {
	min-width: 0;
}

.bb-checkout-item-title {
	display: block;
	color: #ffffff;
	font-size: 9px;
	font-weight: 600;
	line-height: 1.45;
}

.bb-checkout-item-meta {
	display: block;
	margin-top: 4px;
	color: #8f8f8f;
	font-size: 8px;
	line-height: 1.4;
}

.bb-native-checkout-wrap #order_review table.shop_table tfoot th,
.bb-native-checkout-wrap #order_review table.shop_table tfoot td {
	padding: 9px 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-bottom: 1px solid #2d2d2d !important;
	color: #bdbdbd !important;
	font-size: 9px !important;
	font-weight: 500 !important;
}

.bb-native-checkout-wrap #order_review table.shop_table tfoot td {
	color: #ffffff !important;
	text-align: right !important;
	white-space: nowrap;
}

.bb-native-checkout-wrap #order_review .order-total th,
.bb-native-checkout-wrap #order_review .order-total td {
	padding-top: 12px !important;
	border-bottom: 0 !important;
	color: #ffffff !important;
	font-size: 10.5px !important;
	font-weight: 600 !important;
}

/* Payment section inside right summary */
.bb-native-checkout-wrap #payment {
	margin: 14px 0 0 !important;
	padding: 0 !important;
	background: #101010 !important;
	border: 1px solid #303030 !important;
	border-radius: 2px;
}

.bb-native-checkout-wrap #payment::before {
	content: "2  Payment";
	display: block;
	padding: 11px 13px;
	border-bottom: 1px solid #2d2d2d;
	color: #ffffff;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .2px;
}

.bb-native-checkout-wrap #payment ul.payment_methods {
	margin: 0 !important;
	padding: 12px 13px !important;
	border: 0 !important;
}

.bb-native-checkout-wrap #payment ul.payment_methods li {
	color: #ffffff !important;
	font-size: 9.5px !important;
}

.bb-native-checkout-wrap #payment ul.payment_methods li label {
	display: inline !important;
	margin: 0 !important;
	color: #ffffff !important;
	font-size: 9.5px !important;
}

.bb-native-checkout-wrap #payment .payment_box {
	margin: 8px 0 0 !important;
	padding: 9px 10px !important;
	background: #171717 !important;
	border: 0 !important;
	color: #999999 !important;
	font-size: 8.5px !important;
	line-height: 1.5;
}

.bb-native-checkout-wrap #payment .payment_box::before {
	display: none !important;
}

.bb-native-checkout-wrap #payment .place-order {
	margin: 0 !important;
	padding: 12px 13px 13px !important;
	background: transparent !important;
}

.bb-native-checkout-wrap #payment .woocommerce-privacy-policy-text {
	margin: 0;
	color: #717171;
	font-size: 8px;
	line-height: 1.5;
}

.bb-native-checkout-wrap #payment .woocommerce-privacy-policy-text a {
	color: #b8b8b8 !important;
}

.bb-native-checkout-wrap #place_order {
	display: flex !important;
	align-items: center;
	justify-content: center;
	float: none !important;
	width: 100% !important;
	min-height: 41px !important;
	margin: 10px 0 0 !important;
	padding: 0 16px !important;
	background: #000000 !important;
	border: 1px solid #454545 !important;
	border-radius: 2px !important;
	color: #ffffff !important;
	font-family: var(--bb-font) !important;
	font-size: 9.5px !important;
	font-weight: 600 !important;
	letter-spacing: .65px;
	text-transform: uppercase;
}

.bb-native-checkout-wrap #place_order:hover {
	background: #191919 !important;
}

/* Prevent float/layout bugs from Woo/Astra */
.bb-native-checkout-wrap form.checkout::before,
.bb-native-checkout-wrap form.checkout::after,
.bb-native-checkout-wrap #customer_details::before,
.bb-native-checkout-wrap #customer_details::after {
	display: none !important;
	content: none !important;
}

/* Responsive */
@media (max-width: 1024px) {
	.bb-direct-checkout-container {
		width: calc(100% - 32px);
	}

	.bb-native-checkout-wrap form.woocommerce-checkout {
		grid-template-columns: minmax(0, 1fr) 330px !important;
		gap: 18px;
	}
}

@media (max-width: 820px) {
	.bb-native-checkout-wrap form.woocommerce-checkout {
		display: block !important;
	}

	.bb-native-checkout-wrap #customer_details {
		margin-bottom: 16px !important;
	}

	.bb-native-checkout-wrap #order_review_heading {
		margin-top: 0 !important;
	}

	.bb-native-checkout-wrap form.checkout_coupon {
		grid-template-columns: minmax(0, 1fr) 130px;
	}
}

@media (max-width: 767px) {
	.bb-direct-checkout-container {
		width: calc(100% - 20px);
		padding: 24px 0 64px;
	}

	.bb-checkout-shell {
		max-width: none;
	}

	.bb-checkout-topbar {
		margin-bottom: 14px;
		padding-bottom: 12px;
	}

	.bb-checkout-topbar-title {
		font-size: 15px;
	}

	.bb-checkout-edit-cart {
		font-size: 8.5px;
	}

	.bb-checkout-delivery-alert {
		padding: 10px 11px;
	}

	.bb-native-checkout-wrap .woocommerce-billing-fields {
		padding: 16px 13px;
	}

	.bb-native-checkout-wrap #order_review_heading {
		padding: 13px 13px 9px !important;
	}

	.bb-native-checkout-wrap #order_review {
		padding: 0 13px 13px !important;
	}

	.bb-native-checkout-wrap form.checkout_coupon {
		grid-template-columns: 1fr;
	}

	.bb-native-checkout-wrap form.checkout_coupon button.button {
		width: 100% !important;
	}

	.bb-checkout-item-wrap {
		grid-template-columns: 48px minmax(0, 1fr);
		gap: 8px;
	}

	.bb-checkout-item-thumb {
		width: 48px;
		height: 64px;
	}

	.bb-native-checkout-wrap #order_review .product-total {
		width: 82px;
		font-size: 8.5px !important;
	}
}


/* ==========================================================================
   PRODUCT DETAIL PAGE
   ========================================================================== */

.single-product .site-content,
.single-product .ast-container,
.single-product .site-main,
.single-product .entry-content {
	width: 100% !important;
	max-width: none !important;
	padding: 0 !important;
	background: #000000 !important;
}

.bb-single-product-page {
	width: 100%;
	background: #000000;
	color: #ffffff;
}

.bb-single-product-container {
	width: calc(100% - 40px);
	max-width: 1600px;
	margin: 0 auto;
	padding: 48px 0 80px;
}

.bb-single-product-top {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
	align-items: start;
	gap: 58px;
}

.bb-single-gallery {
	min-width: 0;
}

.bb-single-main-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 620px;
	max-height: 820px;
	overflow: hidden;
	background: #f3f3f3;
}

.bb-single-main-image img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 820px;
	object-fit: contain;
	object-position: center;
}

.bb-single-thumbnails {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 10px;
	margin-top: 12px;
}

.bb-single-thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 3 / 4;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background: #f3f3f3;
	border: 1px solid transparent;
	cursor: pointer;
}

.bb-single-thumb.is-active {
	border-color: #ffffff;
}

.bb-single-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.bb-single-product-info {
	position: sticky;
	top: 125px;
	min-width: 0;
	padding: 8px 0;
}

.bb-single-sale-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 54px;
	height: 26px;
	margin-bottom: 16px;
	padding: 0 11px;
	background: #262626;
	border-radius: 20px;
	color: #ffffff;
	font-size: 10px;
	font-weight: 600;
}

.bb-single-title {
	max-width: 700px;
	margin: 0;
	color: #ffffff !important;
	font-size: clamp(26px, 2.1vw, 38px);
	font-weight: 600;
	line-height: 1.22;
	letter-spacing: -.3px;
}

.bb-single-price {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 12px;
	margin-top: 16px;
	color: #ffffff;
	font-size: 17px;
	font-weight: 600;
}

.bb-single-price del {
	color: #888888;
	font-weight: 400;
}

.bb-single-price ins {
	color: #e2231a;
	text-decoration: none;
}

.bb-single-short-description {
	max-width: 700px;
	margin-top: 22px;
	color: #b5b5b5;
	font-size: 13px;
	line-height: 1.75;
}

.bb-single-short-description p:last-child {
	margin-bottom: 0;
}

.bb-single-purchase {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid #292929;
}

.bb-single-purchase form.cart {
	display: flex !important;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 !important;
}

.bb-single-purchase .quantity {
	float: none !important;
	margin: 0 !important;
}

.bb-single-purchase .quantity .qty {
	width: 88px !important;
	height: 48px !important;
	margin: 0 !important;
	padding: 0 10px !important;
	background: #121212 !important;
	border: 1px solid #353535 !important;
	border-radius: 2px !important;
	color: #ffffff !important;
	font-family: var(--bb-font) !important;
	font-size: 13px !important;
	text-align: center;
}

.bb-single-purchase .single_add_to_cart_button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	flex: 1 1 230px;
	min-height: 48px !important;
	margin: 0 !important;
	padding: 0 28px !important;
	background: #ffffff !important;
	border: 1px solid #ffffff !important;
	border-radius: 2px !important;
	color: #000000 !important;
	font-family: var(--bb-font) !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	letter-spacing: .8px;
	text-transform: uppercase;
}

.bb-single-purchase .single_add_to_cart_button:hover {
	background: #e8e8e8 !important;
}

.bb-single-purchase table.variations {
	width: 100%;
	margin: 0 0 18px !important;
	border: 0 !important;
}

.bb-single-purchase table.variations th,
.bb-single-purchase table.variations td {
	display: block;
	width: 100%;
	padding: 0 0 7px !important;
	background: transparent !important;
	border: 0 !important;
	color: #ffffff !important;
	text-align: left !important;
}

.bb-single-purchase table.variations label {
	color: #ffffff;
	font-size: 11px;
	font-weight: 500;
}

.bb-single-purchase table.variations select {
	width: 100%;
	height: 46px;
	padding: 0 12px;
	background: #121212;
	border: 1px solid #353535;
	border-radius: 2px;
	color: #ffffff;
	font-family: var(--bb-font);
	font-size: 11px;
}

.bb-single-purchase .reset_variations {
	display: inline-block;
	margin-top: 7px;
	color: #9a9a9a !important;
	font-size: 10px;
}

.bb-single-meta {
	margin-top: 26px;
	border-top: 1px solid #292929;
}

.bb-single-meta-row {
	display: grid;
	grid-template-columns: 90px minmax(0, 1fr);
	gap: 15px;
	padding: 13px 0;
	border-bottom: 1px solid #292929;
	font-size: 11px;
	line-height: 1.5;
}

.bb-single-meta-row span {
	color: #777777;
}

.bb-single-meta-row strong,
.bb-single-meta-row a {
	color: #d8d8d8 !important;
	font-weight: 500;
}

.bb-single-description {
	margin-top: 64px;
	padding: 30px 0;
	border-top: 1px solid #292929;
	border-bottom: 1px solid #292929;
}

.bb-single-description h2 {
	margin: 0 0 18px;
	color: #ffffff !important;
	font-size: 20px;
	font-weight: 600;
}

.bb-single-description-content {
	max-width: 1050px;
	color: #b7b7b7;
	font-size: 13px;
	line-height: 1.85;
}

.bb-single-description-content > *:last-child {
	margin-bottom: 0;
}

.bb-single-related {
	padding-top: 62px;
}

.bb-single-section-title {
	margin: 0;
	color: #ffffff !important;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: .8px;
	text-align: center;
	text-transform: uppercase;
}

.bb-single-section-line {
	width: 52px;
	height: 2px;
	margin: 12px auto 34px;
	background: #e2231a;
}

.bb-single-related-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: start;
	gap: 22px;
}


/* ==========================================================================
   CATEGORY / VIEW ALL ARCHIVE PAGE
   ========================================================================== */

.tax-product_cat .site-content,
.tax-product_cat .ast-container,
.tax-product_cat .site-main,
.tax-product_cat .entry-content {
	width: 100% !important;
	max-width: none !important;
	padding: 0 !important;
	background: #000000 !important;
}

.bb-archive-page {
	width: 100%;
	min-height: 70vh;
	background: #000000;
	color: #ffffff;
}

.bb-archive-container {
	width: calc(100% - 40px);
	max-width: 1600px;
	margin: 0 auto;
	padding: 54px 0 80px;
}

.bb-archive-header {
	margin-bottom: 38px;
	text-align: center;
}

.bb-archive-header h1 {
	margin: 0;
	color: #ffffff !important;
	font-size: clamp(28px, 2.2vw, 38px);
	font-weight: 600;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

.bb-archive-title-line {
	width: 54px;
	height: 2px;
	margin: 12px auto 0;
	background: #e2231a;
}

.bb-archive-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: start;
	gap: 26px 20px;
}

.bb-archive-grid .bb-product-card {
	min-width: 0;
}

.bb-archive-grid .bb-product-thumb {
	aspect-ratio: 3 / 4;
	background: #f3f3f3;
}

.bb-archive-grid .bb-product-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain !important;
	object-position: center !important;
}

.bb-archive-grid .bb-product-title {
	margin-top: 10px;
	font-size: 12px;
	line-height: 1.5;
}

.bb-archive-grid .bb-product-price {
	margin-top: 4px;
	font-size: 11px;
	line-height: 1.5;
}

.bb-archive-load-wrap {
	margin-top: 44px;
	text-align: center;
}

.bb-archive-load-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 150px;
	height: 44px;
	padding: 0 28px;
	background: #e2231a;
	border: 0;
	border-radius: 28px;
	color: #ffffff;
	font-family: var(--bb-font);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .8px;
	text-transform: uppercase;
	cursor: pointer;
}

.bb-archive-load-more:hover {
	background: #c91d16;
}

.bb-archive-load-more:disabled {
	opacity: .55;
	cursor: wait;
}

.bb-archive-empty {
	padding: 80px 20px;
	color: #a5a5a5;
	font-size: 13px;
	text-align: center;
}


/* ==========================================================================
   PRODUCT / ARCHIVE RESPONSIVE
   ========================================================================== */

@media (max-width: 1199px) {

	.bb-single-product-container,
	.bb-archive-container {
		width: calc(100% - 32px);
	}

	.bb-single-product-top {
		grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
		gap: 34px;
	}

	.bb-single-main-image {
		min-height: 520px;
	}

	.bb-single-related-grid,
	.bb-archive-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bb-single-product-info {
		top: 95px;
	}
}


@media (max-width: 767px) {

	.bb-single-product-container,
	.bb-archive-container {
		width: calc(100% - 20px);
		padding-top: 24px;
		padding-bottom: 62px;
	}

	.bb-single-product-top {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.bb-single-product-info {
		position: static;
		padding: 0;
	}

	.bb-single-main-image {
		min-height: 0;
		aspect-ratio: 3 / 4;
	}

	.bb-single-main-image img {
		max-height: none;
	}

	.bb-single-thumbnails {
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 7px;
	}

	.bb-single-title {
		font-size: 24px;
	}

	.bb-single-price {
		font-size: 15px;
	}

	.bb-single-purchase form.cart {
		display: grid !important;
		grid-template-columns: 88px minmax(0, 1fr);
	}

	.bb-single-description {
		margin-top: 44px;
	}

	.bb-single-related {
		padding-top: 44px;
	}

	.bb-single-related-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.bb-archive-container {
		padding-top: 38px;
	}

	.bb-archive-header {
		margin-bottom: 28px;
	}

	.bb-archive-header h1 {
		font-size: 27px;
	}

	.bb-archive-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.bb-archive-grid .bb-product-title {
		font-size: 13px;
	}

	.bb-archive-grid .bb-product-price {
		font-size: 12px;
	}
}
