/* ==========================================================================
   Zolartek custom WooCommerce shop / category / tag / single product styles
   ========================================================================== */

.shop-page,
.product-detail-page {
	font-family: 'Open Sans', Arial, sans-serif;
	color: #1a1a1a;
	padding: 40px 0 80px;
}

.shop-page .container,
.product-detail-page .container {
	max-width: 1200px;
}

/* Breadcrumb -------------------------------------------------------------- */

.shop-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #6b6b6b;
	padding-bottom: 16px;
	margin-bottom: 24px;
	border-bottom: 1px solid #e7e7e7;
}

.shop-breadcrumb a {
	color: #6b6b6b;
	text-decoration: none;
}

.shop-breadcrumb a:hover {
	color: #007cc3;
}

.shop-breadcrumb__sep {
	font-size: 10px;
	color: #b3b3b3;
}

.shop-breadcrumb__current {
	color: #1a1a1a;
}

/* Header / description ----------------------------------------------------- */

.shop-header {
	margin-bottom: 16px;
}

.shop-header__title {
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 16px;
	color: #1a1a1a;
}

.shop-header__description p {
	margin: 0 0 12px;
	font-size: 15px;
	line-height: 1.7;
	color: #333;
}

.shop-header__description p:first-child {
	font-weight: 700;
}

.shop-divider {
	border: none;
	border-top: 1px solid #e7e7e7;
	margin: 24px 0;
}

/* Toolbar (sort + view toggle) --------------------------------------------- */

.shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
	margin-bottom: 28px;
}

.shop-toolbar__sort {
	display: flex;
	align-items: center;
	gap: 10px;
}

.shop-toolbar__label {
	font-size: 14px;
	color: #1a1a1a;
}

.woocommerce-ordering select.orderby {
	appearance: none;
	-webkit-appearance: none;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%231a1a1a' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") no-repeat right 12px center;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	padding: 8px 32px 8px 14px;
	font-size: 14px;
	color: #1a1a1a;
	cursor: pointer;
}

.woocommerce-ordering select.orderby:focus {
	outline: none;
	border-color: #007cc3;
}

.shop-toolbar__view {
	display: flex;
	gap: 6px;
}

.shop-view-btn {
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	color: #6b6b6b;
	cursor: pointer;
}

.shop-view-btn.is-active,
.shop-view-btn:hover {
	color: #fff;
	background: #007cc3;
	border-color: #007cc3;
}

/* Product grid -------------------------------------------------------------- */

.shop-product-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px 24px;
}

@media (max-width: 991px) {
	.shop-product-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 767px) {
	.shop-product-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.shop-product-grid {
		grid-template-columns: 1fr;
	}
}

.shop-product-card {
	position: relative;
}

.shop-product-card__media {
	display: block;
	position: relative;
	border: 1px solid #ececec;
	border-radius: 6px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: #fff;
}

.shop-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform .25s ease;
}

.shop-product-card__media:hover img {
	transform: scale(1.04);
}

.shop-product-card .onsale {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 1;
	background: #007cc3;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 3px 8px;
	border-radius: 3px;
}

.shop-product-card__title {
	margin: 12px 0 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}

.shop-product-card__title a {
	color: #1a1a1a;
	text-decoration: none;
}

.shop-product-card__title a:hover {
	color: #007cc3;
	text-decoration: underline;
}

/* List view ------------------------------------------------------------- */

