/* ── WooCommerce Shop Tabs ── */
.woo-tabs__bar {
	display: flex;
	align-items: center;
	border-bottom: 2px solid #e0e0e0;
	margin: 0;
}

.woo-tabs .woo-tabs__nav {
	display: flex;
	flex-direction: row;
	list-style: none;
	padding: 0;
	margin: 0;
	border-bottom: none;
	gap: 0;
}

.woo-tabs__bar .shop__icon--cart {
	margin-left: auto;
	display: flex;
	align-items: center;
	padding: 0 12px;
	color: inherit;
}

.woo-tabs .woo-tabs__nav .woo-tabs__nav-item {
	list-style: none;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.woo-tabs__tab {
	background: none;
	border: none;
	padding: 12px 32px;
	font-size: 16px;
	font-weight: 600;
	color: #666;
	cursor: pointer;
	position: relative;
	transition: color 0.2s ease;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	white-space: nowrap;
}

.woo-tabs__tab:hover {
	color: #333;
}

.woo-tabs__tab--active {
	color: #1a1a1a;
	border-bottom-color: rgb(var(--red));
}

.woo-tabs__panel {
	display: none;
	/* Fixed top padding absorbs the sub-bar height so the grid never shifts */
	padding-top: 20px;
}

.woo-tabs__panel--active {
	display: block;
}

/* ── Override WC float grid with CSS Grid inside tabs (allows auto-reflow on sub-tab filter) ── */
.woo-tabs__panel ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	float: none !important;
	clear: none !important;
}

.woo-tabs__panel ul.products::before,
.woo-tabs__panel ul.products::after {
	display: none !important;
}

.woo-tabs__panel ul.products li.product {
	width: auto !important;
	margin: 0 !important;
	float: none !important;
}

/* ── Cookware inline sub-bar (slides down on click) ── */
.woo-tabs__sub-bar {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.25s ease;
	/* No border or margin — panel padding-top reserves the space */
}

.woo-tabs__sub-bar--open {
	grid-template-rows: 1fr;
}

.woo-tabs__sub-bar-inner {
	overflow: hidden;
	display: flex;
	gap: 0;
	/* left padding is set dynamically by JS to match the Cookware tab position */
}

.woo-tabs__sub-bar--open .woo-tabs__sub-bar-inner {
	padding-bottom: 10px;
}

/* Pill group wrapper — wraps all the sub-buttons in one visual container */
.woo-tabs__sub-bar-inner::after {
	content: none;
}

.woo-tabs__sub-group {
	display: inline-flex;
	gap: 0;
	border-bottom: 2px solid #e4e4e4;
}

.woo-tabs__sub-btn {
	background: none;
	border: none;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	padding: 8px 16px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #aaa;
	cursor: pointer;
	transition: color 0.18s ease, border-color 0.18s ease;
	white-space: nowrap;
}

.woo-tabs__sub-btn:hover {
	color: #555;
}

.woo-tabs__sub-btn--active {
	color: rgb(var(--red));
	border-bottom-color: rgb(var(--red));
	font-weight: 700;
}

.woo-tabs__sub-btn--active:hover {
	color: rgb(var(--dark-maroon));
	border-bottom-color: rgb(var(--dark-maroon));
}

.woo-tabs__empty {
	padding: 40px 0;
	text-align: center;
	color: #999;
	font-size: 16px;
}

/* ── WooCommerce Archive / Shop layout ── */
.woo-archive-wrapper {
	padding: 40px 0;
}

.woo-archive__header {
	margin-bottom: 30px;
}

.woo-archive__title {
	margin: 0 0 10px;
}

/* My Account login/register switch links */
.account-form-switch {
	margin-top: 1.5rem;
	font-size: 0.9rem;
	color: #666;
}
.account-form-switch__link {
	background: none;
	border: none;
	padding: 0;
	font-size: inherit;
	color: #c5a44e;
	cursor: pointer;
	text-decoration: underline;
	font-weight: 600;
}
.account-form-switch__link:hover {
	color: #a8893d;
}

