.ava-product-showcase,
.ava-product-archive-wrap {
	--ava-psc-bg: #f7f9fb;
	--ava-psc-card: #ffffff;
	--ava-psc-text: #17202a;
	--ava-psc-muted: #667085;
	--ava-psc-line: #e5eaf0;
	--ava-psc-primary: #0f4c5c;
	--ava-psc-primary-2: #12343b;
	--ava-psc-accent: #d99b2b;
	--ava-psc-soft: #eef6f7;
	--ava-psc-radius: 22px;
	font-family: inherit;
}

.ava-product-showcase {
	position: relative;
	direction: rtl;
	width: 100%;
}

.ava-product-showcase__heading {
	margin-bottom: 24px;
}

.ava-product-showcase__eyebrow,
.ava-product-archive-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 12px;
	border-radius: 999px;
	background: var(--ava-psc-soft);
	color: var(--ava-psc-primary);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.8;
}

.ava-product-showcase__eyebrow::before,
.ava-product-archive-hero__eyebrow::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ava-psc-accent);
}

.ava-product-showcase__heading h2 {
	margin: 10px 0 0;
	color: var(--ava-psc-text);
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 900;
	line-height: 1.45;
}

.ava-product-showcase__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.ava-cols-1 .ava-product-showcase__grid { grid-template-columns: minmax(0, 1fr); }
.ava-cols-2 .ava-product-showcase__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ava-cols-3 .ava-product-showcase__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ava-cols-4 .ava-product-showcase__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.ava-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	min-width: 0;
	height: 100%;
	background: var(--ava-psc-card);
	border: 1px solid var(--ava-psc-line);
	border-radius: var(--ava-psc-radius);
	box-shadow: 0 20px 46px rgba(16, 24, 40, 0.07);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.ava-product-card:hover {
	transform: translateY(-4px);
	border-color: rgba(15, 76, 92, 0.24);
	box-shadow: 0 28px 64px rgba(16, 24, 40, 0.11);
}

.ava-product-card::after {
	content: "";
	position: absolute;
	inset-inline: 18px;
	top: 0;
	height: 3px;
	border-radius: 0 0 999px 999px;
	background: linear-gradient(90deg, var(--ava-psc-primary), var(--ava-psc-accent));
}

.ava-product-card__media {
	display: block;
	position: relative;
	aspect-ratio: 16 / 10;
	background: radial-gradient(circle at 70% 25%, #ffffff 0, #eef6f7 35%, #dfecef 100%);
	overflow: hidden;
	text-decoration: none;
}

.ava-product-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 260ms ease;
}

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

.ava-product-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.ava-product-card__ring {
	position: relative;
	display: block;
	width: 92px;
	height: 92px;
	border: 18px solid rgba(15, 76, 92, 0.14);
	border-radius: 50%;
	box-shadow: inset 0 0 0 5px rgba(217, 155, 43, 0.16), 0 20px 44px rgba(15, 76, 92, 0.18);
}

.ava-product-card__ring::after {
	content: "";
	position: absolute;
	inset: 15px;
	border-radius: 50%;
	border: 2px dashed rgba(15, 76, 92, 0.36);
}

.ava-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 13px;
	padding: 20px;
}

.ava-product-card__topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 28px;
}

.ava-product-card__badge,
.ava-product-card__status {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.8;
	white-space: nowrap;
}

.ava-product-card__badge {
	padding: 4px 10px;
	background: var(--ava-psc-soft);
	color: var(--ava-psc-primary);
}

.ava-product-card__status {
	padding: 4px 9px;
	background: rgba(217, 155, 43, 0.12);
	color: #8a5b06;
}

.ava-product-card__title {
	margin: 0;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.55;
	color: var(--ava-psc-text);
}

.ava-product-card__title a {
	color: inherit;
	text-decoration: none;
}

.ava-product-card__title a:hover {
	color: var(--ava-psc-primary);
}

.ava-product-card__excerpt {
	margin: 0;
	color: var(--ava-psc-muted);
	font-size: 14px;
	line-height: 2;
}

.ava-product-card__specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	padding: 0;
	margin: 4px 0 0;
	list-style: none;
}

.ava-product-card__specs li {
	padding: 10px 11px;
	border: 1px solid var(--ava-psc-line);
	border-radius: 14px;
	background: #fbfcfd;
}

