﻿/**
 * Main Stylesheet
 *
 * @package ShopGen
 */

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--shopgen-text-color, #333333);
	background-color: #ffffff;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: var(--shopgen-heading-color, #111111);
}

h1 { font-size: clamp(28px, 4vw, 42px); }
h2 { font-size: clamp(24px, 3vw, 32px); }
h3 { font-size: clamp(20px, 2.5vw, 24px); }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
	margin-bottom: 1rem;
}

a {
	color: var(--shopgen-link-color, var(--shopgen-primary-color, #1a73e8));
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--shopgen-primary-color, #1a73e8);
	text-decoration: underline;
}

/* ============================================
   Layout
   ============================================ */
.site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-main {
	flex: 1;
	padding: 2rem 0;
}

body.home .site-main {
	padding: 0;
}

.container {
	max-width: var(--shopgen-container-width, 1200px);
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.full-width {
	max-width: 100%;
	padding-left: 20px;
	padding-right: 20px;
}

/* Keep global full-width spacing for content, but let header full-width be truly edge-to-edge. */
.site-header .header-inner.full-width,
.site-header .header-top-inner.full-width,
.site-header .header-main-inner.full-width,
.site-header .header-bottom-inner.full-width {
	padding-left: var(--shopgen-preset-edge-padding-x, 0px);
	padding-right: var(--shopgen-preset-edge-padding-x, 0px);
}

/* Keep unified preset headers truly edge-to-edge in full-width mode. */
.site-header .header-inner.full-width {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.content-area.full-width {
	padding-left: 0;
	padding-right: 0;
}

.content-area-inner {
	width: 100%;
}

.content-area.full-width .content-area-inner {
	padding-left: 0;
	padding-right: 0;
}

.content-wrapper {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
}

.content-wrapper.left-sidebar {
	flex-direction: row-reverse;
}

.content-wrapper.right-sidebar {
	flex-direction: row;
}

.content-inner {
	flex: 1;
	min-width: 0;
}

.widget-area {
	flex: 0 0 300px;
	width: 300px;
}

@media (max-width: 921px) {
	.content-wrapper {
		flex-direction: column;
		gap: 0;
	}

	.widget-area {
		width: 100%;
		flex: 0 0 auto;
		margin-top: 40px;
	}
}

/* ============================================
   Header
   ============================================ */
.site-header {
	background-color: #ffffff;
	border-bottom: 1px solid #e0e0e0;
	padding: 0rem 0;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 78px;
}

.header-content {
	display: flex;
	align-items: center;
	gap: 2rem;
	width: 100%;
}

.site-logo img,
.custom-logo {
	max-height: 60px;
	width: auto;
}

.site-branding {
	flex: 1;
}

.site-title {
	font-size: 24px;
	font-weight: 700;
	margin: 0;
}

.site-title a {
	color: var(--shopgen-heading-color, #111111);
	text-decoration: none;
}

.site-description {
	font-size: 14px;
	color: #666;
	margin: 0;
}

.main-navigation {
	flex: 1;
	position: relative;
}

.main-navigation > ul {
	list-style: none;
	display: flex;
	gap: 2rem;
	align-items: center;
	flex-wrap: wrap;
}

.main-navigation li {
	position: relative;
	list-style: none;
}

.main-navigation .sub-menu {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0;
}

.submenu-toggle {
	display: none;
}

.main-navigation a {
	color: var(--shopgen-text-color, #333333);
	text-decoration: none;
	font-weight: 500;
	padding: 0.5rem 0;
	display: block;
	line-height: 1.3;
}

.main-navigation a:hover {
	color: var(--shopgen-primary-color, #1a73e8);
	text-decoration: none;
}

.menu-toggle {
	display: none;
	background: #ffffff;
	border: 0;
	border-radius: 10px;
	cursor: pointer;
	padding: 0.6rem;
	align-items: center;
	justify-content: center;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.menu-toggle:hover {
	border-color: transparent;
	box-shadow: none;
}

.menu-toggle-icon {
	display: block;
	width: 22px;
	height: 2px;
	background-color: var(--shopgen-text-color, #333333);
	position: relative;
	transition: background-color 0.2s ease;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
	content: '';
	position: absolute;
	width: 24px;
	height: 2px;
	background-color: var(--shopgen-text-color, #333333);
	left: 0;
}

.menu-toggle-icon::before {
	top: -8px;
}

.menu-toggle-icon::after {
	bottom: -8px;
}

.main-navigation.toggled .menu-toggle-icon {
	background-color: transparent !important;
}

.main-navigation.toggled .menu-toggle-icon::before {
	top: 0;
	transform: rotate(45deg);
}

.main-navigation.toggled .menu-toggle-icon::after {
	bottom: 0;
	transform: rotate(-45deg);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
	transition: transform 0.2s ease, top 0.2s ease, bottom 0.2s ease;
}

@media (min-width: 769px) {
	.main-navigation .menu-item-has-children > a {
		padding-right: 1.1rem;
	}

	.main-navigation .menu-item-has-children > a::after {
		content: '';
		position: absolute;
		right: 0;
		top: 50%;
		width: 7px;
		height: 7px;
		border-right: 1.5px solid currentColor;
		border-bottom: 1.5px solid currentColor;
		transform: translateY(-60%) rotate(45deg);
		opacity: 0.7;
	}

	.main-navigation .sub-menu {
		position: absolute;
		left: 0;
		top: 100%;
		min-width: 220px;
		background: #ffffff;
		border: 1px solid rgba(0, 0, 0, 0.08);
		border-radius: 10px;
		box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
		padding: 0.35rem 0;
		z-index: 130;
	}

	.main-navigation .sub-menu li {
		width: 100%;
	}

	.main-navigation .sub-menu a {
		padding: 0.65rem 1rem;
		white-space: nowrap;
	}

	.main-navigation .sub-menu .sub-menu {
		left: calc(100% - 2px);
		top: -0.35rem;
	}

	.main-navigation li:hover > .sub-menu,
	.main-navigation li:focus-within > .sub-menu {
		display: block;
	}
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

 
	.header-search-shortcode {
  display: flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  flex: 1;
  z-index: 333;
}
 

.header-actions .header-search-shortcode {
	max-width: 100%;
}

.header-search-shortcode form {
	width: 100% !important;
	max-width: 100% !important;
}

.header-search-shortcode > * {
	width: 100% !important;
	max-width: 100% !important;
}

.header-search-shortcode input[type="search"],
.header-search-shortcode input[type="text"] {
	width: 100% !important;
}

.search-toggle,
.account-icon,
.wishlist-icon,
a.cart-icon,
button.cart-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: #ffffff;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.search-toggle {
	cursor: pointer;
	padding: 0;
}

.search-toggle-mobile {
	display: none;
}

.search-toggle-mobile .icon-close {
	display: none;
}

.search-toggle:hover,
.account-icon:hover,
.wishlist-icon:hover,
a.cart-icon:hover,
button.cart-icon:hover {
	transform: translateY(-1px);
	border-color: var(--shopgen-primary-color, #1a73e8);
	box-shadow: 0 8px 18px rgba(0,0,0,0.1);
	text-decoration: none;
}

/* Reserved space for cart plugin shortcode â€” keeps other icons away from cart */
.header-cart-slot {
	min-width: 140px;
	margin-left: 1rem;
	padding-left: 1rem;
	border-left: 1px solid rgba(0, 0, 0, 0.08);
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.site-header .header-icons-section .header-cart-slot {
	margin-left: 1rem;
	padding-left: 1rem;
	border-left: 1px solid rgba(0, 0, 0, 0.08);
}

/* Keep plugin mini-cart trigger inside header actions instead of floating at viewport corner. */
.site-header .header-cart-slot .forbana-cart-trigger {
	position: static !important;
	top: auto !important;
	right: auto !important;
	z-index: auto !important;
	margin: 0;
}

/* Plugin SVG uses .cart-icon class too; reset theme cart-pill styles on raw SVG/icon nodes. */
.site-header .header-cart-slot .forbana-cart-trigger .cart-icon,
.site-header .header-cart-slot .forbana-cart-trigger svg.cart-icon {
	display: block;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	transform: none !important;
}


@media (max-width: 768px) {
	.menu-toggle {
		display: inline-flex;
		align-self: flex-end;
		border-radius: 0;
	}

	.main-navigation {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: stretch;
	}

	.main-navigation > ul {
		display: none;
		position: static;
		background-color: #ffffff;
		flex-direction: column;
		padding: 0.4rem 0.85rem;
		margin-top: 0.65rem;
		box-shadow: 0 12px 28px rgba(0,0,0,0.12);
		border: 1px solid rgba(0,0,0,0.08);
		border-radius: 14px;
		gap: 0;
		z-index: 30;
	}

	.main-navigation > ul > li + li {
		border-top: 1px solid rgba(0, 0, 0, 0.08);
	}

	.main-navigation a {
		padding: 0.75rem 0.25rem;
	}

	.main-navigation.toggled > ul {
		display: flex;
	}

	.main-navigation .menu-item-has-children > a {
		padding-right: 2.25rem;
	}

	.main-navigation .submenu-toggle {
		display: inline-flex;
		position: absolute;
		top: 0.52rem;
		right: 0;
		width: 28px;
		height: 28px;
		align-items: center;
		justify-content: center;
		padding: 0;
		border: 0;
		background: transparent;
		cursor: pointer;
		color: var(--shopgen-text-color, #333333);
	}

	.main-navigation .submenu-toggle::before,
	.main-navigation .submenu-toggle::after {
		content: '';
		position: absolute;
		width: 12px;
		height: 2px;
		background: currentColor;
		border-radius: 2px;
		transition: transform 0.2s ease, opacity 0.2s ease;
	}

	.main-navigation .submenu-toggle::after {
		transform: rotate(90deg);
	}

	.main-navigation .menu-item-has-children.submenu-open > .submenu-toggle::after {
		opacity: 0;
		transform: rotate(90deg) scaleX(0.2);
	}

	.main-navigation .menu-item-has-children > .sub-menu {
		display: none;
		position: static;
		background: transparent;
		border: 0;
		box-shadow: none;
		margin: 0.2rem 0 0.55rem;
		padding: 0 0 0 0.7rem;
		border-left: 1px solid rgba(0, 0, 0, 0.1);
		width: 100%;
		min-width: 0;
	}

	.main-navigation .menu-item-has-children.submenu-open > .sub-menu {
		display: block;
	}

	.main-navigation .sub-menu a {
		padding: 0.6rem 0.25rem;
	}

	.sg-header-main {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 1.5rem;
		align-items: center;
	}

	.sg-header-main .sg-header-nav-main {
		display: none;
	}

	.sg-header-main .sg-header-actions {
		justify-self: end;
		gap: 0.6rem;
	}

	.sg-header-main .sg-header-call-text {
		display: none;
	}

	.sg-header-main .sg-header-search-slot {
		display: none;
	}

	.sg-header-navband .main-navigation > ul {
		display: none;
	}

	.sg-header-navband .main-navigation.toggled > ul {
		display: flex;
	}
}

/* Unified Preset Header */
.site-header .sg-header-shell {
	width: 100%;
}

.site-header .sg-header-topbar {
	padding: 0.5rem 0.9rem;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.site-header .sg-header-topbar-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	gap: 0.75rem;
}
.site-header .sg-header-topbar-inner.is-centered {
	grid-template-columns: 1fr;
}
.site-header .sg-header-topbar-left,
.site-header .sg-header-topbar-right {
	font-size: 12px;
	line-height: 1.2;
	text-transform: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.site-header .sg-header-topbar-right {
	text-align: right;
}
.site-header .sg-header-topbar-text {
	text-align: center;
	text-transform: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.site-header .sg-flexile-topbar-left {
	display: inline-flex;
	align-items: center;
	gap: 1.1rem;
	font-weight: 600;
	font-size: 13px;
	white-space: nowrap;
}

.site-header .sg-flexile-top-item {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.site-header .sg-flexile-top-icon {
	font-size: 12px;
	line-height: 1;
	opacity: 0.95;
}

.site-header .sg-flexile-topbar-right-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1rem;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}

.site-header .sg-flexile-top-location {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: inherit;
	text-decoration: none;
}

.site-header .sg-flexile-socials {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.site-header .sg-flexile-socials a {
	color: inherit;
	text-decoration: none;
	font-weight: 700;
	font-size: 12px;
	line-height: 1;
	opacity: 0.95;
}

.site-header .sg-flexile-socials a:hover,
.site-header .sg-flexile-top-location:hover {
	opacity: 1;
	text-decoration: none;
}

/* Flexile-like visual treatment when Flexile shortcodes are active. */
.site-header .sg-header-shell.sg-flexile-layout .sg-header-main .main-navigation a {
	font-weight: 500;
	letter-spacing: 0.01em;
}

.site-header .sg-header-shell.sg-flexile-layout .sg-header-actions .account-icon,
.site-header .sg-header-shell.sg-flexile-layout .sg-header-actions .wishlist-icon,
.site-header .sg-header-shell.sg-flexile-layout .sg-header-actions .search-toggle {
	width: auto;
	height: auto;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	transform: none;
	line-height: 1;
}

.site-header .sg-header-shell.sg-flexile-layout .sg-header-actions .account-icon:hover,
.site-header .sg-header-shell.sg-flexile-layout .sg-header-actions .wishlist-icon:hover,
.site-header .sg-header-shell.sg-flexile-layout .sg-header-actions .search-toggle:hover {
	border: 0;
	box-shadow: none;
	transform: none;
}

.site-header .sg-header-shell.sg-flexile-layout .sg-header-actions .account-icon svg,
.site-header .sg-header-shell.sg-flexile-layout .sg-header-actions .wishlist-icon svg {
	width: 28px;
	height: 28px;
	stroke-width: 1.7;
}

.site-header .header-cart-slot .cart-icon {
	position: relative;
}

.site-header .header-cart-slot .cart-count {
	position: absolute;
	top: -4px;
	right: -5px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	border-radius: 999px;
	background: #ff7a00;
	color: #ffffff;
	font-size: 10px;
	font-weight: 700;
	line-height: 16px;
	text-align: center;
}

.site-header .sg-header-main {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 1.5rem;
	align-items: center;
	padding: var(--shopgen-preset-header-padding-y, 16px) 0;
}

.site-header .sg-header-logo,
.site-header .sg-header-nav {
	min-width: 0;
}

.site-header .sg-header-nav-main .main-navigation > ul {
	justify-content: center;
	gap: var(--shopgen-preset-menu-gap, 24px);
}

.site-header .sg-header-nav-main .main-navigation a,
.site-header .sg-header-navband .main-navigation a {
	font-size: var(--shopgen-preset-nav-font-size, 16px);
	font-weight: 600;
	text-decoration: none;
}

.site-header .sg-header-actions {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.75rem;
	white-space: nowrap;
}
.site-header .sg-header-actions-shortcode {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.site-header .sg-header-bottom-strip {
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	background: #efefef;
	padding: 0.85rem 0;
}

.site-header .sg-header-call {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-weight: 700;
	font-size: var(--shopgen-preset-call-font-size, 16px);
	color: var(--shopgen-preset-call-color, #0f172a);
	text-decoration: none;
}

.site-header .sg-header-call-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--shopgen-preset-icon-box-size, 34px);
	height: var(--shopgen-preset-icon-box-size, 34px);
	border-radius: 999px;
	color: var(--shopgen-preset-call-color, #0f172a);
	background: var(--shopgen-preset-icon-bg-color, #f8fafc);
	border: 1px solid rgba(15, 23, 42, 0.1);
}

.site-header .sg-header-call-icon .sg-header-call-icon-svg {
	width: var(--shopgen-preset-icon-size, 20px);
	height: var(--shopgen-preset-icon-size, 20px);
}

.site-header .sg-header-quote {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: var(--shopgen-preset-cta-padding-y, 10px) var(--shopgen-preset-cta-padding-x, 20px);
	border-radius: var(--shopgen-preset-cta-radius, 8px);
	background: var(--shopgen-preset-cta-bg-color, #e11d48);
	color: var(--shopgen-preset-cta-text-color, #ffffff);
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}

.site-header .sg-header-quote:hover {
	background: var(--shopgen-preset-cta-hover-bg-color, #be123c);
	color: var(--shopgen-preset-cta-text-color, #ffffff);
	text-decoration: none;
}

.site-header .sg-header-search-slot {
	min-width: 240px;
	max-width: 320px;
}

.site-header .sg-header-search-slot .header-search-shortcode {
	max-width: 100%;
	min-width: 0;
}

.site-header .sg-header-navband {
	background: var(--shopgen-preset-nav-band-bg, #0b3b77);
	padding: 0.35rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.site-header .sg-header-navband .main-navigation > ul {
	justify-content: center;
	gap: 1.25rem;
}

.site-header .sg-header-navband .main-navigation a {
	color: var(--shopgen-preset-nav-band-text, #ffffff);
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.03em;
}

/* Flexile V2 store-strip treatment matching the screenshot style. */
.site-header .sg-header-shell.sg-flexile-store-layout .sg-header-topbar {
	padding: 8px 18px;
	background: #e52521;
	border-bottom: 0;
	text-transform: none;
	letter-spacing: 0;
}

.site-header .sg-header-shell.sg-flexile-store-layout .sg-header-topbar-inner {
	grid-template-columns: 1fr;
	justify-items: center;
}

.site-header .sg-header-shell.sg-flexile-store-layout .sg-header-topbar-left,
.site-header .sg-header-shell.sg-flexile-store-layout .sg-header-topbar-right {
	display: none;
}

.site-header .sg-header-shell.sg-flexile-store-layout .sg-header-topbar-text {
	background: rgba(255, 255, 255, 0.14);
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	padding: 10px 26px;
	border-radius: 999px;
	line-height: 1.35;
	max-width: min(100%, 1240px);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.site-header .sg-header-shell.sg-flexile-store-layout .sg-header-main {
	background: #efefef;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	padding-top: 18px;
	padding-bottom: 18px;
	gap: 2rem;
}

.site-header .sg-header-shell.sg-flexile-store-layout .sg-header-main .main-navigation > ul {
	justify-content: center;
	gap: 38px;
}

.site-header .sg-header-shell.sg-flexile-store-layout .sg-header-main .main-navigation a {
	font-size: 17px;
	font-weight: 600;
	color: #2f3132;
	padding-top: 4px;
	padding-bottom: 4px;
}

.site-header .sg-header-shell.sg-flexile-store-layout .sg-header-actions {
	gap: 0;
}

.site-header .sg-header-shell.sg-flexile-store-layout .sg-header-call {
	display: none;
}

.site-header .sg-header-shell.sg-flexile-store-layout .sg-header-quote {
	font-size: 18px;
	font-weight: 700;
	padding: 14px 34px;
	border-radius: 999px;
	line-height: 1;
	background: #e52521;
	color: #ffffff;
}

.site-header .sg-header-shell.sg-flexile-store-layout .sg-header-bottom-strip {
	background: #efefef;
	padding-top: 14px;
	padding-bottom: 14px;
	border-top: 0;
}

.site-header .sg-flexile-feature-strip {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
	align-items: center;
}

.site-header .sg-flexile-feature-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: #333333;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.2;
}

.site-header .sg-flexile-feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	line-height: 1;
	opacity: 0.9;
}

.site-header .sg-flexile-feature-icon svg {
	width: 16px;
	height: 16px;
	display: block;
}

.site-header .sg-flexile-feature-text {
	white-space: nowrap;
}

@media (max-width: 921px) {
	.site-header .sg-header-main {
		grid-template-columns: 1fr auto;
		grid-template-areas:
			'logo actions'
			'nav nav';
		gap: 0.8rem 1rem;
	}

	.site-header .sg-header-logo {
		grid-area: logo;
	}

	.site-header .sg-header-actions {
		grid-area: actions;
	}

	.site-header .sg-header-nav-main {
		grid-area: nav;
	}

	.site-header .sg-header-nav-main .main-navigation > ul {
		justify-content: flex-start;
	}

	.site-header .sg-header-call-text {
		display: none;
	}
	.site-header .sg-header-topbar-inner {
		grid-template-columns: 1fr;
		gap: 0.3rem;
	}
	.site-header .sg-header-topbar-left,
		.site-header .sg-header-topbar-right,
		.site-header .sg-header-topbar-text {
			text-align: center;
		}

	.site-header .sg-flexile-topbar-left,
	.site-header .sg-flexile-topbar-right-wrap {
		justify-content: center;
		flex-wrap: wrap;
		row-gap: 0.3rem;
	}

	.site-header .sg-header-search-slot {
		display: none;
	}

	.site-header .sg-header-navband .main-navigation > ul {
		display: none;
	}

	.site-header .sg-header-navband .main-navigation.toggled > ul {
		display: flex;
	}

	.site-header .sg-header-shell.sg-flexile-store-layout .sg-header-topbar-text {
		font-size: 16px;
		padding: 8px 14px;
		white-space: normal;
		text-overflow: clip;
	}

	.site-header .sg-header-shell.sg-flexile-store-layout .sg-header-main {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.site-header .sg-header-shell.sg-flexile-store-layout .sg-header-main .main-navigation > ul {
		gap: 0;
	}

	.site-header .sg-header-shell.sg-flexile-store-layout .sg-header-main .main-navigation a {
		font-size: 16px;
	}

	.site-header .sg-header-shell.sg-flexile-store-layout .sg-header-actions {
		justify-content: flex-start;
	}

	.site-header .sg-header-shell.sg-flexile-store-layout .sg-header-quote {
		font-size: 16px;
		padding: 10px 20px;
	}

	.site-header .sg-flexile-feature-strip {
		display: flex;
		overflow-x: auto;
		gap: 16px;
		padding-bottom: 2px;
	}

	.site-header .sg-flexile-feature-item {
		font-size: 13px;
		white-space: nowrap;
		justify-content: flex-start;
		flex: 0 0 auto;
	}

	.site-header .sg-flexile-feature-icon {
		font-size: 14px;
	}
}

/* ============================================
   Content
   ============================================ */
.entry-header {
	margin-bottom: 2rem;
}

.entry-title {
	margin-bottom: 1rem;
}

/* Keep Forbana cart drawer above header/search layers */
#forbana-cart-container,
#forbana-cart-container .forbana-cart-drawer,
.forbana-cart-drawer,
.forbana-cart-trigger {
	z-index: 10050 !important;
}

.entry-title a {
	color: var(--shopgen-heading-color, #111111);
	text-decoration: none;
}

.entry-title a:hover {
	color: var(--shopgen-primary-color, #1a73e8);
}

.entry-meta {
	font-size: 14px;
	color: #666;
	margin-bottom: 1rem;
}

.entry-content {
	margin-bottom: 2rem;
}

/* ============================================
   WooCommerce My Account (Logged-out)
   ============================================ */
body.woocommerce-account:not(.logged-in) .entry-header {
	margin-bottom: 1.25rem;
}

body.woocommerce-account:not(.logged-in) .entry-title,
body.woocommerce-account:not(.logged-in) .woocommerce h2 {
	font-size: clamp(1.6rem, 3.1vw, 2.15rem);
	line-height: 1.2;
	margin-bottom: 1rem;
	color: var(--shopgen-heading-color, #111111);
}

body.woocommerce-account:not(.logged-in) .woocommerce {
	max-width: 1080px;
	margin: 0 auto;
}

body.woocommerce-account:not(.logged-in) .woocommerce .u-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
	align-items: start;
	margin-top: 1rem;
}

body.woocommerce-account:not(.logged-in) .woocommerce .u-column1,
body.woocommerce-account:not(.logged-in) .woocommerce .u-column2,
body.woocommerce-account:not(.logged-in) .woocommerce form.woocommerce-form-login,
body.woocommerce-account:not(.logged-in) .woocommerce form.woocommerce-form-register {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 14px;
	padding: 1.4rem;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
	margin-bottom: 0;
	float: none;
	width: 100%;
}

body.woocommerce-account:not(.logged-in) .woocommerce .form-row {
	margin-bottom: 0.95rem;
}

body.woocommerce-account:not(.logged-in) .woocommerce form .form-row label {
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 0.4rem;
	color: var(--shopgen-heading-color, #111111);
}

body.woocommerce-account:not(.logged-in) .woocommerce form .input-text {
	min-height: 48px;
	padding: 0.72rem 0.92rem;
	border-radius: 10px;
	border: 1px solid #e2e2e2 !important;
	background: #ffffff;
	box-sizing: border-box;

}

body.woocommerce-account:not(.logged-in) .woocommerce form .input-text:focus {
	outline: none;
	border-color: var(--shopgen-primary-color, #1a73e8);
	box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.16);
}

body.woocommerce-account:not(.logged-in) .woocommerce form .password-input {
	width: 100%;
}

body.woocommerce-account:not(.logged-in) .woocommerce .woocommerce-form-login__submit,
body.woocommerce-account:not(.logged-in) .woocommerce .woocommerce-form-register__submit,
body.woocommerce-account:not(.logged-in) .woocommerce button.button,
body.woocommerce-account:not(.logged-in) .woocommerce input.button {
	border-radius: 10px !important;
	min-height: 46px;
	padding: 0.68rem 1.25rem !important;
	background: var(--shopgen-primary-color, #1a73e8) !important;
	border: 1px solid var(--shopgen-primary-color, #1a73e8) !important;
	color: #ffffff !important;
	font-weight: 700;
	line-height: 1;
	float: none;
	box-shadow: none;
}

body.woocommerce-account:not(.logged-in) .woocommerce .woocommerce-form-login__submit:hover,
body.woocommerce-account:not(.logged-in) .woocommerce .woocommerce-form-register__submit:hover,
body.woocommerce-account:not(.logged-in) .woocommerce button.button:hover,
body.woocommerce-account:not(.logged-in) .woocommerce input.button:hover {
	filter: brightness(0.95);
}

body.woocommerce-account:not(.logged-in) .woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: 0.15rem;
}

body.woocommerce-account:not(.logged-in) .woocommerce .lost_password,
body.woocommerce-account:not(.logged-in) .woocommerce .woocommerce-LostPassword {
	margin-top: 0.75rem;
	font-size: 0.95rem;
}

body.woocommerce-account:not(.logged-in) .woocommerce .lost_password a,
body.woocommerce-account:not(.logged-in) .woocommerce .woocommerce-LostPassword a {
	color: var(--shopgen-primary-color, #1a73e8);
	text-decoration: none;
}

body.woocommerce-account:not(.logged-in) .woocommerce .lost_password a:hover,
body.woocommerce-account:not(.logged-in) .woocommerce .woocommerce-LostPassword a:hover {
	text-decoration: underline;
}

@media (max-width: 900px) {
	body.woocommerce-account:not(.logged-in) .woocommerce .u-columns {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	body.woocommerce-account:not(.logged-in) .woocommerce .u-column1,
	body.woocommerce-account:not(.logged-in) .woocommerce .u-column2,
	body.woocommerce-account:not(.logged-in) .woocommerce form.woocommerce-form-login,
	body.woocommerce-account:not(.logged-in) .woocommerce form.woocommerce-form-register {
		padding: 1rem;
	}
}

/* ============================================
   WooCommerce My Account (Logged-in)
   ============================================ */
body.woocommerce-account.logged-in .entry-header {
	max-width: 1160px;
	margin: 0 auto 1rem;
	padding: 0;
}

body.woocommerce-account.logged-in .entry-title {
	font-size: clamp(1.7rem, 3.1vw, 2.3rem);
	line-height: 1.15;
	letter-spacing: -0.01em;
	margin-bottom: 0.4rem;
}

body.woocommerce-account.logged-in .woocommerce {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-navigation,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content {
	float: none;
	width: 100%;
}

body.woocommerce-account.logged-in .woocommerce {
	display: grid;
	grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
	gap: 1.35rem;
	align-items: start;
}

body.woocommerce-account.logged-in .woocommerce > .woocommerce-notices-wrapper {
	grid-column: 1 / -1;
	margin: 0;
	width: 100%;
}

body.woocommerce-account.logged-in .woocommerce > .woocommerce-notices-wrapper:empty {
	display: none;
}

body.woocommerce-account.logged-in .woocommerce > .woocommerce-MyAccount-navigation {
	grid-column: 1;
}

body.woocommerce-account.logged-in .woocommerce > .woocommerce-MyAccount-content {
	grid-column: 2;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-navigation {
	position: sticky;
	top: 96px;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	padding: 0.8rem;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
	overflow: hidden;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.35rem;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-navigation-link a {
	display: flex;
	align-items: center;
	padding: 0.75rem 0.9rem;
	border-radius: 10px;
	font-size: 0.97rem;
	font-weight: 600;
	line-height: 1.25;
	color: #232323;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-navigation-link a:hover {
	background: rgba(26, 115, 232, 0.09);
	color: var(--shopgen-primary-color, #1a73e8);
	transform: translateX(1px);
	text-decoration: none;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-navigation-link.is-active a {
	background: var(--shopgen-primary-color, #1a73e8);
	color: #ffffff;
	box-shadow: 0 10px 24px rgba(26, 115, 232, 0.26);
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	padding: 1.35rem;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
	min-width: 0;
	overflow-x: auto;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content .woocommerce-info,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content .woocommerce-message,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content .woocommerce-error {
	width: 100%;
	margin: 0 0 1rem;
	border-radius: 12px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding-right: 1rem;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content .woocommerce-info .button,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content .woocommerce-message .button,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content .woocommerce-error .button {
	float: none !important;
	margin-left: auto !important;
	white-space: nowrap;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content > p:first-child {
	font-size: 1.06rem;
	line-height: 1.7;
	color: #242424;
	margin-bottom: 1rem;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content h2,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content h3 {
	font-size: clamp(1.25rem, 2.2vw, 1.6rem);
	line-height: 1.2;
	margin-bottom: 0.8rem;
	color: var(--shopgen-heading-color, #111111);
}

body.woocommerce-account.logged-in .woocommerce-orders-table,
body.woocommerce-account.logged-in table.shop_table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	overflow: hidden;
	background: #ffffff;
	margin-top: 0.5rem;
}

body.woocommerce-account.logged-in .woocommerce-orders-table thead th,
body.woocommerce-account.logged-in table.shop_table thead th {
	background: #f7f9fc;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 700;
	padding: 0.8rem 0.75rem;
	color: #5b6472;
	border: 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.woocommerce-account.logged-in .woocommerce-orders-table td,
body.woocommerce-account.logged-in table.shop_table td {
	padding: 0.9rem 0.75rem;
	font-size: 0.95rem;
	color: #202124;
	border: 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	vertical-align: middle;
}

body.woocommerce-account.logged-in .woocommerce-orders-table tbody tr:last-child td,
body.woocommerce-account.logged-in table.shop_table tbody tr:last-child td {
	border-bottom: 0;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content .button,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content a.button,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content button.button,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content input.button {
	border-radius: 10px !important;
	min-height: 40px;
	padding: 0.55rem 1rem !important;
	background: var(--shopgen-primary-color, #1a73e8) !important;
	border: 1px solid var(--shopgen-primary-color, #1a73e8) !important;
	color: #ffffff !important;
	font-weight: 600;
	line-height: 1.15;
	box-shadow: none;
	text-decoration: none;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content .button:hover,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content a.button:hover,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content button.button:hover,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content input.button:hover {
	filter: brightness(0.95);
	text-decoration: none;
}

body.woocommerce-account.logged-in .woocommerce-Addresses {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 0.7rem;
}

body.woocommerce-account.logged-in .woocommerce-Addresses::before,
body.woocommerce-account.logged-in .woocommerce-Addresses::after {
	display: none !important;
	content: none !important;
}

body.woocommerce-account.logged-in .woocommerce-Addresses .col-1,
body.woocommerce-account.logged-in .woocommerce-Addresses .col-2,
body.woocommerce-account.logged-in .woocommerce-Addresses .woocommerce-Address {
	float: none !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
}

body.woocommerce-account.logged-in .woocommerce-Address,
body.woocommerce-account.logged-in .woocommerce-address {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	padding: 1rem;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
	min-height: 230px;
	display: flex;
	flex-direction: column;
}

body.woocommerce-account.logged-in .woocommerce-Address-title,
body.woocommerce-account.logged-in .woocommerce-address-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.8rem;
	margin-bottom: 0.5rem;
}

body.woocommerce-account.logged-in .woocommerce-Address-title h3,
body.woocommerce-account.logged-in .woocommerce-address-title h3 {
	float: none !important;
	margin: 0;
	font-size: clamp(1.25rem, 2.1vw, 1.9rem);
	line-height: 1.1;
	max-width: 70%;
}

body.woocommerce-account.logged-in .woocommerce-Address-title .edit,
body.woocommerce-account.logged-in .woocommerce-address-title .edit {
	float: none !important;
	margin: 0;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.35;
	text-align: right;
	max-width: 38%;
	word-break: break-word;
	text-decoration: none;
}

body.woocommerce-account.logged-in .woocommerce-Address address,
body.woocommerce-account.logged-in .woocommerce-address address {
	width: 100%;
	margin-top: auto;
	font-style: normal;
	font-size: 1.02rem;
	line-height: 1.7;
	color: #3a3a3a;
	overflow-wrap: anywhere;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content form .form-row {
	margin-bottom: 1rem;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content form {
	background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
	border: 1px solid rgba(26, 32, 44, 0.08);
	border-radius: 14px;
	padding: 1.15rem;
	box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content form h3 {
	font-size: clamp(1.35rem, 2.4vw, 1.85rem);
	line-height: 1.15;
	margin-bottom: 1rem;
	letter-spacing: -0.01em;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content form .form-row-first,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content form .form-row-last {
	width: calc(50% - 0.5rem);
	float: left;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content form .form-row-first {
	margin-right: 1rem;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content form .form-row-wide,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content form .form-row.notes,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content form .form-row.address-field,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content form .clear {
	width: 100%;
	float: none;
	clear: both;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content form .form-row label {
	display: block;
	font-size: 0.86rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	margin-bottom: 0.42rem;
	color: #1f2a37;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content form .required {
	color: #e11d48;
	font-weight: 700;
	visibility: visible;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content form .input-text,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content form select,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content form textarea {
	width: 100%;
	min-height: 48px;
	padding: 0.74rem 0.92rem;
	border-radius: 12px;
	border: 2px solid #b7c3d6;
	background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
	box-sizing: border-box;
	font-size: 0.96rem;
	color: #1a2533;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
	border: 1px solid #e2e2e2 !important;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content form textarea {
	min-height: 128px;
	resize: vertical;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content form .input-text:hover,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content form select:hover,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content form textarea:hover {
	border-color: #9fb0c9;
	background: #ffffff;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content form .input-text::placeholder,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content form textarea::placeholder {
	color: #9aa5b5;
	opacity: 1;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content form select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding-right: 2.4rem;
	background-image: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23546378' stroke-width='1.8'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5'/%3E%3C/svg%3E");
	background-repeat: no-repeat, no-repeat;
	background-position: 0 0, right 0.78rem center;
	background-size: auto, 16px;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content form .select2-container .select2-selection--single {
	height: 48px;
	border-radius: 12px;
	border: 2px solid #b7c3d6;
	background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
	padding: 0;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content form .select2-container .select2-selection--single .select2-selection__rendered {
	line-height: 46px;
	padding-left: 0.92rem;
	padding-right: 2.25rem;
	font-size: 0.96rem;
	color: #1a2533;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content form .select2-container .select2-selection--single .select2-selection__arrow {
	height: 46px;
	right: 0.65rem;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content form .select2-container .select2-selection--single:hover {
	border-color: #9fb0c9;
	background: #ffffff;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content form .select2-container--focus .select2-selection--single,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content form .select2-container--open .select2-selection--single {
	border-color: var(--shopgen-primary-color, #1a73e8);
	box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.16);
	outline: none;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content form button.button,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content form .button[name="save_address"],
body.woocommerce-account.logged-in .woocommerce-MyAccount-content form .button[type="submit"] {
	min-height: 44px;
	padding: 0.68rem 1.25rem !important;
	font-size: 0.95rem;
	font-weight: 700;
	border-radius: 11px !important;
	letter-spacing: 0.01em;
	box-shadow: 0 10px 20px rgba(26, 115, 232, 0.24);
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content form button.button:hover,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content form .button[name="save_address"]:hover,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content form .button[type="submit"]:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 22px rgba(26, 115, 232, 0.28);
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content form .input-text:focus,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content form select:focus,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content form textarea:focus {
	outline: none;
	border-color: var(--shopgen-primary-color, #1a73e8);
	background: #ffffff;
	box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.14);
}

@media (max-width: 980px) {
	body.woocommerce-account.logged-in .woocommerce {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	body.woocommerce-account.logged-in .woocommerce > .woocommerce-MyAccount-navigation,
	body.woocommerce-account.logged-in .woocommerce > .woocommerce-MyAccount-content,
	body.woocommerce-account.logged-in .woocommerce > .woocommerce-notices-wrapper {
		grid-column: 1;
	}

	body.woocommerce-account.logged-in .woocommerce-MyAccount-navigation {
		position: static;
		padding: 0.65rem;
	}

	body.woocommerce-account.logged-in .woocommerce-MyAccount-navigation ul {
		display: flex;
		flex-wrap: wrap;
		gap: 0.45rem;
	}

	body.woocommerce-account.logged-in .woocommerce-MyAccount-navigation-link {
		flex: 1 1 calc(50% - 0.5rem);
		min-width: 150px;
	}

	body.woocommerce-account.logged-in .woocommerce-MyAccount-content {
		padding: 1rem;
	}

	body.woocommerce-account.logged-in .woocommerce-MyAccount-content form {
		padding: 1rem;
	}

	body.woocommerce-account.logged-in .woocommerce-MyAccount-content form .form-row-first,
	body.woocommerce-account.logged-in .woocommerce-MyAccount-content form .form-row-last {
		width: 100%;
		float: none;
		margin-right: 0;
	}

	body.woocommerce-account.logged-in .woocommerce-Addresses {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	body.woocommerce-account.logged-in .woocommerce-Address,
	body.woocommerce-account.logged-in .woocommerce-address {
		min-height: 0;
	}

	body.woocommerce-account.logged-in .woocommerce-Address-title,
	body.woocommerce-account.logged-in .woocommerce-address-title {
		align-items: flex-start;
	}

	body.woocommerce-account.logged-in .woocommerce-Address-title h3,
	body.woocommerce-account.logged-in .woocommerce-address-title h3,
	body.woocommerce-account.logged-in .woocommerce-Address-title .edit,
	body.woocommerce-account.logged-in .woocommerce-address-title .edit {
		max-width: 100%;
	}
}

@media (max-width: 640px) {
	body.woocommerce-account.logged-in .woocommerce-MyAccount-navigation-link {
		flex: 1 1 100%;
	}

	body.woocommerce-account.logged-in .woocommerce-MyAccount-content {
		border-radius: 12px;
	}
}

.entry-content img {
	max-width: 100%;
	height: auto;
}

.post-thumbnail {
	margin-bottom: 2rem;
}

.post-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}

/* ============================================
   Sidebar
   ============================================ */
.widget-area {
	margin-top: 0;
}

.widget {
	margin-bottom: 2rem;
	padding: 1.5rem;
	background-color: #f9f9f9;
	border-radius: 4px;
}

.widget-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--shopgen-heading-color, #111111);
}

.widget ul {
	list-style: none;
}

.widget li {
	margin-bottom: 0.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid #e0e0e0;
}

.widget li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
	background-color: #2c2c2c;
	color: #ffffff;
	margin-top: 4rem;
}

.footer-widgets {
	padding: 3rem 0;
}

.footer-widgets-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.footer-widget-column .widget {
	background-color: transparent;
	padding: 0;
}

.footer-widget-column .widget-title {
	color: #ffffff;
}

.footer-widget-column a {
	color: #cccccc;
}

.footer-widget-column a:hover {
	color: #ffffff;
}

.site-info {
	padding: 2rem 0;
	border-top: 1px solid #444;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-bottom #footer-menu {
	list-style: none;
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}

.footer-bottom #footer-menu a {
	color: #cccccc;
	text-decoration: none;
}

.footer-bottom #footer-menu a:hover {
	color: #ffffff;
}

.copyright {
	margin: 0;
	color: #999;
}

/* ============================================
   WooCommerce â€” Full Reset + Shopify-style Cards
   ============================================ */

/* ---- Toolbar ---- */
.woocommerce .woocommerce-result-count {
	font-size: 14px;
	color: #666;
	margin: 0 0 1.5rem;
}

.woocommerce .woocommerce-ordering {
	margin: 0 0 1.5rem;
	float: right;
}

.woocommerce .woocommerce-ordering select {
	padding: 0.6rem 2rem 0.6rem 0.9rem;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 14px;
	background-color: #fff;
	cursor: pointer;
	outline: none;
}

/* Ensure product loop is visible (fixes products not showing on category/shop when header style 3 or other CSS affects layout) */
.woocommerce ul.products li.product {
	visibility: visible !important;
	opacity: 1 !important;
}

/* ---- Reset WooCommerce's default float/width on the grid ---- */
/* Base: always use CSS Grid and kill WooCommerce floats */
.woocommerce ul.products,
.woocommerce-page ul.products {
	display: grid !important;
	/* Default 4 columns â€” overridden per columns-X class below */
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 0.875rem !important;
	margin: 0 0 3rem !important;
	padding: 0 !important;
	list-style: none !important;
	width: 100% !important;
	float: none !important;
	clear: both;
	max-width: 100% !important;
	box-sizing: border-box;
	visibility: visible !important;
	opacity: 1 !important;
}

/* CRITICAL: Kill WooCommerce's clearfix pseudo-elements that create grid items */
/* These ::before and ::after elements with display:table are from WC's old float system */
/* They become grid items and push products down â€” must be removed! */
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after,
.woocommerce .products ul::before,
.woocommerce .products ul::after {
	display: none !important;
	content: none !important;
}

/* Honour the columns-X class set by WooCommerce/admin */
/* Use higher specificity to ensure these win over any WC defaults */
.woocommerce ul.products.columns-1,
.woocommerce-page ul.products.columns-1,
.woocommerce .products.columns-1 {
	grid-template-columns: 1fr !important;
}
.woocommerce ul.products.columns-2,
.woocommerce-page ul.products.columns-2,
.woocommerce .products.columns-2 {
	grid-template-columns: repeat(2, 1fr) !important;
}
.woocommerce ul.products.columns-3,
.woocommerce-page ul.products.columns-3,
.woocommerce .products.columns-3 {
	grid-template-columns: repeat(3, 1fr) !important;
}
.woocommerce ul.products.columns-4,
.woocommerce-page ul.products.columns-4,
.woocommerce .products.columns-4 {
	grid-template-columns: repeat(4, 1fr) !important;
}
.woocommerce ul.products.columns-5,
.woocommerce-page ul.products.columns-5,
.woocommerce .products.columns-5 {
	grid-template-columns: repeat(5, 1fr) !important;
}
.woocommerce ul.products.columns-6,
.woocommerce-page ul.products.columns-6,
.woocommerce .products.columns-6 {
	grid-template-columns: repeat(6, 1fr) !important;
}

/* ---- Product card item: kill WC's inline width / float ---- */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	width: 100% !important;
	max-width: 100% !important;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
	clear: none !important;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 10px;
	overflow: hidden;
	display: flex !important;
	flex-direction: column;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
	box-shadow: 0 1px 6px rgba(0,0,0,0.06);
	position: relative;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
	box-shadow: 0 8px 28px rgba(0,0,0,0.13);
	transform: translateY(-5px);
}

/* ---- Image wrapper: square crop ---- */
/* Image wrapper used by custom thumbnail function */
.shopgen-product-thumb {
	position: relative;
	width: 100%;
	padding-top: 100%; /* 1:1 square */
	overflow: hidden;
	background: #f7f7f7;
}

.shopgen-product-thumb .shopgen-thumb-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 0;
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.shopgen-product-thumb .shopgen-thumb-primary {
	opacity: 1;
	z-index: 1;
}

.shopgen-product-thumb .shopgen-thumb-secondary {
	opacity: 0;
	z-index: 2;
	transform: scale(1.05);
}

/* Swap to secondary image on hover (only if secondary exists) */
.woocommerce ul.products li.product:hover .shopgen-product-thumb .shopgen-thumb-primary {
	transform: scale(1.02);
}

/* Only fade out primary if secondary image exists (using class-based approach for better browser support) */
.woocommerce ul.products li.product:hover .shopgen-product-thumb.has-secondary-image .shopgen-thumb-primary {
	opacity: 0;
}

.woocommerce ul.products li.product:hover .shopgen-product-thumb .shopgen-thumb-secondary {
	opacity: 1;
	transform: scale(1);
}

/* Fallback: if no secondary image, keep primary visible and just scale on hover */
.woocommerce ul.products li.product:hover .shopgen-product-thumb:not(.has-secondary-image) .shopgen-thumb-primary {
	opacity: 1;
	transform: scale(1.05);
}

/* Reset default anchor so it doesn't affect layout */
.woocommerce ul.products li.product a.woocommerce-loop-product__link,
.woocommerce-page ul.products li.product a.woocommerce-loop-product__link {
	display: block;
	position: static;
	padding: 0;
	background: transparent;
}

/* ---- SALE badge (top right) ---- */
.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale {
	position: absolute;
	top: 12px;
	right: 12px;
	background: #e63946;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 6px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	z-index: 11;
	line-height: 1.3;
	box-shadow: 0 2px 8px rgba(230,57,70,0.35);
}

/* ---- Discount percentage badge (top left of image) ---- */
.woocommerce ul.products li.product .shopgen-discount-percent {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 11;
	display: inline-block;
	padding: 5px 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.3;
	border-radius: 6px;
	background: #e63946;
	color: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* ---- Product title ---- */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: 15px !important;
	font-weight: 600;
	color: #1a1a1a;
	padding: 0.9rem 1rem 0.2rem !important;
	margin: 0 !important;
	line-height: 1.5;
	flex-grow: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ---- Price (discounted + normal on same line, modern) ---- */
.woocommerce ul.products li.product .price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.4rem 0.6rem;
	padding: 0 1rem 0.75rem;
	margin: 0 !important;
	line-height: 1;
}

.woocommerce ul.products li.product .price del {
	display: inline;
	font-size: 13px;
	color: #999;
	font-weight: 400;
	text-decoration: line-through;
}

.woocommerce ul.products li.product .price ins {
	display: inline;
	text-decoration: none;
	font-size: 17px;
	font-weight: 700;
	color: #2c7a1f;
}

/* Single price (no sale) */
.woocommerce ul.products li.product .price .woocommerce-Price-amount {
	font-size: 17px;
	font-weight: 700;
	color: #1a1a1a;
}

/* Category page price colors - will be overridden by inline styles from Customizer */
/* These are fallbacks - inline styles with !important will override */
body.tax-product_cat .woocommerce ul.products li.product .price,
.tax-product_cat .woocommerce ul.products li.product .price {
	color: inherit !important;
}
body.tax-product_cat .woocommerce ul.products li.product .price del,
.tax-product_cat .woocommerce ul.products li.product .price del {
	color: inherit !important;
}
body.tax-product_cat .woocommerce ul.products li.product .price ins,
.tax-product_cat .woocommerce ul.products li.product .price ins {
	color: inherit !important;
}
body.tax-product_cat .woocommerce ul.products li.product .price .woocommerce-Price-amount,
.tax-product_cat .woocommerce ul.products li.product .price .woocommerce-Price-amount {
	color: inherit !important;
}

/* ---- Add to Cart button ---- */
/* Compact Add to cart pill shown only on hover, bottom-right */
.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button,
.woocommerce ul.products li.product a.button {
	position: absolute;
	right: 12px;
	bottom: 12px;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 0.3rem;
	padding: 0.4rem 0.9rem !important;
	min-width: auto;
	width: auto !important;
	margin: 0 !important;
	background: #ffc107 !important;
	color: #000 !important;
	font-weight: 600;
	font-size: 13px !important;
	text-align: center;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	white-space: nowrap;
	text-decoration: none !important;
	line-height: 1.3 !important;
	opacity: 0;
	transform: translateY(4px);
	transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.woocommerce ul.products li.product .button::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 00-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.138a60.114 60.114 0 00-16.536-1.84M7.5 14.25L5.106 5.272M6 20.25a.75.75 0 11-1.5 0 .75.75 0 011.5 0zm12.75 0a.75.75 0 11-1.5 0 .75.75 0 011.5 0z' /%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
	margin-right: 2px;
}

.woocommerce ul.products li.product:hover .button,
.woocommerce-page ul.products li.product:hover .button {
	opacity: 1;
	transform: translateY(0);
	background: #ffb300 !important;
	color: #000 !important;
}

/* Hide the "View cart" link that appears after AJAX add to cart */
.woocommerce ul.products li.product a.added_to_cart,
.woocommerce-page ul.products li.product a.added_to_cart,
.woocommerce ul.products li.product a.added_to_cart.wc-forward,
.woocommerce-page ul.products li.product a.added_to_cart.wc-forward,
body.woocommerce-page a.added_to_cart,
body.post-type-archive-product a.added_to_cart,
body.tax-product_cat a.added_to_cart,
body.tax-product_tag a.added_to_cart {
	display: none !important;
}

/* ---- Responsive breakpoints ---- */
/* On tablets collapse to at most 2 columns regardless of admin setting */
@media (max-width: 600px) {
	.woocommerce ul.products,
	.woocommerce-page ul.products,
	.woocommerce ul.products.columns-3,
	.woocommerce ul.products.columns-4,
	.woocommerce ul.products.columns-5,
	.woocommerce ul.products.columns-6 {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 0.75rem !important;
	}
}

/* On phones, 1 column */
@media (max-width: 380px) {
	.woocommerce ul.products,
	.woocommerce-page ul.products {
		grid-template-columns: 1fr !important;
	}
}

.shop-wrapper {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 32px;
	align-items: start;
	width: 100%;
}

.product-wrapper {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
}

.shop-content,
.product-content {
	min-width: 0;
	width: 100%;
}

.woocommerce-shop .shop-wrapper.left-sidebar,
.tax-product_cat .shop-wrapper.left-sidebar {
	grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
}

.woocommerce-shop .shop-wrapper.right-sidebar,
.tax-product_cat .shop-wrapper.right-sidebar {
	grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
}

.woocommerce-shop .shop-wrapper.left-sidebar .shop-sidebar,
.tax-product_cat .shop-wrapper.left-sidebar .shop-sidebar {
	grid-column: 1;
}

.woocommerce-shop .shop-wrapper.left-sidebar .shop-content,
.tax-product_cat .shop-wrapper.left-sidebar .shop-content {
	grid-column: 2;
}

.woocommerce-shop .shop-wrapper.right-sidebar .shop-content,
.tax-product_cat .shop-wrapper.right-sidebar .shop-content {
	grid-column: 1;
}

.woocommerce-shop .shop-wrapper.right-sidebar .shop-sidebar,
.tax-product_cat .shop-wrapper.right-sidebar .shop-sidebar {
	grid-column: 2;
}

.woocommerce-shop .shop-sidebar,
.tax-product_cat .shop-sidebar {
	width: 100% !important;
	max-width: 100%;
	margin: 0;
	align-self: start;
}

.shop-sidebar-toggle {
	display: none;
}

.shop-sidebar-widgets {
	width: 100%;
}

.shop-sidebar-widgets[hidden] {
	display: none !important;
}

@media (min-width: 922px) {
	.shop-sidebar-widgets {
		display: block !important;
	}
}

/* Keep category heading hero contained in content area when sidebar is enabled */
.woocommerce-shop .shop-wrapper.left-sidebar .shop-content .shopgen-cat-hero,
.woocommerce-shop .shop-wrapper.right-sidebar .shop-content .shopgen-cat-hero,
.tax-product_cat .shop-wrapper.left-sidebar .shop-content .shopgen-cat-hero,
.tax-product_cat .shop-wrapper.right-sidebar .shop-content .shopgen-cat-hero {
	width: 100% !important;
	left: auto !important;
	right: auto !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	border-radius: 12px;
	overflow: hidden;
}

.woocommerce-shop .shop-wrapper.left-sidebar .shop-content .shopgen-cat-hero__inner,
.woocommerce-shop .shop-wrapper.right-sidebar .shop-content .shopgen-cat-hero__inner,
.tax-product_cat .shop-wrapper.left-sidebar .shop-content .shopgen-cat-hero__inner,
.tax-product_cat .shop-wrapper.right-sidebar .shop-content .shopgen-cat-hero__inner {
	max-width: 100%;
	padding-left: 24px;
	padding-right: 24px;
}

/* Ensure products grid takes full width and doesn't shrink */
.woocommerce .shop-content .products,
.woocommerce .product-content .products,
.woocommerce .content-inner .products,
.woocommerce .shop-content,
.woocommerce .product-content,
.woocommerce .content-inner {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0;
}

/* ============================================
   Single Product â€” Shopifyâ€‘style Variations
   ============================================ */

/* Base product layout tweaks (let WooCommerce handle gallery/summary columns) */
.single-product div.product {
	margin-bottom: 4rem;
}

/* Variation form container */
.single-product div.product form.cart {
	margin-top: 1.5rem;
	padding: 1.25rem 1.5rem;
	border: 1px solid #e6e6e6;
	border-radius: 12px;
	background-color: #fafafa;
}

/* Clean variations table */
.single-product div.product form.cart table.variations {
	width: 100%;
	margin: 0 0 1rem;
	border-collapse: collapse;
}

.single-product div.product form.cart table.variations tr {
	display: block;
	margin-bottom: 1rem;
}

.single-product div.product form.cart table.variations tr:last-child {
	margin-bottom: 0;
}

.single-product div.product form.cart table.variations td {
	display: block;
	padding: 0;
	border: 0;
}

.single-product div.product form.cart table.variations td.label {
	margin-bottom: 0.35rem;
	font-size: 14px;
	font-weight: 600;
	color: #444;
	text-transform: capitalize;
}

.single-product div.product form.cart table.variations td.label label {
	margin: 0;
}

.single-product div.product form.cart table.variations td.value select {
	width: 100%;
	padding: 0.6rem 0.8rem;
	border-radius: 8px;
	border: 1px solid #d0d0d0;
	font-size: 14px;
	background-color: #fff;
	box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.single-product div.product form.cart table.variations td.value select:focus {
	border-color: #1a73e8;
	outline: none;
	box-shadow: 0 0 0 1px rgba(26,115,232,0.18);
}

/* Reset link */
.single-product div.product form.cart .reset_variations {
	display: inline-block;
	margin-top: 0.4rem;
	font-size: 12px;
	color: #888;
	text-decoration: underline;
}

.single-product div.product form.cart .reset_variations:hover {
	color: #555;
}

/* Variation price & availability block */
.single-product div.product .single_variation_wrap {
	margin-top: 0.75rem;
	padding-top: 0.75rem;
	border-top: 1px solid #e5e5e5;
}

.single-product div.product .single_variation .price {
	display: block;
	font-size: 22px;
	font-weight: 700;
	color: #2c7a1f;
	margin-bottom: 0.25rem;
}

.single-product div.product .single_variation .price del {
	display: inline-block;
	margin-right: 0.25rem;
	font-size: 14px;
	color: #999;
}

.single-product div.product .single_variation .price ins {
	text-decoration: none;
}

.single-product div.product .woocommerce-variation-availability {
	font-size: 13px;
	color: #666;
}

.single-product div.product .woocommerce-variation-description {
	font-size: 14px;
	color: #555;
	margin: 0.35rem 0 0;
}

/* Quantity + add to cart row */
.single-product div.product form.cart .quantity,
.single-product div.product form.cart button.single_add_to_cart_button {
	margin-top: 0.75rem;
}

.single-product div.product form.cart .quantity {
	margin-right: 0.75rem;
}

@media (min-width: 640px) {
	.single-product div.product form.cart {
		display: inline-flex;
		flex-direction: column;
		align-items: stretch;
	}

	.single-product div.product form.cart .single_variation_wrap {
		margin-top: 1rem;
	}
}

@media (min-width: 768px) {
	.single-product div.product form.cart {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	.single-product div.product form.cart .variations {
		width: 100%;
	}

	.single-product div.product form.cart .single_variation_wrap {
		width: 100%;
	}
}

/* Override container max-width for shop pages - make it MUCH wider to fit 4 columns */
.woocommerce-shop .content-area.container,
.tax-product_cat .content-area.container,
.woocommerce .content-area.container {
	max-width: 1800px !important;
	padding-left: 20px;
	padding-right: 20px;
}

/* No sidebar - full width for products */
.woocommerce-shop .shop-content:only-child,
.tax-product_cat .shop-content:only-child {
	width: 100% !important;
	max-width: 100% !important;
}

@media (max-width: 921px) {
	.shop-wrapper,
	.product-wrapper {
		grid-template-columns: 1fr !important;
		gap: 0;
	}

	.woocommerce-shop .shop-wrapper.left-sidebar .shop-sidebar,
	.tax-product_cat .shop-wrapper.left-sidebar .shop-sidebar,
	.woocommerce-shop .shop-wrapper.left-sidebar .shop-content,
	.tax-product_cat .shop-wrapper.left-sidebar .shop-content,
	.woocommerce-shop .shop-wrapper.right-sidebar .shop-content,
	.tax-product_cat .shop-wrapper.right-sidebar .shop-content,
	.woocommerce-shop .shop-wrapper.right-sidebar .shop-sidebar,
	.tax-product_cat .shop-wrapper.right-sidebar .shop-sidebar {
		grid-column: 1;
	}

	.shop-sidebar {
		width: 100%;
		margin-top: 0;
		grid-row: 1;
	}

	.woocommerce-shop .shop-content,
	.tax-product_cat .shop-content {
		grid-row: 2;
	}

	.shop-sidebar-toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 0.78rem 0.95rem;
		margin: 0 0 0.75rem;
		border: 1px solid rgba(0, 0, 0, 0.16);
		border-radius: 10px;
		background: #ffffff;
		color: #1d2a38;
		font-size: 0.93rem;
		font-weight: 700;
		letter-spacing: 0.01em;
		cursor: pointer;
	}

	.shop-sidebar-toggle::after {
		content: '';
		width: 8px;
		height: 8px;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		transform: rotate(45deg);
		transition: transform 0.2s ease;
		margin-left: 0.6rem;
	}

	.shop-sidebar-toggle[aria-expanded="true"]::after {
		transform: rotate(-135deg);
	}

	.shop-sidebar-widgets {
		margin-top: 0;
	}

}

/* ============================================
   Utilities
   ============================================ */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.skip-link {
	position: absolute;
	left: -9999px;
	z-index: 999999;
}

.skip-link:focus {
	left: 6px;
	top: 7px;
	width: auto;
	height: auto;
	padding: 8px 16px;
	background-color: #000;
	color: #fff;
	text-decoration: none;
}

/* ============================================
   Responsive â€” General
   ============================================ */
@media (max-width: 767px) {
	.container,
	.full-width {
		padding-left: 15px;
		padding-right: 15px;
	}

	.content-area.full-width .content-area-inner {
		padding-left: 0;
		padding-right: 0;
	}

	.site-main {
		padding: 1rem 0;
	}

	body.home .site-main {
		padding: 0;
	}
}