.shop__icon--cart {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.shop__cart-count {
	position: absolute;
	top: -6px;
	right: -6px;
	background: #c5a44e;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	min-width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	padding: 2px;
}

/* ── WooCommerce Product Images ── */

/* Archive/Shop product card images */
.woocommerce ul.products li.product img,
.lacanche-product-card img {
	width: 100%;
	height: 250px;
	object-fit: contain;
	object-position: center;
}

/* Force all product cards to be the same height */
.woocommerce ul.products li.product,
li.lacanche-product-card {
	display: flex;
	flex-direction: column;
}

.woocommerce ul.products li.product a img,
.lacanche-product-card__image {
	width: 100%;
	height: 250px;
	min-height: 250px;
	max-height: 250px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lacanche-product-card__image img {
	width: 100%;
	height: 250px !important;
	min-height: 250px;
	max-height: 250px;
	object-fit: contain;
	object-position: center;
}

/* Force product info section to align at the bottom */
.lacanche-product-card__info {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding-top: 12px;
}

/* Single product gallery - uniform size */
/* Hide hover-zoom overlay but keep lightbox clickable */
.woocommerce-product-gallery .zoomImg {
	display: none !important;
}

.woocommerce-product-gallery .flex-viewport,
.wpgs-for .slick-list {
	height: 500px !important;
	max-height: 500px;
}

/* woocommerce-product-gallery__image = WC default main slide
   wpgs_image = all slides output by the variation-gallery plugin */
.woocommerce-product-gallery__image img,
.wpgs_image img {
	width: 100% !important;
	height: 500px !important;
	object-fit: contain;
	object-position: center;
	border-radius: 8px;
}

/* Gallery thumbnails - uniform size */
.flex-control-thumbs li img,
.wpgs-nav img {
	width: 80px !important;
	height: 80px !important;
	object-fit: contain;
	padding: 5px;
	border: 2px solid transparent;
	border-radius: 4px;
	background-color: rgb(var(--gray));
	cursor: pointer;
	box-sizing: border-box;
}

/* Woocommerce Shop Buttons */
.button.lacanche-store-product {
	color: rgb(var(--textLight));
	background: rgb(var(--red));
	border-radius: 30px;
	padding: 12px 32px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	transition: background 0.2s, color 0.2s;
}
.button.lacanche-store-product:hover {
	background: rgb(var(--dark-maroon));
}

.product.lacanche-product-card.type-product {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product.lacanche-product-card.type-product:hover {
	transform: scale(1.03);
	box-shadow: 0 4px 24px rgba(197, 164, 78, 0.15);
}

/* Cookware gallery hover – swap featured image for first gallery image */
.lacanche-product-card__image.has-gallery-hover {
	position: relative;
	font-size: 0;
}

/* Base image: fades out on hover */
.lacanche-product-card__image.has-gallery-hover .attachment-woocommerce_thumbnail {
	transition: opacity 0.3s ease;
}
.lacanche-product-card.product:hover .lacanche-product-card__image.has-gallery-hover .attachment-woocommerce_thumbnail {
	opacity: 0;
}

/* Hover image: absolutely overlays the container */
.lacanche-product-card__image.has-gallery-hover .product-gallery-hover-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.lacanche-product-card.product:hover .lacanche-product-card__image.has-gallery-hover .product-gallery-hover-img {
	opacity: 1;
}

.button.single_add_to_cart_button {
	color: rgb(var(--textLight));
	background: rgb(var(--red));
	border-radius: 30px;
	padding: 12px 32px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	transition: background 0.2s, color 0.2s;
}

.button.single_add_to_cart_button:hover {
	background: rgb(var(--dark-maroon));
}

/* Variation attribute button pickers */
.variation-btn-group {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 4px;
}
.variation-btn {
	cursor: pointer;
	padding: 6px 16px;
	border-radius: 20px;
	border: 2px solid rgb(var(--brown));
	background: transparent;
	color: rgb(var(--brown));
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
	white-space: nowrap;
}
.variation-btn:hover {
	border-color: rgb(var(--red));
	color: rgb(var(--red));
}
.variation-btn.selected {
	background: rgb(var(--red));
	border-color: rgb(var(--red));
	color: #fff;
}

/* ── Quantity stepper (plus / minus buttons inside .quantity pill) ── */

/* form.cart: flex row so stepper pill and Add to Cart sit side by side */
.woocommerce form.cart {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

/* .quantity is the pill container; buttons and input are children */
.woocommerce form.cart .quantity,
.woocommerce .quantity {
	display: inline-flex;
	align-items: center;
	height: 46px;
	flex-shrink: 0;
	border: 2px solid rgb(var(--brown));
	border-radius: 30px;
	overflow: hidden;
	padding: 0;
	background: transparent;
}

/* qty number input — middle of the pill */
.woocommerce .quantity input[type="number"],
.woocommerce .quantity input[type="text"] {
	width: 48px;
	height: 100%;
	text-align: center;
	border: none;
	outline: none;
	font-size: 1rem;
	font-weight: 600;
	color: rgb(var(--text));
	background: transparent;
	-moz-appearance: textfield;
	appearance: textfield;
	padding: 0;
}
.woocommerce .quantity input[type="number"]::-webkit-inner-spin-button,
.woocommerce .quantity input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Minus / Plus buttons — inside .quantity, share the pill border */
.woocommerce .quantity .lacanche-qty-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 100%;
	flex-shrink: 0;
	background: transparent;
	border: none;
	cursor: pointer;
	font-size: 1.3rem;
	font-weight: 700;
	color: rgb(var(--brown));
	transition: background 0.2s, color 0.2s;
	padding: 0;
	line-height: 1;
}
.woocommerce .quantity .lacanche-qty-minus {
	border-right: 1px solid rgb(var(--brown));
}
.woocommerce .quantity .lacanche-qty-plus {
	border-left: 1px solid rgb(var(--brown));
}
.woocommerce .quantity .lacanche-qty-btn:hover {
	background: rgb(var(--red));
	color: #fff;
}

/* Add to Cart button — same height as stepper */
.woocommerce form.cart .button.single_add_to_cart_button {
	height: 46px;
	padding: 0 32px;
	display: flex;
	align-items: center;
	border-radius: 30px;
}

/* Go back to store button */
a.lacanche-back-to-shop {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 16px 0;
	color: rgb(var(--red));
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s;
}
a.lacanche-back-to-shop:hover {
	color: rgb(var(--dark-maroon));
}

/* ── Single Product layout ── */

/* Hero: contain WooCommerce's floated gallery + summary columns and enforce
   a minimum height so the details section never floats up when there is no
   description or the summary is very short. */
.lacanche-product__hero {
	min-height: 500px;
	overflow: hidden; /* clearfix — contains the floated gallery/summary */
}

/* Flair accent line between hero and details */
.lacanche-product__flair {
	margin-top: 40px;
	text-align: center;
}
.lacanche-product__flair svg,
.lacanche-flair-line {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
}

/* Details (tabs + upsells + related) */
.lacanche-product__details {
	margin-top: 40px;
	padding-top: 0;
}

@media only screen and (max-width: 768px) {
	.lacanche-product__hero {
		min-height: 0;
	}
	.lacanche-product__details {
		margin-top: 24px;
	}
	.lacanche-product__flair {
		margin-top: 24px;
	}
}

/* ── Lid pairing picker ── */
.lacanche-lid-pairing {
	margin-bottom: 20px;
	width: 100%;
}

.lacanche-lid-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.lacanche-lid-item__header {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 700;
	font-size: 0.875rem;
	letter-spacing: 0.06em;
}

.lacanche-lid-item__img {
	width: 48px;
	height: 48px;
	object-fit: contain;
	flex-shrink: 0;
}

.lacanche-lid-toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 0.875rem;
}

.lacanche-lid-toggle input[type="checkbox"] {
	accent-color: rgb(var(--red));
	width: 18px;
	height: 18px;
	cursor: pointer;
	flex-shrink: 0;
}

.lacanche-lid-toggle:has(input:disabled) {
	opacity: 0.4;
	cursor: not-allowed;
}

.lacanche-lid-item__price {
	color: rgb(var(--brown));
	font-weight: 600;
}

/* WooCommerce login/register forms */

.woocommerce-form.woocommerce-form-login.login,
.woocommerce-form.woocommerce-form-register.register {
	display: flex;
	flex-direction: column;
	width: 50%;
	margin: auto;
	margin-top: 20px;
}

.woocommerce-form.woocommerce-form-login.login .woocommerce-form-row,
.woocommerce-form.woocommerce-form-register.register .woocommerce-form-row,
.woocommerce-form.woocommerce-form-login.login .form-row,
.woocommerce-form.woocommerce-form-register.register .form-row {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 16px;
	padding: 0;
}

.woocommerce-form.woocommerce-form-login.login input[type="text"],
.woocommerce-form.woocommerce-form-login.login input[type="password"],
.woocommerce-form.woocommerce-form-register.register input[type="email"],
.woocommerce-form.woocommerce-form-register.register input[type="password"] {
	width: 100%;
	box-sizing: border-box;
}

.woocommerce-form-login__submit,
.woocommerce-form-register__submit {
	width: 100%;
}

/* =============================================
   WooCommerce Cart Page
   ============================================= */

/* Page background */
body.woocommerce-cart {
	background-color: #FFFAF1;
}

/* Two-column layout: cart form left, totals right */
body.woocommerce-cart .woocommerce-cart-layout {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin-top: 24px;
	gap: 10%;
	margin-left: 50px;
}

body.woocommerce-cart .woocommerce-cart-form-wrapper {
	flex: 0 0 60%;
	min-width: 0;
}

body.woocommerce-cart .cart-collaterals {
	flex: 0 0 28%;
	min-width: 280px;
	float: none;
}

body.woocommerce-cart .cart-collaterals .cart_totals {
	float: none;
	width: 100%;
}

/* ---- Cart table card ---- */
body.woocommerce-cart .shop_table.cart {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #E4E7E9;
	border-radius: 4px;
	overflow: hidden;
	background: #FFFFFF;
}

/* Column headers */
body.woocommerce-cart .shop_table.cart thead tr {
	background: #203B44;
}

body.woocommerce-cart .shop_table.cart thead th {
	padding: 10px 16px;
	font-family: 'Calibri', sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.5;
	text-transform: uppercase;
	color: #FFFFFF;
	border: none;
}

body.woocommerce-cart .shop_table.cart thead th.product-remove {
	width: 32px;
}

/* Product rows */
body.woocommerce-cart .shop_table.cart tbody tr {
	background: #FFFFFF;
	border-width: 0 1px 1px;
	border-style: solid;
	border-color: #E4E7E9;
}

body.woocommerce-cart .shop_table.cart td {
	padding: 16px;
	vertical-align: middle;
	border: none;
	border-bottom: 1px solid #E4E7E9;
}

/* Remove (×) button */
body.woocommerce-cart .shop_table.cart .product-remove a.remove {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border: 1.5px solid #929FA5;
	border-radius: 50%;
	color: #929FA5;
	font-size: 16px;
	text-decoration: none;
	line-height: 1;
}

body.woocommerce-cart .shop_table.cart .product-remove a.remove:hover {
	border-color: #EE1D52;
	color: #EE1D52;
}

/* Product thumbnail */
body.woocommerce-cart .shop_table.cart .product-thumbnail img {
	width: 92px;
	height: 61px;
	object-fit: cover;
	display: block;
}

/* Product name */
body.woocommerce-cart .shop_table.cart .product-name a {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.43;
	color: #191C1F;
	text-decoration: none;
}

body.woocommerce-cart .shop_table.cart .product-name a:hover {
	text-decoration: underline;
}

/* Price & subtotal */
body.woocommerce-cart .shop_table.cart .product-price,
body.woocommerce-cart .shop_table.cart .product-subtotal {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #191C1F;
}

body.woocommerce-cart .shop_table.cart thead th.product-price,
body.woocommerce-cart .shop_table.cart thead th.product-subtotal {
	color: #FFFFFF;
}

/* Quantity input */
body.woocommerce-cart .shop_table.cart .product-quantity .quantity {
	display: inline-flex;
	align-items: center;
}

body.woocommerce-cart .shop_table.cart .product-quantity input.qty {
	width: 64px;
	height: 38px;
	text-align: center;
	border: 1px solid #E6E6E6;
	border-radius: 0;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: #191919;
	box-sizing: border-box;
	-moz-appearance: textfield;
}

body.woocommerce-cart .shop_table.cart .product-quantity input.qty::-webkit-inner-spin-button,
body.woocommerce-cart .shop_table.cart .product-quantity input.qty::-webkit-outer-spin-button {
	-webkit-appearance: none;
}

/* Actions row */
body.woocommerce-cart .shop_table.cart td.actions {
	padding: 16px 24px;
	border-top: 1px solid #E4E7E9;
	text-align: right;
}

/* "Update cart" button — outline style */
body.woocommerce-cart .shop_table.cart td.actions button[name="update_cart"] {
	padding: 12px 24px;
	height: 43px;
	background: transparent;
	border: 1px solid #203B44;
	border-radius: 24px;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.08em;
	color: #203B44;
	cursor: pointer;
	box-sizing: border-box;
}

body.woocommerce-cart .shop_table.cart td.actions button[name="update_cart"]:hover {
	background: #203B44;
	color: #FFFFFF;
}

/* Back to shop / coupon area */
body.woocommerce-cart .shop_table.cart td.actions .coupon {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	float: left;
}

body.woocommerce-cart .shop_table.cart td.actions .coupon #coupon_code {
	min-width: 120px;
}

/* ---- Cart Totals sidebar ---- */
body.woocommerce-cart .cart_totals {
	background: #FFFFFF;
	border: 1px solid #E4E7E9;
	box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.08);
	border-radius: 4px;
	overflow: hidden;
}

