/**
 * B-Glamorous — Global Styles
 *
 * Dark luxury theme overrides for WooCommerce and base elements.
 */

/* Smooth scrolling + header scroll offset */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 64px;
}

/* ── Header gap fix ─────────────────────────────────────── */
.wp-site-blocks {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

body:not(.home) .wp-block-template-part[data-area="header"] + * {
	margin-top: 0 !important;
}

/* Reduce top/bottom padding on non-home page main blocks */
body:not(.home) main.wp-block-group {
	padding-top: 2rem !important;
	padding-bottom: 2rem !important;
}

/* Sticky footer — page always fills viewport */
html, body {
	height: 100%;
}

.wp-site-blocks {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.wp-site-blocks > main {
	flex: 1 0 auto;
}

footer.wp-block-template-part,
.wp-site-blocks > footer {
	flex-shrink: 0;
	margin-top: auto;
}

/* Body defaults */
body {
	background-color: var(--wp--preset--color--background);
	color: var(--wp--preset--color--text);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
	background-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
}

/* Focus outlines */
:focus-visible {
	outline: 2px solid var(--wp--preset--color--primary);
	outline-offset: 2px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--wp--preset--color--background);
}

::-webkit-scrollbar-thumb {
	background: var(--wp--preset--color--primary);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--wp--preset--color--primary-hover);
}

/* Firefox scrollbar */
* {
	scrollbar-width: thin;
	scrollbar-color: var(--wp--preset--color--primary) var(--wp--preset--color--background);
}

/* ─── WooCommerce Overrides ─── */

/* Buttons */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .button,
.wc-block-components-button {
	background-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
	border: none;
	border-radius: var(--wp--custom--border-radius--md);
	font-family: var(--wp--preset--font-family--body);
	font-weight: 500;
	font-size: var(--wp--preset--font-size--sm);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 12px 24px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .button:hover,
.wc-block-components-button:hover {
	background-color: var(--wp--preset--color--primary-hover);
	color: var(--wp--preset--color--white);
}

/* Alt buttons */
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
	background-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
	background-color: var(--wp--preset--color--primary-hover);
	color: var(--wp--preset--color--white);
}

/* Form inputs — dark theme */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.wc-block-components-text-input input,
.wc-block-components-textarea,
.wc-block-components-select .wc-block-components-select__container select {
	background-color: var(--wp--preset--color--surface);
	color: var(--wp--preset--color--text);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--wp--custom--border-radius--sm);
	padding: 10px 14px;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
	border-color: var(--wp--preset--color--primary);
	outline: none;
}

/* Labels */
.woocommerce form .form-row label,
.wc-block-components-text-input label {
	color: var(--wp--preset--color--text-muted);
}

/* Price */
.woocommerce .price,
.wc-block-components-product-price {
	font-family: var(--wp--preset--font-family--mono);
	color: var(--wp--preset--color--primary);
	font-weight: 500;
}

/* Sale badge */
.woocommerce .onsale,
.wc-block-components-product-sale-badge {
	background-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
	border-radius: var(--wp--custom--border-radius--sm);
	font-family: var(--wp--preset--font-family--body);
	font-weight: 500;
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.05em;
}

/* Product title in grid */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.wc-block-components-product-name {
	color: var(--wp--preset--color--text);
	font-family: var(--wp--preset--font-family--body);
	font-weight: 400;
}

/* Star rating */
.woocommerce .star-rating span::before {
	color: var(--wp--preset--color--primary);
}

/* Notices */
.woocommerce-message,
.woocommerce-info {
	background-color: var(--wp--preset--color--surface);
	border-top-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--text);
}

.woocommerce-error {
	background-color: var(--wp--preset--color--surface);
	border-top-color: #e74c3c;
	color: var(--wp--preset--color--text);
}

/* Tables */
.woocommerce table.shop_table {
	background-color: var(--wp--preset--color--surface);
	border-color: var(--wp--preset--color--border);
	color: var(--wp--preset--color--text);
}

.woocommerce table.shop_table th {
	color: var(--wp--preset--color--text-muted);
	border-color: var(--wp--preset--color--border);
}

.woocommerce table.shop_table td {
	border-color: var(--wp--preset--color--border);
}

/* Out of stock badge */
.woocommerce .outofstock .stock,
.woocommerce span.out-of-stock {
	color: var(--wp--preset--color--text-muted);
	font-family: var(--wp--preset--font-family--mono);
	font-size: var(--wp--preset--font-size--xs);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* Breadcrumbs */
.woocommerce .woocommerce-breadcrumb {
	color: var(--wp--preset--color--text-dim);
	font-size: var(--wp--preset--font-size--sm);
}

.woocommerce .woocommerce-breadcrumb a {
	color: var(--wp--preset--color--text-muted);
}

.woocommerce .woocommerce-breadcrumb a:hover {
	color: var(--wp--preset--color--primary);
}

/* Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background-color: var(--wp--preset--color--surface);
	border-color: var(--wp--preset--color--border);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	background-color: var(--wp--preset--color--background);
	border-bottom-color: var(--wp--preset--color--background);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	color: var(--wp--preset--color--text-muted);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: var(--wp--preset--color--text);
}

/* Quantity input */
.woocommerce .quantity .qty {
	background-color: var(--wp--preset--color--surface);
	color: var(--wp--preset--color--text);
	border-color: var(--wp--preset--color--border);
}

/* Mini cart */
.wc-block-mini-cart__badge {
	background-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
}

/* ─── Homepage Sections ─── */

/* Hero */
.hero-section {
	position: relative;
}

.hero-section .wp-block-cover__inner-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.wp-block-cover .hero-cta a {
	transition: all 0.2s ease;
}

.wp-block-cover .hero-cta a:hover {
	background: #d4306a !important;
	transform: translateY(-2px);
}

/* Hero subheading backdrop */
.hero-subheading {
	background: rgba(0,0,0,0.5) !important;
	padding: 8px 20px !important;
	border-radius: 4px;
	width: fit-content;
	margin-left: auto !important;
	margin-right: auto !important;
}

/* Scroll indicator */
.scroll-chevron {
	animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
	40% { transform: translateY(8px); }
	60% { transform: translateY(4px); }
}

/* Category cards */
.category-card {
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s ease;
	border-radius: 12px !important;
}

.category-card .wp-block-cover__image-background {
	transition: transform 0.4s ease;
}

.category-card:hover .wp-block-cover__image-background {
	transform: scale(1.05);
}

.category-card .wp-block-cover__inner-container {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 100%;
	padding-bottom: 20px !important;
	padding-left: 20px !important;
	background: none !important;
}

.category-card h3,
.category-card h3 a {
	color: #ffffff !important;
	font-weight: 700 !important;
	text-shadow:
		0 2px 8px rgba(150,30,75,0.95),
		0 4px 16px rgba(150,30,75,0.7),
		0 1px 3px rgba(0,0,0,0.95);
}

.category-card p {
	color: #ffffff !important;
	background: none !important;
	text-shadow:
		0 1px 4px rgba(150,30,75,0.9),
		0 1px 2px rgba(0,0,0,0.95);
}

/* Promo banner */
.promo-cta a {
	color: #ffffff !important;
	border: 2px solid #ffffff !important;
	background: transparent !important;
	transition: all 0.2s ease;
}

.promo-cta a:hover {
	background-color: #ffffff !important;
	color: #E8417A !important;
}

/* Product cards in grid */
.wc-block-grid__product,
.wp-block-woocommerce-product-template .wc-block-product {
	background: #161616;
	border: 1px solid #2a2a2a;
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wc-block-grid__product:hover,
.wp-block-woocommerce-product-template .wc-block-product:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.wc-block-grid__product .wc-block-grid__product-image img {
	aspect-ratio: 3/4;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.wc-block-grid__product:hover .wc-block-grid__product-image img {
	transform: scale(1.03);
}

/* Sale price styling */
.woocommerce del,
.wc-block-components-product-price del {
	color: var(--wp--preset--color--text-muted);
	opacity: 0.6;
}

.woocommerce ins,
.wc-block-components-product-price ins {
	text-decoration: none;
	color: var(--wp--preset--color--primary);
}

/* Marquee */
@keyframes marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.marquee-inner {
	display: flex;
	animation: marquee 30s linear infinite;
	width: max-content;
}

.marquee-inner:hover {
	animation-play-state: paused;
}

.marquee-text {
	color: #ffffff;
	font-family: var(--wp--preset--font-family--body);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	white-space: nowrap;
}

/* ─── Shop Page ─── */

/* Shop header bar */
.bglam-shop-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 32px;
	padding-bottom: 20px;
	border-bottom: 1px solid #2a2a2a;
}

.shop-header-left {}

.shop-title {
	font-family: var(--wp--preset--font-family--display);
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 4px;
}

.shop-count {
	font-family: var(--wp--preset--font-family--body);
	font-size: 13px;
	color: #888;
	margin: 0;
}

.shop-header-right {
	display: flex;
	gap: 8px;
	align-items: center;
}

.bglam-filter-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	height: 40px;
	padding: 0 16px;
	background: #161616;
	border: 1px solid #2a2a2a;
	border-radius: 4px;
	color: #f0f0f0;
	font-family: var(--wp--preset--font-family--body);
	font-size: 13px;
	cursor: pointer;
	transition: border-color 0.2s;
}

.bglam-filter-btn:hover {
	border-color: #E8417A;
}

.filter-icon {
	color: #E8417A;
	font-size: 14px;
}

.bglam-sort-select {
	height: 40px;
	padding: 0 12px;
	background: #161616;
	border: 1px solid #2a2a2a;
	border-radius: 4px;
	color: #f0f0f0;
	font-family: var(--wp--preset--font-family--body);
	font-size: 13px;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='%23888'%3E%3Cpath d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 32px;
}

.bglam-sort-select:hover {
	border-color: #E8417A;
}

.bglam-sort-select option {
	background: #161616;
	color: #f0f0f0;
}

/* Filter drawer overlay */
.bglam-filter-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.7);
	z-index: 998;
	backdrop-filter: blur(2px);
}

