/* =========================================================================
   Ohad Mobiles - MOBILE FIXES + MOTION
   Loaded after style.css and woocommerce.css, so it wins on conflicts.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. HEADER + MOBILE NAV  (this is what was breaking)
   ------------------------------------------------------------------------- */

header { position: sticky; top: 0; z-index: 60; }

.nav { position: relative; gap: 12px; }

/* the dropdown panel - this CSS was missing, so the menu had no styling */
.nav-links.is-open {
	display: flex !important;
	flex-direction: column;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--bg);
	border-bottom: 1px solid var(--line);
	padding: 18px 24px 22px;
	gap: 0;
	box-shadow: 0 18px 32px -18px rgba(0, 0, 0, .28);
	animation: ohadDrop .22s ease both;
}

html[data-theme="dark"] .nav-links.is-open { box-shadow: 0 18px 32px -18px rgba(0, 0, 0, .7); }

.nav-links.is-open li,
.nav-links.is-open > a { width: 100%; }

.nav-links.is-open a {
	display: block;
	padding: 14px 0;
	font-size: 15px;
	opacity: 1;
	border-bottom: 1px solid var(--line);
	border-top: none;
}

.nav-links.is-open li:last-child a,
.nav-links.is-open > a:last-child { border-bottom: none; }

@keyframes ohadDrop {
	from { opacity: 0; transform: translateY(-8px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* hamburger turns into a cross when open */
.menu-toggle { transition: transform .25s ease; line-height: 1; }
.menu-toggle.is-active { transform: rotate(90deg); }

@media (max-width: 900px) {
	.nav { padding: 14px 18px; }
	.wrap { padding: 0 18px; }
	.logo { font-size: 16px; gap: 7px; }
	.logo .mark { width: 8px; height: 8px; }
	.logo img { max-height: 28px; }
	.nav-right { gap: 8px; }
	.cart-btn { padding: 8px 13px; font-size: 12px; }
	.theme-toggle { width: 46px; height: 26px; }
	.theme-toggle .knob { width: 20px; height: 20px; }
	html[data-theme="dark"] .theme-toggle .knob { transform: translateX(20px); }
	.menu-toggle { font-size: 24px; padding: 0 2px; }
	section { padding: 52px 0; }
}

/* very small phones - shorten the cart button to just the icon + count */
@media (max-width: 400px) {
	.cart-btn { font-size: 0; gap: 4px; padding: 8px 12px; }
	.cart-btn .cart-count { font-size: 12px; }
	.cart-btn::before { content: '\1F6D2'; font-size: 13px; }
}

/* -------------------------------------------------------------------------
   2. HERO
   ------------------------------------------------------------------------- */

@media (max-width: 900px) {
	.hero { padding: 46px 0 44px; }
	.hero-grid { gap: 34px; }
	.hero h1 { font-size: clamp(30px, 8.5vw, 44px); line-height: 1.02; }
	.hero p { font-size: 15px; margin-bottom: 26px; }
	.eyebrow { font-size: 11px; margin-bottom: 18px; }
	.btn-row { gap: 10px; }
	.btn { padding: 13px 22px; font-size: 13px; }
	.hero-visual { max-width: 220px; }
	.hero-tag { font-size: 11px; padding: 7px 13px; }
}

/* -------------------------------------------------------------------------
   3. TRUST STRIP
   ------------------------------------------------------------------------- */

@media (max-width: 900px) {
	.strip { flex-wrap: wrap; }
	.strip-cell { flex: 1 1 50%; padding: 16px 18px; border-bottom: 1px solid var(--line); }
	.strip-cell:nth-child(2n) { border-right: none; }
	.strip-cell b { font-size: 12px; }
	.strip-cell span { font-size: 11px; }
}

/* -------------------------------------------------------------------------
   4. SECTION HEADS + CATEGORY GRID
   ------------------------------------------------------------------------- */

@media (max-width: 900px) {
	.sec-head { margin-bottom: 28px; }
	.sec-head h2 { font-size: clamp(22px, 6vw, 30px); }
	.sec-head p { font-size: 13px; max-width: 100%; }
	.cat-card { padding: 22px 16px; }
	.cat-card h4 { font-size: 13px; margin: 16px 0 3px; }
	.cat-card span { font-size: 11px; }
	.cat-icon svg { width: 28px; height: 28px; }
	.why-card { padding: 26px 20px; }
	.value-card { padding: 26px 20px; }
	.steps-row { gap: 18px; }
	.step-card .step-num { font-size: 40px; }
	.cta-band { padding: 34px 24px; text-align: left; }
	.cta-band h3 { font-size: clamp(19px, 5vw, 24px); }
	.stat-block { padding: 22px 18px; }
	.stat-block .num { font-size: 28px; }
}

/* -------------------------------------------------------------------------
   5. PRODUCT GRID  (the glitchy one)
   ------------------------------------------------------------------------- */

@media (max-width: 900px) {

	.prod-grid,
	.related-grid,
	.woocommerce ul.products,
	.woocommerce div.product .related ul.products {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.prod-grid { padding: 28px 0 50px; }

	.prod-card { border-radius: 12px; }
	.prod-info { padding: 12px 12px 6px; }
	.prod-info .cat { font-size: 9px; margin-bottom: 4px; }
	.prod-info h4 { font-size: 12.5px; line-height: 1.35; }
	.prod-model { font-size: 10px; margin-bottom: 8px; }
	.prod-feat { display: none; }

	/* price and button were colliding on narrow screens - stack them */
	.prod-price-row {
		padding: 0 12px 12px;
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
	}
	.prod-price-row .price { font-size: 13px; }
	.prod-card .prod-price-row .button,
	.prod-card .prod-price-row a.button,
	.prod-card .prod-price-row .add-btn {
		width: 100%;
		height: 34px;
		font-size: 11.5px;
		padding: 0 10px;
	}
	.prod-card .prod-price-row .added_to_cart { display: none; }
}

@media (max-width: 380px) {
	.prod-grid,
	.woocommerce ul.products { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------
   6. SHOP TOOLBAR
   ------------------------------------------------------------------------- */

@media (max-width: 900px) {

	.shop-head { padding: 32px 0 0; }
	.shop-head h1 { font-size: clamp(24px, 6.5vw, 32px); }
	.shop-head p { font-size: 13px; margin-bottom: 20px; }

	/* was top:0 which slid under the sticky header */
	.toolbar { top: 61px; padding: 12px 0; }
	body.admin-bar .toolbar { top: 107px; }

	.filter-row {
		gap: 8px;
		margin: 0 -18px;
		padding: 0 18px 4px;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}
	.filter-row::-webkit-scrollbar { display: none; }
	.chip { padding: 8px 14px; font-size: 12px; }

	.toolbar-bottom { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 12px; }
	.search-box { width: 100%; min-width: 0; }
	.woocommerce-ordering,
	.woocommerce .woocommerce-ordering { width: 100%; }
	.woocommerce-ordering select { width: 100%; }
	.toolbar-bottom > div { flex-direction: column; width: 100%; }
}

/* -------------------------------------------------------------------------
   7. SINGLE PRODUCT
   ------------------------------------------------------------------------- */

@media (max-width: 900px) {

	.woocommerce div.product,
	.woocommerce-page div.product { padding: 20px 18px 60px; gap: 26px; }

	.woocommerce div.product .product_title { font-size: clamp(21px, 5.5vw, 28px); }
	.woocommerce div.product p.price,
	.woocommerce div.product span.price { font-size: 22px; margin: 10px 0 18px; }

	.woocommerce div.product .flex-control-thumbs li { width: 52px; height: 52px; }

	/* add-to-cart row: quantity on top, full-width button under it */
	.woocommerce div.product form.cart { flex-direction: column; align-items: stretch; gap: 12px; }
	.woocommerce .quantity { align-self: flex-start; }
	.woocommerce div.product form.cart .button.single_add_to_cart_button { width: 100%; min-width: 0; }

	.woocommerce div.product table.variations select { max-width: 100%; }

	.woocommerce div.product .woocommerce-tabs ul.tabs { gap: 8px; }
	.woocommerce div.product .woocommerce-tabs ul.tabs li a { padding: 8px 14px; font-size: 12px; }

	.crumb { font-size: 11px; padding: 16px 0 0; }
}

/* -------------------------------------------------------------------------
   8. CART + CHECKOUT
   ------------------------------------------------------------------------- */

@media (max-width: 900px) {

	.woocommerce-cart .woocommerce,
	.woocommerce-checkout .woocommerce,
	.woocommerce-account .woocommerce,
	.woocommerce-order-received .woocommerce { padding: 30px 18px 60px; }

	/* stacked card rows instead of a squashed table */
	.woocommerce table.shop_table_responsive thead,
	.woocommerce-page table.shop_table_responsive thead { display: none; }

	.woocommerce table.shop_table_responsive tr,
	.woocommerce-page table.shop_table_responsive tr {
		display: block;
		border: 1px solid var(--line);
		border-radius: 12px;
		margin-bottom: 12px;
		padding: 6px 12px;
	}

	.woocommerce table.shop_table_responsive tr td,
	.woocommerce-page table.shop_table_responsive tr td {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 12px;
		padding: 10px 0;
		border-top: none;
		border-bottom: 1px solid var(--line);
		text-align: right;
		font-size: 13px;
	}

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

	.woocommerce table.shop_table_responsive tr td::before {
		content: attr(data-title);
		font-size: 11px;
		text-transform: uppercase;
		letter-spacing: .04em;
		color: var(--ink-dim);
		font-weight: 600;
		float: none;
	}

	.woocommerce table.shop_table_responsive tr td.product-thumbnail { justify-content: flex-start; }
	.woocommerce table.shop_table img { width: 56px; }

	.woocommerce .coupon { display: flex; gap: 8px; flex-wrap: wrap; }
	.woocommerce .coupon input.input-text { flex: 1; min-width: 0; }
	.woocommerce .coupon .button { width: auto; }

	.woocommerce .cart_totals { border: 1px solid var(--line); border-radius: 14px; padding: 20px; margin-top: 20px; }

	.woocommerce-checkout .woocommerce-billing-fields,
	.woocommerce-checkout .woocommerce-additional-fields,
	.woocommerce-checkout #order_review { padding: 20px 18px; }

	.woocommerce form .form-row-first,
	.woocommerce form .form-row-last { width: 100%; float: none; }

	.woocommerce ul.order_details { flex-direction: column; gap: 10px; }
	.woocommerce ul.order_details li { width: 100%; }
}

/* -------------------------------------------------------------------------
   9. ABOUT / CONTACT / FOOTER
   ------------------------------------------------------------------------- */

@media (max-width: 900px) {
	.about-hero, .contact-hero, .page-hero { padding: 44px 0 38px; }
	.about-hero h1, .page-hero h1 { font-size: clamp(26px, 7vw, 38px); }
	.contact-hero h1 { font-size: clamp(24px, 6.5vw, 34px); }
	.story-grid { gap: 34px; }
	.contact-grid { gap: 30px; }
	.info-card { padding: 20px; }
	.foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 34px; }
	.foot-brand { grid-column: 1 / -1; }
	.foot-bottom { font-size: 11px; }
	footer { padding: 44px 0 26px; }
}

/* stop long words / SKUs blowing out the layout */
h1, h2, h3, h4, p, a, li { overflow-wrap: break-word; }
img, svg, table, iframe { max-width: 100%; }
body { overflow-x: hidden; }

/* comfortable tap targets */
@media (max-width: 900px) {
	.nav-links a, .chip, .btn, .cart-btn { min-height: 40px; display: inline-flex; align-items: center; }
	.nav-links.is-open a { min-height: 46px; }
}

/* =========================================================================
   10. MOTION
   Subtle only - nothing that delays reading or fights a slow connection.
   ========================================================================= */

/* --- scroll reveal (JS adds .is-in when the element enters the viewport) --- */
.ohad-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .55s cubic-bezier(.22, .61, .36, 1),
	            transform .55s cubic-bezier(.22, .61, .36, 1);
	will-change: opacity, transform;
}
.ohad-reveal.is-in { opacity: 1; transform: none; }

/* stagger inside grids */
.ohad-reveal[data-delay="1"] { transition-delay: .06s; }
.ohad-reveal[data-delay="2"] { transition-delay: .12s; }
.ohad-reveal[data-delay="3"] { transition-delay: .18s; }
.ohad-reveal[data-delay="4"] { transition-delay: .24s; }
.ohad-reveal[data-delay="5"] { transition-delay: .30s; }
.ohad-reveal[data-delay="6"] { transition-delay: .36s; }
.ohad-reveal[data-delay="7"] { transition-delay: .42s; }

/* --- hero entrance --- */
.hero-grid > div > .eyebrow,
.hero-grid > div > h1,
.hero-grid > div > p,
.hero-grid > div > .btn-row,
.hero-visual { animation: ohadRise .7s cubic-bezier(.22, .61, .36, 1) both; }

.hero-grid > div > .eyebrow { animation-delay: .05s; }
.hero-grid > div > h1      { animation-delay: .12s; }
.hero-grid > div > p       { animation-delay: .20s; }
.hero-grid > div > .btn-row{ animation-delay: .28s; }
.hero-visual               { animation-delay: .18s; }

@keyframes ohadRise {
	from { opacity: 0; transform: translateY(22px); }
	to   { opacity: 1; transform: none; }
}

.hero-tag { animation: ohadFloat 4.5s ease-in-out infinite; }
@keyframes ohadFloat {
	0%, 100% { transform: translate(-50%, 0); }
	50%      { transform: translate(-50%, -6px); }
}

/* --- product cards --- */
.prod-card,
.woocommerce ul.products li.product {
	transition: border-color .25s ease, transform .28s cubic-bezier(.22, .61, .36, 1), box-shadow .28s ease;
}
.prod-card:hover,
.woocommerce ul.products li.product:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 30px -20px rgba(0, 0, 0, .3);
}
html[data-theme="dark"] .prod-card:hover { box-shadow: 0 16px 30px -18px rgba(0, 0, 0, .8); }

.prod-img { overflow: hidden; }
.prod-img img { transition: transform .5s cubic-bezier(.22, .61, .36, 1); }
.prod-card:hover .prod-img img { transform: scale(1.06); }

/* --- category cards --- */
.cat-card { transition: background .25s ease; position: relative; }
.cat-card .cat-icon svg { transition: transform .35s cubic-bezier(.34, 1.56, .64, 1); }
.cat-card:hover .cat-icon svg { transform: translateY(-4px) scale(1.08); }
.cat-card::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	height: 2px; width: 0;
	background: var(--ink);
	transition: width .35s cubic-bezier(.22, .61, .36, 1);
}
.cat-card:hover::after { width: 100%; }

/* --- buttons --- */
.btn, .chip,
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
	transition: transform .2s cubic-bezier(.22, .61, .36, 1), background .22s ease, color .22s ease, border-color .22s ease;
}
.btn:active, .chip:active,
.woocommerce a.button:active, .woocommerce button.button:active { transform: translateY(0) scale(.97); }

.btn-secondary:hover { background: var(--ink); color: var(--bg); }
.chip:hover { border-color: var(--line-strong); }

/* --- nav underline grows instead of snapping --- */
.nav-links a { position: relative; border-bottom-color: transparent !important; }
.nav-links a::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	height: 1px; width: 0;
	background: var(--ink);
	transition: width .28s cubic-bezier(.22, .61, .36, 1);
}
.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links li.current-menu-item > a::after { width: 100%; }
@media (max-width: 900px) { .nav-links.is-open a::after { display: none; } }