body.woocommerce-cart .cart_totals h2 {
	padding: 20px 24px;
	margin: 0;
	font-family: 'Sentient', serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.2;
	color: #191C1F;
	border-bottom: 1px solid #E4E7E9;
}

body.woocommerce-cart .cart_totals .shop_table {
	width: 100%;
	border-collapse: collapse;
	border: none;
}

body.woocommerce-cart .cart_totals .shop_table th,
body.woocommerce-cart .cart_totals .shop_table td {
	padding: 12px 24px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	border: none;
	border-bottom: 1px solid #E4E7E9;
}

body.woocommerce-cart .cart_totals .shop_table th {
	font-weight: 400;
	color: #5F6C72;
	text-align: left;
	width: 50%;
}

body.woocommerce-cart .cart_totals .shop_table td {
	font-weight: 400;
	color: #191C1F;
	text-align: right;
}

/* Order total row */
body.woocommerce-cart .cart_totals .shop_table tr.order-total th,
body.woocommerce-cart .cart_totals .shop_table tr.order-total td {
	font-size: 16px;
	border-bottom: none;
	padding-top: 16px;
	padding-bottom: 16px;
}

body.woocommerce-cart .cart_totals .shop_table tr.order-total td {
	font-weight: 600;
}

/* Proceed to checkout button */
body.woocommerce-cart .wc-proceed-to-checkout {
	padding: 16px 24px 24px;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	display: block;
	width: 100%;
	padding: 12px 24px;
	background: #953112;
	border: none;
	border-radius: 24px;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #FFFFFF;
	text-align: center;
	text-decoration: none;
	box-sizing: border-box;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
	background: #7a270e;
}

/* Responsive: stack columns on tablet and below */
@media (max-width: 990px) {
	body.woocommerce-cart .woocommerce-cart-layout {
		flex-direction: column;
		gap: 24px;
		margin-left: 0;
	}

	body.woocommerce-cart .woocommerce-cart-form-wrapper,
	body.woocommerce-cart .cart-collaterals {
		flex: 0 0 100%;
		width: 100%;
		min-width: 0;
	}
}

/* Responsive: simplify table on mobile */
@media (max-width: 600px) {
	/* Hide price & subtotal columns — show only thumbnail, name, qty, remove */
	body.woocommerce-cart .shop_table.cart thead th.product-price,
	body.woocommerce-cart .shop_table.cart thead th.product-subtotal,
	body.woocommerce-cart .shop_table.cart td.product-price,
	body.woocommerce-cart .shop_table.cart td.product-subtotal {
		display: none;
	}

	/* Shrink thumbnail */
	body.woocommerce-cart .shop_table.cart .product-thumbnail img {
		width: 60px;
		height: 40px;
	}

	/* Smaller cell padding */
	body.woocommerce-cart .shop_table.cart td {
		padding: 12px 8px;
	}

	/* Stack coupon + update button vertically */
	body.woocommerce-cart .shop_table.cart td.actions {
		text-align: center;
	}

	body.woocommerce-cart .shop_table.cart td.actions .coupon {
		float: none;
		display: flex;
		flex-direction: column;
		gap: 8px;
		margin-bottom: 12px;
	}

	body.woocommerce-cart .shop_table.cart td.actions button[name="update_cart"] {
		width: 100%;
	}
}

/* Empty Cart */
.lacanche-cart-empty {
	text-align: center;
	padding: 80px 24px;
	border-radius: 4px;
	margin-top: 24px;
}

.lacanche-cart-empty__heading {
	font-family: 'Sentient', serif;
	font-size: 28px;
	font-weight: 500;
	color: #191C1F;
	margin: 0 0 12px;
}

.lacanche-cart-empty__sub {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	color: #5F6C72;
	margin: 0 0 32px;
}