.ava-product-card__specs span,
.ava-product-card__specs strong {
	display: block;
	min-width: 0;
}

.ava-product-card__specs span {
	margin-bottom: 4px;
	color: var(--ava-psc-muted);
	font-size: 11px;
	font-weight: 700;
}

.ava-product-card__specs strong {
	color: var(--ava-psc-text);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.8;
}

.ava-product-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	margin-top: auto;
	padding: 12px 16px;
	border-radius: 15px;
	background: var(--ava-psc-primary);
	color: #ffffff !important;
	font-size: 14px;
	font-weight: 900;
	text-decoration: none !important;
	transition: background 180ms ease, transform 180ms ease;
}

.ava-product-card__button:hover {
	background: var(--ava-psc-primary-2);
	transform: translateY(-1px);
}

.ava-layout-technical .ava-product-card {
	background: linear-gradient(180deg, #ffffff 0%, #ffffff 62%, #f8fbfc 100%);
}

.ava-layout-compact .ava-product-card {
	flex-direction: row;
	align-items: stretch;
}

.ava-layout-compact .ava-product-card__media {
	width: 34%;
	min-width: 150px;
	aspect-ratio: auto;
}

.ava-layout-compact .ava-product-card__specs {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ava-layout-slider .ava-product-showcase__grid {
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-padding-inline: 4px;
	padding: 2px 2px 18px;
	gap: 18px;
	-webkit-overflow-scrolling: touch;
}

.ava-layout-slider .ava-product-card {
	flex: 0 0 min(380px, 88vw);
	scroll-snap-align: start;
}

.ava-product-showcase__controls {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	margin: 0 0 18px;
}

.ava-slider-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--ava-psc-line);
	border-radius: 50%;
	background: #ffffff;
	color: var(--ava-psc-primary);
	font-size: 24px;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
}

.ava-slider-btn:hover {
	border-color: rgba(15, 76, 92, 0.35);
}

.ava-product-showcase__empty {
	padding: 24px;
	border: 1px dashed var(--ava-psc-line);
	border-radius: var(--ava-psc-radius);
	background: #ffffff;
	color: var(--ava-psc-muted);
	text-align: center;
}

.ava-product-archive-wrap {
	max-width: 1240px;
	margin: 0 auto;
	padding: 32px 20px 64px;
}

.ava-product-archive-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.9fr);
	gap: 24px;
	align-items: stretch;
	margin-bottom: 34px;
	padding: 34px;
	border-radius: 30px;
	background:
		radial-gradient(circle at 10% 20%, rgba(217, 155, 43, 0.12), transparent 28%),
		linear-gradient(135deg, #f6fbfc 0%, #ffffff 100%);
	border: 1px solid var(--ava-psc-line);
	box-shadow: 0 26px 70px rgba(16, 24, 40, 0.08);
}

.ava-product-archive-hero h1 {
	margin: 12px 0 12px;
	color: var(--ava-psc-text);
	font-size: clamp(30px, 4vw, 48px);
	font-weight: 950;
	line-height: 1.35;
}

.ava-product-archive-hero p,
.ava-product-archive-hero__desc {
	margin: 0;
	color: var(--ava-psc-muted);
	font-size: 16px;
	line-height: 2.1;
}

.ava-product-archive-hero__panel {
	display: grid;
	gap: 12px;
}

.ava-product-archive-hero__panel div {
	padding: 18px;
	border-radius: 20px;
	background: #ffffff;
	border: 1px solid var(--ava-psc-line);
}

.ava-product-archive-hero__panel strong,
.ava-product-archive-hero__panel span {
	display: block;
}

.ava-product-archive-hero__panel strong {
	margin-bottom: 5px;
	color: var(--ava-psc-primary);
	font-size: 15px;
	font-weight: 900;
}

.ava-product-archive-hero__panel span {
	color: var(--ava-psc-muted);
	font-size: 13px;
	line-height: 1.9;
}