.bglam-filter-overlay.active {
	display: block;
}

/* Filter drawer */
.bglam-filter-drawer {
	position: fixed;
	top: 0;
	left: -360px;
	width: 340px;
	height: 100vh;
	background: #161616;
	border-right: 1px solid #2a2a2a;
	z-index: 999;
	transition: left 0.3s ease;
	overflow-y: auto;
	padding: 24px;
}

.bglam-filter-drawer.active {
	left: 0;
}

.filter-drawer-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid #2a2a2a;
	font-family: var(--wp--preset--font-family--display);
	font-size: 18px;
	color: #f0f0f0;
}

.filter-close {
	background: none;
	border: none;
	color: #888;
	font-size: 18px;
	cursor: pointer;
	padding: 4px 8px;
}

.filter-close:hover {
	color: #f0f0f0;
}

.filter-section {
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid #1e1e1e;
}

.filter-section h4 {
	font-family: var(--wp--preset--font-family--body);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #888;
	margin: 0 0 16px;
}

/* Category list in drawer */
.bglam-category-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.bglam-category-list li {
	padding: 8px 0;
	border-bottom: 1px solid #1e1e1e;
}

.bglam-category-list li a {
	color: #c0c0c0;
	text-decoration: none;
	font-family: var(--wp--preset--font-family--body);
	font-size: 14px;
	display: flex;
	justify-content: space-between;
	transition: color 0.2s;
}

.bglam-category-list li a:hover {
	color: #E8417A;
}

.bglam-category-list li a .cat-count {
	color: #555;
	font-size: 12px;
}

/* Toggle switch */
.bglam-toggle {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	color: #f0f0f0;
	font-family: var(--wp--preset--font-family--body);
	font-size: 14px;
}

.bglam-toggle input {
	display: none;
}

.toggle-slider {
	width: 44px;
	height: 24px;
	background: #2a2a2a;
	border-radius: 12px;
	position: relative;
	transition: background 0.2s;
	flex-shrink: 0;
}

.toggle-slider::after {
	content: '';
	position: absolute;
	width: 18px;
	height: 18px;
	background: #888;
	border-radius: 50%;
	top: 3px;
	left: 3px;
	transition: all 0.2s;
}

.bglam-toggle input:checked + .toggle-slider {
	background: #E8417A;
}

.bglam-toggle input:checked + .toggle-slider::after {
	left: 23px;
	background: #fff;
}

/* Filter category links */
.filter-cat-list {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.filter-cat-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 12px;
	border-radius: 4px;
	text-decoration: none;
	color: #aaa;
	font-size: 14px;
	transition: all 0.15s;
	cursor: pointer;
}

.filter-cat-link:hover {
	background: #1e1e1e;
	color: #f0f0f0;
}

.filter-cat-link.active {
	background: rgba(232,65,122,0.12);
	color: #E8417A;
	font-weight: 500;
}

.cat-count {
	font-size: 11px;
	color: #555;
	background: #1e1e1e;
	padding: 2px 8px;
	border-radius: 20px;
}

.filter-cat-link.active .cat-count {
	background: rgba(232,65,122,0.2);
	color: #E8417A;
}

/* Price range inputs */
.filter-price-inputs {
	display: flex;
	align-items: center;
	gap: 12px;
}