.lacanche-cart-empty__cta {
	display: inline-block;
	padding: 12px 32px;
	background: #953112;
	border-radius: 24px;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #FFFFFF !important;
	text-decoration: none !important;
	transition: background 0.2s;
}

.lacanche-cart-empty__cta:hover {
	background: #7a270e;
}

/* ════════════════════════════════════════════════════════
   CHECKOUT PAGE
   ════════════════════════════════════════════════════════ */

/* Page background */
body.woocommerce-checkout {
	background-color: #FFFAF1;
}

/* Back to shop link (checkout) */
.lacanche-back-to-shop--checkout {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.08em;
	color: #953112;
	text-decoration: none;
	margin: 28px 0 12px;
}

.lacanche-back-to-shop--checkout:hover {
	color: #7a270e;
}

.lacanche-back-to-shop--checkout svg {
	stroke: #953112;
	flex-shrink: 0;
}

/* Checkout */

/* ── Two-column grid layout ── */
form.checkout.woocommerce-checkout {
	display: grid;
	grid-template-columns: 1fr 376px;
	column-gap: 56px;
	align-items: start;
	padding: 30px 0 80px;
}

/* Customer details: left column */
.col2-set#customer_details {
	grid-column: 1;
	grid-row: 1;
	display: flex;
	flex-direction: column;
	gap: 48px;
}

/* Stack billing + shipping vertically in the left column */
body.woocommerce-checkout .col2-set .col-1,
body.woocommerce-checkout .col2-set .col-2 {
	float: none;
	width: 100%;
}

/* Hide the default "Your order" h3 — heading is on the order review card */
h3#order_review_heading {
	display: none;
}

/* Order review card: right column */
#order_review.woocommerce-checkout-review-order {
	grid-column: 2;
	grid-row: 1;
	position: sticky;
	top: 100px;
	background: #FFFFFF;
	border: 1px solid #E4E7E9;
	box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.08);
	border-radius: 4px;
}

/* Card heading pseudo-element */
#order_review.woocommerce-checkout-review-order::before {
	content: 'Order Summary';
	display: block;
	font-family: 'Sentient', serif;
	font-size: 20px;
	font-weight: 500;
	color: #191C1F;
	padding: 16px 20px;
	border-bottom: 1px solid #E4E7E9;
}

/* ── Section headings (Billing / Shipping) ── */
body.woocommerce-checkout .woocommerce-billing-fields > h3,
body.woocommerce-checkout .woocommerce-additional-fields > h3,
body.woocommerce-checkout .woocommerce-shipping-fields > h3:not(#ship-to-different-address) {
	font-family: 'Sentient', serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1;
	color: #191C1F;
	margin: 0 0 36px;
	padding: 0;
	border: none;
}

/* ── Field wrappers as flex row ── */
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
body.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

/* Reset WooCommerce float layout on form rows */
body.woocommerce-checkout p.form-row {
	float: none !important;
	margin: 0 !important;
	padding: 0;
	clear: none !important;
}

body.woocommerce-checkout p.form-row-first,
body.woocommerce-checkout p.form-row-last {
	width: calc(50% - 8px);
}

body.woocommerce-checkout p.form-row-wide {
	width: 100%;
}

/* ── Labels ── */
body.woocommerce-checkout .form-row label {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 19px;
	color: #191C1F;
	margin: 0 0 8px;
	display: block;
}

body.woocommerce-checkout .form-row label abbr[title] {
	color: #953112;
	text-decoration: none;
	border: none;
}

body.woocommerce-checkout .form-row label .optional {
	font-weight: 400;
	color: #77878F;
	font-size: 14px;
}

/* ── Text inputs ── */
body.woocommerce-checkout .form-row input.input-text,
body.woocommerce-checkout .form-row input[type="text"],
body.woocommerce-checkout .form-row input[type="email"],
body.woocommerce-checkout .form-row input[type="tel"],
body.woocommerce-checkout .form-row input[type="number"],
body.woocommerce-checkout .form-row input[type="password"] {
	height: 44px;
	background: #FFFFFF;
	border: 1px solid #E4E7E9;
	border-radius: 2px;
	padding: 0 16px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #191C1F;
	width: 100%;
	box-sizing: border-box;
	transition: border-color 0.2s;
	outline: none;
	box-shadow: none;
}

body.woocommerce-checkout .form-row input.input-text:focus {
	border-color: #8C6F4D;
}

body.woocommerce-checkout .form-row input.input-text::placeholder {
	color: #77878F;
}

/* ── Select2 dropdowns ── */
body.woocommerce-checkout .form-row .select2-container {
	width: 100% !important;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single {
	height: 44px;
	background: #FFFFFF;
	border: 1px solid #E4E7E9 !important;
	border-radius: 2px !important;
	box-shadow: none !important;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
	height: 44px;
	line-height: 44px;
	padding: 0 40px 0 16px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #191C1F;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: #77878F;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 44px;
	width: 36px;
	right: 6px;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: #ADB7BC transparent transparent transparent;
	border-width: 5px 4px 0 4px;
	margin-top: -2px;
}

body.woocommerce-checkout .select2-container--default.select2-container--open .select2-selection--single {
	border-color: #8C6F4D !important;
}

/* Native select fallback */
body.woocommerce-checkout .form-row select {
	height: 44px;
	background: #FFFFFF;
	border: 1px solid #E4E7E9;
	border-radius: 2px;
	padding: 0 40px 0 16px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: #191C1F;
	width: 100%;
	box-sizing: border-box;
	appearance: none;
	-webkit-appearance: none;
}

/* ── "Ship to a different address?" heading ── */
body.woocommerce-checkout h3#ship-to-different-address {
	font-family: 'Sentient', serif;
	font-size: 24px;
	font-weight: 500;
	color: #191C1F;
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	margin: 0 0 36px;
	border: none;
	padding: 0;
}

body.woocommerce-checkout h3#ship-to-different-address label {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
	cursor: pointer;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 12px;
}

body.woocommerce-checkout h3#ship-to-different-address input[type="checkbox"] {
	width: 20px;
	height: 20px;
	border: 1px solid #C9CFD2;
	border-radius: 2px;
	accent-color: #953112;
	cursor: pointer;
	flex-shrink: 0;
}

/* ── Order review table ── */
.woocommerce-checkout-review-order-table {
	width: 100%;
	border-collapse: collapse;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	color: #191C1F;
}

.woocommerce-checkout-review-order-table thead {
	display: none;
}

.woocommerce-checkout-review-order-table tbody tr.cart_item {
	border-bottom: 1px solid #E4E7E9;
}

.woocommerce-checkout-review-order-table tbody td {
	padding: 10px 20px;
	vertical-align: middle;
}

.woocommerce-checkout-review-order-table .product-name {
	font-size: 12px;
	color: #191C1F;
	font-weight: 400;
}

.woocommerce-checkout-review-order-table .product-name .product-quantity {
	color: #5F6C72;
}

.woocommerce-checkout-review-order-table .product-total {
	font-size: 12px;
	font-weight: 600;
	color: #191C1F;
	text-align: right;
}

.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tfoot td {
	padding: 8px 20px;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	color: #5F6C72;
	font-weight: 400;
}

.woocommerce-checkout-review-order-table tfoot td {
	text-align: right;
	font-weight: 500;
	color: #191C1F;
}