.shop-product-grid[data-view="list"] {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.shop-product-grid[data-view="list"] .shop-product-card {
	display: flex;
	align-items: center;
	gap: 20px;
	border-bottom: 1px solid #ececec;
	padding-bottom: 16px;
}

.shop-product-grid[data-view="list"] .shop-product-card__media {
	width: 110px;
	min-width: 110px;
	aspect-ratio: 1 / 1;
}

.shop-product-grid[data-view="list"] .shop-product-card__title {
	margin: 0;
	font-size: 16px;
}

/* Pagination -------------------------------------------------------------- */

.woocommerce-pagination {
	margin-top: 48px;
	text-align: center;
}

.woocommerce-pagination ul {
	list-style: none;
	display: inline-flex;
	gap: 6px;
	padding: 0;
	margin: 0;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 34px;
	padding: 0 8px;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	color: #1a1a1a;
	text-decoration: none;
	font-size: 14px;
}

.woocommerce-pagination .current {
	background: #007cc3;
	border-color: #007cc3;
	color: #fff;
}

/* No products ------------------------------------------------------------- */

.woocommerce-info {
	font-size: 15px;
	color: #555;
	padding: 20px 0;
}

/* ==========================================================================
   Single product page
   ========================================================================== */

.product-detail {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 60px;
	align-items: start;
}

@media (max-width: 900px) {
	.product-detail {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* Gallery ------------------------------------------------------------- */

.product-gallery__main {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-gallery__main-track {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	border: 1px solid #ececec;
	border-radius: 6px;
	overflow: hidden;
}

.product-gallery__slide {
	position: absolute;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
}

.product-gallery__slide.is-active {
	display: flex;
}

.product-gallery__slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-gallery__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #d0d0d0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #1a1a1a;
}

.product-gallery__nav--prev {
	left: -18px;
}

.product-gallery__nav--next {
	right: -18px;
}

.product-gallery__nav:hover {
	background: #007cc3;
	border-color: #007cc3;
	color: #fff;
}

.product-gallery__thumbs {
	display: flex;
	gap: 12px;
	margin-top: 16px;
	flex-wrap: wrap;
}

.product-gallery__thumb {
	width: 70px;
	height: 70px;
	padding: 0;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 6px;
	overflow: hidden;
	cursor: pointer;
}

.product-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-gallery__thumb.is-active {
	border-color: #007cc3;
}

/* Summary ------------------------------------------------------------- */

.product-detail__title {
	font-size: 26px;
	font-weight: 700;
	margin: 0 0 12px;
	color: #1a1a1a;
}

.product-detail__price {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	color: #1a1a1a;
	margin-bottom: 6px;
}

.product-detail__price .price {
	font-weight: 700;
}

.product-detail__login-message {
	color: #1a1a1a;
}

.product-detail__login-link {
	display: inline-flex;
	align-items: center;
	height: 30px;
	padding: 0 14px;
	border-radius: 4px;
	background: #007cc3;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .03em;
	text-decoration: none;
}

.product-detail__login-link:hover {
	background: #00639b;
	color: #fff;
}

.product-detail__shipping {
	font-size: 13px;
	color: #6b6b6b;
	margin: 0 0 20px;
}

/* Add to cart / quantity / buy now ---------------------------------------- */

.product-detail__cart {
	margin-bottom: 24px;
}

.product-detail__cart .stock {
	font-size: 13px;
	margin: 0 0 12px;
	color: #2e7d32;
}

.product-detail__cart .stock.out-of-stock {
	color: #c62828;
}

.product-detail__cart form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 12px;
}

.product-detail__cart .quantity {
	display: flex;
}

.product-detail__cart .quantity .qty {
	width: 70px;
	height: 46px;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	padding: 0 12px;
	font-size: 14px;
	text-align: center;
}

.product-detail__cart .quantity .qty:focus {
	outline: none;
	border-color: #007cc3;
}

.single_add_to_cart_button,
.product-detail__buynow-btn {
	height: 46px;
	padding: 0 24px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .03em;
	cursor: pointer;
	border: 1px solid transparent;
	white-space: nowrap;
}

.single_add_to_cart_button {
	background: #007cc3;
	color: #fff;
}

.single_add_to_cart_button:hover {
	background: #00639b;
	color: #fff;
}

.single_add_to_cart_button.disabled {
	background: #ccc;
	cursor: not-allowed;
}

.product-detail__buynow-btn {
	background: #1a1a1a;
	color: #fff;
}

.product-detail__buynow-btn:hover {
	background: #000;
}

@media (max-width: 400px) {
	.product-detail__cart form.cart {
		flex-direction: column;
	}

	.single_add_to_cart_button,
	.product-detail__buynow-btn {
		width: 100%;
	}
}

.product-detail__divider {
	border: none;
	border-top: 1px solid #e7e7e7;
	margin: 0 0 24px;
}

.product-detail__description {
	font-size: 15px;
	line-height: 1.7;
	color: #333;
	margin-bottom: 24px;
}

.product-detail__section-heading {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	margin: 0 0 12px;
	color: #1a1a1a;
}

.product-detail__features {
	margin-bottom: 24px;
}

.product-detail__features-body ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.product-detail__features-body ul li {
	position: relative;
	padding-left: 16px;
	margin-bottom: 6px;
	font-size: 14px;
	line-height: 1.6;
	color: #333;
}

.product-detail__features-body ul li::before {
	content: "\00b7";
	position: absolute;
	left: 0;
	font-weight: 700;
}

.product-detail__order-info {
	margin-bottom: 24px;
}

.product-detail__sku {
	font-weight: 700;
	font-size: 14px;
	margin: 0 0 4px;
}

.product-detail__contains {
	font-size: 14px;
	color: #333;
	margin: 0;
}

.product-detail__video {
	position: relative;
	margin-bottom: 24px;
}

.product-detail__video iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 6px;
	border: none;
}

.product-detail__resources {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .03em;
	margin-bottom: 24px;
}

.product-detail__resources a {
	color: #007cc3;
	text-decoration: none;
}

.product-detail__resources a:hover {
	text-decoration: underline;
}

.product-detail__resources-sep {
	color: #b3b3b3;
	margin: 0 4px;
}

.product-detail__share {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.product-detail__share-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	padding: 8px 14px;
	border-radius: 4px;
}

.product-detail__share-btn--facebook {
	background: #1877f2;
}

.product-detail__share-btn--twitter {
	background: #000;
}

.product-detail__share-btn--pinterest {
	background: #e60023;
}

.product-detail__share-btn:hover {
	opacity: .85;
	color: #fff;
}

/* ==========================================================================
   Cart page
   ========================================================================== */

.cart-page .shop_table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 32px;
}