.price-input-group {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.price-input-group label {
	font-size: 10px !important;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #555 !important;
}

.price-input-group input {
	background: #0d0d0d !important;
	border: 1px solid #2a2a2a !important;
	color: #f0f0f0 !important;
	border-radius: 4px !important;
	height: 40px !important;
	padding: 0 12px !important;
	font-size: 14px !important;
	width: 100% !important;
}

.price-input-group input:focus {
	border-color: #E8417A !important;
	outline: none !important;
}

.price-separator {
	color: #444;
	margin-top: 20px;
	flex-shrink: 0;
}

/* Filter footer */
.filter-footer {
	display: flex;
	gap: 12px;
	margin-top: 8px;
}

.filter-apply {
	flex: 1;
	height: 48px;
	background: #E8417A;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-family: var(--wp--preset--font-family--body);
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transition: background 0.2s;
}

.filter-apply:hover {
	background: #d4306a;
}

.filter-reset {
	height: 48px;
	padding: 0 16px;
	background: transparent;
	color: #888;
	border: 1px solid #2a2a2a;
	border-radius: 4px;
	font-family: var(--wp--preset--font-family--body);
	font-size: 13px;
	cursor: pointer;
	transition: all 0.2s;
}

.filter-reset:hover {
	color: #f0f0f0;
	border-color: #444;
}

/* Shop grid layout */
.woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 16px !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

@media (max-width: 1024px) {
	.woocommerce ul.products {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 480px) {
	.woocommerce ul.products {
		grid-template-columns: 1fr !important;
		gap: 12px !important;
	}
}

/* Product card */
.woocommerce ul.products li.product {
	background: #161616 !important;
	border: 1px solid #2a2a2a !important;
	border-radius: 8px !important;
	overflow: hidden !important;
	margin: 0 !important;
	width: 100% !important;
	min-width: 0 !important;
	position: relative;
	transition: border-color 0.2s, transform 0.2s !important;
}

.woocommerce ul.products li.product a.woocommerce-loop-product__link {
	display: block !important;
	width: 100% !important;
}

.woocommerce ul.products li.product:hover {
	border-color: #E8417A !important;
	transform: translateY(-2px) !important;
}

/* Product image */
.woocommerce ul.products li.product a img,
.wc-block-grid__product-image img {
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 3/4 !important;
	object-fit: cover !important;
	display: block !important;
	border-radius: 6px 6px 0 0 !important;
	transition: transform 0.4s ease !important;
}

.woocommerce ul.products li.product:hover a img {
	transform: scale(1.04) !important;
}

/* Product info area */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.wc-block-grid__product-title {
	font-family: var(--wp--preset--font-family--body) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	color: #f0f0f0 !important;
	padding: 14px 14px 4px !important;
	margin: 0 !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}

/* Price */
.woocommerce ul.products li.product .price,
.wc-block-grid__product-price {
	font-family: var(--wp--preset--font-family--mono) !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	color: #E8417A !important;
	padding: 0 14px 10px !important;
	display: block !important;
}

.woocommerce ul.products li.product .price del {
	color: #555 !important;
	font-size: 12px !important;
	margin-right: 6px !important;
}

.woocommerce ul.products li.product .price ins {
	text-decoration: none !important;
	color: #E8417A !important;
}

/* Add to cart button */
.woocommerce ul.products li.product .button,
.wc-block-grid__product-add-to-cart .wp-block-button__link {
	display: block !important;
	width: calc(100% - 28px) !important;
	margin: 0 14px 14px !important;
	height: 40px !important;
	line-height: 40px !important;
	background: #E8417A !important;
	color: #fff !important;
	border: none !important;
	border-radius: 4px !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	text-align: center !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	cursor: pointer !important;
	transition: background 0.2s !important;
	padding: 0 !important;
}

.woocommerce ul.products li.product .button:hover {
	background: #d4306a !important;
	color: #fff !important;
}

/* "Read more" → "Add to Cart" text override */
.woocommerce ul.products li.product .button.product_type_variable,
.woocommerce ul.products li.product .button.product_type_simple:not(.add_to_cart_button) {
	font-size: 0 !important;
}

.woocommerce ul.products li.product .button.product_type_variable::after,
.woocommerce ul.products li.product .button.product_type_simple:not(.add_to_cart_button)::after {
	content: 'VIEW OPTIONS' !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	letter-spacing: 0.08em !important;
}

/* Ensure name and price are always visible */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	height: auto !important;
	overflow: visible !important;
}

/* Sale badge */
.woocommerce ul.products li.product .onsale {
	background: #E8417A !important;
	color: #fff !important;
	font-size: 10px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.1em !important;
	border-radius: 2px !important;
	padding: 3px 8px !important;
	top: 10px !important;
	left: 10px !important;
	right: auto !important;
	min-height: auto !important;
	min-width: auto !important;
	line-height: 1.4 !important;
}

/* Out of stock */
.woocommerce ul.products li.product.outofstock {
	opacity: 0.55 !important;
}

.woocommerce ul.products li.product.outofstock::after {
	content: 'Sold Out';
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(0,0,0,0.8);
	color: #888;
	font-family: var(--wp--preset--font-family--body);
	font-size: 10px;
	padding: 3px 8px;
	border-radius: 2px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	z-index: 1;
}

/* Price slider in drawer */
.bglam-filter-drawer .price_slider_wrapper .ui-slider {
	background: #2a2a2a;
	border: none;
	height: 4px;
	border-radius: 2px;
	margin: 16px 0;
}

.bglam-filter-drawer .price_slider_wrapper .ui-slider-range {
	background: #E8417A;
}

.bglam-filter-drawer .price_slider_wrapper .ui-slider-handle {
	background: #E8417A;
	border: 2px solid #fff;
	border-radius: 50%;
	width: 16px;
	height: 16px;
	top: -6px;
	cursor: pointer;
}

.bglam-filter-drawer .price_slider_amount {
	color: #888;
	font-size: 13px;
	display: flex;
	justify-content: space-between;
	margin-top: 8px;
}

.bglam-filter-drawer .price_slider_amount .button {
	background: #E8417A !important;
	color: #fff !important;
	border: none !important;
	padding: 6px 16px !important;
	border-radius: 4px !important;
	font-size: 12px !important;
	cursor: pointer !important;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination ul {
	display: flex;
	gap: 8px;
	justify-content: center;
	list-style: none;
	padding: 48px 0 32px;
	margin: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #161616;
	border: 1px solid #2a2a2a;
	border-radius: 4px;
	color: #888;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.2s;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
	border-color: #E8417A;
	color: #E8417A;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
	background: #E8417A;
	border-color: #E8417A;
	color: #fff;
}

/* Block-based product grid — override WooCommerce flex layout */
.bglam-product-grid .wc-block-product-template,
.bglam-product-grid .wc-block-product-template.is-flex-container,
.bglam-product-grid .wc-block-product-template.is-flex-container.columns-4 {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 16px !important;
	flex-wrap: unset !important;
}

.bglam-product-grid .wc-block-product-template > li,
.bglam-product-grid .wc-block-product-template.is-flex-container.columns-4 > li {
	width: 100% !important;
	min-width: 0 !important;
	max-width: 100% !important;
	margin: 0 !important;
}

@media (max-width: 1024px) {
	.bglam-product-grid .wc-block-product-template,
	.bglam-product-grid .wc-block-product-template.is-flex-container,
	.bglam-product-grid .wc-block-product-template.is-flex-container.columns-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 480px) {
	.bglam-product-grid .wc-block-product-template,
	.bglam-product-grid .wc-block-product-template.is-flex-container,
	.bglam-product-grid .wc-block-product-template.is-flex-container.columns-4 {
		grid-template-columns: 1fr !important;
		gap: 12px !important;
	}
}

/* Product card — block theme */
.bglam-product-card {
	overflow: hidden;
	width: 100% !important;
	min-width: 0 !important;
	transition: border-color 0.2s, transform 0.2s;
}

.bglam-product-card:hover {
	border-color: #E8417A !important;
	transform: translateY(-2px);
}

.bglam-product-card .wc-block-components-product-image,
.bglam-product-card .wc-block-components-product-image a {
	display: block !important;
	width: 100% !important;
}

.bglam-product-card img {
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 3/4;
	object-fit: cover !important;
	transition: transform 0.4s ease !important;
}

.bglam-product-card:hover img {
	transform: scale(1.04);
}

/* Block card — "Read more" → "View Options" */
.bglam-product-card .wc-block-components-product-button__button[href*="product"] {
	font-size: 0 !important;
}

.bglam-product-card .wc-block-components-product-button__button[href*="product"]::after {
	content: 'VIEW OPTIONS' !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	letter-spacing: 0.08em !important;
}

/* Product button in block grid */
.bglam-product-card .wp-block-woocommerce-product-button {
	padding: 0 12px 12px;
}

.bglam-product-card .wp-block-woocommerce-product-button .wp-block-button__link,
.bglam-product-card .wc-block-components-product-button__button {
	display: block !important;
	width: 100% !important;
	height: 40px !important;
	line-height: 40px !important;
	background: #E8417A !important;
	color: #fff !important;
	border: none !important;
	border-radius: 4px !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	text-align: center !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	padding: 0 !important;
	cursor: pointer !important;
	transition: background 0.2s !important;
}

.bglam-product-card .wp-block-woocommerce-product-button .wp-block-button__link:hover,
.bglam-product-card .wc-block-components-product-button__button:hover {
	background: #d4306a !important;
}

/* Breadcrumbs — shop */
.woocommerce .woocommerce-breadcrumb {
	color: #555 !important;
	font-size: 12px !important;
	padding: 16px 0 !important;
	margin-bottom: 24px !important;
}

.woocommerce .woocommerce-breadcrumb a {
	color: #888 !important;
	text-decoration: none !important;
}

.woocommerce .woocommerce-breadcrumb a:hover {
	color: #E8417A !important;
}

/* ─── Single Product Page ─── */

/* Single product layout — single column, width matches header (constrained layout handles max-width) */
.woocommerce div.product {
	display: block !important;
}

/* Product images column */
.woocommerce div.product div.images {
	position: sticky !important;
	top: 88px !important;
	align-self: start !important;
}

/* Main product image */
.woocommerce div.product div.images img {
	width: 100% !important;
	border-radius: 12px !important;
	display: block !important;
}

/* Image gallery thumbnails */
.woocommerce div.product div.images .flex-control-thumbs {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 8px !important;
	margin-top: 12px !important;
	padding: 0 !important;
}

.woocommerce div.product div.images .flex-control-thumbs li {
	list-style: none !important;
	margin: 0 !important;
}

.woocommerce div.product div.images .flex-control-thumbs img {
	border-radius: 6px !important;
	border: 2px solid transparent !important;
	cursor: pointer !important;
	transition: border-color 0.2s !important;
	aspect-ratio: 1 !important;
	object-fit: cover !important;
}

.woocommerce div.product div.images .flex-control-thumbs img:hover,
.woocommerce div.product div.images .flex-control-thumbs img.flex-active {
	border-color: #E8417A !important;
}

/* Product summary column */
.woocommerce div.product div.summary {
	padding: 0 !important;
}

/* Product title */
.woocommerce div.product .product_title {
	font-family: var(--wp--preset--font-family--display) !important;
	font-size: 32px !important;
	font-weight: 700 !important;
	color: #f0f0f0 !important;
	line-height: 1.2 !important;
	margin-bottom: 16px !important;
}

/* SKU */
.woocommerce div.product .sku_wrapper {
	font-size: 11px !important;
	color: #555 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.1em !important;
	margin-bottom: 16px !important;
	display: block !important;
}

/* Price */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	font-family: var(--wp--preset--font-family--mono) !important;
	font-size: 28px !important;
	font-weight: 700 !important;
	color: #E8417A !important;
	margin-bottom: 24px !important;
	display: block !important;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
	color: #444 !important;
	font-size: 18px !important;
	margin-right: 12px !important;
}

/* Sale badge on product page */
.woocommerce div.product span.onsale {
	background: #E8417A !important;
	color: #fff !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.1em !important;
	padding: 4px 12px !important;
	border-radius: 2px !important;
	top: 16px !important;
	left: 16px !important;
}

/* Short description */
.woocommerce div.product .woocommerce-product-details__short-description {
	font-size: 15px !important;
	line-height: 1.7 !important;
	color: #aaa !important;
	margin-bottom: 24px !important;
	border-top: 1px solid #1e1e1e !important;
	border-bottom: 1px solid #1e1e1e !important;
	padding: 16px 0 !important;
}

/* Quantity input */
.woocommerce div.product form.cart .quantity input {
	background: #161616 !important;
	border: 1px solid #2a2a2a !important;
	color: #f0f0f0 !important;
	border-radius: 4px !important;
	height: 52px !important;
	width: 70px !important;
	text-align: center !important;
	font-size: 16px !important;
	padding: 0 !important;
}

/* Add to cart button — product page */
.woocommerce div.product form.cart .single_add_to_cart_button {
	background: #E8417A !important;
	color: #fff !important;
	border: none !important;
	border-radius: 4px !important;
	height: 52px !important;
	padding: 0 32px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.1em !important;
	cursor: pointer !important;
	transition: background 0.2s, transform 0.1s !important;
	flex: 1 !important;
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
	background: #d4306a !important;
	transform: translateY(-1px) !important;
}

/* Cart form layout */
.woocommerce div.product form.cart {
	display: flex !important;
	gap: 12px !important;
	align-items: center !important;
	margin-bottom: 24px !important;
}

/* Product meta (category, tags) */
.woocommerce div.product .product_meta {
	font-size: 12px !important;
	color: #555 !important;
	border-top: 1px solid #1e1e1e !important;
	padding-top: 16px !important;
	margin-top: 16px !important;
}

.woocommerce div.product .product_meta a {
	color: #E8417A !important;
	text-decoration: none !important;
}

.woocommerce div.product .product_meta a:hover {
	color: #d4306a !important;
}

/* Variation swatches — size/colour dropdowns */
.woocommerce div.product .variations {
	width: 100% !important;
	margin-bottom: 20px !important;
	border: none !important;
}

.woocommerce div.product .variations td,
.woocommerce div.product .variations th {
	padding: 4px 0 12px !important;
	border: none !important;
	background: none !important;
}

.woocommerce div.product .variations label {
	font-size: 11px !important;
	text-transform: uppercase !important;
	letter-spacing: 0.1em !important;
	color: #888 !important;
}

.woocommerce div.product .variations select {
	background: #161616 !important;
	border: 1px solid #2a2a2a !important;
	color: #f0f0f0 !important;
	border-radius: 4px !important;
	height: 44px !important;
	padding: 0 16px !important;
	font-size: 14px !important;
	width: 100% !important;
}

.woocommerce div.product .reset_variations {
	color: #555 !important;
	font-size: 12px !important;
}

/* Tabs (description, additional info) */
.woocommerce div.product .woocommerce-tabs {
	grid-column: 1 / -1 !important;
	margin-top: 48px !important;
	border-top: 1px solid #1e1e1e !important;
	padding-top: 32px !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: flex !important;
	gap: 0 !important;
	border-bottom: 1px solid #2a2a2a !important;
	padding: 0 !important;
	margin: 0 0 24px !important;
	list-style: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: none !important;
	border: none !important;
	border-bottom: 2px solid transparent !important;
	padding: 0 !important;
	margin: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	font-size: 15px !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.1em !important;
	color: #666 !important;
	padding: 12px 24px !important;
	display: block !important;
	text-decoration: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	border-bottom: 2px solid #E8417A !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: #f0f0f0 !important;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
	display: none !important;
}

.woocommerce div.product .woocommerce-tabs .panel {
	background: none !important;
	color: #aaa !important;
	font-size: 15px !important;
	line-height: 1.7 !important;
	padding: 0 !important;
	border: none !important;
}

/* Related products */
.woocommerce .related {
	grid-column: 1 / -1 !important;
	margin-top: 48px !important;
}

.woocommerce .related h2 {
	font-family: var(--wp--preset--font-family--display) !important;
	font-size: 28px !important;
	color: #f0f0f0 !important;
	margin-bottom: 24px !important;
}

/* =============================================
   Single product — mobile-first layout
   ============================================= */

/* Share buttons: more visible, horizontal layout */
.single-product .bglam-share-label {
  display: inline !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: #888 !important;
  margin-right: 0.25rem !important;
}
.single-product .bglam-share-buttons {
  display: flex !important;
  flex-direction: row !important;
  gap: 0.5rem !important;
  margin-top: 1rem !important;
}
.single-product .bglam-share-buttons a,
.single-product .bglam-share-buttons button {
  background: #1a1a1a !important;
  border: 1px solid #E8417A !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.2s, border-color 0.2s !important;
}
.single-product .bglam-share-buttons a:hover,
.single-product .bglam-share-buttons button:hover {
  background: #E8417A !important;
  border-color: #E8417A !important;
}
.single-product .bglam-share-buttons svg {
  width: 18px !important;
  height: 18px !important;
  fill: #E8417A !important;
}

/* Product image: fill its column completely */
.single-product .woocommerce-product-gallery,
.single-product .wc-block-components-product-image {
	width: 100% !important;
}

/* Single product image: preserve natural aspect ratio */
.single-product .woocommerce-product-gallery__image img,
.single-product .wc-block-components-product-image img {
	width: 100% !important;
	height: auto !important;
	object-fit: contain !important;
	display: block !important;
}

/* Mobile: edge-to-edge, no radius */
@media (max-width: 767px) {
	.single-product .woocommerce-product-gallery__image img,
	.single-product .wc-block-components-product-image img {
		border-radius: 0 !important;
	}
}

/* Desktop: slight radius */
@media (min-width: 768px) {
	.single-product .woocommerce-product-gallery__image img,
	.single-product .wc-block-components-product-image img {
		border-radius: 4px !important;
	}
}

/* Product info column: comfortable mobile padding */
@media (max-width: 767px) {
	.single-product .wp-block-woocommerce-product-price,
	.single-product .wp-block-woocommerce-add-to-cart-form,
	.single-product .wp-block-woocommerce-product-summary,
	.single-product .wp-block-post-title {
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}
}

/* Zoom/lightbox trigger button — visible, branded */
.woocommerce-product-gallery__trigger {
	background: rgba(13,13,13,0.75) !important;
	border-radius: 50% !important;
	width: 36px !important;
	height: 36px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}
.woocommerce-product-gallery__trigger img,
.woocommerce-product-gallery__trigger svg {
	filter: invert(1) !important;
	width: 18px !important;
	height: 18px !important;
}

/* WC native lightbox dialog — full dark overlay */
dialog.wc-block-components-product-image__dialog,
.wc-block-product-gallery-large-image-next-previous-dialog {
	background: rgba(0,0,0,0.95) !important;
	width: 100vw !important;
	height: 100vh !important;
	max-width: 100vw !important;
	max-height: 100vh !important;
	padding: 1rem !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}
dialog.wc-block-components-product-image__dialog img {
	max-width: 100% !important;
	max-height: 90vh !important;
	width: auto !important;
	height: auto !important;
	object-fit: contain !important;
}

/* Lightbox close button — easy to tap on mobile (44px min) */
dialog.wc-block-components-product-image__dialog button[aria-label="Close"],
dialog.wc-block-components-product-image__dialog .wc-block-product-gallery-dialog__close {
	position: fixed !important;
	top: 1rem !important;
	right: 1rem !important;
	color: #f0f0f0 !important;
	background: rgba(13,13,13,0.85) !important;
	border: 1px solid #2a2a2a !important;
	border-radius: 50% !important;
	width: 44px !important;
	height: 44px !important;
	min-width: 44px !important;
	min-height: 44px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-size: 1.2rem !important;
	cursor: pointer !important;
	z-index: 9999 !important;
}

/* --- Product summary column styling --- */

.single-product .bglam-product-summary {
  width: 100% !important;
  min-width: 0 !important;
  padding: 0 1rem !important;
}

/* --- Product details (middle) column styling --- */
.single-product .bglam-product-details {
  width: 100% !important;
  min-width: 0 !important;
  padding: 0 1rem !important;
}

.bglam-product-summary .wp-block-woocommerce-product-price {
	margin-bottom: 16px;
}

.bglam-product-summary .wp-block-woocommerce-add-to-cart-form {
	margin-bottom: 24px;
}

.bglam-product-summary .wp-block-woocommerce-add-to-cart-form input[type="number"] {
	background: #161616 !important;
	border: 1px solid #2a2a2a !important;
	color: #f0f0f0 !important;
	border-radius: 4px !important;
	height: 52px !important;
	width: 70px !important;
	text-align: center !important;
	font-size: 16px !important;
}

.bglam-product-summary .wp-block-woocommerce-add-to-cart-form .wc-block-components-product-button__button,
.bglam-product-summary .wp-block-woocommerce-add-to-cart-form button[type="submit"] {
	background: #E8417A !important;
	color: #fff !important;
	border: none !important;
	border-radius: 4px !important;
	height: 52px !important;
	padding: 0 32px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.1em !important;
	cursor: pointer !important;
	transition: background 0.2s, transform 0.1s !important;
	flex: 1 !important;
}

.bglam-product-summary .wp-block-woocommerce-add-to-cart-form .wc-block-components-product-button__button:hover,
.bglam-product-summary .wp-block-woocommerce-add-to-cart-form button[type="submit"]:hover {
	background: #d4306a !important;
	transform: translateY(-1px) !important;
}

.bglam-product-summary select {
	background: #161616 !important;
	border: 1px solid #2a2a2a !important;
	color: #f0f0f0 !important;
	border-radius: 4px !important;
	height: 44px !important;
	padding: 0 16px !important;
	font-size: 14px !important;
	width: 100% !important;
}

.bglam-product-summary label {
	font-size: 11px !important;
	text-transform: uppercase !important;
	letter-spacing: 0.1em !important;
	color: #888 !important;
}

/* Desktop: no max-width cap on summary or details columns */
@media (min-width: 1200px) {
  .single-product .bglam-product-summary,
  .single-product .bglam-product-details {
    max-width: 100% !important;
  }
}

.wp-block-woocommerce-product-meta {
	border-top: 1px solid #1e1e1e;
	padding-top: 16px;
	margin-top: 16px;
	font-size: 12px;
}

.wp-block-woocommerce-product-meta a {
	color: #E8417A !important;
	text-decoration: none !important;
}

.wp-block-woocommerce-product-meta a:hover {
	color: #d4306a !important;
}

/* Product details block — inside middle column on desktop */
.wp-block-woocommerce-product-details {
	margin-top: 0 !important;
	border-top: none;
	padding-top: 0;
}

.bglam-product-details .wp-block-woocommerce-product-details .wc-block-components-tab-panel__tab-content {
	font-size: 14px !important;
	line-height: 1.7 !important;
	color: #ccc !important;
}

/* Related products — subtle, smaller tiles */
.wp-block-woocommerce-related-products {
	margin-top: 48px !important;
	padding-top: 32px !important;
	border-top: 1px solid #1e1e1e !important;
}

.wp-block-woocommerce-related-products .wp-block-post-template {
	gap: 12px !important;
}

.wp-block-woocommerce-related-products .wp-block-post-template li {
	max-width: 140px !important;
}

/* Mobile: 3 columns stack to single column */
@media (max-width: 768px) {
	.bglam-product-layout.wp-block-columns {
		flex-direction: column !important;
	}

	.bglam-product-images.wp-block-column,
	.bglam-product-details.wp-block-column,
	.bglam-product-summary.wp-block-column {
		flex: none !important;
		max-width: 100% !important;
		width: 100% !important;
	}

	/* On mobile, details go below summary — reorder */
	.bglam-product-images.wp-block-column { order: 1; }
	.bglam-product-summary.wp-block-column { order: 2; }
	.bglam-product-details.wp-block-column { order: 3; }
}

/* Share row */
.bglam-share-row {
	display: flex;
	gap: 12px;
	align-items: center;
	margin: 16px 0;
	padding: 16px 0;
	border-top: 1px solid #1e1e1e;
}

.bglam-share-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #555;
}
/* =============================================
   End single product
   ============================================= */