.woocommerce-checkout-review-order-table tfoot tr {
	border-top: 1px solid #E4E7E9;
}

/* Order total */
.woocommerce-checkout-review-order-table tfoot tr.order-total th,
.woocommerce-checkout-review-order-table tfoot tr.order-total td {
	font-size: 13px;
	font-weight: 600;
	color: #191C1F;
	padding: 12px 20px;
}

/* ── Payment section (inside right card) ── */
#payment.woocommerce-checkout-payment {
	background: transparent;
	border: none;
	padding: 0 20px 20px;
}

#payment .payment_methods {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}

#payment .payment_methods li.payment_method {
	padding: 10px 0;
	border-bottom: 1px solid #E4E7E9;
}

body.woocommerce-checkout #payment .payment_methods li.payment_method label {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #191C1F;
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	margin: 0;
}

#payment .payment_methods li.payment_method input[type="radio"] {
	accent-color: #953112;
	cursor: pointer;
}

#payment .payment_box {
	background: #FFFAF1;
	border-radius: 4px;
	padding: 12px;
	margin-top: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: #5F6C72;
}

/* ── Place Order button ── */
body.woocommerce-checkout .place-order {
	padding: 0;
	margin: 0;
}

body.woocommerce-checkout #place_order {
	display: block;
	width: 100%;
	padding: 12px 24px;
	background: #953112;
	border: none;
	border-radius: 24px;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 19px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #FFFFFF;
	cursor: pointer;
	transition: background 0.2s;
	margin-top: 16px;
	box-sizing: border-box;
}

body.woocommerce-checkout #place_order:hover {
	background: #7a270e;
}

/* ── Inline validation ── */
body.woocommerce-checkout .form-row.woocommerce-invalid input.input-text,
body.woocommerce-checkout .form-row.woocommerce-invalid .select2-selection--single {
	border-color: #c0392b !important;
}

body.woocommerce-checkout .form-row.woocommerce-validated input.input-text {
	border-color: #27ae60 !important;
}

/* ── Checkout notices (spans full width) ── */
body.woocommerce-checkout .woocommerce-error,
body.woocommerce-checkout .woocommerce-message,
body.woocommerce-checkout .woocommerce-info {
	grid-column: 1 / -1;
	border-radius: 4px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	list-style: none;
	margin: 0 0 24px;
	padding: 12px 16px;
}

/* ── Coupon form ── */
body.woocommerce-checkout .checkout_coupon {
	grid-column: 1 / -1;
	border: 1px solid #E4E7E9;
	border-radius: 4px;
	padding: 20px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
	form.checkout.woocommerce-checkout {
		grid-template-columns: 1fr;
	}

	#order_review.woocommerce-checkout-review-order {
		grid-column: 1;
		position: static;
	}
}

@media (max-width: 600px) {
	body.woocommerce-checkout p.form-row-first,
	body.woocommerce-checkout p.form-row-last {
		width: 100%;
	}
}

/* ════════════════════════════════════════════════════════
   THANK YOU PAGE
   ════════════════════════════════════════════════════════ */

.lacanche-thankyou {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 60px 24px 48px;
	max-width: 560px;
	margin: 0 auto;
}

.lacanche-thankyou__icon {
	width: 64px;
	height: 64px;
	color: #203B44;
	margin-bottom: 24px;
}

.lacanche-thankyou__heading {
	font-family: 'Sentient', serif;
	font-size: 2rem;
	color: #203B44;
	margin: 0 0 16px;
}

.lacanche-thankyou__sub {
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	color: #5a5a5a;
	line-height: 1.6;
	margin: 0 0 36px;
}

.lacanche-thankyou__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.lacanche-thankyou__details-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 12px 28px;
	background: #203B44;
	color: #fff;
	font-family: 'Inter', sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	transition: background 0.2s;
}

.lacanche-thankyou__details-btn:hover {
	background: #16292f;
}

.lacanche-thankyou__details-btn svg {
	flex-shrink: 0;
	transition: transform 0.2s;
}

.lacanche-thankyou__shop-btn {
	display: inline-flex;
	align-items: center;
	padding: 12px 28px;
	background: transparent;
	color: #203B44;
	font-family: 'Inter', sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	border: 2px solid #203B44;
	border-radius: 30px;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}

.lacanche-thankyou__shop-btn:hover {
	background: #203B44;
	color: #fff;
}

/* Order details panel */
.lacanche-thankyou__order-details {
	max-width: 760px;
	margin: 0 auto 60px;
	padding: 0 24px;
}

.lacanche-thankyou__order-details table.woocommerce-table {
	width: 100%;
	border-collapse: collapse;
	font-family: 'Inter', sans-serif;
	font-size: 0.9rem;
}

.lacanche-thankyou__order-details table.woocommerce-table th,
.lacanche-thankyou__order-details table.woocommerce-table td {
	padding: 12px 16px;
	border-bottom: 1px solid #e8e0d4;
	text-align: left;
	vertical-align: top;
}

.lacanche-thankyou__order-details table.woocommerce-table thead th {
	background: #203B44;
	color: #fff;
	font-weight: 600;
}

.lacanche-thankyou__order-details table.woocommerce-table tfoot tr:last-child td,
.lacanche-thankyou__order-details table.woocommerce-table tfoot tr:last-child th {
	font-weight: 700;
	color: #203B44;
}

/* ── Address cards ── */
.lacanche-thankyou__order-details .woocommerce-customer-details {
	margin-top: 32px;
}

.lacanche-thankyou__order-details .woocommerce-columns--addresses {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.lacanche-thankyou__order-details .woocommerce-columns--addresses::before,
.lacanche-thankyou__order-details .woocommerce-columns--addresses::after {
	display: none;
}

.lacanche-thankyou__order-details .woocommerce-columns--addresses .col-1,
.lacanche-thankyou__order-details .woocommerce-columns--addresses .col-2 {
	float: none;
	width: auto;
}

.lacanche-thankyou__order-details .woocommerce-column--billing-address,
.lacanche-thankyou__order-details .woocommerce-column--shipping-address {
	background: #FFFAF1;
	border: 1px solid #e8e0d4;
	border-radius: 6px;
	padding: 20px 24px;
}

.lacanche-thankyou__order-details .woocommerce-column__title {
	font-family: 'Sentient', serif;
	font-size: 0.95rem;
	font-weight: 600;
	color: #203B44;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0 0 12px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e8e0d4;
}

.lacanche-thankyou__order-details address {
	font-family: 'Inter', sans-serif;
	font-size: 0.9rem;
	line-height: 1.7;
	color: #444;
	font-style: normal;
}

.lacanche-thankyou__order-details .woocommerce-customer-details--phone {
	margin: 6px 0 0;
	color: #666;
}

.lacanche-thankyou__order-details .woocommerce-customer-details--email {
	display: none;
}

/* If only billing (no shipping), let it span full width */
.lacanche-thankyou__order-details .woocommerce-customer-details > h2,
.lacanche-thankyou__order-details .woocommerce-customer-details > address {
	background: #FFFAF1;
	border: 1px solid #e8e0d4;
	border-radius: 6px;
	padding: 20px 24px;
	max-width: 420px;
}

.lacanche-thankyou__order-details .woocommerce-customer-details > h2 {
	font-family: 'Sentient', serif;
	font-size: 0.95rem;
	font-weight: 600;
	color: #203B44;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0;
	border-bottom: none;
	border-radius: 6px 6px 0 0;
	border-bottom: 0;
	padding-bottom: 0;
}

@media (max-width: 600px) {
	.lacanche-thankyou__order-details .woocommerce-columns--addresses {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.lacanche-thankyou__heading {
		font-size: 1.5rem;
	}
	.lacanche-thankyou__actions {
		flex-direction: column;
		align-items: stretch;
	}
	.lacanche-thankyou__details-btn,
	.lacanche-thankyou__shop-btn {
		justify-content: center;
	}
}

/* ════════════════════════════════════════════════════════
   MY ACCOUNT — LOGGED IN DASHBOARD TODO: FINALIZE DESIGN
   ════════════════════════════════════════════════════════ */

/* ── Page layout: sidebar + content ── */
/* ════════════════════════════════════════════════════════
   MY ACCOUNT — horizontal tab layout
   ════════════════════════════════════════════════════════ */

.lacanche-account {
	display: flex;
	flex-direction: column;
	padding: 40px 0 80px;
	gap: 0;
}

/* ── Header + nav card ── */
.lacanche-account__card {
	background: #fff;
	border: 1px solid #E4E7E9;
	border-radius: 10px;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
	margin-bottom: 32px;
	overflow: hidden;
}

/* ── User header strip ── */
.lacanche-account__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid #E4E7E9;
	margin-bottom: 0;
}

.lacanche-account__header-user {
	display: flex;
	align-items: center;
	gap: 12px;
}

.lacanche-account__header-avatar img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #E4E7E9;
	display: block;
}