/* --- theme toggle knob --- */
.theme-toggle .knob { transition: transform .3s cubic-bezier(.34, 1.56, .64, 1); }

/* --- cart badge pops when it changes --- */
.cart-count.is-bump { animation: ohadBump .45s cubic-bezier(.34, 1.56, .64, 1); }
@keyframes ohadBump {
	0%   { transform: scale(1); }
	40%  { transform: scale(1.45); }
	100% { transform: scale(1); }
}

/* --- WooCommerce ajax add-to-cart spinner --- */
.woocommerce a.button.loading { opacity: .7; }
.woocommerce a.button.loading::after {
	content: '';
	width: 12px; height: 12px;
	border: 2px solid currentColor;
	border-top-color: transparent;
	border-radius: 50%;
	margin-left: 8px;
	animation: ohadSpin .7s linear infinite;
	display: inline-block;
}
@keyframes ohadSpin { to { transform: rotate(360deg); } }

/* --- images fade in as they load --- */
.prod-img img,
.woocommerce div.product .woocommerce-product-gallery__image img { animation: ohadFade .5s ease both; }
@keyframes ohadFade { from { opacity: 0; } to { opacity: 1; } }

/* --- notices slide in --- */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	animation: ohadSlide .4s cubic-bezier(.22, .61, .36, 1) both;
}
@keyframes ohadSlide {
	from { opacity: 0; transform: translateY(-10px); }
	to   { opacity: 1; transform: none; }
}

/* --- accessibility: honour the OS setting --- */
@media (prefers-reduced-motion: reduce) {
	.ohad-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}

/* =========================================================================
   11. PRODUCT SHOWCASE  [ohad_showcase]
   ========================================================================= */

.ohad-showcase { padding: 84px 0; overflow: hidden; position: relative; }