.cart-page .shop_table th,
.cart-page .shop_table td {
	padding: 14px 10px;
	border-bottom: 1px solid #ececec;
	text-align: left;
	vertical-align: middle;
	font-size: 14px;
}

.cart-page .shop_table thead th {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .03em;
	color: #6b6b6b;
	border-bottom: 2px solid #e7e7e7;
}

.cart-page .product-thumbnail img {
	width: 70px;
	height: 70px;
	object-fit: contain;
	border: 1px solid #ececec;
	border-radius: 6px;
}

.cart-page .product-name a {
	color: #1a1a1a;
	text-decoration: none;
	font-weight: 600;
}

.cart-page .product-name a:hover {
	color: #007cc3;
}

.cart-page td.product-remove a.remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	color: #c62828;
	text-decoration: none;
	font-size: 18px;
	line-height: 1;
}

.cart-page td.product-remove a.remove:hover {
	background: #fdecea;
}

.cart-page .quantity .qty {
	width: 60px;
	height: 40px;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	text-align: center;
	font-size: 14px;
}

.cart-page tr.actions {
	border: none;
}

.cart-page .actions {
	padding-top: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border-bottom: none;
}

.cart-page .coupon {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.cart-page .coupon #coupon_code {
	height: 42px;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	padding: 0 12px;
	font-size: 14px;
}

.cart-page .button {
	height: 42px;
	padding: 0 20px;
	border-radius: 6px;
	border: 1px solid #d0d0d0;
	background: #fff;
	color: #1a1a1a;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .03em;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}

.cart-page .button:hover {
	border-color: #007cc3;
	color: #007cc3;
}

.cart-page .button.checkout-button,
.cart-page .button.wc-backward {
	background: #007cc3;
	border-color: #007cc3;
	color: #fff;
}

.cart-page .button.checkout-button:hover,
.cart-page .button.wc-backward:hover {
	background: #00639b;
	color: #fff;
}

.cart-collaterals {
	max-width: 420px;
	margin-left: auto;
}

.cart_totals h2 {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 16px;
}

.cart_totals .shop_table th,
.cart_totals .shop_table td {
	padding: 12px 0;
	border-bottom: 1px solid #ececec;
	font-size: 14px;
}

.cart_totals .order-total th,
.cart_totals .order-total td {
	font-size: 16px;
	font-weight: 700;
	border-bottom: none;
}

.wc-proceed-to-checkout {
	margin-top: 16px;
}

.wc-proceed-to-checkout .checkout-button {
	display: block;
	width: 100%;
	text-align: center;
}

.cart-empty-state {
	padding: 40px 0;
	font-size: 15px;
	color: #333;
}

.cart-empty-state .return-to-shop {
	margin-top: 20px;
}

/* ==========================================================================
   Checkout page
   ========================================================================== */

.checkout-page #order_review_heading {
	font-size: 18px;
	font-weight: 700;
	margin: 32px 0 16px;
}