.lacanche-account__header-user-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.lacanche-account__header-name {
	font-family: 'Sentient', serif;
	font-size: 15px;
	font-weight: 500;
	color: #191C1F;
}

.lacanche-account__header-email {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	color: #77878F;
}

.lacanche-account__logout {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #929FA5;
	text-decoration: none;
	transition: color 0.15s;
}

.lacanche-account__logout:hover {
	color: #953112;
}

/* ── Horizontal tab bar ── */
.lacanche-account__nav {
	border-bottom: 2px solid #E4E7E9;
	margin-bottom: 0;
	background: none;
	border-radius: 0;
	border-left: none;
	border-right: none;
	border-top: none;
	overflow: visible;
	position: static;
	padding: 0 8px;
}

.lacanche-account__nav-list {
	display: flex;
	flex-direction: row;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0;
}

.lacanche-account__nav-item {
	margin: 0;
}

.lacanche-account__nav-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 14px 20px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #77878F;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	transition: color 0.15s, border-color 0.15s;
	white-space: nowrap;
	border-left: none;
	background: none;
}

.lacanche-account__nav-link:hover {
	color: #191C1F;
	background: none;
}

.lacanche-account__nav-link--active,
.lacanche-account__nav-item.woocommerce-MyAccount-navigation-link--is-active .lacanche-account__nav-link {
	color: rgb(var(--red));
	border-bottom-color: rgb(var(--red));
	font-weight: 600;
	background: none;
}

.lacanche-account__nav-icon {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	color: inherit;
}

/* ── Content area ── */
.lacanche-account__content {
	min-width: 0;
	padding: 24px;
}

.woocommerce-MyAccount-content {
	padding: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
	.lacanche-account__nav-list {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.lacanche-account__nav-link {
		padding: 12px 14px;
		font-size: 13px;
	}

	.lacanche-account__header {
		flex-wrap: wrap;
		gap: 12px;
	}
}

/* ── Dashboard 2-column grid ── */
.lacanche-dashboard__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: start;
}

/* ── Dashboard welcome + cards ── */
.lacanche-dashboard__welcome {
	margin-bottom: 32px;
}

.lacanche-dashboard__heading {
	font-family: 'Sentient', serif;
	font-size: 28px;
	font-weight: 500;
	color: #191C1F;
	margin: 0 0 8px;
	line-height: 1.2;
}

.lacanche-dashboard__heading span {
	color: #953112;
}

.lacanche-dashboard__subheading {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: #5F6C72;
	margin: 0;
}

.lacanche-dashboard__cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.lacanche-dashboard__card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px;
	background: #FFFFFF;
	border: 1px solid #E4E7E9;
	border-radius: 8px;
	text-decoration: none;
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.lacanche-dashboard__card:hover {
	border-color: #c5a44e;
	box-shadow: 0 4px 16px rgba(197,164,78,0.12);
	transform: translateY(-2px);
}

.lacanche-dashboard__card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #FFFAF1;
	color: #953112;
	flex-shrink: 0;
}

.lacanche-dashboard__card:hover .lacanche-dashboard__card-icon {
	background: #203B44;
	color: #FFFFFF;
}

.lacanche-dashboard__card-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.lacanche-dashboard__card-label {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #191C1F;
}

.lacanche-dashboard__card-meta {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: #5F6C72;
}

.lacanche-dashboard__card-arrow {
	display: flex;
	align-items: center;
	color: #ADB7BC;
	flex-shrink: 0;
	transition: color 0.2s, transform 0.2s;
}

.lacanche-dashboard__card:hover .lacanche-dashboard__card-arrow {
	color: #c5a44e;
	transform: translateX(3px);
}

/* button reset so <button> cards look like <a> cards */
button.lacanche-dashboard__card {
	cursor: pointer;
	font: inherit;
	text-align: left;
	width: 100%;
}

/* ── Dashboard: Recent Orders section ── */
.lacanche-dashboard__section {
	margin-bottom: 28px;
}

.lacanche-dashboard__section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.lacanche-dashboard__section-title {
	font-family: 'Sentient', serif;
	font-size: 17px;
	font-weight: 500;
	color: #191C1F;
	margin: 0;
}

.lacanche-dashboard__view-all {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: rgb(var(--red));
	text-decoration: none;
	transition: opacity 0.15s;
}

.lacanche-dashboard__view-all:hover {
	opacity: 0.75;
}

.lacanche-dashboard__orders-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 32px 0;
	color: #ADB7BC;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
}

.lacanche-dashboard__orders-empty p {
	margin: 0;
}

.lacanche-dashboard__orders-list {
	border: 1px solid #E4E7E9;
	border-radius: 8px;
	overflow: hidden;
}

.lacanche-dashboard__order-row {
	display: grid;
	grid-template-columns: 90px 1fr 1fr 1fr 72px;
	align-items: center;
	gap: 12px;
	padding: 14px 20px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: #191C1F;
	border-bottom: 1px solid #F2F4F5;
}

.lacanche-dashboard__order-row--header {
	background: #203B44;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 11px 20px;
}

.lacanche-dashboard__order-row--header:first-child {
	border-bottom: none;
}

.lacanche-dashboard__order-row:last-child {
	border-bottom: none;
}

.lacanche-dashboard__order-row:not(.lacanche-dashboard__order-row--header):nth-child(even) {
	background: #FAFBFC;
}

.lacanche-dashboard__order-link {
	font-weight: 600;
	color: rgb(var(--red));
	text-decoration: none;
}

.lacanche-dashboard__order-link:hover {
	text-decoration: underline;
}

.lacanche-dashboard__order-date {
	color: #5F6C72;
	font-size: 13px;
}