.bglam-share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 10px;
	min-width: 36px;
	border-radius: 4px;
	text-decoration: none;
	cursor: pointer;
	border: 1px solid #E8417A;
	background: #161616;
	color: #E8417A;
	transition: all 0.2s;
	line-height: 0;
}

.bglam-share-btn:hover {
	border-color: #E8417A;
	color: #E8417A;
}

.bglam-share-btn.facebook:hover {
	border-color: #1877F2;
	color: #1877F2;
}

.bglam-share-btn.whatsapp:hover {
	border-color: #25D366;
	color: #25D366;
}

/* Filter drawer — mobile bottom sheet */
@media (max-width: 768px) {
	.bglam-filter-drawer {
		top: auto;
		bottom: -100%;
		left: 0;
		width: 100%;
		height: 80vh;
		border-right: none;
		border-top: 1px solid #2a2a2a;
		border-radius: 16px 16px 0 0;
		transition: bottom 0.3s ease;
	}

	.bglam-filter-drawer.active {
		bottom: 0;
		left: 0;
	}

	.bglam-shop-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.shop-header-right {
		width: 100%;
	}

	.bglam-filter-btn,
	.bglam-sort-select {
		flex: 1;
	}
}

/* ─── WooCommerce Notices ─── */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.wc-block-components-notice-banner {
	border-radius: 6px !important;
	border-left-width: 4px !important;
	padding: 14px 16px !important;
	margin-bottom: 16px !important;
	font-size: 14px !important;
}