.checkout-page .col2-set {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

/* WooCommerce wraps billing/shipping in .col-1/.col-2, which the theme's
   Bootstrap build treats as 8.33%/16.66% grid columns and squeezes the form
   into a sliver. Neutralize Bootstrap's flex/max-width on WC pages. */
.shop-page .col2-set .col-1,
.shop-page .col2-set .col-2,
.myaccount-page .col-1,
.myaccount-page .col-2 {
	flex: none;
	width: 100%;
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}

@media (max-width: 767px) {
	.checkout-page .col2-set {
		grid-template-columns: 1fr;
	}
}

.checkout-page h3 {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 16px;
}

.checkout-page .form-row {
	margin-bottom: 14px;
}

/* WooCommerce marks paired fields (first/last name, etc.) with
   form-row-first / form-row-last — show them side by side on desktop. */
.checkout-page .form-row-first,
.checkout-page .form-row-last {
	width: 48%;
	display: inline-block;
	vertical-align: top;
}

.checkout-page .form-row-first {
	float: left;
}

.checkout-page .form-row-last {
	float: right;
}

.checkout-page .form-row-wide {
	clear: both;
	width: 100%;
}

.checkout-page .woocommerce-billing-fields__field-wrapper::after,
.checkout-page .woocommerce-shipping-fields__field-wrapper::after,
.checkout-page .woocommerce-additional-fields__field-wrapper::after {
	content: "";
	display: table;
	clear: both;
}

@media (max-width: 575px) {
	.checkout-page .form-row-first,
	.checkout-page .form-row-last {
		width: 100%;
		float: none;
		display: block;
	}
}

/* Country/state dropdowns are converted to select2 by WooCommerce. */
.checkout-page .select2-container {
	width: 100% !important;
}

.checkout-page .select2-container .select2-selection--single {
	height: 44px;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
}

.checkout-page .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 42px;
	padding-left: 12px;
}

.checkout-page .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 42px;
}

/* "Have a coupon?" form */
.checkout-page form.checkout_coupon {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 16px;
	border: 1px solid #ececec;
	border-radius: 6px;
	margin-bottom: 24px;
}

.checkout-page form.checkout_coupon .form-row {
	margin: 0;
}

.checkout-page form.checkout_coupon input.input-text {
	min-width: 200px;
}

.checkout-page form.checkout_coupon button {
	height: 44px;
	padding: 0 20px;
	border: none;
	border-radius: 6px;
	background: #007cc3;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
}

.checkout-page .form-row label {
	display: block;
	font-size: 13px;
	color: #333;
	margin-bottom: 6px;
}

.checkout-page .form-row .required {
	color: #c62828;
}

.checkout-page input.input-text,
.checkout-page select,
.checkout-page textarea {
	width: 100%;
	height: 44px;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	padding: 0 12px;
	font-size: 14px;
}

.checkout-page textarea {
	height: auto;
	padding: 10px 12px;
	min-height: 90px;
}

.checkout-page input.input-text:focus,
.checkout-page select:focus,
.checkout-page textarea:focus {
	outline: none;
	border-color: #007cc3;
}

.checkout-page .woocommerce-checkout-review-order-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 16px;
}

.checkout-page .woocommerce-checkout-review-order-table th,
.checkout-page .woocommerce-checkout-review-order-table td {
	padding: 12px 8px;
	border-bottom: 1px solid #ececec;
	font-size: 14px;
	text-align: left;
}

.checkout-page .woocommerce-checkout-review-order-table thead th {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .03em;
	color: #6b6b6b;
}

.checkout-page .order-total th,
.checkout-page .order-total td {
	font-size: 16px;
	font-weight: 700;
	border-bottom: none;
}

.checkout-page ul.payment_methods {
	list-style: none;
	margin: 0 0 16px;
	padding: 16px;
	border: 1px solid #ececec;
	border-radius: 6px;
}

.checkout-page ul.payment_methods li {
	margin-bottom: 10px;
	font-size: 14px;
}

.checkout-page .payment_box {
	margin-top: 10px;
	padding: 12px;
	background: #f7f9fa;
	border-radius: 6px;
	font-size: 13px;
	color: #444;
}

.checkout-page #place_order {
	width: 100%;
	height: 50px;
	border: none;
	border-radius: 6px;
	background: #007cc3;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .03em;
	cursor: pointer;
	margin-top: 12px;
}

.checkout-page #place_order:hover {
	background: #00639b;
}

.checkout-page .woocommerce-terms-and-conditions-wrapper {
	margin: 16px 0;
	font-size: 13px;
}

/* Checkbox rows (ship to a different address, terms, create account) */
.checkout-page label.checkbox,
.checkout-page .woocommerce-form__label-for-checkbox {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
}

.checkout-page input[type="checkbox"] {
	width: 16px;
	height: 16px;
	margin: 0;
}

#ship-to-different-address {
	font-size: 16px;
	font-weight: 700;
}

/* Payment method radio rows */
.checkout-page ul.payment_methods li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.checkout-page ul.payment_methods li .payment_box {
	flex-basis: 100%;
}

.checkout-page ul.payment_methods input[type="radio"] {
	width: 16px;
	height: 16px;
	margin: 0;
}

/* Keep the order-review table usable on very small screens */
@media (max-width: 480px) {
	.checkout-page .woocommerce-checkout-review-order-table th,
	.checkout-page .woocommerce-checkout-review-order-table td {
		padding: 10px 4px;
		font-size: 13px;
	}
}