@media (max-width: 1024px) {
	.ava-cols-4 .ava-product-showcase__grid,
	.ava-cols-3 .ava-product-showcase__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ava-product-archive-hero {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.ava-product-showcase__grid,
	.ava-cols-2 .ava-product-showcase__grid,
	.ava-cols-3 .ava-product-showcase__grid,
	.ava-cols-4 .ava-product-showcase__grid {
		grid-template-columns: 1fr;
	}

	.ava-product-showcase__controls {
		justify-content: flex-start;
		margin: 0 0 14px;
	}

	.ava-product-card__specs,
	.ava-layout-compact .ava-product-card__specs {
		grid-template-columns: 1fr;
	}

	.ava-layout-compact .ava-product-card {
		flex-direction: column;
	}

	.ava-layout-compact .ava-product-card__media {
		width: 100%;
		min-width: 0;
		aspect-ratio: 16 / 10;
	}

	.ava-product-archive-wrap {
		padding: 20px 14px 44px;
	}

	.ava-product-archive-hero {
		padding: 22px;
		border-radius: 24px;
	}
}

.ava-product-single-wrap {
	--ava-psc-bg: #f7f9fb;
	--ava-psc-card: #ffffff;
	--ava-psc-text: #17202a;
	--ava-psc-muted: #667085;
	--ava-psc-line: #e5eaf0;
	--ava-psc-primary: #0f4c5c;
	--ava-psc-primary-2: #12343b;
	--ava-psc-accent: #d99b2b;
	--ava-psc-soft: #eef6f7;
	--ava-psc-radius: 22px;
	max-width: 1240px;
	margin: 0 auto;
	padding: 32px 20px 72px;
	direction: rtl;
	font-family: inherit;
}

.ava-product-single-card {
	overflow: hidden;
	background: #ffffff;
	border: 1px solid var(--ava-psc-line);
	border-radius: 32px;
	box-shadow: 0 28px 80px rgba(16, 24, 40, 0.08);
}

.ava-product-single-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
	gap: 34px;
	align-items: center;
	padding: 38px;
	background:
		radial-gradient(circle at 12% 18%, rgba(217, 155, 43, 0.14), transparent 28%),
		linear-gradient(135deg, #f8fbfc 0%, #ffffff 100%);
	border-bottom: 1px solid var(--ava-psc-line);
}

.ava-product-single-hero h1 {
	margin: 14px 0;
	color: var(--ava-psc-text);
	font-size: clamp(30px, 4.2vw, 52px);
	font-weight: 950;
	line-height: 1.35;
}

.ava-product-single-hero__intro,
.ava-product-single-hero__intro p {
	margin: 0;
	color: var(--ava-psc-muted);
	font-size: 16px;
	line-height: 2.15;
}

.ava-product-single-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.ava-product-single-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 20px;
	border: 1px solid rgba(15, 76, 92, 0.2);
	border-radius: 15px;
	background: #ffffff;
	color: var(--ava-psc-primary) !important;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.7;
	text-decoration: none !important;
}

.ava-product-single-btn--primary {
	background: var(--ava-psc-primary);
	border-color: var(--ava-psc-primary);
	color: #ffffff !important;
	box-shadow: 0 14px 34px rgba(15, 76, 92, 0.2);
}

.ava-product-single-gallery {
	display: grid;
	gap: 14px;
}

.ava-product-single-gallery__main {
	overflow: hidden;
	border: 1px solid var(--ava-psc-line);
	border-radius: 28px;
	background: radial-gradient(circle at 70% 20%, #ffffff, #ecf3f5 72%);
	box-shadow: 0 20px 52px rgba(16, 24, 40, 0.09);
}

.ava-product-single-gallery__main img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.ava-product-single-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
}

.ava-product-single-gallery__thumbs span {
	display: block;
	overflow: hidden;
	border: 1px solid var(--ava-psc-line);
	border-radius: 16px;
	background: #ffffff;
}

.ava-product-single-gallery__thumbs img {
	display: block;
	width: 100%;
	height: 86px;
	object-fit: cover;
}

.ava-product-single-section {
	padding: 34px 38px;
	border-bottom: 1px solid var(--ava-psc-line);
}

.ava-product-single-section h2,
.ava-product-single-inquiry h2,
.ava-product-single-related .ava-product-showcase__heading h2 {
	margin: 0 0 18px;
	color: var(--ava-psc-text);
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 950;
	line-height: 1.45;
}

.ava-product-single-specs__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.ava-product-single-spec {
	padding: 16px;
	border: 1px solid var(--ava-psc-line);
	border-radius: 18px;
	background: #fbfcfd;
}

.ava-product-single-spec span,
.ava-product-single-spec strong {
	display: block;
}

.ava-product-single-spec span {
	margin-bottom: 7px;
	color: var(--ava-psc-muted);
	font-size: 12px;
	font-weight: 800;
}