.woocommerce-message {
	background: rgba(74,222,128,0.08) !important;
	border-color: #4ade80 !important;
	color: #4ade80 !important;
}

.woocommerce-info {
	background: rgba(96,165,250,0.08) !important;
	border-color: #60a5fa !important;
	color: #60a5fa !important;
}

.woocommerce-error {
	background: rgba(248,113,113,0.08) !important;
	border-color: #f87171 !important;
	color: #f87171 !important;
}

.woocommerce-message a,
.woocommerce-info a {
	color: #E8417A !important;
}

/* Notice banner overflow fix — Points & Rewards text wraps properly */
.wc-block-components-notice-banner,
.woocommerce-info,
.woocommerce-message {
	white-space: normal !important;
	overflow: visible !important;
	box-sizing: border-box !important;
	width: 100% !important;
	max-width: 100% !important;
}

/* ─── Search Results ─── */

.search-results .entry-header h1,
.woocommerce-no-products-found h1 {
	font-family: var(--wp--preset--font-family--display);
	color: #f0f0f0;
	font-size: 28px;
	margin-bottom: 8px;
}

.woocommerce-no-products-found p {
	color: #888;
	font-size: 15px;
	margin-bottom: 24px;
}

/* ─── My Account Page ─── */

.woocommerce-account .woocommerce {
	max-width: 1200px;
	margin: 0 auto;
	padding: 32px 24px;
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 32px;
	align-items: start;
}

@media (max-width: 768px) {
	.woocommerce-account .woocommerce {
		grid-template-columns: 1fr;
	}
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	background: #161616;
	border: 1px solid #2a2a2a;
	border-radius: 8px;
	overflow: hidden;
	position: sticky;
	top: 88px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
	border-bottom: 1px solid #1e1e1e;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
	border-bottom: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
	display: block;
	padding: 14px 20px;
	color: #aaa;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.15s;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
	color: #f0f0f0;
	background: #1e1e1e;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
	color: #E8417A;
	background: rgba(232,65,122,0.08);
	border-left: 3px solid #E8417A;
	padding-left: 17px;
}

.woocommerce-account .woocommerce-MyAccount-content {
	background: #161616;
	border: 1px solid #2a2a2a;
	border-radius: 8px;
	padding: 24px;
	color: #aaa;
	font-size: 14px;
	line-height: 1.7;
}

.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
	font-family: var(--wp--preset--font-family--display);
	color: #f0f0f0;
	margin-bottom: 16px;
}

.woocommerce-account .woocommerce-orders-table {
	width: 100%;
	border-collapse: collapse;
}

.woocommerce-account .woocommerce-orders-table th {
	color: #666;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 8px 12px;
	border-bottom: 1px solid #2a2a2a;
	text-align: left;
}

.woocommerce-account .woocommerce-orders-table td {
	padding: 12px;
	border-bottom: 1px solid #1e1e1e;
	color: #aaa;
	font-size: 14px;
}