.ohad-showcase__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.ohad-showcase--right .ohad-showcase__media { order: 2; }
.ohad-showcase--right .ohad-showcase__body  { order: 1; }

/* ---------- media ---------- */

.ohad-showcase__media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 320px;
}

.ohad-showcase__media img {
	position: relative;
	z-index: 2;
	max-height: 420px;
	width: auto;
	object-fit: contain;
	filter: drop-shadow(0 26px 40px rgba(0, 0, 0, .18));
}

html[data-theme="dark"] .ohad-showcase__media img { filter: drop-shadow(0 26px 40px rgba(0, 0, 0, .7)); }

/* soft ring behind the product */
.ohad-showcase__glow {
	position: absolute;
	z-index: 1;
	width: min(78%, 380px);
	aspect-ratio: 1;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--bg-soft);
}

.ohad-showcase__glow::after {
	content: '';
	position: absolute;
	inset: 12%;
	border: 1px solid var(--line);
	border-radius: 50%;
}

/* floating price pill */
.ohad-showcase__tag {
	position: absolute;
	z-index: 3;
	right: 4%;
	bottom: 12%;
	background: var(--ink);
	color: var(--bg);
	font-family: 'JetBrains Mono', monospace;
	font-size: 15px;
	font-weight: 600;
	padding: 11px 20px;
	border-radius: 100px;
	white-space: nowrap;
	box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .45);
}

.ohad-showcase__tag .amount,
.ohad-showcase__tag .woocommerce-Price-amount { color: var(--bg); }
.ohad-showcase__tag del { display: none; }
.ohad-showcase__tag ins { text-decoration: none; }

.ohad-showcase--right .ohad-showcase__tag { right: auto; left: 4%; }

/* ---------- body ---------- */

.ohad-showcase__body h2 {
	font-size: clamp(28px, 3.6vw, 46px);
	line-height: 1.05;
	margin: 16px 0 14px;
}

.ohad-showcase__body p {
	color: var(--ink-dim);
	font-size: 15px;
	max-width: 440px;
	margin-bottom: 20px;
}

.ohad-showcase__price {
	font-family: 'JetBrains Mono', monospace;
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 26px;
}
.ohad-showcase__price del { opacity: .4; font-size: 20px; margin-right: 8px; }
.ohad-showcase__price ins { text-decoration: none; }

/* =========================================================================
   SHOWCASE ANIMATIONS
   The section starts hidden and plays once when scrolled into view.
   JS adds .is-in via the same IntersectionObserver used elsewhere.
   ========================================================================= */

.ohad-showcase__media,
.ohad-showcase__body > * { opacity: 0; }

.ohad-showcase.is-in .ohad-showcase__media,
.ohad-showcase.is-in .ohad-showcase__body > * { opacity: 1; }

/* text always rises in, staggered */
.ohad-showcase.is-in .ohad-showcase__body > * {
	animation: ohadRise .65s cubic-bezier(.22, .61, .36, 1) both;
}
.ohad-showcase.is-in .ohad-showcase__body > *:nth-child(1) { animation-delay: .10s; }
.ohad-showcase.is-in .ohad-showcase__body > *:nth-child(2) { animation-delay: .18s; }
.ohad-showcase.is-in .ohad-showcase__body > *:nth-child(3) { animation-delay: .26s; }
.ohad-showcase.is-in .ohad-showcase__body > *:nth-child(4) { animation-delay: .34s; }
.ohad-showcase.is-in .ohad-showcase__body > *:nth-child(5) { animation-delay: .42s; }

/* --- style 1: slide in from the side --- */
.ohad-showcase--slide.is-in .ohad-showcase__media {
	animation: ohadSlideIn .9s cubic-bezier(.16, .84, .32, 1) both;
}
.ohad-showcase--slide.ohad-showcase--right.is-in .ohad-showcase__media {
	animation-name: ohadSlideInRight;
}

@keyframes ohadSlideIn {
	from { opacity: 0; transform: translateX(-90px) rotate(-7deg); }
	to   { opacity: 1; transform: none; }
}
@keyframes ohadSlideInRight {
	from { opacity: 0; transform: translateX(90px) rotate(7deg); }
	to   { opacity: 1; transform: none; }
}

/* --- style 2: float, keeps drifting gently --- */
.ohad-showcase--float.is-in .ohad-showcase__media img {
	animation: ohadDrift 5s ease-in-out infinite;
}
.ohad-showcase--float.is-in .ohad-showcase__media {
	animation: ohadRise .8s cubic-bezier(.22, .61, .36, 1) both;
}
@keyframes ohadDrift {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-16px); }
}

/* --- style 3: pop in with a bounce --- */
.ohad-showcase--pop.is-in .ohad-showcase__media {
	animation: ohadPop .8s cubic-bezier(.34, 1.56, .64, 1) both;
}
@keyframes ohadPop {
	from { opacity: 0; transform: scale(.55) translateY(40px); }
	to   { opacity: 1; transform: none; }
}

/* price pill lands after the product */
.ohad-showcase.is-in .ohad-showcase__tag {
	animation: ohadTagIn .6s cubic-bezier(.34, 1.56, .64, 1) .55s both;
}
@keyframes ohadTagIn {
	from { opacity: 0; transform: scale(.4) translateY(14px); }
	to   { opacity: 1; transform: none; }
}

/* ring expands behind it */
.ohad-showcase.is-in .ohad-showcase__glow {
	animation: ohadRing 1.1s cubic-bezier(.16, .84, .32, 1) both;
}
@keyframes ohadRing {
	from { opacity: 0; transform: scale(.7); }
	to   { opacity: 1; transform: none; }
}

/* subtle lift on hover */
.ohad-showcase__media img { transition: transform .5s cubic-bezier(.22, .61, .36, 1); }
.ohad-showcase:hover .ohad-showcase__media img { transform: translateY(-8px) scale(1.03); }

@media (max-width: 900px) {
	.ohad-showcase { padding: 54px 0; }
	.ohad-showcase__grid { grid-template-columns: 1fr; gap: 26px; }
	.ohad-showcase--right .ohad-showcase__media,
	.ohad-showcase--right .ohad-showcase__body { order: 0; }
	.ohad-showcase__media { min-height: 240px; }
	.ohad-showcase__media img { max-height: 250px; }
	.ohad-showcase__glow { width: min(80%, 250px); }
	.ohad-showcase__tag { font-size: 13px; padding: 9px 16px; right: 2%; bottom: 6%; }
	.ohad-showcase--right .ohad-showcase__tag { left: 2%; }
	.ohad-showcase__body h2 { font-size: clamp(24px, 7vw, 34px); }
	.ohad-showcase__price { font-size: 24px; margin-bottom: 20px; }
}

/* =========================================================================
   12. WHATSAPP CHECKOUT PANEL
   ========================================================================= */

.ohad-wa-panel {
	max-width: 640px;
	margin: 0 auto 40px;
	text-align: center;
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 44px 32px;
	background: var(--bg-soft);
	animation: ohadRise .6s cubic-bezier(.22, .61, .36, 1) both;
}

.ohad-wa-icon {
	width: 68px;
	height: 68px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: var(--ink);
	color: var(--bg);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: ohadPop .7s cubic-bezier(.34, 1.56, .64, 1) .15s both;
}

.ohad-wa-panel h3 {
	font-size: clamp(20px, 3vw, 27px);
	margin-bottom: 12px;
	line-height: 1.2;
}

.ohad-wa-order {
	font-family: 'JetBrains Mono', monospace;
	font-size: 14px;
	margin-bottom: 14px;
}

.ohad-wa-note {
	color: var(--ink-dim);
	font-size: 14px;
	max-width: 440px;
	margin: 0 auto 26px;
}

.ohad-wa-btn {
	position: relative;
	overflow: hidden;
}

/* gentle pulse so the button is obviously the next step */
.ohad-wa-btn::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: 0 0 0 0 var(--ink);
	animation: ohadPulse 2.4s ease-out infinite;
}
@keyframes ohadPulse {
	0%   { box-shadow: 0 0 0 0 rgba(10, 10, 10, .35); }
	70%  { box-shadow: 0 0 0 16px rgba(10, 10, 10, 0); }
	100% { box-shadow: 0 0 0 0 rgba(10, 10, 10, 0); }
}
html[data-theme="dark"] .ohad-wa-btn::after {
	animation-name: ohadPulseDark;
}
@keyframes ohadPulseDark {
	0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, .3); }
	70%  { box-shadow: 0 0 0 16px rgba(255, 255, 255, 0); }
	100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.ohad-wa-fallback {
	margin-top: 18px;
	font-size: 13px;
	color: var(--ink-dim);
}

/* order status pill in My Account */
.woocommerce mark.order-status.status-on-hold {
	background: var(--ink);
	color: var(--bg);
}