.ava-product-single-spec strong {
	color: var(--ava-psc-text);
	font-size: 14px;
	font-weight: 950;
	line-height: 1.8;
}

.ava-product-single-features ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.ava-product-single-features li {
	position: relative;
	padding: 13px 38px 13px 16px;
	border: 1px solid var(--ava-psc-line);
	border-radius: 16px;
	background: #ffffff;
	color: var(--ava-psc-text);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.9;
}

.ava-product-single-features li::before {
	content: "";
	position: absolute;
	top: 20px;
	right: 16px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ava-psc-accent);
}

.ava-product-single-content {
	color: var(--ava-psc-text);
	font-size: 16px;
	line-height: 2.2;
}

.ava-product-single-content h1,
.ava-product-single-content h2,
.ava-product-single-content h3,
.ava-product-single-content h4 {
	color: var(--ava-psc-text);
	font-weight: 950;
	line-height: 1.5;
}

.ava-product-single-content p {
	margin: 0 0 14px;
}

.ava-product-single-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 14px 0;
	border: 1px solid var(--ava-psc-line);
	border-radius: 16px;
	overflow: hidden;
}

.ava-product-single-content th,
.ava-product-single-content td {
	padding: 12px 14px;
	border: 1px solid var(--ava-psc-line);
	text-align: right;
}

.ava-product-single-inquiry {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin: 38px;
	padding: 24px;
	border-radius: 24px;
	background: linear-gradient(135deg, var(--ava-psc-primary), var(--ava-psc-primary-2));
	color: #ffffff;
}

.ava-product-single-inquiry h2,
.ava-product-single-inquiry p {
	color: #ffffff;
}

.ava-product-single-inquiry h2 {
	margin-bottom: 8px;
}

.ava-product-single-inquiry p {
	margin: 0;
	font-size: 14px;
	line-height: 2;
	opacity: 0.88;
}

.ava-product-single-inquiry .ava-product-single-btn--primary {
	background: #ffffff;
	border-color: #ffffff;
	color: var(--ava-psc-primary) !important;
	box-shadow: none;
	white-space: nowrap;
}

.ava-product-single-related {
	margin-top: 34px;
}

.ava-product-single-related .ava-product-showcase {
	padding: 0;
}

.ava-product-single .comments-area,
.ava-product-single .comment-respond,
.ava-product-single #comments {
	display: none !important;
}

@media (max-width: 1024px) {
	.ava-product-single-hero {
		grid-template-columns: 1fr;
	}

	.ava-product-single-specs__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.ava-product-single-wrap {
		padding: 20px 14px 48px;
	}

	.ava-product-single-card {
		border-radius: 24px;
	}

	.ava-product-single-hero,
	.ava-product-single-section {
		padding: 24px 18px;
	}

	.ava-product-single-specs__grid,
	.ava-product-single-features ul {
		grid-template-columns: 1fr;
	}

	.ava-product-single-inquiry {
		flex-direction: column;
		align-items: stretch;
		margin: 22px 18px;
	}

	.ava-product-single-gallery__thumbs {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* v1.2 single product refinements */
.ava-product-single-hero__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 18px 0 0;
}

.ava-product-single-hero__badges span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 11px;
	border: 1px solid var(--ava-psc-line);
	border-radius: 999px;
	background: #ffffff;
	color: var(--ava-psc-primary);
	font-size: 12px;
	font-weight: 900;
}

.ava-product-single-hero__badges span::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--ava-psc-accent);
}

.ava-product-single-gallery__thumbs {
	align-items: stretch;
}

.ava-product-single-gallery__thumb {
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden;
	border: 2px solid transparent;
	border-radius: 16px;
	background: #ffffff;
	cursor: pointer;
	transition: border-color 160ms ease, transform 160ms ease;
}

.ava-product-single-gallery__thumb:hover,
.ava-product-single-gallery__thumb.is-active {
	border-color: var(--ava-psc-primary);
	transform: translateY(-2px);
}

.ava-product-single-gallery__thumb img {
	display: block;
	width: 100%;
	height: 86px;
	object-fit: cover;
}

.ava-product-single-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 32px rgba(16, 24, 40, 0.10);
}

.ava-product-single-btn--primary:hover {
	box-shadow: 0 18px 38px rgba(15, 76, 92, 0.25);
}