/* ==========================================================================
   Mobile / responsive — cart, checkout, my-account
   (WooCommerce's own small-screen styles are stripped on cart/checkout,
   so the stacked-table behavior is re-created here.)
   ========================================================================== */

@media (max-width: 767px) {

	.shop-page,
	.product-detail-page {
		padding: 24px 0 48px;
	}

	.shop-header__title {
		font-size: 24px;
	}

	/* --- Cart items table -> stacked cards --- */

	.cart-page .woocommerce-cart-form .shop_table thead {
		display: none;
	}

	.cart-page .woocommerce-cart-form .shop_table,
	.cart-page .woocommerce-cart-form .shop_table tbody,
	.cart-page .woocommerce-cart-form .shop_table tr,
	.cart-page .woocommerce-cart-form .shop_table td {
		display: block;
		width: 100%;
	}

	.cart-page .woocommerce-cart-form__cart-item {
		position: relative;
		border: 1px solid #ececec;
		border-radius: 6px;
		padding: 14px 14px 14px 100px;
		margin-bottom: 14px;
		min-height: 100px;
	}

	.cart-page .woocommerce-cart-form__cart-item td {
		border: none;
		padding: 4px 0;
	}

	/* Thumbnail pinned to the left of the card */
	.cart-page .woocommerce-cart-form__cart-item td.product-thumbnail {
		position: absolute;
		left: 14px;
		top: 14px;
		width: 70px;
		padding: 0;
	}

	/* Remove (×) pinned to the top-right corner */
	.cart-page .woocommerce-cart-form__cart-item td.product-remove {
		position: absolute;
		top: 6px;
		right: 6px;
		width: auto;
		padding: 0;
	}

	/* Inline labels from WooCommerce's data-title attributes */
	.cart-page .woocommerce-cart-form__cart-item td.product-price::before,
	.cart-page .woocommerce-cart-form__cart-item td.product-quantity::before,
	.cart-page .woocommerce-cart-form__cart-item td.product-subtotal::before {
		content: attr(data-title) ": ";
		font-weight: 700;
		color: #6b6b6b;
		font-size: 12px;
		text-transform: uppercase;
		letter-spacing: .03em;
		margin-right: 6px;
	}

	.cart-page .woocommerce-cart-form__cart-item td.product-quantity {
		display: flex;
		align-items: center;
	}

	/* --- Coupon / update-cart row --- */

	.cart-page .woocommerce-cart-form .shop_table td.actions {
		display: flex;
		flex-direction: column;
		gap: 12px;
		padding: 8px 0 0;
	}

	.cart-page .coupon {
		width: 100%;
	}

	.cart-page .coupon #coupon_code {
		flex: 1;
		min-width: 0;
	}

	.cart-page td.actions > .button {
		width: 100%;
		justify-content: center;
	}

	/* --- Cart totals full width --- */

	.cart-collaterals {
		max-width: 100%;
		margin-left: 0;
	}

	/* --- Checkout --- */

	.checkout-page .col2-set {
		gap: 24px;
	}

	.checkout-page #order_review_heading {
		margin-top: 24px;
	}

	.checkout-page form.checkout_coupon input.input-text {
		min-width: 0;
		flex: 1;
	}

	.checkout-page form.checkout_coupon {
		flex-direction: column;
	}

	.checkout-page form.checkout_coupon button {
		width: 100%;
	}

	/* --- My Account --- */

	.myaccount-page .woocommerce-MyAccount-navigation,
	.myaccount-page .woocommerce-MyAccount-content {
		float: none;
		width: 100%;
	}

	.myaccount-page .woocommerce-MyAccount-navigation ul {
		list-style: none;
		margin: 0 0 24px;
		padding: 0;
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
	}

	.myaccount-page .woocommerce-MyAccount-navigation li {
		margin: 0;
	}

	.myaccount-page .woocommerce-MyAccount-navigation li a {
		display: inline-block;
		padding: 8px 14px;
		border: 1px solid #d0d0d0;
		border-radius: 999px;
		font-size: 13px;
		color: #1a1a1a;
		text-decoration: none;
	}

	.myaccount-page .woocommerce-MyAccount-navigation li.is-active a {
		background: #007cc3;
		border-color: #007cc3;
		color: #fff;
	}

	/* Login/register columns stack on mobile */
	.myaccount-page .col2-set .col-1,
	.myaccount-page .col2-set .col-2 {
		float: none;
		width: 100%;
		margin-bottom: 24px;
	}

	/* Account orders table scrolls sideways instead of breaking layout */
	.myaccount-page .woocommerce-orders-table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}