@media (max-width: 900px) {
	.ohad-wa-panel { padding: 32px 20px; border-radius: 14px; }
	.ohad-wa-icon { width: 56px; height: 56px; }
}

@media (prefers-reduced-motion: reduce) {
	.ohad-showcase__media,
	.ohad-showcase__body > * { opacity: 1 !important; }
	.ohad-wa-btn::after { animation: none; }
}

/* =========================================================================
   13. SHOP PAGE FIXES
   ========================================================================= */

/* The design's price row sat inside the padded info block. As a sibling it
   had no padding of its own, so price and button hit the card edge. */
.prod-card .prod-price-row {
	padding: 0 16px 16px;
	margin-top: auto;
	gap: 10px;
}

/* cards in a row must be equal height, with the price pinned to the bottom */
.prod-grid { align-items: stretch; }
.prod-card { display: flex; flex-direction: column; height: 100%; }
.prod-link { flex: 1; display: flex; flex-direction: column; }
.prod-info { flex: 1; }

/* product titles run to two lines and then stop, so cards line up */
.prod-info h4 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.7em;
	line-height: 1.35;
}

/* the loop button is a real WooCommerce button, not the design's 30px circle */
.prod-card .add-btn,
.prod-card .prod-price-row .button {
	width: auto;
	height: 34px;
	min-width: 0;
	border-radius: 100px;
	padding: 0 16px;
	font-size: 12px;
	flex-shrink: 0;
	white-space: nowrap;
}

.prod-card .price { white-space: nowrap; }

/* "View products" / "Select options" text can be long - keep it readable */
.prod-card .prod-price-row .added_to_cart { display: none; }

/* placeholder cards (no image yet) should still fill the square */
.prod-img { position: relative; }
.prod-img .img-placeholder { position: absolute; inset: 0; }

/* toolbar controls group */
.toolbar-controls { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

/* sticky toolbar sat under the header on desktop too when the admin bar showed */
.toolbar { top: 73px; }
body.admin-bar .toolbar { top: 105px; }
@media (max-width: 782px) { body.admin-bar .toolbar { top: 61px; } }

/* WooCommerce prints its own wrappers on some hooks - neutralise them */
.woocommerce .prod-grid ul.products,
.woocommerce .prod-grid .woocommerce-notices-wrapper { display: contents; }

/* notices above the grid need breathing room */
.woocommerce-notices-wrapper:not(:empty) { padding-top: 24px; }

/* ordering dropdown was overflowing on medium screens */
@media (max-width: 1100px) {
	.toolbar-bottom { align-items: flex-start; }
	.search-box { min-width: 180px; }
}

@media (max-width: 900px) {
	.prod-card .prod-price-row { padding: 0 12px 12px; }
	.prod-info h4 { min-height: 2.6em; }
	.toolbar-controls { flex-direction: column; align-items: stretch; width: 100%; }
}

/* =========================================================================
   14. PRODUCT CARD - hard reset
   WooCommerce puts .product on every card in the loop, so single-product
   rules must never reach them. Covers both the shop grid (.prod-grid) and
   related/upsell rows (ul.products).
   ========================================================================= */

.prod-card {
	display: flex !important;
	flex-direction: column !important;
	grid-template-columns: none !important;
	gap: 0 !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	width: auto !important;
	height: 100%;
	position: relative;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 14px;
	overflow: hidden;
}

.prod-card > .prod-link {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
	color: inherit;
}

.prod-card .prod-img {
	aspect-ratio: 1 / 1;
	width: 100%;
	background: var(--bg-soft);
	border-bottom: 1px solid var(--line);
	overflow: hidden;
	display: block;
	position: relative;
	padding: 0;
}

.prod-card .prod-img img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 12%;
	margin: 0;
	max-width: none;
	border-radius: 0;
}

.prod-card .prod-info {
	flex: 1;
	padding: 14px 14px 6px;
	min-width: 0;
}

.prod-card .prod-info .cat {
	font-size: 10px;
	font-family: 'JetBrains Mono', monospace;
	color: var(--ink-dim);
	text-transform: uppercase;
	letter-spacing: .04em;
	display: block;
	margin-bottom: 5px;
}

.prod-card .prod-info h4 {
	font-size: 13.5px;
	font-weight: 600;
	font-family: 'Inter', sans-serif;
	line-height: 1.35;
	margin: 0 0 4px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.7em;
}

.prod-card .prod-model {
	font-size: 10px;
	font-family: 'JetBrains Mono', monospace;
	color: var(--ink-dim);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 8px;
}

.prod-card .prod-price-row {
	display: flex !important;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 0 14px 14px !important;
	margin: 0 !important;
	margin-top: auto !important;
}

/* a card price is small - the big one belongs to the single product page */
.prod-card .price,
.prod-card span.price,
.prod-card .woocommerce-Price-amount {
	font-family: 'JetBrains Mono', monospace !important;
	font-size: 13.5px !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	margin: 0 !important;
	color: var(--ink);
	white-space: nowrap;
}

.prod-card .price del { font-size: 11px !important; opacity: .45; margin-right: 4px; }
.prod-card .price ins { text-decoration: none; }

.prod-card .button,
.prod-card .add-btn {
	height: 32px !important;
	min-height: 32px;
	width: auto !important;
	min-width: 0 !important;
	padding: 0 14px !important;
	font-size: 11.5px !important;
	border-radius: 100px !important;
	flex-shrink: 0;
	white-space: nowrap;
	margin: 0 !important;
	line-height: 1;
}

.prod-card .added_to_cart { display: none !important; }

/* nothing from the single-product template belongs inside a card */
.prod-card .summary,
.prod-card .woocommerce-tabs,
.prod-card .related,
.prod-card form.cart,
.prod-card .product_meta { display: none !important; }

/* related / upsell rows use the same card, so give them the same grid */
.woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none !important; }

@media (max-width: 900px) {
	.prod-card .prod-info { padding: 11px 11px 4px; }
	.prod-card .prod-info h4 { font-size: 12.5px; }
	.prod-card .prod-price-row {
		flex-direction: column;
		align-items: stretch;
		padding: 0 11px 11px !important;
		gap: 7px;
	}
	.prod-card .price { font-size: 13px !important; }
	.prod-card .button { width: 100% !important; height: 34px !important; }
	.woocommerce ul.products { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 380px) {
	.woocommerce ul.products { grid-template-columns: 1fr; }
}

/* =========================================================================
   15. SINGLE PRODUCT PAGE
   ========================================================================= */

body.single-product .site-main,
body.single-product .woocommerce-notices-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

body.single-product .crumb {
	padding: 26px 0 0;
	font-size: 12px;
	font-family: 'JetBrains Mono', monospace;
	color: var(--ink-dim);
}
body.single-product .crumb .woocommerce-breadcrumb { margin: 0; font-size: inherit; font-family: inherit; }

/* ---------- layout ---------- */

body.single-product .woocommerce div.product {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 56px;
	align-items: start;
	max-width: 1200px;
	margin: 0 auto;
	padding: 26px 28px 70px;
}

/* ---------- gallery: this is what was rendering far too large ---------- */

body.single-product .woocommerce div.product .woocommerce-product-gallery {
	width: 100% !important;
	max-width: 100%;
	float: none;
	margin: 0;
	position: sticky;
	top: 92px;
	opacity: 1 !important;
}

body.single-product .woocommerce div.product .woocommerce-product-gallery__wrapper {
	margin: 0;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--bg-soft);
	overflow: hidden;
}

body.single-product .woocommerce div.product .woocommerce-product-gallery__image {
	border: none;
	border-radius: 0;
	margin: 0;
}

/* cap the height and letterbox the product rather than blowing it up */
body.single-product .woocommerce div.product .woocommerce-product-gallery__image a,
body.single-product .woocommerce div.product .woocommerce-product-gallery__image > a { display: block; }

body.single-product .woocommerce div.product .woocommerce-product-gallery__image img {
	width: 100%;
	height: 460px;
	max-height: 56vh;
	object-fit: contain;
	padding: 8%;
	background: var(--bg-soft);
	border-radius: 0;
	margin: 0;
	display: block;
}

/* zoom lens shouldn't sit above the sticky header */
body.single-product .zoomImg { border-radius: 0; }
body.single-product .woocommerce div.product .woocommerce-product-gallery__trigger {
	top: 14px;
	right: 14px;
	background: var(--bg);
	color: var(--ink);
	border: 1px solid var(--line);
	border-radius: 50%;
	width: 34px;
	height: 34px;
	line-height: 32px;
	text-align: center;
	font-size: 15px;
	z-index: 5;
	text-indent: 0;
}
body.single-product .woocommerce div.product .woocommerce-product-gallery__trigger::after,
body.single-product .woocommerce div.product .woocommerce-product-gallery__trigger::before { display: none; }