.woocommerce-account .woocommerce-orders-table .button {
	background: transparent !important;
	border: 1px solid #E8417A !important;
	color: #E8417A !important;
	border-radius: 4px !important;
	padding: 6px 14px !important;
	font-size: 12px !important;
	cursor: pointer !important;
	transition: all 0.2s !important;
}

.woocommerce-account .woocommerce-orders-table .button:hover {
	background: #E8417A !important;
	color: #fff !important;
}

.woocommerce-account .woocommerce-EditAccountForm input,
.woocommerce-account .woocommerce-address-fields input,
.woocommerce-account .woocommerce-address-fields select {
	background: #0d0d0d !important;
	border: 1px solid #2a2a2a !important;
	color: #f0f0f0 !important;
	border-radius: 4px !important;
	height: 48px !important;
	padding: 0 16px !important;
	font-size: 14px !important;
	width: 100% !important;
}

.woocommerce-account .woocommerce-EditAccountForm input:focus,
.woocommerce-account .woocommerce-address-fields input:focus {
	border-color: #E8417A !important;
	outline: none !important;
}

.woocommerce-account .woocommerce-EditAccountForm .button,
.woocommerce-account .woocommerce-address-fields .button {
	background: #E8417A !important;
	color: #fff !important;
	border: none !important;
	border-radius: 4px !important;
	height: 48px !important;
	padding: 0 24px !important;
	font-size: 14px !important;
	cursor: pointer !important;
	transition: background 0.2s !important;
}

.woocommerce-account .button:hover {
	background: #d4306a !important;
}

/* Order status badges */
.woocommerce-account .woocommerce-orders-table__cell-order-status span {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 3px 10px;
	border-radius: 20px;
}

.woocommerce-account .order-status-processing {
	background: rgba(96,165,250,0.15);
	color: #60a5fa;
}

.woocommerce-account .order-status-completed {
	background: rgba(74,222,128,0.15);
	color: #4ade80;
}

.woocommerce-account .order-status-on-hold {
	background: rgba(251,191,36,0.15);
	color: #fbbf24;
}

.woocommerce-account .order-status-cancelled {
	background: rgba(248,113,113,0.15);
	color: #f87171;
}

/* Login form */
.woocommerce-account .woocommerce-form-login {
	background: #161616;
	border: 1px solid #2a2a2a;
	border-radius: 8px;
	padding: 32px;
	max-width: 480px;
	margin: 0 auto;
}

.woocommerce-account .woocommerce-form-login label {
	color: #888;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.woocommerce-account .woocommerce-form-login input[type="text"],
.woocommerce-account .woocommerce-form-login input[type="password"],
.woocommerce-account .woocommerce-form-login input[type="email"] {
	background: #0d0d0d !important;
	border: 1px solid #2a2a2a !important;
	color: #f0f0f0 !important;
	border-radius: 4px !important;
	height: 48px !important;
	padding: 0 16px !important;
	font-size: 14px !important;
	width: 100% !important;
}

.woocommerce-account .woocommerce-form-login input:focus {
	border-color: #E8417A !important;
	outline: none !important;
}

.woocommerce-account .woocommerce-form-login .button {
	background: #E8417A !important;
	color: #fff !important;
	border: none !important;
	border-radius: 4px !important;
	height: 48px !important;
	width: 100% !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.1em !important;
	cursor: pointer !important;
}

.woocommerce-account .woocommerce-form-login .lost_password a {
	color: #888;
	font-size: 13px;
}

.woocommerce-account .woocommerce-form-login .lost_password a:hover {
	color: #E8417A;
}

/* ─── Cart Page ─── */

.woocommerce-cart .woocommerce {
	max-width: 100%;
	margin: 0 auto;
	padding: 32px 24px;
}

.woocommerce-cart table.shop_table {
	width: 100%;
	border-collapse: collapse;
	background: #161616;
	border: 1px solid #2a2a2a;
	border-radius: 8px;
	overflow: hidden;
}

.woocommerce-cart table.shop_table th {
	background: #1e1e1e;
	color: #888;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 14px 16px;
	border-bottom: 1px solid #2a2a2a;
	font-weight: 500;
}

.woocommerce-cart table.shop_table td {
	padding: 16px;
	border-bottom: 1px solid #1e1e1e;
	color: #f0f0f0;
	vertical-align: middle;
}

.woocommerce-cart table.shop_table tr:last-child td {
	border-bottom: none;
}

.woocommerce-cart table.shop_table td.product-thumbnail img {
	width: 80px;
	height: 100px;
	object-fit: cover;
	border-radius: 6px;
	display: block;
}

.woocommerce-cart table.shop_table td.product-name a {
	color: #f0f0f0;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
}

.woocommerce-cart table.shop_table td.product-name a:hover {
	color: #E8417A;
}

.woocommerce-cart table.shop_table td.product-price,
.woocommerce-cart table.shop_table td.product-subtotal {
	font-family: var(--wp--preset--font-family--mono);
	color: #E8417A;
	font-weight: 700;
}

.woocommerce-cart table.shop_table td.product-remove a {
	color: #444 !important;
	font-size: 18px !important;
	text-decoration: none !important;
	transition: color 0.2s !important;
}

.woocommerce-cart table.shop_table td.product-remove a:hover {
	color: #E8417A !important;
}

.woocommerce-cart table.shop_table td.product-quantity input {
	background: #0d0d0d;
	border: 1px solid #2a2a2a;
	color: #f0f0f0;
	border-radius: 4px;
	height: 40px;
	width: 60px;
	text-align: center;
	font-size: 14px;
}

.woocommerce-cart .actions .button {
	background: #161616 !important;
	border: 1px solid #2a2a2a !important;
	color: #888 !important;
	border-radius: 4px !important;
	height: 44px !important;
	padding: 0 20px !important;
	font-size: 13px !important;
	cursor: pointer !important;
	transition: all 0.2s !important;
}

.woocommerce-cart .actions .button:hover {
	border-color: #444 !important;
	color: #f0f0f0 !important;
}

.woocommerce-cart .coupon input {
	background: #161616 !important;
	border: 1px solid #2a2a2a !important;
	color: #f0f0f0 !important;
	border-radius: 4px !important;
	height: 44px !important;
	padding: 0 16px !important;
	font-size: 14px !important;
}

.woocommerce-cart .cart_totals {
	background: #161616;
	border: 1px solid #2a2a2a;
	border-radius: 8px;
	padding: 24px;
	margin-top: 32px;
}

.woocommerce-cart .cart_totals h2 {
	font-family: var(--wp--preset--font-family--display);
	font-size: 22px;
	color: #f0f0f0;
	margin-bottom: 16px;
}

.woocommerce-cart .cart_totals table {
	width: 100%;
	border-collapse: collapse;
}

.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
	padding: 10px 0;
	border-bottom: 1px solid #1e1e1e;
	color: #aaa;
	font-size: 14px;
}

.woocommerce-cart .cart_totals table .order-total th,
.woocommerce-cart .cart_totals table .order-total td {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 20px;
	font-weight: 700;
	color: #E8417A;
	border-bottom: none;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
	display: block !important;
	width: 100% !important;
	background: #E8417A !important;
	color: #fff !important;
	border: none !important;
	border-radius: 4px !important;
	height: 56px !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.1em !important;
	cursor: pointer !important;
	margin-top: 16px !important;
	transition: background 0.2s !important;
	text-align: center !important;
	line-height: 56px !important;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover {
	background: #d4306a !important;
}

/* WooCommerce block cart overrides */
.wc-block-cart .wc-block-components-sidebar-layout {
	gap: 32px;
}

.wc-block-cart .wc-block-cart__main {
	background: #161616;
	border: 1px solid #2a2a2a;
	border-radius: 8px;
	padding: 24px;
}

.wc-block-cart .wc-block-cart__sidebar {
	background: #161616;
	border: 1px solid #2a2a2a;
	border-radius: 8px;
	padding: 24px;
}

.wc-block-cart .wc-block-cart-items__header {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #888;
}

.wc-block-cart .wc-block-cart-item__image img {
	border-radius: 6px;
}

.wc-block-cart .wc-block-components-product-name {
	color: #f0f0f0 !important;
	text-decoration: none !important;
	font-weight: 500;
}

.wc-block-cart .wc-block-components-product-price {
	color: #E8417A !important;
	font-family: var(--wp--preset--font-family--mono) !important;
	font-weight: 700 !important;
}

.wc-block-cart .wc-block-components-totals-item__value {
	color: #f0f0f0;
}

.wc-block-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 20px;
	font-weight: 700;
	color: #E8417A;
}

