/*
 * Shop styles — loaded only on WooCommerce pages.
 * This file replaces woocommerce.css / woocommerce-layout.css entirely.
 */

/* --------------------------------------------------------------------------
   1. Archive head, chips, layout
   -------------------------------------------------------------------------- */
.bp-archhead { background: var(--pink-bg); padding-bottom: 24px; }
.bp-archhead__in { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.bp-archhead__title { font-size: clamp(27px, 4vw, 44px); margin: 0 0 8px; }
.bp-archhead__desc { font-size: 15px; color: var(--ink-2); max-width: 62ch; }
.bp-archhead__desc p { margin-bottom: .5em; }
.bp-archhead__img { flex: none; width: 120px; }
.bp-archhead__img img { border-radius: 20px; }

.bp-chips { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; margin-top: 18px; }
.bp-chips__label { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.bp-chip {
	display: inline-flex; align-items: center; min-height: 44px; padding: 10px 18px;
	background: var(--white); border: 1.5px solid var(--line); border-radius: 999px;
	color: var(--ink); font-size: 14px; font-weight: 600;
}
.bp-chip:hover, .bp-chip.is-on { background: var(--rose); border-color: var(--rose); color: #fff; }

.bp-shop { display: block; padding-block: 26px 48px; }
.bp-shop--sidebar { display: grid; grid-template-columns: 272px minmax(0, 1fr); gap: 28px; align-items: start; }
.bp-shop__main { min-width: 0; }
.bp-shop__side { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-box); padding: 6px 20px 14px; box-shadow: var(--sh-s); }
.bp-shop__sideclose { display: none; }
.bp-filterbtn { display: none; }

.bp-widget { padding: 16px 0; border-bottom: 1px solid var(--line); }
.bp-widget:last-child { border-bottom: 0; }
.bp-widget__title { font-size: 17px; margin: 0 0 10px; }
.bp-widget ul { list-style: none; }
.bp-widget li { padding: 6px 0; font-size: 14.5px; }
.bp-widget li a { color: var(--ink); }
.bp-widget li a:hover { color: var(--rose); }
.bp-widget .count { color: var(--ink-3); font-size: 12.5px; }

/* --------------------------------------------------------------------------
   2. Toolbar, notices, pagination
   -------------------------------------------------------------------------- */
.bp-toolbar {
	display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
	background: var(--white); border: 1px solid var(--line); border-radius: 20px;
	padding: 12px 18px; margin-bottom: 20px; box-shadow: var(--sh-s);
}
.bp-toolbar .woocommerce-result-count { margin: 0; font-size: 14px; color: var(--ink-2); }
.bp-toolbar .woocommerce-ordering { margin: 0; }
.bp-toolbar select,
.bp-select select,
.woocommerce-page select:not(.country_select):not(.state_select) {
	appearance: none;
	background: var(--white) url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237d6c8b' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M5 9l7 7 7-7'/%3E%3C/svg%3E") right 16px center / 16px no-repeat;
	border: 1.5px solid var(--line); border-radius: 999px;
	min-height: 44px; padding: 8px 42px 8px 18px;
	font: inherit; font-size: 14.5px; font-weight: 600; color: var(--ink);
}

.woocommerce-notices-wrapper:empty { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	list-style: none; margin: 0 0 18px; padding: 14px 18px;
	border-radius: 16px; font-size: 14.5px; border: 1.5px solid;
	display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
}
.woocommerce-message { background: var(--mint-l); border-color: rgba(8, 122, 99, .25); color: #05564a; }
.woocommerce-info { background: var(--sky-l); border-color: rgba(11, 124, 191, .22); color: #084b74; }
.woocommerce-error { background: #ffe9f0; border-color: rgba(225, 29, 116, .25); color: #8d0b46; }
.woocommerce-message .button, .woocommerce-info .button { margin-left: auto; }

.woocommerce-pagination { margin-top: 30px; }
.woocommerce-pagination ul { display: flex; gap: 8px; justify-content: center; list-style: none; flex-wrap: wrap; }
.woocommerce-pagination a, .woocommerce-pagination span {
	display: flex; align-items: center; justify-content: center;
	min-width: 44px; min-height: 44px; padding: 0 10px;
	background: var(--white); border: 1.5px solid var(--line); border-radius: 14px;
	font-weight: 700; color: var(--ink);
}
.woocommerce-pagination .current { background: var(--rose); border-color: var(--rose); color: #fff; }
.bp-pagination { margin-top: 30px; display: flex; justify-content: center; gap: 8px; }
.bp-pagination .page-numbers { display: flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; background: var(--white); border: 1.5px solid var(--line); border-radius: 14px; font-weight: 700; color: var(--ink); }
.bp-pagination .current { background: var(--rose); border-color: var(--rose); color: #fff; }

/* Products list rendered by WooCommerce itself. */
ul.products {
	display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px;
	list-style: none; margin: 0; padding: 0;
}
.bp-shop--sidebar ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
ul.products::before, ul.products::after { content: none; }

/* WooCommerce star rating without the icon font. */
.star-rating {
	position: relative; width: 5.6em; height: 1.2em; overflow: hidden;
	font-size: 13px; line-height: 1.2; letter-spacing: 1px; flex: none;
}
.star-rating::before { content: "\2605\2605\2605\2605\2605"; color: #e9dfe8; position: absolute; left: 0; top: 0; }
.star-rating span { position: absolute; left: 0; top: 0; overflow: hidden; padding-top: 1.5em; }
.star-rating span::before { content: "\2605\2605\2605\2605\2605"; color: var(--yel); position: absolute; left: 0; top: 0; }
.woocommerce-product-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.woocommerce-review-link { font-size: 14px; }

/* --------------------------------------------------------------------------
   3. Single product
   -------------------------------------------------------------------------- */
.single-product .bp-shop { padding-top: 8px; }
.single-product div.product { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 44px; align-items: start; }
.single-product div.product .summary { margin: 0; }
.single-product div.product .woocommerce-tabs,
.single-product div.product .related,
.single-product div.product .upsells,
.single-product div.product .bp-gallery + .summary ~ * { grid-column: 1 / -1; }

.bp-gallery { position: relative; }
.bp-gallery__main { background: var(--rose-xl); border-radius: var(--r-box); overflow: hidden; box-shadow: var(--sh-s); }
.bp-gallery__img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.bp-gallery__thumbs { display: flex; gap: 12px; margin-top: 14px; list-style: none; flex-wrap: wrap; }
.bp-gallery__thumb {
	width: 84px; height: 84px; padding: 6px; background: var(--white);
	border: 2.5px solid var(--line); border-radius: 16px; overflow: hidden;
}
.bp-gallery__thumb.is-on { border-color: var(--rose); }
.bp-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.bp-single__tags { position: absolute; top: 16px; left: 16px; display: flex; gap: 8px; z-index: 2; }

.single-product .product_title { font-size: clamp(25px, 3.4vw, 40px); margin-bottom: 14px; }
.single-product .bp-single__sold { font-size: 13.5px; color: var(--ink-2); margin: 0 0 6px; }
.single-product p.price, .single-product .price {
	font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 3.6vw, 42px);
	color: var(--rose); line-height: 1.1; margin: 8px 0 10px;
	display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.single-product .price ins { order: 1; text-decoration: none; background: none; color: inherit; }
.single-product .price del { order: 2; font-family: var(--font-body); font-size: 18px; font-weight: 400; color: var(--ink-3); }
.single-product .price .amount { white-space: nowrap; }
.bp-instock { display: flex; align-items: center; gap: 8px; color: var(--mint-t); font-weight: 600; font-size: 14.5px; }
.bp-outstock { color: var(--rose); font-weight: 600; font-size: 14.5px; }
.woocommerce-product-details__short-description { color: var(--ink-2); font-size: 15px; line-height: 1.75; margin-bottom: 18px; }

.bp-trustlist { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 18px 0; }
.bp-trustlist li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); }
.bp-trustlist .bp-i { color: var(--mint-t); margin-top: 2px; }
.bp-single__tel { display: flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--ink-2); }
.bp-single__tel .bp-i { color: var(--rose); }

.single-product form.cart { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 20px 0 8px; }
.single-product form.cart .button {
	flex: 1; min-width: 200px; min-height: 54px;
	background: var(--rose); color: #fff; border: 0; border-radius: 999px;
	font-family: var(--font-display); font-weight: 700; font-size: 17px;
	box-shadow: 0 6px 16px rgba(225, 29, 116, .28);
}
.single-product form.cart .button:hover { background: var(--rose-dk); }
.single-product .variations { width: 100%; }
.single-product .variations th { text-align: left; font-size: 14px; padding: 8px 12px 8px 0; }
.single-product .product_meta { font-size: 13.5px; color: var(--ink-3); margin-top: 18px; }
.single-product .product_meta a { color: var(--ink-2); }

.shop_table .bp-qty { padding: 2px; }
.shop_table .bp-qty__btn { width: 38px; height: 38px; font-size: 18px; }
.shop_table .bp-qty .qty { width: 42px; height: 38px; font-size: 15px; }
.bp-qty { display: inline-flex; align-items: center; gap: 4px; border: 1.5px solid var(--line); border-radius: 999px; padding: 4px; background: var(--white); }
.bp-qty__btn { width: 44px; height: 44px; border: 0; background: none; border-radius: 50%; font-size: 20px; line-height: 1; color: var(--ink); }
.bp-qty__btn:hover { background: var(--rose-xl); color: var(--rose); }
.bp-qty .qty {
	width: 52px; height: 44px; border: 0; background: none; text-align: center;
	font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--ink);
	-moz-appearance: textfield;
}
.bp-qty .qty::-webkit-outer-spin-button, .bp-qty .qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.woocommerce-tabs { margin-top: 48px; }
.woocommerce-tabs ul.tabs { display: flex; gap: 26px; list-style: none; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.woocommerce-tabs ul.tabs li a {
	display: block; padding: 14px 2px; border-bottom: 3px solid transparent;
	font-family: var(--font-display); font-weight: 700; font-size: 16.5px; color: var(--ink-2);
}
.woocommerce-tabs ul.tabs li.active a { color: var(--rose); border-bottom-color: var(--rose); }
.woocommerce-tabs .panel { padding-top: 22px; max-width: 820px; font-size: 15px; line-height: 1.8; color: var(--ink-2); }
.woocommerce-tabs .panel h2 { color: var(--ink); font-size: 22px; }
.shop_attributes { width: 100%; border-collapse: collapse; }
.shop_attributes th, .shop_attributes td { text-align: left; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.shop_attributes th { width: 200px; color: var(--ink-3); font-weight: 500; }

#reviews .commentlist { list-style: none; display: grid; gap: 16px; }
#reviews .comment_container { display: flex; gap: 14px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 18px; }
#reviews .comment_container img { width: 48px; height: 48px; border-radius: 50%; }
#reviews .comment-text { flex: 1; }
#reviews .meta { font-size: 13.5px; color: var(--ink-3); }
#review_form .comment-form { display: grid; gap: 14px; max-width: 640px; }

.related > h2, .upsells > h2, .cross-sells > h2 { font-size: clamp(22px, 3vw, 32px); margin: 40px 0 20px; }

/* --------------------------------------------------------------------------
   4. Cart
   -------------------------------------------------------------------------- */
.bp-shipbar {
	display: flex; align-items: center; gap: 14px;
	background: var(--yel-l); border-radius: 20px; padding: 16px 20px; margin-bottom: 18px;
	color: var(--yel-t);
}
.bp-shipbar__body { flex: 1; }
.bp-shipbar p { margin: 0; font-size: 14.5px; font-weight: 600; }
.bp-shipbar__track { height: 9px; border-radius: 999px; background: #ffe0a0; margin-top: 9px; overflow: hidden; }
.bp-shipbar__track span { display: block; height: 100%; background: var(--yel); border-radius: 999px; }

.bp-pagehead { padding-bottom: 6px; }
.bp-pagehead__title { font-size: clamp(27px, 4vw, 42px); margin: 0; }
.woocommerce-cart .bp-shop, .woocommerce-checkout .bp-shop { padding-top: 16px; }

.woocommerce-cart .bp-shop__main {
	display: grid; grid-template-columns: minmax(0, 1fr) 368px; gap: 24px; align-items: start;
}
.woocommerce-cart .bp-shop__main > * { min-width: 0; grid-column: 1; }
.woocommerce-cart .bp-shop__main > .woocommerce-notices-wrapper { grid-column: 1 / -1; }
.woocommerce-cart .bp-shop__main > .cart-collaterals { grid-column: 2; grid-row: 1; margin-top: 0; }
.woocommerce-cart .cart_totals { position: sticky; top: 16px; }
.woocommerce-cart-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-box); padding: 8px 22px 18px; box-shadow: var(--sh-s); }
.shop_table { width: 100%; max-width: 100%; border-collapse: collapse; table-layout: fixed; }
.shop_table .product-remove { width: 44px; min-width: 44px; }
.shop_table .product-thumbnail { width: 100px; min-width: 100px; }
.shop_table .product-price { width: 108px; min-width: 108px; }
.shop_table .product-quantity { width: 152px; min-width: 152px; }
.shop_table .product-subtotal { width: 120px; min-width: 120px; }
.shop_table .product-name { min-width: 0; }
.shop_table .product-name a { overflow-wrap: anywhere; }
.shop_table th { text-align: left; font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-3); padding: 14px 6px; border-bottom: 1px solid var(--line); }
.shop_table td { padding: 14px 6px; border-bottom: 1px solid var(--line); vertical-align: middle; font-size: 14.5px; }
.shop_table .product-thumbnail img { width: 84px; height: 84px; max-width: 100%; object-fit: cover; border-radius: 16px; }
.shop_table .product-name a { color: var(--ink); font-weight: 600; }
.shop_table .product-price, .shop_table .product-subtotal { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--rose); white-space: nowrap; }
.shop_table .product-remove a {
	display: flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; background: var(--cream); border-radius: 13px;
	color: var(--ink-3); font-size: 20px; line-height: 1; text-decoration: none;
}
.shop_table .product-remove a:hover { background: var(--rose-xl); color: var(--rose); }
.cart .actions { padding-top: 18px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.cart .coupon { display: flex; gap: 10px; flex: 1; min-width: 260px; }
.cart .coupon .input-text { flex: 1; }

.cart-collaterals { margin-top: 26px; }
.cart_totals { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-box); padding: 24px; box-shadow: var(--sh); }
.cart_totals h2 { font-size: 22px; }
.cart_totals table { width: 100%; border-collapse: collapse; }
.cart_totals th, .cart_totals td { padding: 9px 0; font-size: 15px; text-align: left; }
.cart_totals th { color: var(--ink-2); font-weight: 500; }
.cart_totals td { text-align: right; font-weight: 600; }
.cart_totals .order-total th, .cart_totals .order-total td { border-top: 1px solid var(--line); padding-top: 14px; }
.cart_totals .order-total td { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--rose); }
.wc-proceed-to-checkout { margin-top: 16px; }
.wc-proceed-to-checkout .checkout-button {
	display: flex; align-items: center; justify-content: center;
	width: 100%; min-height: 56px; background: var(--rose); color: #fff;
	border-radius: 999px; font-family: var(--font-display); font-weight: 700; font-size: 17px;
	box-shadow: 0 6px 16px rgba(225, 29, 116, .28);
}
.wc-proceed-to-checkout .checkout-button:hover { background: var(--rose-dk); color: #fff; }

.bp-reassure { list-style: none; display: grid; gap: 10px; margin-top: 16px; }
.bp-reassure li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--ink-2); }
.bp-reassure .bp-i { color: var(--mint-t); margin-top: 2px; }

/* --------------------------------------------------------------------------
   5. Checkout & account
   -------------------------------------------------------------------------- */
.woocommerce-checkout form.checkout { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 26px; align-items: start; }
.woocommerce-checkout #customer_details { grid-column: 1; grid-row: 1 / span 2; }
.woocommerce-checkout #order_review_heading { grid-column: 2; grid-row: 1; }
.woocommerce-checkout #order_review { grid-column: 2; grid-row: 2; }
.woocommerce-checkout #customer_details .col-1, .woocommerce-checkout #customer_details .col-2 { width: 100%; float: none; }
.woocommerce-billing-fields, .woocommerce-shipping-fields, .woocommerce-additional-fields {
	background: var(--white); border: 1px solid var(--line); border-radius: var(--r-box);
	padding: 24px; box-shadow: var(--sh-s); margin-bottom: 18px;
}
.woocommerce-billing-fields h3, .woocommerce-additional-fields h3, #order_review_heading { font-size: 21px; margin-bottom: 14px; }
#order_review { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-box); padding: 22px; box-shadow: var(--sh); position: sticky; top: 16px; }

.form-row { display: flex; flex-direction: column; gap: 6px; margin: 0 0 14px; padding: 0; width: 100%; float: none; }
.form-row label { font-size: 13.5px; font-weight: 600; }
.form-row .required { color: var(--rose); text-decoration: none; }
.input-text, input[type="text"], input[type="email"], input[type="tel"], input[type="password"], input[type="number"], input[type="search"], textarea, .select2-container .select2-selection--single {
	width: 100%; min-height: 48px; padding: 12px 16px;
	background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r-input);
	font: inherit; font-size: 15px; color: var(--ink);
}
textarea { min-height: 100px; }
.input-text:focus, textarea:focus, select:focus { border-color: var(--rose); outline: none; }
.select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 24px; padding: 0; }
.select2-container--default .select2-selection--single .select2-selection__arrow { top: 12px; right: 10px; }