/* thumbnails */
body.single-product .woocommerce div.product .flex-control-thumbs {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin: 12px 0 0;
	padding: 0;
}
body.single-product .woocommerce div.product .flex-control-thumbs li {
	width: 68px;
	height: 68px;
	margin: 0;
	float: none;
	list-style: none;
}
body.single-product .woocommerce div.product .flex-control-thumbs img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 8px;
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: 10px;
	opacity: .55;
	cursor: pointer;
	transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}
body.single-product .woocommerce div.product .flex-control-thumbs img.flex-active,
body.single-product .woocommerce div.product .flex-control-thumbs img:hover {
	opacity: 1;
	border-color: var(--line-strong);
	transform: translateY(-2px);
}

/* ---------- summary column ---------- */

body.single-product .woocommerce div.product .summary.entry-summary {
	width: 100% !important;
	float: none;
	margin: 0;
	padding: 0;
}

body.single-product .woocommerce div.product .product_title {
	font-family: 'Archivo', sans-serif;
	font-weight: 800;
	letter-spacing: -.02em;
	font-size: clamp(25px, 3vw, 36px);
	line-height: 1.1;
	margin: 0 0 4px;
	padding: 0;
}

/* category line above the title */
body.single-product .woocommerce div.product .posted_in {
	display: block;
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--ink-dim);
}

body.single-product .woocommerce div.product p.price,
body.single-product .woocommerce div.product span.price {
	font-family: 'JetBrains Mono', monospace;
	font-size: 27px;
	font-weight: 600;
	color: var(--ink);
	margin: 16px 0 0;
	line-height: 1.2;
	display: block;
}
body.single-product .woocommerce div.product p.price del { opacity: .4; font-size: 17px; margin-right: 8px; }
body.single-product .woocommerce div.product p.price ins { text-decoration: none; }
body.single-product .woocommerce div.product p.price .woocommerce-price-suffix { font-size: 12px; color: var(--ink-dim); }

/* stock pill */
body.single-product .woocommerce div.product .stock {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	border: 1px solid var(--line);
	border-radius: 100px;
	padding: 6px 14px;
	margin: 14px 0 0;
	color: var(--ink-dim);
}
body.single-product .woocommerce div.product .stock::before {
	content: '';
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--ink);
}
body.single-product .woocommerce div.product .stock.out-of-stock { opacity: .6; }

/* ---------- short description as a feature list ---------- */

body.single-product .woocommerce div.product .woocommerce-product-details__short-description {
	border-top: 1px solid var(--line);
	margin-top: 22px;
	padding-top: 22px;
	font-size: 14px;
	color: var(--ink-dim);
	line-height: 1.65;
}

body.single-product .woocommerce div.product .woocommerce-product-details__short-description ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 9px;
}

body.single-product .woocommerce div.product .woocommerce-product-details__short-description li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--ink);
	font-size: 14px;
	line-height: 1.45;
	margin: 0;
}

body.single-product .woocommerce div.product .woocommerce-product-details__short-description li::before {
	content: '';
	flex: 0 0 auto;
	width: 15px;
	height: 15px;
	margin-top: 2px;
	border: 1px solid var(--line-strong);
	border-radius: 50%;
	background-image: linear-gradient(to right, var(--ink) 0 100%), linear-gradient(to right, var(--ink) 0 100%);
	background-size: 5px 1px, 1px 5px;
	background-position: center, center;
	background-repeat: no-repeat;
	transform: rotate(45deg);
}

body.single-product .woocommerce div.product .woocommerce-product-details__short-description p { margin-bottom: 10px; }

/* ---------- variations ---------- */

body.single-product .woocommerce div.product form.variations_form {
	border-top: 1px solid var(--line);
	margin-top: 24px;
	padding-top: 24px;
}

body.single-product .woocommerce div.product table.variations {
	border: none;
	margin: 0 0 18px;
	width: 100%;
	background: transparent;
}
body.single-product .woocommerce div.product table.variations tr { display: block; margin-bottom: 14px; }
body.single-product .woocommerce div.product table.variations th,
body.single-product .woocommerce div.product table.variations td {
	border: none;
	padding: 0;
	display: block;
	text-align: left;
	background: transparent;
}
body.single-product .woocommerce div.product table.variations th label {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--ink-dim);
	font-weight: 600;
	margin-bottom: 9px;
	display: block;
}
body.single-product .woocommerce div.product table.variations select {
	width: 100%;
	max-width: 340px;
	padding: 13px 18px;
	border: 1px solid var(--line-strong);
	border-radius: 100px;
	background: var(--bg);
	color: var(--ink);
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 500;
	outline: none;
	cursor: pointer;
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
	background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%;
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
	padding-right: 42px;
}

body.single-product .woocommerce div.product .reset_variations {
	font-size: 12px;
	color: var(--ink-dim);
	text-decoration: underline;
	display: inline-block;
	margin-top: 6px;
}

body.single-product .woocommerce div.product .woocommerce-variation-price { margin-bottom: 16px; }
body.single-product .woocommerce div.product .woocommerce-variation-price .price { font-size: 24px !important; }
body.single-product .woocommerce div.product .woocommerce-variation-availability { margin-bottom: 12px; }

/* ---------- add to cart ---------- */

body.single-product .woocommerce div.product form.cart {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin: 0;
	padding-top: 4px;
}
body.single-product .woocommerce div.product form.cart::before,
body.single-product .woocommerce div.product form.cart::after { display: none; }

body.single-product .woocommerce div.product form.cart .variations,
body.single-product .woocommerce div.product form.cart .single_variation_wrap { width: 100%; }

body.single-product .woocommerce .quantity {
	display: flex;
	align-items: center;
	border: 1px solid var(--line-strong);
	border-radius: 100px;
	overflow: hidden;
	height: 50px;
}
body.single-product .woocommerce .quantity .qty {
	width: 66px;
	height: 50px;
	border: none;
	background: transparent;
	color: var(--ink);
	text-align: center;
	font-family: 'JetBrains Mono', monospace;
	font-size: 15px;
	font-weight: 600;
	outline: none;
}

body.single-product .woocommerce div.product form.cart .button.single_add_to_cart_button {
	flex: 1;
	min-width: 220px;
	height: 50px;
	font-size: 14px;
	letter-spacing: .01em;
}

/* ---------- meta ---------- */

body.single-product .woocommerce div.product .product_meta {
	border-top: 1px solid var(--line);
	margin-top: 26px;
	padding-top: 20px;
	font-size: 12px;
	font-family: 'JetBrains Mono', monospace;
	color: var(--ink-dim);
	line-height: 1.9;
}
body.single-product .woocommerce div.product .product_meta > span { display: block; }
body.single-product .woocommerce div.product .product_meta a { color: var(--ink); text-decoration: underline; }

/* ---------- tabs / description ---------- */

body.single-product .woocommerce div.product .woocommerce-tabs {
	grid-column: 1 / -1;
	border-top: 1px solid var(--line);
	margin-top: 20px;
	padding-top: 44px;
}

body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 0;
	margin: 0 0 30px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	border: none;
}
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs::before { display: none; }
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: transparent;
	border: 1px solid var(--line);
	border-radius: 100px;
	padding: 0;
	margin: 0;
	box-shadow: none;
}
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li::before,
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none; }
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li a {
	padding: 10px 20px;
	font-size: 13px;
	font-weight: 600;
	color: var(--ink);
	display: block;
	font-family: 'Inter', sans-serif;
}
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	background: var(--ink);
	border-color: var(--ink);
}
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--bg); }

/* the description itself - this is what looked unstyled */
body.single-product .woocommerce div.product .woocommerce-tabs .panel {
	max-width: 820px;
	font-size: 15.5px;
	line-height: 1.75;
	color: var(--ink-dim);
	margin: 0;
	padding: 0;
}
body.single-product .woocommerce div.product .woocommerce-tabs .panel > h2:first-child { display: none; }
body.single-product .woocommerce div.product .woocommerce-tabs .panel h2 {
	font-family: 'Archivo', sans-serif;
	font-size: 22px;
	color: var(--ink);
	margin: 30px 0 12px;
}
body.single-product .woocommerce div.product .woocommerce-tabs .panel h3 { font-size: 17px; color: var(--ink); margin: 24px 0 10px; }
body.single-product .woocommerce div.product .woocommerce-tabs .panel p { margin: 0 0 16px; }
body.single-product .woocommerce div.product .woocommerce-tabs .panel p:first-of-type {
	font-size: 17px;
	line-height: 1.65;
	color: var(--ink);
}
body.single-product .woocommerce div.product .woocommerce-tabs .panel ul,
body.single-product .woocommerce div.product .woocommerce-tabs .panel ol { margin: 0 0 18px 20px; }
body.single-product .woocommerce div.product .woocommerce-tabs .panel li { margin-bottom: 7px; }

