.shop-hero {
	position: relative;
	overflow: hidden;
	background: var(--aw-brand-950);
	color: #fff;
	padding: 48px 0;
}
.shop-hero__glow {
	position: absolute;
	inset-inline-start: -120px;
	top: -120px;
	width: 360px;
	height: 360px;
	border-radius: 999px;
	background: rgba(220,38,38,.12);
	filter: blur(45px);
}
.shop-hero .container { position: relative; z-index: 1; }
.shop-hero span {
	color: var(--aw-brand-500);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.shop-hero h1 {
	margin: 8px 0 10px;
	font-size: clamp(30px, 4vw, 42px);
	font-weight: 950;
}
.shop-hero p {
	max-width: 620px;
	margin: 0;
	color: var(--aw-slate-400);
	font-size: 14px;
}

.shop-section { padding: 48px 0 72px; }
.shop-controls {
	display: grid;
	grid-template-columns: 5fr 4fr 3fr auto;
	gap: 18px;
	align-items: end;
	background: #fff;
	border: 1px solid rgba(226,232,240,.85);
	border-radius: var(--aw-radius-2xl);
	padding: 20px;
	box-shadow: var(--aw-shadow-sm);
	margin-bottom: 24px;
}
.shop-control label {
	display: block;
	margin-bottom: 6px;
	color: var(--aw-slate-500);
	font-size: 12px;
	font-weight: 900;
}
.shop-control input,
.shop-control select,
.woocommerce .quantity .qty,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	width: 100%;
	min-height: 48px;
	border: 1px solid var(--aw-slate-200);
	border-radius: var(--aw-radius-xl);
	background: var(--aw-slate-50);
	padding: 10px 14px;
	color: var(--aw-slate-700);
	font-weight: 800;
}
.shop-count-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 22px;
	color: var(--aw-slate-500);
	font-size: 14px;
	font-weight: 900;
}
.shop-count-row p { margin: 0; }
.shop-count-row a { color: var(--aw-brand-600); }

.woocommerce .products,
ul.products.product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.woocommerce ul.products li.product,
ul.products li.product {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
}
.woocommerce ul.products li.product.aw-product-card,
ul.products li.product.aw-product-card {
	overflow: hidden;
	border: 1px solid rgba(226,232,240,.85);
	border-radius: var(--aw-radius-2xl);
	background: #fff;
	box-shadow: var(--aw-shadow-sm);
	transition: transform .2s ease, box-shadow .2s ease;
}
.woocommerce ul.products li.product.aw-product-card:hover,
ul.products li.product.aw-product-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--aw-shadow-md);
}
.aw-product-card__media {
	position: relative;
	aspect-ratio: 1 / 1;
	display: grid;
	place-items: center;
	background: var(--aw-slate-50);
	border-bottom: 1px solid var(--aw-slate-200);
}
.aw-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.aw-product-card__media > span {
	width: 138px;
	height: 138px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: var(--aw-brand-100);
	font-size: 58px;
}
.aw-product-card__media b {
	position: absolute;
	top: 14px;
	right: 14px;
	border: 1px solid rgba(239,68,68,.18);
	border-radius: 999px;
	background: rgba(220,38,38,.1);
	color: var(--aw-brand-600);
	font-size: 10px;
	font-weight: 950;
	padding: 4px 10px;
}
.aw-product-card__body { padding: 18px; }
.aw-product-card__rating {
	margin-bottom: 8px;
	color: #f59e0b;
	font-size: 12px;
	font-weight: 900;
}
.aw-product-card__rating small {
	color: #22c55e;
	margin-inline-start: 8px;
}
.woocommerce ul.products li.product .aw-product-card__body .woocommerce-loop-product__title,
ul.products li.product .aw-product-card__body .woocommerce-loop-product__title {
	padding: 0;
	margin: 0 0 8px;
	color: var(--aw-slate-900);
	font-size: 16px;
	font-weight: 950;
	line-height: 1.45;
}
.aw-product-card__body p {
	margin: 0 0 14px;
	color: var(--aw-slate-500);
	font-size: 13px;
}
.aw-product-card__footer {
	display: grid;
	gap: 12px;
	border-top: 1px solid var(--aw-slate-200);
	padding-top: 14px;
}
.aw-product-card__footer strong {
	color: var(--aw-brand-600);
	font-size: 18px;
	font-weight: 950;
}
.aw-product-card__actions {
	display: flex;
	align-items: center;
	gap: 8px;
}
.quick-view-btn {
	border: 1px solid var(--aw-slate-200);
	border-radius: var(--aw-radius-xl);
	background: #fff;
	color: var(--aw-slate-700);
	font-size: 12px;
	font-weight: 900;
	padding: 10px 12px;
	cursor: pointer;
}
.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.aw-product-card__actions .button {
	border-radius: var(--aw-radius-xl) !important;
	background: var(--aw-brand-600) !important;
	color: #fff !important;
	font-weight: 950 !important;
	padding: 11px 14px !important;
	box-shadow: 0 10px 20px rgba(220,38,38,.12);
}
.aw-product-card__actions .button {
	flex: 1;
	text-align: center;
	font-size: 12px !important;
}