#payment { background: var(--cream); border-radius: 20px; padding: 6px 18px 18px; margin-top: 16px; }
#payment ul.payment_methods { list-style: none; padding: 0; margin: 0; border-bottom: 1px solid var(--line); }
#payment li.wc_payment_method { padding: 12px 0; border-bottom: 1px solid var(--line); }
#payment li.wc_payment_method:last-child { border-bottom: 0; }
#payment label { font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 10px; }
#payment .payment_box { background: var(--white); border-radius: 14px; padding: 12px 16px; margin-top: 10px; font-size: 13.5px; color: var(--ink-2); }
#payment .payment_box p { margin: 0; }
#place_order {
	width: 100%; min-height: 56px; background: var(--rose); color: #fff; border: 0; border-radius: 999px;
	font-family: var(--font-display); font-weight: 700; font-size: 17px; margin-top: 14px;
	box-shadow: 0 6px 16px rgba(225, 29, 116, .28);
}
#place_order:hover { background: var(--rose-dk); }
.woocommerce-terms-and-conditions-wrapper { font-size: 13px; color: var(--ink-3); margin-top: 12px; }

.woocommerce-checkout-review-order-table { width: 100%; border-collapse: collapse; }
.woocommerce-checkout-review-order-table th, .woocommerce-checkout-review-order-table td { padding: 10px 0; font-size: 14.5px; text-align: left; border-bottom: 1px solid var(--line); }
.woocommerce-checkout-review-order-table td { text-align: right; }
.woocommerce-checkout-review-order-table .order-total td { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--rose); }
.woocommerce-checkout-review-order-table .product-thumbnail img { width: 52px; border-radius: 12px; }