/* attributes table inside "Additional information" */
body.single-product .woocommerce div.product .woocommerce-tabs .shop_attributes {
	border: 1px solid var(--line);
	border-radius: 12px;
	overflow: hidden;
	max-width: 560px;
	font-size: 14px;
}
body.single-product .woocommerce div.product .woocommerce-tabs .shop_attributes th,
body.single-product .woocommerce div.product .woocommerce-tabs .shop_attributes td {
	padding: 13px 18px;
	border-bottom: 1px solid var(--line);
	background: transparent;
	font-style: normal;
}
body.single-product .woocommerce div.product .woocommerce-tabs .shop_attributes th {
	font-weight: 600;
	color: var(--ink-dim);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .04em;
	width: 40%;
}
body.single-product .woocommerce div.product .woocommerce-tabs .shop_attributes tr:last-child th,
body.single-product .woocommerce div.product .woocommerce-tabs .shop_attributes tr:last-child td { border-bottom: none; }

/* ---------- related ---------- */

body.single-product .woocommerce div.product .related,
body.single-product .woocommerce div.product .upsells {
	grid-column: 1 / -1;
	border-top: 1px solid var(--line);
	margin-top: 30px;
	padding-top: 44px;
}
body.single-product .woocommerce div.product .related > h2,
body.single-product .woocommerce div.product .upsells > h2 {
	font-family: 'Archivo', sans-serif;
	font-weight: 800;
	letter-spacing: -.02em;
	font-size: clamp(21px, 2.4vw, 30px);
	margin: 0 0 26px;
}

/* ---------- mobile ---------- */

@media (max-width: 900px) {

	body.single-product .woocommerce div.product {
		grid-template-columns: minmax(0, 1fr);
		gap: 26px;
		padding: 16px 18px 56px;
	}

	body.single-product .site-main,
	body.single-product .woocommerce-notices-wrapper { padding: 0 18px; }

	body.single-product .woocommerce div.product .woocommerce-product-gallery { position: static; }
	body.single-product .woocommerce div.product .woocommerce-product-gallery__image img {
		height: 300px;
		max-height: 42vh;
		padding: 6%;
	}
	body.single-product .woocommerce div.product .flex-control-thumbs li { width: 56px; height: 56px; }

	body.single-product .woocommerce div.product .product_title { font-size: clamp(21px, 5.6vw, 28px); }
	body.single-product .woocommerce div.product p.price,
	body.single-product .woocommerce div.product span.price { font-size: 23px; margin-top: 12px; }

	body.single-product .woocommerce div.product table.variations select { max-width: 100%; }

	body.single-product .woocommerce div.product form.cart { flex-direction: column; align-items: stretch; }
	body.single-product .woocommerce .quantity { align-self: flex-start; height: 46px; }
	body.single-product .woocommerce .quantity .qty { height: 46px; }
	body.single-product .woocommerce div.product form.cart .button.single_add_to_cart_button {
		width: 100%;
		min-width: 0;
		height: 48px;
	}

	body.single-product .woocommerce div.product .woocommerce-tabs { padding-top: 32px; }
	body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li a { padding: 8px 15px; font-size: 12px; }
	body.single-product .woocommerce div.product .woocommerce-tabs .panel { font-size: 14.5px; }
	body.single-product .woocommerce div.product .woocommerce-tabs .panel p:first-of-type { font-size: 15.5px; }
	body.single-product .woocommerce div.product .related,
	body.single-product .woocommerce div.product .upsells { padding-top: 32px; }
}

/* =========================================================================
   16. BRAND COLOUR LOCK
   WooCommerce ships hard-coded purple buttons (#a46497) and green prices
   (#77a464). Load order is handled in functions.php, but these belt-and-
   braces rules make sure the palette can never leak through - including
   from a caching plugin that reorders stylesheets.
   ========================================================================= */

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.wc-block-components-button {
	background-color: var(--ink) !important;
	background-image: none !important;
	color: var(--bg) !important;
	border-color: var(--ink) !important;
	text-shadow: none !important;
	font-family: 'Inter', sans-serif !important;
	font-weight: 600 !important;
	border-radius: 100px !important;
}

.woocommerce a.button.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce button.button.alt.disabled,
.woocommerce button.button.alt:disabled {
	background-color: var(--ink) !important;
	color: var(--bg) !important;
	opacity: .38 !important;
	cursor: not-allowed;
}

/* secondary / outline buttons keep their outline treatment */
.woocommerce .button.wc-backward,
.woocommerce a.button.wc-backward {
	background-color: transparent !important;
	color: var(--ink) !important;
	border-color: var(--line-strong) !important;
}

/* prices are never green */
.woocommerce .price,
.woocommerce span.price,
.woocommerce p.price,
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price,
.woocommerce-Price-amount,
.woocommerce-variation-price .price {
	color: var(--ink) !important;
}

.woocommerce .price del,
.woocommerce div.product p.price del { color: var(--ink-dim) !important; }

/* stars, notices and the on-sale badge follow the palette too */
.woocommerce .star-rating,
.woocommerce p.stars a,
.woocommerce .star-rating span { color: var(--ink) !important; }

.woocommerce span.onsale {
	background: var(--ink) !important;
	color: var(--bg) !important;
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	font-weight: 600;
	min-height: 0;
	min-width: 0;
	line-height: 1;
	padding: 7px 12px;
	border-radius: 100px;
	top: 12px;
	left: 12px;
	margin: 0;
}

.woocommerce-message,
.woocommerce-info { border-top-color: var(--ink) !important; }
.woocommerce-error { border-top-color: var(--ink) !important; }

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before { color: var(--ink) !important; }

/* quantity input arrows */
.woocommerce .quantity input.qty { color: var(--ink) !important; }

/* short description list markers were being reset by WooCommerce */
body.single-product .woocommerce div.product .woocommerce-product-details__short-description ul { list-style: none !important; }

/* =========================================================================
   17. PHONE MODEL FILTER  (second chip row under the categories)
   ========================================================================= */

.model-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px dashed var(--line);
	overflow-x: auto;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}
.model-row::-webkit-scrollbar { display: none; }

.model-row__label {
	flex: 0 0 auto;
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--ink-dim);
	padding-right: 4px;
}

.chip--model {
	flex: 0 0 auto;
	padding: 6px 14px;
	font-size: 12px;
	border-radius: 100px;
	border: 1px solid var(--line);
	white-space: nowrap;
	background: transparent;
	color: var(--ink);
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.chip--model:hover { border-color: var(--line-strong); }
.chip--model.active {
	background: var(--ink);
	color: var(--bg);
	border-color: var(--ink);
}

/* "fits" label on the card, replacing the SKU when a model is known */
.prod-card .prod-fits {
	display: block;
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	color: var(--ink-dim);
	line-height: 1.4;
	margin-bottom: 8px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 900px) {
	.model-row {
		margin: 10px -18px 0;
		padding: 10px 18px 2px;
	}
	.model-row__label { display: none; }
	.chip--model { padding: 6px 12px; font-size: 11.5px; }
}

/* =========================================================================
   18. BUNDLE HERO  [ohad_bundle]
   ========================================================================= */

.ohad-bundle {
	padding: 76px 0;
	position: relative;
	overflow: hidden;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: var(--bg-soft);
}

.ohad-bundle__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

.ohad-bundle--right .ohad-bundle__media { order: 2; }
.ohad-bundle--right .ohad-bundle__body  { order: 1; }

/* ---------- media ---------- */

.ohad-bundle__media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 300px;
}

.ohad-bundle__media img {
	position: relative;
	z-index: 2;
	max-height: 380px;
	width: auto;
	object-fit: contain;
	filter: drop-shadow(0 24px 38px rgba(0, 0, 0, .16));
}
html[data-theme="dark"] .ohad-bundle__media img { filter: drop-shadow(0 24px 38px rgba(0, 0, 0, .65)); }

.ohad-bundle__glow {
	position: absolute;
	z-index: 1;
	width: min(76%, 360px);
	aspect-ratio: 1;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--bg);
}

/* saving badge */
.ohad-bundle__save {
	position: absolute;
	z-index: 3;
	top: 6%;
	right: 2%;
	background: var(--ink);
	color: var(--bg);
	font-family: 'JetBrains Mono', monospace;
	font-size: 14px;
	font-weight: 600;
	padding: 11px 20px;
	border-radius: 100px;
	white-space: nowrap;
	box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .45);
}
.ohad-bundle__save .amount,
.ohad-bundle__save .woocommerce-Price-amount { color: var(--bg) !important; }
.ohad-bundle--left .ohad-bundle__save { right: auto; left: 2%; }

/* ---------- body ---------- */