.product-quick-view__panel {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 5fr 7fr;
	width: min(760px, calc(100% - 28px));
	max-height: 88vh;
	overflow: hidden;
	margin: 6vh auto;
	border-radius: var(--aw-radius-3xl);
	background: #fff;
	box-shadow: 0 30px 90px rgba(15,23,42,.32);
	text-align: right;
}
.product-quick-view__close {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 999px;
	background: var(--aw-slate-100);
	font-size: 24px;
	cursor: pointer;
}
.product-quick-view__visual {
	position: relative;
	display: grid;
	align-content: center;
	justify-items: center;
	gap: 28px;
	border-left: 1px solid var(--aw-slate-200);
	background: var(--aw-slate-50);
	padding: 36px 24px;
}
.product-quick-view__visual > span {
	position: absolute;
	top: 18px;
	right: 18px;
	border: 1px solid rgba(239,68,68,.18);
	border-radius: 999px;
	background: rgba(220,38,38,.1);
	color: var(--aw-brand-600);
	font-size: 10px;
	font-weight: 950;
	padding: 5px 12px;
}
.product-quick-view__image {
	width: 150px;
	height: 150px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: var(--aw-brand-100);
	font-size: 64px;
	overflow: hidden;
}
.product-quick-view__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product-quick-view__trust {
	width: 100%;
	border: 1px solid var(--aw-slate-200);
	border-radius: var(--aw-radius-2xl);
	background: #fff;
	padding: 14px;
	font-size: 12px;
	font-weight: 950;
	text-align: center;
}
.product-quick-view__content {
	padding: 36px;
	overflow: auto;
}
.product-rating {
	margin-bottom: 12px;
	color: #f59e0b;
	font-size: 13px;
	font-weight: 900;
}
.product-rating small {
	border-radius: 7px;
	background: var(--aw-slate-100);
	color: var(--aw-slate-500);
	padding: 2px 7px;
}
.product-rating em {
	color: #16a34a;
	font-style: normal;
	margin-inline-start: 8px;
}
.product-quick-view__price {
	display: inline-block;
	border: 1px solid var(--aw-slate-200);
	border-radius: var(--aw-radius-2xl);
	background: var(--aw-slate-50);
	color: var(--aw-brand-600);
	font-size: 26px;
	font-weight: 950;
	padding: 10px 14px;
	margin: 8px 0 16px;
}
.product-quick-view__specs {
	border: 1px solid var(--aw-slate-200);
	border-radius: var(--aw-radius-2xl);
	background: var(--aw-slate-50);
	color: var(--aw-slate-700);
	font-size: 13px;
	padding: 16px 28px;
}

.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: 42px;
}
.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	float: none;
	width: auto;
}
.woocommerce div.product .product_title {
	font-size: clamp(30px, 4vw, 46px);
	font-weight: 950;
}
.woocommerce-cart-form,
.cart_totals,
.woocommerce-checkout-review-order,
.woocommerce-checkout .col2-set {
	border: 1px solid var(--aw-slate-200);
	border-radius: var(--aw-radius-2xl);
	background: #fff;
	padding: 22px;
	box-shadow: var(--aw-shadow-sm);
}
.woocommerce table.shop_table {
	border-radius: var(--aw-radius-xl);
	overflow: hidden;
}

@media (max-width: 1100px) {
	.shop-controls { grid-template-columns: 1fr 1fr; }
	.woocommerce .products,
	ul.products.product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
	.shop-controls,
	.product-quick-view__panel,
	.woocommerce div.product { grid-template-columns: 1fr; }
	.woocommerce .products,
	ul.products.product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.product-quick-view__visual { border-left: 0; border-bottom: 1px solid var(--aw-slate-200); }
}

@media (max-width: 540px) {
	.woocommerce .products,
	ul.products.product-grid { grid-template-columns: 1fr; }
	.aw-product-card__actions { flex-direction: column; align-items: stretch; }
}