.wc-block-cart .wc-block-cart__submit-button,
.wc-block-cart .wc-block-cart__submit-container a,
.wc-block-cart .wc-block-cart__submit-container button,
.wp-block-woocommerce-proceed-to-checkout-block a,
.wp-block-woocommerce-proceed-to-checkout-block button {
	background: #E8417A !important;
	color: #fff !important;
	border: none !important;
	border-radius: 4px !important;
	height: 56px !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.1em !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	text-decoration: none !important;
}

.wc-block-cart .wc-block-cart__submit-button:hover,
.wc-block-cart .wc-block-cart__submit-container a:hover,
.wp-block-woocommerce-proceed-to-checkout-block a:hover {
	background: #d4306a !important;
}

.wc-block-cart .wc-block-cart__submit-button:hover {
	background: #d4306a !important;
}

/* ─── Checkout Page ─── */

.woocommerce-checkout .woocommerce {
	max-width: 100%;
	margin: 0 auto;
	padding: 32px 24px;
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 32px;
	align-items: start;
}

@media (max-width: 768px) {
	.woocommerce-checkout .woocommerce {
		grid-template-columns: 1fr;
	}
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields {
	background: #161616;
	border: 1px solid #2a2a2a;
	border-radius: 8px;
	padding: 24px;
	margin-bottom: 16px;
}

.woocommerce-checkout h3 {
	font-family: var(--wp--preset--font-family--display);
	font-size: 20px;
	color: #f0f0f0;
	margin-bottom: 20px;
}

.woocommerce-checkout .form-row label {
	color: #888;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 6px;
	display: block;
}

.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
	background: #0d0d0d !important;
	border: 1px solid #2a2a2a !important;
	color: #f0f0f0 !important;
	border-radius: 4px !important;
	height: 48px !important;
	padding: 0 16px !important;
	font-size: 14px !important;
	width: 100% !important;
	transition: border-color 0.2s !important;
}

.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus {
	border-color: #E8417A !important;
	outline: none !important;
}

.woocommerce-checkout .form-row textarea {
	height: 100px !important;
	padding: 12px 16px !important;
	resize: vertical !important;
}

.woocommerce-checkout #order_review_heading {
	font-family: var(--wp--preset--font-family--display);
	font-size: 20px;
	color: #f0f0f0;
	margin-bottom: 20px;
}

.woocommerce-checkout #order_review {
	background: #161616;
	border: 1px solid #2a2a2a;
	border-radius: 8px;
	padding: 24px;
	position: sticky;
	top: 88px;
}

.woocommerce-checkout table.shop_table {
	width: 100%;
	border-collapse: collapse;
}

.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
	padding: 10px 0;
	border-bottom: 1px solid #1e1e1e;
	color: #aaa;
	font-size: 14px;
}

.woocommerce-checkout table.shop_table .order-total th,
.woocommerce-checkout table.shop_table .order-total td {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 18px;
	font-weight: 700;
	color: #E8417A;
	border-bottom: none;
	padding-top: 16px;
}

#place_order {
	display: block !important;
	width: 100% !important;
	background: #E8417A !important;
	color: #fff !important;
	border: none !important;
	border-radius: 4px !important;
	height: 56px !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.1em !important;
	cursor: pointer !important;
	margin-top: 16px !important;
	transition: background 0.2s !important;
}

#place_order:hover {
	background: #d4306a !important;
}

.woocommerce-checkout #payment {
	background: none !important;
	border: none !important;
}

.woocommerce-checkout #payment ul.payment_methods {
	border: 1px solid #2a2a2a !important;
	border-radius: 8px !important;
	background: #0d0d0d !important;
	padding: 0 !important;
	list-style: none !important;
	margin-bottom: 16px !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
	padding: 14px 16px !important;
	border-bottom: 1px solid #1e1e1e !important;
	color: #aaa !important;
}

.woocommerce-checkout #payment ul.payment_methods li:last-child {
	border-bottom: none !important;
}

.woocommerce-checkout #payment ul.payment_methods li label {
	color: #f0f0f0 !important;
	font-size: 14px !important;
}

/* WooCommerce block checkout overrides */
/* WC checkout.css already provides the two-column flex layout via .is-loading
   (65%/35% split). We only add dark theme styling and sticky sidebar here. */

.wc-block-checkout,
.wp-block-woocommerce-checkout {
	max-width: 100%;
	margin: 0 auto;
}

/* Sidebar sticky on desktop (React-hydrated state) */
@media (min-width: 700px) {
	.wc-block-checkout .wc-block-components-sidebar-layout__sidebar,
	.wc-block-checkout .wc-block-checkout__sidebar {
		position: sticky;
		top: 2rem;
		align-self: flex-start;
	}
}

/* Form fields panel — dark card */
.wc-block-checkout .wc-block-components-sidebar-layout__content,
.wc-block-checkout .wc-block-checkout__main {
	background: #161616;
	border: 1px solid #2a2a2a;
	border-radius: 8px;
	padding: 24px;
}

/* Order summary sidebar — dark card */
.wc-block-checkout .wc-block-components-sidebar-layout__sidebar,
.wc-block-checkout .wc-block-checkout__sidebar {
	background: #161616;
	border: 1px solid #2a2a2a;
	border-radius: 8px;
	padding: 1.5rem;
}

.wc-block-checkout .wc-block-components-text-input input,
.wc-block-checkout .wc-block-components-text-input textarea,
.wc-block-checkout .wc-block-components-select .wc-block-components-select__container select {
	background: #1a1a1a !important;
	border: 1px solid #333 !important;
	color: #f0f0f0 !important;
	border-radius: 4px !important;
}

.wc-block-checkout .wc-block-components-text-input input:focus {
	border-color: #E8417A !important;
}

.wc-block-checkout .wc-block-components-text-input label {
	color: #888 !important;
}

.wc-block-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 18px;
	font-weight: 700;
	color: #E8417A;
}

.wc-block-checkout .wc-block-components-checkout-place-order-button {
	background: #E8417A !important;
	color: #fff !important;
	border: none !important;
	border-radius: 4px !important;
	height: 56px !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.1em !important;
}

.wc-block-checkout .wc-block-components-checkout-place-order-button:hover {
	background: #d4306a !important;
}

.wc-block-checkout .wc-block-components-payment-method-label {
	color: #f0f0f0;
}

.wc-block-checkout .wc-block-components-address-card {
	padding: 0.75rem !important;
}

/* Shipping/payment radio option rows — tighter vertical */
.wc-block-checkout .wc-block-components-radio-control__option {
	padding-top: 0.5rem !important;
	padding-bottom: 0.5rem !important;
}

/* Radio option rows — keep WC's padding-left:48px for the absolutely-positioned input */
.wc-block-checkout .wc-block-components-radio-control__option,
.wc-block-cart .wc-block-components-radio-control__option {
	border-bottom: 1px solid #1e1e1e;
}

/* Selected shipping/payment option — tone down the bright highlight */
.wc-block-checkout .wc-block-components-radio-control__option--checked-option-highlighted,
.wc-block-checkout .wc-block-components-radio-control-accordion-option--checked-option-highlighted {
	box-shadow: inset 0 0 0 1.5px #E8417A !important;
}

/* Radio buttons — dark theme, keep WC's absolute positioning intact */
.wc-block-checkout .wc-block-components-radio-control__input,
.wc-block-cart .wc-block-components-radio-control__input {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border: 2px solid #2a2a2a;
	border-radius: 50%;
	background: #0d0d0d;
	cursor: pointer;
	/* Keep WC's absolute positioning — do NOT set position: relative */
}

.wc-block-checkout .wc-block-components-radio-control__input:checked,
.wc-block-cart .wc-block-components-radio-control__input:checked {
	border-color: #E8417A;
	background: #0d0d0d;
}