.ohad-bundle__body h2 {
	font-size: clamp(27px, 3.4vw, 42px);
	line-height: 1.06;
	margin: 16px 0 12px;
}

.ohad-bundle__lead {
	color: var(--ink-dim);
	font-size: 15px;
	max-width: 430px;
	margin-bottom: 22px;
}

.ohad-bundle__parts {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
	border-top: 1px solid var(--line);
	max-width: 430px;
}

.ohad-bundle__parts li {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding: 11px 0;
	border-bottom: 1px solid var(--line);
	font-size: 14px;
}

.ohad-bundle__part-name { color: var(--ink); }
.ohad-bundle__part-name em {
	font-style: normal;
	color: var(--ink-dim);
	margin-right: 6px;
	font-family: 'JetBrains Mono', monospace;
}

.ohad-bundle__part-price {
	font-family: 'JetBrains Mono', monospace;
	font-size: 13px;
	color: var(--ink-dim);
	white-space: nowrap;
}

.ohad-bundle__pricing {
	display: flex;
	align-items: baseline;
	gap: 14px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.ohad-bundle__was {
	font-family: 'JetBrains Mono', monospace;
	font-size: 18px;
	color: var(--ink-dim);
	text-decoration: line-through;
}
.ohad-bundle__was .amount { color: var(--ink-dim) !important; }

.ohad-bundle__now {
	font-family: 'JetBrains Mono', monospace;
	font-size: 34px;
	font-weight: 600;
	color: var(--ink);
	line-height: 1;
}

.ohad-bundle__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- animation ---------- */

.ohad-bundle__media,
.ohad-bundle__body > * { opacity: 0; }

.ohad-bundle.is-in .ohad-bundle__media,
.ohad-bundle.is-in .ohad-bundle__body > * { opacity: 1; }

.ohad-bundle.is-in .ohad-bundle__media {
	animation: ohadSlideInRight .9s cubic-bezier(.16, .84, .32, 1) both;
}
.ohad-bundle--left.is-in .ohad-bundle__media {
	animation-name: ohadSlideIn;
}

.ohad-bundle.is-in .ohad-bundle__body > * {
	animation: ohadRise .65s cubic-bezier(.22, .61, .36, 1) both;
}
.ohad-bundle.is-in .ohad-bundle__body > *:nth-child(1) { animation-delay: .10s; }
.ohad-bundle.is-in .ohad-bundle__body > *:nth-child(2) { animation-delay: .18s; }
.ohad-bundle.is-in .ohad-bundle__body > *:nth-child(3) { animation-delay: .26s; }
.ohad-bundle.is-in .ohad-bundle__body > *:nth-child(4) { animation-delay: .34s; }
.ohad-bundle.is-in .ohad-bundle__body > *:nth-child(5) { animation-delay: .42s; }
.ohad-bundle.is-in .ohad-bundle__body > *:nth-child(6) { animation-delay: .50s; }

.ohad-bundle.is-in .ohad-bundle__glow {
	animation: ohadRing 1.1s cubic-bezier(.16, .84, .32, 1) both;
}
.ohad-bundle.is-in .ohad-bundle__save {
	animation: ohadTagIn .6s cubic-bezier(.34, 1.56, .64, 1) .55s both;
}

.ohad-bundle__media img { transition: transform .5s cubic-bezier(.22, .61, .36, 1); }
.ohad-bundle:hover .ohad-bundle__media img { transform: translateY(-8px) scale(1.03); }

@media (max-width: 900px) {
	.ohad-bundle { padding: 48px 0; }
	.ohad-bundle__grid { grid-template-columns: 1fr; gap: 24px; }
	.ohad-bundle--right .ohad-bundle__media,
	.ohad-bundle--right .ohad-bundle__body { order: 0; }
	.ohad-bundle__media { min-height: 230px; }
	.ohad-bundle__media img { max-height: 240px; }
	.ohad-bundle__glow { width: min(80%, 240px); }
	.ohad-bundle__save { font-size: 12px; padding: 8px 15px; top: 2%; right: 0; }
	.ohad-bundle--left .ohad-bundle__save { left: 0; }
	.ohad-bundle__body h2 { font-size: clamp(24px, 7vw, 32px); }
	.ohad-bundle__now { font-size: 28px; }
	.ohad-bundle__actions .btn { flex: 1; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
	.ohad-bundle__media,
	.ohad-bundle__body > * { opacity: 1 !important; }
}

/* =========================================================================
   19. ORDER RECEIVED / THANK YOU PAGE
   ========================================================================= */

body.woocommerce-order-received .woocommerce,
body.woocommerce-checkout .woocommerce-order {
	max-width: 820px;
	margin: 0 auto;
	padding: 44px 28px 80px;
}

/* the generic "thank you" line duplicates the panel heading */
.woocommerce-thankyou-order-received {
	font-family: 'Archivo', sans-serif;
	font-weight: 800;
	letter-spacing: -.02em;
	font-size: clamp(24px, 3.4vw, 34px);
	color: var(--ink);
	margin: 0 0 8px;
	text-align: center;
}

.woocommerce ul.order_details {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 12px;
	padding: 0;
	margin: 0 0 30px;
	list-style: none;
}

.woocommerce ul.order_details li {
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 15px 18px;
	margin: 0;
	font-size: 10px;
	font-family: 'Inter', sans-serif;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--ink-dim);
	float: none;
	border-right: 1px solid var(--line);
}

.woocommerce ul.order_details li strong {
	display: block;
	font-family: 'JetBrains Mono', monospace;
	font-size: 15px;
	font-weight: 600;
	color: var(--ink);
	text-transform: none;
	letter-spacing: 0;
	margin-top: 6px;
	word-break: break-word;
}

.woocommerce-order h2,
.woocommerce-order-details__title,
.woocommerce-column__title {
	font-family: 'Archivo', sans-serif;
	font-weight: 800;
	letter-spacing: -.02em;
	font-size: 19px;
	margin: 32px 0 16px;
	color: var(--ink);
}

.woocommerce-order .woocommerce-customer-details,
.woocommerce-order .woocommerce-order-details { margin-bottom: 8px; }

.woocommerce-customer-details address {
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 18px 20px;
	font-style: normal;
	font-size: 14px;
	line-height: 1.7;
	color: var(--ink);
	width: 100%;
}

.woocommerce-customer-details .woocommerce-customer-details--phone,
.woocommerce-customer-details .woocommerce-customer-details--email {
	margin: 8px 0 0;
	padding-left: 0;
	font-family: 'JetBrains Mono', monospace;
	font-size: 13px;
	color: var(--ink-dim);
}
.woocommerce-customer-details .woocommerce-customer-details--phone::before,
.woocommerce-customer-details .woocommerce-customer-details--email::before { display: none; }

.woocommerce-order .col2-set { display: grid; grid-template-columns: 1fr; gap: 0; }
.woocommerce-order .col2-set .col-1,
.woocommerce-order .col2-set .col-2 { width: 100%; float: none; }

@media (max-width: 900px) {
	body.woocommerce-order-received .woocommerce { padding: 30px 18px 60px; }
	.woocommerce ul.order_details { grid-template-columns: 1fr 1fr; gap: 10px; }
	.woocommerce ul.order_details li { padding: 12px 14px; }
	.woocommerce ul.order_details li strong { font-size: 13px; }
}

/* =========================================================================
   20. WPFORMS  (contact page)
   ========================================================================= */

.wpforms-container,
.wpforms-container-full { margin: 0 !important; max-width: 100% !important; }

.wpforms-container form.wpforms-form .wpforms-field { padding: 0 0 18px !important; }

.wpforms-container form.wpforms-form .wpforms-field-label {
	font-family: 'Inter', sans-serif !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	color: var(--ink) !important;
	margin-bottom: 8px !important;
}

.wpforms-container form.wpforms-form .wpforms-field-sublabel,
.wpforms-container form.wpforms-form .wpforms-field-description {
	font-size: 12px !important;
	color: var(--ink-dim) !important;
	font-family: 'Inter', sans-serif !important;
}

.wpforms-container form.wpforms-form input[type=text],
.wpforms-container form.wpforms-form input[type=email],
.wpforms-container form.wpforms-form input[type=tel],
.wpforms-container form.wpforms-form input[type=number],
.wpforms-container form.wpforms-form input[type=url],
.wpforms-container form.wpforms-form select,
.wpforms-container form.wpforms-form textarea {
	width: 100% !important;
	max-width: 100% !important;
	padding: 13px 16px !important;
	height: auto !important;
	border: 1px solid var(--line) !important;
	border-radius: 10px !important;
	background: var(--bg) !important;
	color: var(--ink) !important;
	font-family: 'Inter', sans-serif !important;
	font-size: 14px !important;
	box-shadow: none !important;
	transition: border-color .2s ease;
}

.wpforms-container form.wpforms-form textarea { min-height: 130px !important; resize: vertical !important; }

.wpforms-container form.wpforms-form input:focus,
.wpforms-container form.wpforms-form textarea:focus,
.wpforms-container form.wpforms-form select:focus {
	border-color: var(--line-strong) !important;
	outline: none !important;
	box-shadow: none !important;
}

.wpforms-container form.wpforms-form input::placeholder,
.wpforms-container form.wpforms-form textarea::placeholder { color: var(--ink-dim) !important; }

.wpforms-container form.wpforms-form button[type=submit],
.wpforms-container form.wpforms-form .wpforms-submit {
	width: 100% !important;
	background: var(--ink) !important;
	color: var(--bg) !important;
	border: 1px solid var(--ink) !important;
	border-radius: 100px !important;
	padding: 15px 28px !important;
	font-family: 'Inter', sans-serif !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	margin-top: 4px !important;
	transition: transform .18s ease !important;
}
.wpforms-container form.wpforms-form button[type=submit]:hover { transform: translateY(-2px); }

.wpforms-container .wpforms-required-label { color: var(--ink-dim) !important; }

.wpforms-container form.wpforms-form label.wpforms-error {
	color: var(--ink) !important;
	font-size: 12px !important;
	margin-top: 6px !important;
}
.wpforms-container form.wpforms-form input.wpforms-error,
.wpforms-container form.wpforms-form textarea.wpforms-error { border-color: var(--line-strong) !important; }

.wpforms-confirmation-container-full,
div[submit-success] > .wpforms-confirmation-container-full {
	background: var(--bg-soft) !important;
	border: 1px solid var(--line) !important;
	border-top: 2px solid var(--ink) !important;
	border-radius: 12px !important;
	color: var(--ink) !important;
	padding: 18px 20px !important;
	font-size: 14px !important;
}

/* the Contact page column holding the form */
.contact-grid .entry-content { min-width: 0; }
.contact-grid .entry-content > p:only-child {
	color: var(--ink-dim);
	font-size: 14px;
	border: 1px dashed var(--line);
	border-radius: 12px;
	padding: 22px;
}

/* =========================================================================
   21. SMALL LAYOUT CORRECTIONS
   ========================================================================= */

/* WooCommerce sometimes prints an empty notices wrapper that adds dead space */
.woocommerce-notices-wrapper:empty { display: none; }

/* keep any stray Woo message inside the page gutter */
body:not(.woocommerce-cart):not(.woocommerce-checkout) .woocommerce-message,
body:not(.woocommerce-cart):not(.woocommerce-checkout) .woocommerce-info,
body:not(.woocommerce-cart):not(.woocommerce-checkout) .woocommerce-error {
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
}

/* checkout coupon toggle sat flush against the form */
.woocommerce-form-coupon-toggle { margin-bottom: 20px; }
.woocommerce form.checkout_coupon {
	border: 1px solid var(--line) !important;
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 22px;
}

/* login prompt on checkout */
.woocommerce-form-login-toggle { margin-bottom: 16px; }
.woocommerce form.login,
.woocommerce form.register {
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 22px;
}

/* required-field asterisk was inheriting Woo red */
.woocommerce form .form-row .required,
.woocommerce .required { color: var(--ink-dim) !important; text-decoration: none; }

/* order review table on checkout */
.woocommerce-checkout-review-order-table { width: 100%; }
.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tfoot td { padding: 12px 16px; }
.woocommerce-checkout-review-order-table tfoot .order-total td { font-size: 17px; }

/* =========================================================================
   22. CHECKOUT FORM LAYOUT
   WooCommerce's billing fields use floated .form-row-first / .form-row-last,
   which collapse into the odd stacked-and-offset layout when the surrounding
   container is a grid. Lay them out explicitly instead.
   ========================================================================= */

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 16px;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > .form-row,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper > .form-row,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper > .form-row {
	grid-column: 1 / -1;
	width: 100% !important;
	float: none !important;
	margin: 0 0 16px !important;
	padding: 0 !important;
	clear: none !important;
	display: block;
}

.woocommerce-checkout .form-row-first { grid-column: 1 / 2 !important; }
.woocommerce-checkout .form-row-last  { grid-column: 2 / 3 !important; }

/* labels sat centred because the parent grid was stretching them */
.woocommerce-checkout form .form-row label,
.woocommerce form .form-row label {
	display: block !important;
	text-align: left !important;
	width: 100%;
	float: none !important;
}

.woocommerce form .form-row .woocommerce-input-wrapper { width: 100%; display: block; }

.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select { border-color: var(--line-strong) !important; }

.woocommerce form .form-row.woocommerce-validated input.input-text { border-color: var(--line) !important; }

/* the "YOUR ORDER" heading was overlapping the panel behind it */
.woocommerce-checkout #order_review_heading {
	margin: 0 0 14px !important;
	padding: 0 !important;
	position: static !important;
	background: transparent;
}