.lacanche-dashboard__order-total {
	font-weight: 500;
}

.lacanche-dashboard__order-view {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 14px;
	border: 1px solid rgb(var(--red));
	border-radius: 20px;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 500;
	color: rgb(var(--red));
	text-decoration: none;
	transition: background 0.15s, color 0.15s;
	white-space: nowrap;
}

.lacanche-dashboard__order-view:hover {
	background: rgb(var(--red));
	color: #fff;
}

/* Status badges in dashboard order rows */
.lacanche-dash-status {
	font-size: 12px;
	font-weight: 500;
}

.lacanche-dash-status--completed   { color: #1e7e34; }
.lacanche-dash-status--processing  { color: #1a56b0; }
.lacanche-dash-status--on-hold     { color: #b45309; }
.lacanche-dash-status--cancelled,
.lacanche-dash-status--failed      { color: #c0392b; }
.lacanche-dash-status--pending     { color: #6b21a8; }
.lacanche-dash-status--refunded    { color: #5F6C72; }

/* ── Address Modal ── */
body.lacanche-modal-open {
	overflow: hidden;
}

.lacanche-address-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.lacanche-address-modal[hidden] {
	display: none;
}

.lacanche-address-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
}

.lacanche-address-modal__dialog {
	position: relative;
	background: #fff;
	border-radius: 12px;
	width: 100%;
	max-width: 640px;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}

.lacanche-address-modal__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid #E4E7E9;
	flex-shrink: 0;
}

.lacanche-address-modal__title {
	font-family: 'Sentient', serif;
	font-size: 20px;
	font-weight: 500;
	color: #191C1F;
	margin: 0;
}

.lacanche-address-modal__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	background: none;
	border: none;
	border-radius: 50%;
	color: #77878F;
	cursor: pointer;
	transition: background 0.15s, color 0.15s;
}

.lacanche-address-modal__close:hover {
	background: #F2F4F5;
	color: #191C1F;
}

.lacanche-address-modal__tabs {
	display: flex;
	border-bottom: 2px solid #E4E7E9;
	padding: 0 24px;
	flex-shrink: 0;
}

.lacanche-address-modal__tab {
	padding: 12px 20px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #77878F;
	background: none;
	border: none;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	cursor: pointer;
	transition: color 0.15s, border-color 0.15s;
}

.lacanche-address-modal__tab:hover {
	color: #191C1F;
}

.lacanche-address-modal__tab--active {
	color: rgb(var(--red));
	border-bottom-color: rgb(var(--red));
}

.lacanche-address-modal__body {
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	flex: 1;
	padding: 24px;
}

.lacanche-address-modal__panel--hidden {
	display: none;
}

/* WC address form fields inside modal */
.lacanche-address-modal .woocommerce-address-fields__field-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 0 16px;
}

.lacanche-address-modal .form-row {
	flex: 1 1 100%;
	margin: 0 0 12px;
	padding: 0;
}

.lacanche-address-modal .form-row-first,
.lacanche-address-modal .form-row-last {
	flex: 1 1 calc(50% - 8px);
}

.lacanche-address-modal .form-row label {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #5F6C72;
	margin-bottom: 6px;
}

.lacanche-address-modal .form-row label .required {
	color: rgb(var(--red));
}

.lacanche-address-modal .form-row .input-text,
.lacanche-address-modal .form-row select {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #E4E7E9;
	border-radius: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: #191C1F;
	background: #fff;
	outline: none;
	box-sizing: border-box;
	transition: border-color 0.15s;
}

.lacanche-address-modal .form-row .input-text:focus,
.lacanche-address-modal .form-row select:focus {
	border-color: rgb(var(--red));
	box-shadow: 0 0 0 3px rgba(149, 49, 18, 0.08);
}

.lacanche-address-modal__footer {
	display: flex;
	justify-content: flex-end;
	padding-top: 8px;
	border-top: 1px solid #E4E7E9;
	margin-top: 8px;
}

.lacanche-address-modal__save {
	display: inline-flex;
	align-items: center;
	padding: 11px 28px;
	background: rgb(var(--red));
	color: #fff;
	border: none;
	border-radius: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s;
}

.lacanche-address-modal__save:hover {
	background: rgb(var(--dark-maroon));
}
.lacanche-account__content h2,
.lacanche-account__content h3 {
	font-family: 'Sentient', serif;
	font-weight: 500;
	color: #191C1F;
	margin: 0 0 24px;
}

.lacanche-account__content h2 { font-size: 24px; }
.lacanche-account__content h3 { font-size: 20px; }

/* ── Orders table ── */
.woocommerce-account .woocommerce-orders-table {
	width: 100%;
	border-collapse: collapse;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	border: 1px solid #E4E7E9;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.woocommerce-account .woocommerce-orders-table thead tr {
	background: #203B44;
}

.woocommerce-account .woocommerce-orders-table th {
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.75);
	padding: 12px 18px;
	border: none;
	text-align: left;
	white-space: nowrap;
}

.woocommerce-account .woocommerce-orders-table tbody tr {
	background: #FFFFFF;
	transition: background 0.15s;
}

.woocommerce-account .woocommerce-orders-table tbody tr:nth-child(even) {
	background: #FAFAFA;
}

.woocommerce-account .woocommerce-orders-table td {
	padding: 14px 18px;
	border-bottom: 1px solid #E4E7E9;
	color: #191C1F;
	vertical-align: middle;
}

.woocommerce-account .woocommerce-orders-table tbody tr:last-child td {
	border-bottom: none;
}

/* Order number link */
.woocommerce-account .woocommerce-orders-table__cell-order-number a {
	font-weight: 600;
	color: #953112;
	text-decoration: none;
}

.woocommerce-account .woocommerce-orders-table__cell-order-number a:hover {
	color: #7a270e;
	text-decoration: underline;
}

/* Order date — muted */
.woocommerce-account .woocommerce-orders-table__cell-order-date {
	color: #77878F;
	font-size: 13px;
}

/* Order total */
.woocommerce-account .woocommerce-orders-table__cell-order-total {
	font-weight: 600;
}

/* Status badges */
.woocommerce-account .woocommerce-orders-table__cell-order-status .woocommerce-order-status,
/* Status cell — base style */
.woocommerce-account .woocommerce-orders-table__cell-order-status {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: capitalize;
	white-space: nowrap;
}

/* Per-status text colour via the tr's status class */
.woocommerce-account .woocommerce-orders-table__row--status-completed .woocommerce-orders-table__cell-order-status {
	color: #1e7e34;
}

.woocommerce-account .woocommerce-orders-table__row--status-processing .woocommerce-orders-table__cell-order-status {
	color: #1a56b0;
}

.woocommerce-account .woocommerce-orders-table__row--status-on-hold .woocommerce-orders-table__cell-order-status {
	color: #b45309;
}

.woocommerce-account .woocommerce-orders-table__row--status-cancelled .woocommerce-orders-table__cell-order-status,
.woocommerce-account .woocommerce-orders-table__row--status-failed .woocommerce-orders-table__cell-order-status {
	color: #c0392b;
}

.woocommerce-account .woocommerce-orders-table__row--status-pending .woocommerce-orders-table__cell-order-status {
	color: #6b21a8;
}

.woocommerce-account .woocommerce-orders-table__row--status-refunded .woocommerce-orders-table__cell-order-status {
	color: #5F6C72;
}

/* View order / actions button */
.woocommerce-account .woocommerce-orders-table__cell-order-actions .woocommerce-button {
	padding: 6px 16px;
	background: transparent;
	border: 1px solid #953112;
	border-radius: 20px;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #953112;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
	white-space: nowrap;
}

.woocommerce-account .woocommerce-orders-table__cell-order-actions .woocommerce-button:hover {
	background: #953112;
	color: #FFFFFF;
}

/* Empty state */
.woocommerce-account .woocommerce-orders-table tbody td[colspan] {
	text-align: center;
	padding: 48px 24px;
	color: #77878F;
	font-size: 15px;
}

/* ── Address boxes ── */
.woocommerce-account address {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: #475156;
	font-style: normal;
}

/* ── Account / address forms ── */
.woocommerce-account .woocommerce-EditAccountForm .form-row,
.woocommerce-account .woocommerce-address-fields .form-row {
	margin-bottom: 16px;
}

.woocommerce-account .woocommerce-EditAccountForm label,
.woocommerce-account .woocommerce-address-fields label {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #191C1F;
	display: block;
	margin-bottom: 6px;
}

.woocommerce-account .woocommerce-EditAccountForm input,
.woocommerce-account .woocommerce-address-fields input,
.woocommerce-account .woocommerce-EditAccountForm select,
.woocommerce-account .woocommerce-address-fields select {
	height: 44px;
	width: 100%;
	background: #FFFFFF;
	border: 1px solid #E4E7E9;
	border-radius: 2px;
	padding: 0 14px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: #191C1F;
	box-sizing: border-box;
	outline: none;
	transition: border-color 0.2s;
}

.woocommerce-account .woocommerce-EditAccountForm input:focus,
.woocommerce-account .woocommerce-address-fields input:focus {
	border-color: #8C6F4D;
}

/* Save / submit buttons */
.woocommerce-account .woocommerce-EditAccountForm .button,
.woocommerce-account .woocommerce-address-fields .button,
.woocommerce-account .woocommerce-MyAccount-content .button {
	display: inline-block;
	padding: 11px 28px;
	background: #953112;
	border: none;
	border-radius: 24px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #FFFFFF;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.2s;
}

.woocommerce-account .woocommerce-EditAccountForm .button:hover,
.woocommerce-account .woocommerce-address-fields .button:hover,
.woocommerce-account .woocommerce-MyAccount-content .button:hover {
	background: #7a270e;
}

/* ── Payment Methods ── */
.lacanche-pm-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.lacanche-pm-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-decoration: none;
}