.wc-block-checkout .wc-block-components-radio-control__input:checked::after,
.wc-block-cart .wc-block-components-radio-control__input:checked::after {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #E8417A;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Checkboxes — dark theme */
.wc-block-checkout .wc-block-components-checkbox__input,
.wc-block-cart .wc-block-components-checkbox__input {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	min-width: 20px;
	border: 2px solid #2a2a2a;
	border-radius: 3px;
	background: #0d0d0d;
	cursor: pointer;
	position: relative;
}

.wc-block-checkout .wc-block-components-checkbox__input:checked,
.wc-block-cart .wc-block-components-checkbox__input:checked {
	background: #E8417A;
	border-color: #E8417A;
}

.wc-block-checkout .wc-block-components-checkbox__input:checked::after,
.wc-block-cart .wc-block-components-checkbox__input:checked::after {
	content: '';
	display: block;
	width: 5px;
	height: 9px;
	border: 2px solid #fff;
	border-top: none;
	border-left: none;
	position: absolute;
	top: 1px;
	left: 5px;
	transform: rotate(45deg);
}

/* Mobile: single order summary at top, expanded */
@media (max-width: 699px) {
	/* Make checkout a flex column so we can reorder */
	.wc-block-checkout .wc-block-components-sidebar-layout {
		display: flex !important;
		flex-direction: column !important;
	}

	/* Sidebar (order summary) goes first */
	.wc-block-checkout .wc-block-checkout__sidebar {
		order: -1 !important;
		display: block !important;
		margin-bottom: 24px !important;
	}

	/* Force order summary content always expanded on mobile */
	.wc-block-checkout .wc-block-components-checkout-order-summary__content {
		display: block !important;
	}

	/* Hide the toggle icon/price — not needed when always expanded */
	.wc-block-checkout .wc-block-components-checkout-order-summary__title-icon,
	.wc-block-checkout .wc-block-components-checkout-order-summary__title-price {
		display: none !important;
	}

	/* Remove clickable cursor from summary title */
	.wc-block-checkout .wc-block-components-checkout-order-summary__title {
		cursor: default !important;
	}

	/* Hide the duplicate inline collapsible order summary in main */
	.wc-block-checkout .wc-block-checkout__main .wp-block-woocommerce-checkout-order-summary-block {
		display: none !important;
	}
}

/* Order summary in checkout sidebar */
.wc-block-checkout .wc-block-components-order-summary {
	color: #f0f0f0;
}

.wc-block-checkout .wc-block-components-order-summary .wc-block-components-order-summary__button-text {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 1.2rem;
	color: #f0f0f0;
}

.wc-block-checkout .wc-block-components-order-summary-item__description .wc-block-components-product-name {
	color: #f0f0f0;
}

.wc-block-checkout .wc-block-components-order-summary-item__total-price,
.wc-block-checkout .wc-block-components-product-price {
	color: #E8417A;
}

.wc-block-checkout .wc-block-components-totals-item {
	border-top: 1px solid #2a2a2a;
}

.wc-block-checkout .wc-block-components-totals-item__label {
	color: #f0f0f0;
}

.wc-block-checkout .wc-block-components-totals-item__value {
	color: #f0f0f0;
}

.wc-block-checkout .wc-block-components-totals-footer-item {
	border-top: 1px solid #2a2a2a;
}

.wc-block-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
	font-weight: 700;
	color: #f0f0f0;
}

.wc-block-checkout .wc-block-components-totals-coupon .wc-block-components-text-input input {
	background: #0d0d0d !important;
	border: 1px solid #2a2a2a !important;
	color: #f0f0f0 !important;
}

/* ─── Animations ─── */

.animate-up {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-up.in-view {
	opacity: 1;
	transform: translateY(0);
}

/* ─── Responsive ─── */

@media (max-width: 768px) {
	.hero-heading {
		font-size: 40px !important;
	}

	.category-grid {
		flex-wrap: wrap !important;
	}

	.category-grid > .wp-block-column {
		flex-basis: calc(50% - 8px) !important;
	}

	.promo-banner .wp-block-group.is-layout-flex {
		flex-direction: column;
		text-align: center;
		gap: 24px;
	}

	.promo-banner h2 {
		font-size: 36px !important;
	}

	.section-padding {
		padding-top: 48px !important;
		padding-bottom: 48px !important;
		padding-left: 16px !important;
		padding-right: 16px !important;
	}

	/* Mobile nav hamburger */
	.wp-block-navigation__responsive-container:not(.is-menu-open) {
		display: none !important;
	}

	.wp-block-navigation__responsive-container-open {
		display: flex !important;
		color: #f0f0f0 !important;
	}

	.wp-block-navigation__responsive-container.is-menu-open {
		background: #0d0d0d !important;
		padding: 24px !important;
	}

	.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
		color: #f0f0f0 !important;
		font-size: 18px !important;
		padding: 12px 0 !important;
	}
}

/* ── Points & Rewards plugin — dark theme override ────── */

/* Earn points message banner (light grey bg → transparent) */
.wc-points-rewards-earn-points-message {
	background: transparent !important;
	color: #888 !important;
	border: 1px solid #2a2a2a !important;
	border-radius: 4px !important;
	font-size: 13px !important;
	padding: 10px 14px !important;
}

/* Redemption panel wrapper */
div.wc-points-rewards-totals-redemption {
	background: transparent !important;
	color: #f0f0f0 !important;
	box-shadow: none !important;
}

div.wc-points-rewards-totals-redemption .wc-block-components-panel__button {
	color: #f0f0f0 !important;
}

/* Points text input (white bg → dark) */
.wc-points-rewards-text-input input[type="number"] {
	background-color: #0d0d0d !important;
	border: 1px solid #2a2a2a !important;
	color: #f0f0f0 !important;
	border-radius: 4px !important;
}

.wc-points-rewards-text-input input[type="number"]:focus {
	background-color: #0d0d0d !important;
	color: #f0f0f0 !important;
	border-color: #E8417A !important;
}

.wc-points-rewards-text-input label {
	color: #888 !important;
}

/* Redeem button */
button.wc-points-rewards-redeem-button {
	background: #E8417A !important;
	color: #fff !important;
	border: none !important;
	border-radius: 4px !important;
}

button.wc-points-rewards-redeem-button:hover {
	background: #d4306a !important;
}

/* Checkout wrapper: use available width */
.woocommerce-checkout .wp-block-woocommerce-checkout,
.woocommerce-checkout .wc-block-checkout,
.wp-block-group.woocommerce:not(.product) {
  max-width: var(--wp--style--global--content-size) !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* === Checkout page: compact layout === */

/* Kill WC's internal top padding on the checkout block wrapper */
.wp-block-woocommerce-checkout,
.wc-block-checkout__main,
.wp-block-woocommerce-checkout .wc-block-checkout {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

/* Section step spacing — tighter */
.wc-block-checkout .wc-block-components-checkout-step {
	padding-top: 0.5rem !important;
	padding-bottom: 0.5rem !important;
	margin-bottom: 0 !important;
}
.wc-block-checkout .wc-block-components-checkout-step__heading {
	margin-top: 0 !important;
	margin-bottom: 0.4rem !important;
	padding-bottom: 0 !important;
}
/* Kill any extra block-level margin WC adds between steps */
.wc-block-checkout .wc-block-components-checkout-step__container {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}

/* Input fields: only reduce gap between fields, NOT height (floating label needs 50px) */
.wc-block-checkout .wc-block-components-text-input {
	margin-bottom: 0.5rem !important;
}

/* Radio: label must clear the absolutely-positioned input circle */
.wc-block-checkout .wc-block-components-radio-control__option {
	position: relative !important;
}
.wc-block-checkout .wc-block-components-radio-control__option input[type="radio"] {
	position: absolute !important;
	left: 0.75rem !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	margin: 0 !important;
}
.wc-block-checkout .wc-block-components-radio-control__option label {
	padding-left: 2.25rem !important;
	margin: 0 !important;
	display: flex !important;
	align-items: center !important;
	width: 100% !important;
	min-height: 2rem !important;
}

/* Payment options: same alignment fix */
.wc-block-checkout .wc-block-components-payment-method-label {
	display: flex !important;
	align-items: center !important;
	gap: 0.6rem !important;
}

/* Dividers between sections: tighten */
.wc-block-checkout .wc-block-components-checkout-step + .wc-block-components-checkout-step {
	border-top: 1px solid #2a2a2a;
	margin-top: 0 !important;
}
/* === End checkout compact layout === */

/* ── Custom product lightbox ── */
#bglam-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
#bglam-lightbox.is-open {
  display: flex;
}
#bglam-lb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.93);
}
#bglam-lb-img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
}
#bglam-lb-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: rgba(13,13,13,0.85);
  border: 1px solid #2a2a2a;
  color: #f0f0f0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
#bglam-lb-close:hover {
  background: #E8417A;
  border-color: #E8417A;
}
/* ── End lightbox ── */

/* Homepage hero: always full width regardless of content-size */
.home .wp-block-cover.alignfull,
.home .wp-block-group.alignfull:first-of-type {
  max-width: 100vw !important;
  width: 100vw !important;
}