.woocommerce-checkout #order_review {
	margin-top: 0 !important;
	overflow: visible;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table {
	border: 1px solid var(--line);
	border-radius: 12px;
	overflow: hidden;
	margin: 0 0 20px;
	width: 100%;
	font-size: 14px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
	padding: 14px 16px;
	border-bottom: 1px solid var(--line);
	background: transparent;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table thead th {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--ink-dim);
	font-weight: 600;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr:last-child th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr:last-child td { border-bottom: none; }

.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name { line-height: 1.45; }
.woocommerce-checkout .woocommerce-checkout-review-order-table .product-quantity {
	font-family: 'JetBrains Mono', monospace;
	color: var(--ink-dim);
	font-weight: 400;
}

/* coupon bar sat under a stray black top border */
.woocommerce-form-coupon-toggle .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-info {
	border-top-width: 1px !important;
	border-color: var(--line) !important;
	border-radius: 12px;
}

@media (max-width: 900px) {
	.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
	.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper { grid-template-columns: 1fr; gap: 0; }
	.woocommerce-checkout .form-row-first,
	.woocommerce-checkout .form-row-last { grid-column: 1 / -1 !important; }
}

/* =========================================================================
   23. CHECKOUT ORDER PANEL - containment
   The review table was overflowing its rounded panel and the heading was
   sitting on the panel's top edge.
   ========================================================================= */

.woocommerce-checkout #order_review {
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 22px;
	overflow: hidden;
	background: var(--bg);
}

/* the heading belongs above the panel, not on its border */
.woocommerce-checkout #order_review_heading {
	display: block;
	margin: 0 0 12px !important;
	padding: 0 2px !important;
	border: none;
	background: none;
	line-height: 1.4;
}

/* table should not carry its own frame inside the panel */
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table,
.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table {
	border: none !important;
	border-radius: 0 !important;
	margin: 0 0 18px !important;
	width: 100% !important;
	table-layout: fixed;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
	padding: 12px 0 !important;
	border-bottom: 1px solid var(--line) !important;
	border-left: none !important;
	border-right: none !important;
	border-top: none !important;
	vertical-align: top;
	word-break: break-word;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table thead th:first-child,
.woocommerce-checkout .woocommerce-checkout-review-order-table tbody td:first-child,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th { text-align: left; width: 62%; }

.woocommerce-checkout .woocommerce-checkout-review-order-table thead th:last-child,
.woocommerce-checkout .woocommerce-checkout-review-order-table tbody td:last-child,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
	text-align: right;
	width: 38%;
	font-family: 'JetBrains Mono', monospace;
	white-space: nowrap;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name {
	font-size: 13.5px;
	line-height: 1.5;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total td {
	border-bottom: none !important;
	padding-top: 14px !important;
	font-size: 16px;
}

/* payment box inside the panel */
.woocommerce-checkout #order_review #payment { margin: 0; }
.woocommerce-checkout #order_review #payment ul.payment_methods { margin: 0 0 4px; }

/* privacy text was floating in an odd narrow column */
.woocommerce-privacy-policy-text,
.woocommerce-terms-and-conditions-wrapper {
	font-size: 12px;
	color: var(--ink-dim);
	line-height: 1.6;
	margin: 14px 0 0;
	max-width: 100%;
}
.woocommerce-privacy-policy-text p { margin: 0; font-size: 12px; }

/* place order button full width under the panel */
.woocommerce-checkout #place_order {
	width: 100% !important;
	margin-top: 16px !important;
	white-space: normal;
	line-height: 1.3;
	min-height: 50px;
	padding: 14px 20px !important;
}

@media (max-width: 900px) {
	.woocommerce-checkout #order_review { padding: 18px; border-radius: 12px; }
	.woocommerce-checkout .woocommerce-checkout-review-order-table thead th:first-child,
	.woocommerce-checkout .woocommerce-checkout-review-order-table tbody td:first-child { width: 58%; }
}