.ava-product-single-content .ava-imported-product__source,
.ava-imported-product__source {
	display: none !important;
}

@media (max-width: 860px) {
	.ava-product-single-hero {
		gap: 22px;
	}

	.ava-product-single-hero__actions {
		flex-direction: column;
	}

	.ava-product-single-btn {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.ava-product-single-hero h1 {
		font-size: 28px;
	}

	.ava-product-single-gallery__thumb img {
		height: 74px;
	}

	.ava-product-single-section h2,
	.ava-product-single-inquiry h2,
	.ava-product-single-related .ava-product-showcase__heading h2 {
		font-size: 24px;
	}
}

/* v1.3 Elementor widget advanced layouts */
.ava-product-showcase {
	--ava-psc-columns: 3;
	--ava-psc-columns-tablet: 2;
	--ava-psc-columns-mobile: 1;
	--ava-psc-gap: 22px;
	--ava-psc-gap-tablet: 18px;
	--ava-psc-gap-mobile: 14px;
}

.ava-product-showcase .ava-product-showcase__grid {
	grid-template-columns: repeat(var(--ava-psc-columns), minmax(0, 1fr));
	gap: var(--ava-psc-gap);
}

.ava-card-style-clean .ava-product-card {
	box-shadow: none;
	background: var(--ava-psc-card);
}

.ava-card-style-outline .ava-product-card {
	box-shadow: none;
	border-style: dashed;
	background: transparent;
}

.ava-card-style-shadow .ava-product-card {
	box-shadow: 0 24px 70px rgba(16, 24, 40, 0.14);
}

.ava-card-style-dark .ava-product-card {
	background: linear-gradient(180deg, #16252c 0%, #0f1b21 100%);
	border-color: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

.ava-card-style-dark .ava-product-card__title,
.ava-card-style-dark .ava-product-card__specs strong {
	color: #ffffff;
}

.ava-card-style-dark .ava-product-card__excerpt,
.ava-card-style-dark .ava-product-card__specs span {
	color: rgba(255, 255, 255, 0.72);
}

.ava-card-style-dark .ava-product-card__specs li {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.10);
}

.ava-image-ratio-1-1 .ava-product-card__media { aspect-ratio: 1 / 1; }
.ava-image-ratio-4-3 .ava-product-card__media { aspect-ratio: 4 / 3; }
.ava-image-ratio-16-10 .ava-product-card__media { aspect-ratio: 16 / 10; }
.ava-image-ratio-16-9 .ava-product-card__media { aspect-ratio: 16 / 9; }
.ava-image-ratio-3-2 .ava-product-card__media { aspect-ratio: 3 / 2; }

.ava-image-fit-contain .ava-product-card__media img {
	object-fit: contain;
	padding: 14px;
	background: #f7f9fb;
}

.ava-layout-list .ava-product-showcase__grid {
	grid-template-columns: 1fr !important;
}

.ava-layout-list .ava-product-card,
.ava-layout-feature .ava-product-card.is-first,
.ava-layout-compact .ava-product-card {
	flex-direction: row;
}

.ava-layout-list .ava-product-card__media,
.ava-layout-feature .ava-product-card.is-first .ava-product-card__media {
	width: min(38%, 420px);
	min-width: 260px;
	aspect-ratio: auto;
}

.ava-layout-list .ava-product-card__body,
.ava-layout-feature .ava-product-card.is-first .ava-product-card__body {
	padding: 26px;
}

.ava-layout-minimal .ava-product-card {
	box-shadow: none;
	border-color: transparent;
	background: transparent;
}

.ava-layout-minimal .ava-product-card::after,
.ava-card-style-clean .ava-product-card::after,
.ava-card-style-outline .ava-product-card::after {
	display: none;
}

.ava-layout-minimal .ava-product-card__body {
	padding-inline: 2px;
}

.ava-layout-minimal .ava-product-card__media {
	border-radius: var(--ava-psc-radius);
	border: 1px solid var(--ava-psc-line);
}

.ava-layout-feature .ava-product-showcase__grid {
	grid-template-columns: repeat(var(--ava-psc-columns), minmax(0, 1fr));
}

.ava-layout-feature .ava-product-card.is-first {
	grid-column: 1 / -1;
}

.ava-layout-feature .ava-product-card.is-first .ava-product-card__title {
	font-size: clamp(24px, 3vw, 40px);
}

.ava-layout-feature .ava-product-card.is-first .ava-product-card__excerpt {
	font-size: 15px;
}

.ava-layout-slider .ava-product-showcase__grid {
	gap: var(--ava-psc-gap);
}

.ava-product-showcase__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 12px;
}

.ava-product-showcase__dots button {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(15, 76, 92, 0.22);
	cursor: pointer;
	transition: width 180ms ease, background 180ms ease;
}

.ava-product-showcase__dots button.is-active {
	width: 26px;
	background: var(--ava-psc-primary);
}

.ava-product-card__media,
.ava-product-card {
	border-radius: var(--ava-psc-radius);
}

@media (max-width: 1024px) {
	.ava-product-showcase .ava-product-showcase__grid {
		grid-template-columns: repeat(var(--ava-psc-columns-tablet), minmax(0, 1fr));
		gap: var(--ava-psc-gap-tablet);
	}

	.ava-layout-feature .ava-product-card.is-first,
	.ava-layout-list .ava-product-card {
		flex-direction: column;
	}

	.ava-layout-feature .ava-product-card.is-first .ava-product-card__media,
	.ava-layout-list .ava-product-card__media {
		width: 100%;
		min-width: 0;
		aspect-ratio: 16 / 10;
	}
}

@media (max-width: 680px) {
	.ava-product-showcase .ava-product-showcase__grid {
		grid-template-columns: repeat(var(--ava-psc-columns-mobile), minmax(0, 1fr));
		gap: var(--ava-psc-gap-mobile);
	}

	.ava-layout-list .ava-product-card,
	.ava-layout-feature .ava-product-card.is-first,
	.ava-layout-compact .ava-product-card {
		flex-direction: column;
	}

	.ava-layout-list .ava-product-card__media,
	.ava-layout-feature .ava-product-card.is-first .ava-product-card__media,
	.ava-layout-compact .ava-product-card__media {
		width: 100%;
		min-width: 0;
		aspect-ratio: 16 / 10;
	}

	.ava-product-showcase__heading h2 {
		font-size: 25px;
	}
}

/* v1.6 widget heading action and child category filter */
.ava-product-showcase__heading-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 22px;
}