/* Credit card visual */
.lacanche-pm-card {
	position: relative;
	aspect-ratio: 1.586 / 1;
	border-radius: 16px;
	background: linear-gradient(135deg, #162830 0%, #203B44 60%, #2d5260 100%);
	color: #fff;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	transition: transform 0.2s, box-shadow 0.2s;
}

.lacanche-pm-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Decorative background circles */
.lacanche-pm-card__deco {
	position: absolute;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	bottom: -70px;
	right: -50px;
	pointer-events: none;
}

.lacanche-pm-card__deco::after {
	content: '';
	position: absolute;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.04);
	top: -55px;
	right: 25px;
}

.lacanche-pm-card__default-badge {
	position: absolute;
	top: 14px;
	right: 14px;
	padding: 3px 10px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.18);
	font-family: 'Inter', sans-serif;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #fff;
}

.lacanche-pm-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.lacanche-pm-card__brand {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.8);
	text-align: right;
}

.lacanche-pm-card__number {
	display: flex;
	gap: 10px;
	font-family: 'Courier New', monospace;
	font-size: 17px;
	letter-spacing: 0.1em;
	color: #fff;
}

.lacanche-pm-card__bottom {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.lacanche-pm-card__expiry {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.lacanche-pm-card__expiry-label {
	font-family: 'Inter', sans-serif;
	font-size: 9px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.55);
}

.lacanche-pm-card__expiry-value {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
}

/* Action links below each card */
.lacanche-pm-item__actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.lacanche-pm-item__action {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 500;
	text-decoration: none;
	padding: 4px 14px;
	border-radius: 12px;
	transition: background 0.15s, color 0.15s;
}

.lacanche-pm-item__action--delete {
	border: 1px solid #c0392b;
	color: #c0392b;
}

.lacanche-pm-item__action--delete:hover {
	background: #c0392b;
	color: #fff;
}

[class*="lacanche-pm-item__action--"]:not(.lacanche-pm-item__action--delete) {
	border: 1px solid #203B44;
	color: #203B44;
}

[class*="lacanche-pm-item__action--"]:not(.lacanche-pm-item__action--delete):hover {
	background: #203B44;
	color: #fff;
}

/* Add new card */
.lacanche-pm-item--add {
	text-decoration: none;
}

.lacanche-pm-card--add {
	background: transparent;
	border: 2px dashed #C9CFD2;
	box-shadow: none;
	align-items: center;
	justify-content: center;
	color: #77878F;
	transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.lacanche-pm-card--add:hover {
	border-color: rgb(var(--red));
	color: rgb(var(--red));
	transform: translateY(-3px);
	box-shadow: none;
}

.lacanche-pm-card__add-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.lacanche-pm-card__add-label {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 900px) {
	.lacanche-dashboard__grid {
		grid-template-columns: 1fr;
	}

	.lacanche-pm-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.lacanche-dashboard__grid {
		grid-template-columns: 1fr;
	}

	.lacanche-pm-grid {
		grid-template-columns: 1fr;
	}

	.lacanche-pm-card__number {
		font-size: 15px;
		gap: 7px;
	}
}

/* ── My Account orders pagination ── */
.lacanche-orders-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 24px;
}

.lacanche-orders-pagination__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 20px;
	border: 1.5px solid #203B44;
	border-radius: 24px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #203B44;
	text-decoration: none;
	background: transparent;
	transition: background 0.2s, color 0.2s;
	cursor: pointer;
	white-space: nowrap;
}

.lacanche-orders-pagination__btn:hover {
	background: #203B44;
	color: #fff;
}

.lacanche-orders-pagination__btn--disabled {
	border-color: #C9CFD2;
	color: #C9CFD2;
	cursor: default;
	pointer-events: none;
}

.lacanche-orders-pagination__info {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: #77878F;
}

/* ── Shop tab pagination ── */
.woo-tabs__pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 40px 0 16px;
	flex-wrap: wrap;
}

.woo-tabs__page-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border: 1px solid #d4c9b5;
	background: #fff;
	color: rgb(var(--dark-maroon));
	font-family: 'Inter', sans-serif;
	font-size: 0.85rem;
	cursor: pointer;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
	border-radius: 3px;
}

.woo-tabs__page-btn:hover:not(:disabled) {
	background: rgb(var(--dark-maroon));
	color: #fff;
	border-color: rgb(var(--dark-maroon));
}

.woo-tabs__page-btn--active {
	background: #953112;
	color: #fff;
	border-color: #953112;
	font-weight: 600;
	pointer-events: none;
}

.woo-tabs__page-btn:disabled {
	opacity: 0.35;
	cursor: default;
}