.woocommerce-form-login, .woocommerce-form-register, .woocommerce-ResetPassword {
	background: var(--white); border: 1px solid var(--line); border-radius: var(--r-box); padding: 24px; box-shadow: var(--sh-s); max-width: 520px;
}
.woocommerce-MyAccount-navigation ul { list-style: none; display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.woocommerce-MyAccount-navigation li a { display: block; padding: 10px 18px; border-radius: 999px; background: var(--white); border: 1.5px solid var(--line); color: var(--ink); font-weight: 600; font-size: 14px; }
.woocommerce-MyAccount-navigation li.is-active a { background: var(--rose); border-color: var(--rose); color: #fff; }
.woocommerce-account .bp-shop { padding-top: 28px; }

.button, .woocommerce .button, input.button, button.button {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	min-height: 46px; padding: 12px 22px; border: 2px solid var(--rose-l);
	background: var(--white); color: var(--rose); border-radius: 999px;
	font-family: var(--font-display); font-weight: 700; font-size: 15px; cursor: pointer;
}
.button:hover { background: var(--rose-xl); color: var(--rose-dk); }
.button.alt, .woocommerce .button.alt, button.button.alt { background: var(--rose); border-color: var(--rose); color: #fff; }
.button.alt:hover { background: var(--rose-dk); color: #fff; }

/* --------------------------------------------------------------------------
   6. Mobile buy bar
   -------------------------------------------------------------------------- */
.bp-buybar { display: none; }

/* --------------------------------------------------------------------------
   7. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
	ul.products, .bp-shop--sidebar ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.woocommerce-checkout form.checkout { grid-template-columns: minmax(0, 1fr); }
	.woocommerce-checkout #customer_details,
	.woocommerce-checkout #order_review_heading,
	.woocommerce-checkout #order_review { grid-column: 1; grid-row: auto; position: static; }
	.single-product div.product { gap: 28px; }
}

@media (max-width: 860px) {
	.bp-archhead__in { align-items: flex-start; }
	.bp-chips { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
	.bp-chips::-webkit-scrollbar { display: none; }
	.bp-chips__label { display: none; }
	.bp-chip { flex: none; }
	.bp-archhead__img { width: 76px; }
	.bp-shop, .bp-shop--sidebar { display: block; padding-block: 18px 32px; }
	ul.products, .bp-shop--sidebar ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }

	.bp-filterbtn {
		display: inline-flex; align-items: center; gap: 8px;
		min-height: 46px; padding: 11px 20px; margin-bottom: 14px;
		background: var(--white); border: 1.5px solid var(--line); border-radius: 14px;
		font-weight: 600; color: var(--ink);
	}
	.bp-shop__side {
		position: fixed; inset: 0 14% 0 0; z-index: 90; overflow-y: auto;
		border-radius: 0; transform: translateX(-102%); transition: transform .22s ease;
		padding: 16px 18px 40px;
	}
	.bp-shop__side.is-open { transform: none; }
	.bp-shop__sideclose { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; background: none; border: 0; color: var(--ink-2); font-weight: 600; margin-bottom: 8px; }

	.single-product div.product { grid-template-columns: minmax(0, 1fr); }
	.woocommerce-cart .bp-shop__main { grid-template-columns: minmax(0, 1fr); }
	.woocommerce-cart .bp-shop__main > .cart-collaterals { grid-column: 1; grid-row: auto; }
	.single-product form.cart .button { min-width: 100%; }
	.bp-gallery__thumb { width: 66px; height: 66px; }

	.shop_table thead { display: none; }
	.shop_table tr { display: grid; grid-template-columns: 96px minmax(0, 1fr) auto; grid-template-areas: "thumb name remove" "thumb qty price"; gap: 4px 12px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: center; }
	.shop_table td { border: 0; padding: 0; }
	.shop_table .product-thumbnail { grid-area: thumb; }
	.shop_table .product-name { grid-area: name; }
	.shop_table .product-remove { grid-area: remove; }
	.shop_table .product-quantity { grid-area: qty; }
	.shop_table .product-subtotal { grid-area: price; text-align: right; }
	.shop_table .product-price { display: none; }
	.cart .coupon { min-width: 100%; }

	.single-product .bp-buybar {
		display: flex; align-items: center; gap: 14px;
		position: fixed; left: 0; right: 0; bottom: 0; z-index: 75;
		background: var(--white); border-top: 1px solid var(--line);
		padding: 10px var(--gut) calc(10px + env(safe-area-inset-bottom));
		box-shadow: 0 -6px 20px rgba(36, 24, 51, .10);
	}
	.single-product .bp-tabbar { display: none; }
	.bp-buybar__price { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--rose); line-height: 1.1; }
	.bp-buybar__price del { display: none; }
	.bp-buybar .bp-btn { flex: 1; min-height: 50px; }
	body.single-product.bp-has-mobile-bar { padding-bottom: 76px; }
}