.ava-product-showcase__heading-row .ava-product-showcase__heading {
	margin-bottom: 0;
}

.ava-product-showcase__all-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex: 0 0 auto;
	min-height: 42px;
	padding: 10px 17px;
	border-radius: 999px;
	background: var(--ava-psc-primary);
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.7;
	text-decoration: none !important;
	box-shadow: 0 12px 28px rgba(15, 76, 92, 0.18);
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.ava-product-showcase__all-link:hover,
.ava-product-showcase__all-link:focus {
	transform: translateY(-2px);
	background: var(--ava-psc-primary-2, #12343b);
	color: #ffffff;
	box-shadow: 0 16px 34px rgba(15, 76, 92, 0.24);
}

.ava-product-showcase__filters {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin: -4px 0 22px;
}

.ava-product-showcase__filter {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 38px;
	padding: 8px 15px;
	border: 1px solid var(--ava-psc-line);
	border-radius: 999px;
	background: #ffffff;
	color: var(--ava-psc-text);
	font-family: inherit;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.7;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.ava-product-showcase__filter::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--ava-psc-accent);
	opacity: .75;
}

.ava-product-showcase__filter:hover,
.ava-product-showcase__filter.is-active {
	transform: translateY(-1px);
	border-color: rgba(15, 76, 92, 0.26);
	background: var(--ava-psc-soft);
	color: var(--ava-psc-primary);
}

.ava-product-card[hidden],
.ava-product-card.is-filter-hidden {
	display: none !important;
}

.ava-product-showcase__filter-empty[hidden] {
	display: none !important;
}

.ava-product-showcase__filter-empty {
	margin-top: 16px;
}

.ava-card-style-dark .ava-product-showcase__filter {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.86);
}

.ava-card-style-dark .ava-product-showcase__filter.is-active,
.ava-card-style-dark .ava-product-showcase__filter:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
}

@media (max-width: 767px) {
	.ava-product-showcase__heading-row {
		align-items: stretch;
		flex-direction: column;
	}

	.ava-product-showcase__all-link {
		width: 100%;
	}

	.ava-product-showcase__filters {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 6px;
		scrollbar-width: thin;
	}

	.ava-product-showcase__filter {
		white-space: nowrap;
	}
}
