/**
 * SMT Flash Sale — Frontend styles (standalone, prefix .smt-fs-)
 *
 * Prefer specificity over !important. Keep !important only for:
 * - Flatsome .products / .col flex-grid overrides
 * - hide/show that must beat [hidden] or theme display rules
 * - lazy-load image force-visible in slider
 */

/* ---- Progress bar wrap (loop / single) ---- */
.smt-fs-bar-wrap {
	display: block;
	width: 100%;
	max-width: 100%;
	margin: 8px 0;
	padding: 0;
	float: none;
	clear: none;
	box-sizing: border-box;
	line-height: normal;
	font-size: 14px;
	text-align: left;
	position: relative;
	z-index: 1;
}

.smt-fs-loop-flash {
	display: block;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	float: none;
	clear: none;
	box-sizing: border-box;
	text-align: left;
}

.smt-fs-loop-flash--bar {
	margin: 8px 0 0;
}

.smt-fs-loop-flash--bar .smt-fs-loop-bar,
.smt-fs-loop-flash--bar .smt-fs-bar-wrap {
	margin: 0;
}

.smt-fs-prices,
.smt-fs-price-html {
	display: flex;
	flex-direction: row;
	align-items: baseline;
	gap: 6px;
	flex-wrap: wrap;
	margin: 0;
	justify-content: flex-start;
	float: none;
	width: auto;
}

.products .product .price:empty {
	display: none;
}

/* ---- Progress bar ---- */
.smt-fs-bar,
.smt-fs-bar * {
	box-sizing: border-box;
}

.smt-fs-bar {
	display: block;
	position: relative;
	width: 100%;
	max-width: 100%;
	height: 22px;
	min-height: 22px;
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 25px;
	background: #e8e8e8;
	overflow: hidden;
	float: none;
	clear: none;
	font-size: 12px;
	line-height: 1.2;
	text-align: left;
	box-shadow: none;
}

.smt-fs-fill {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	height: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 25px;
	background: var(--smt-color, #2e7d32);
	z-index: 0;
	pointer-events: none;
	font-size: 0;
	line-height: 0;
	color: transparent;
	overflow: hidden;
	transition: width 0.5s ease;
}

.smt-fs-label {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 6px;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0 10px;
	border: none;
	background: transparent;
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	font-style: normal;
	line-height: 1.2;
	letter-spacing: normal;
	text-transform: none;
	text-decoration: none;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
	white-space: nowrap;
	z-index: 2;
	pointer-events: none;
}

.smt-fs-bar-remaining .smt-fs-label,
.smt-fs-bar-sold .smt-fs-label {
	justify-content: center;
}

.smt-fs-label-text,
.smt-fs-label-side,
.smt-fs-label span,
.smt-fs-label strong {
	display: inline;
	position: static;
	float: none;
	width: auto;
	max-width: none;
	height: auto;
	min-height: 0;
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	color: #fff;
	font-size: inherit;
	font-weight: inherit;
	font-style: normal;
	line-height: inherit;
	white-space: nowrap;
}

.smt-fs-label strong,
.smt-fs-label-num {
	font-weight: 700;
}

.smt-fs-bar-placeholder {
	display: none;
}

.smt-fs-bar.smt-fs-bar-sm {
	height: 20px;
	min-height: 20px;
	border-radius: 25px;
}

.smt-fs-bar.smt-fs-bar-sm .smt-fs-label {
	font-size: 11px;
	padding: 0 8px;
}

.smt-fs-bar-soldout {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #bdbdbd;
	color: #fff;
	text-shadow: none;
}

.smt-fs-soldout-label {
	display: inline;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.smt-fs-bar-soldout.smt-fs-bar-sm .smt-fs-soldout-label {
	font-size: 11px;
}

.smt-fs-cart-notice {
	font-size: 14px;
	color: #c62828;
	margin-top: 4px;
}

/* ---- Widget shortcode ---- */
.smt-fs-widget {
	--smt-primary: #ff6d00;
	--smt-cols: 4;
	--smt-cols-t: 3;
	--smt-cols-m: 2;
	--smt-gap: 10px;
	font-family: inherit;
	border-radius: 5px;
	overflow: hidden;
	border: 1px solid #eee;
	margin: 16px 0;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.smt-fs-widget-header {
	background: var(--smt-primary);
	color: #fff;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 16px;
	border-radius: 5px 5px 0 0;
	flex-wrap: wrap;
}

.smt-fs-widget-title {
	font-size: 16px;
	font-weight: 600;
}

.smt-fs-see-all {
	margin-left: auto;
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	flex-shrink: 0;
}

.smt-fs-see-all:hover {
	color: #fff;
}

.smt-fs-countdown {
	display: flex;
	gap: 4px;
	align-items: center;
}

.smt-fs-seg {
	background: rgba(0, 0, 0, 0.3);
	color: #fff;
	font-family: monospace;
	font-size: 14px;
	padding: 3px 8px;
	border-radius: 5px;
	min-width: 28px;
	text-align: center;
	display: inline-block;
}

.smt-fs-sep {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

.smt-fs-products-wrap {
	position: relative;
	background: #f9f9f9;
	border-radius: 0 0 5px 5px;
}

.smt-fs-layout-slider .smt-fs-products-wrap,
.smt-fs-page[data-layout="slider"] .smt-fs-products-wrap {
	padding: 0 10px;
}

/* Row layout — override Flatsome .products flex (needs !important) */
.smt-fs-layout-row .smt-fs-slider--row {
	display: block;
	padding: 12px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.smt-fs-layout-row .smt-fs-slider--row .products,
.smt-fs-layout-row .smt-fs-slider--row ul.products {
	display: grid !important;
	grid-template-columns: repeat(var(--smt-cols), minmax(0, 1fr)) !important;
	gap: var(--smt-gap, 10px);
	align-items: stretch;
	list-style: none;
	margin: 0 !important;
	padding: 0;
	width: 100%;
	max-width: 100%;
	float: none;
	flex-wrap: unset !important;
}

.smt-fs-layout-row .smt-fs-slider--row .products.row,
.smt-fs-layout-row .smt-fs-slider--row ul.products.row {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.smt-fs-layout-row .smt-fs-slider--row:has(> .smt-fs-card) {
	display: grid;
	grid-template-columns: repeat(var(--smt-cols), minmax(0, 1fr));
	gap: var(--smt-gap, 10px);
	align-items: stretch;
}

/* Flatsome .col width % → full grid cell */
.smt-fs-layout-row .smt-fs-slider--row .products > li,
.smt-fs-layout-row .smt-fs-slider--row .products > .product,
.smt-fs-layout-row .smt-fs-slider--row .products > [class*="col"],
.smt-fs-layout-row .smt-fs-slider--row ul.products > li,
.smt-fs-layout-row .smt-fs-slider--row ul.products > .product,
.smt-fs-layout-row .smt-fs-slider--row ul.products > [class*="col"],
.smt-fs-layout-row .smt-fs-slider--row > .smt-fs-card {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0;
	flex: none !important;
	float: none;
	clear: none;
	margin: 0;
	padding-left: 0;
	padding-right: 0;
	position: relative;
	box-sizing: border-box;
}

.smt-fs-layout-row .smt-fs-slider--row .col-inner,
.smt-fs-layout-row .smt-fs-slider--row .box,
.smt-fs-layout-row .smt-fs-slider--row .box-image,
.smt-fs-layout-row .smt-fs-slider--row .box-text {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.smt-fs-products-wrap .product.col .col-inner {
	margin-bottom: 0;
}

.smt-fs-slider--row {
	padding: 12px;
}

.smt-fs-slider--row .products,
.smt-fs-slider--row ul.products {
	margin: 0;
	padding: 0;
}

.smt-fs-slider--row .smt-fs-card {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.smt-fs-slider--row .smt-fs-card-body {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}

.smt-fs-slider--row .smt-fs-card-footer,
.smt-fs-slider--row .smt-fs-prices {
	margin-top: auto;
}

/* Slider layout */
.smt-fs-slider--slider {
	overflow: hidden;
	padding: 12px 0;
}

.smt-fs-slider-track {
	display: flex;
	flex-wrap: nowrap;
	gap: var(--smt-gap);
	width: max-content;
	max-width: none;
	transition: transform 0.35s ease;
	will-change: transform;
	list-style: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.smt-fs-slider--slider .products.smt-fs-slider-track,
.smt-fs-slider--slider ul.products.smt-fs-slider-track {
	display: flex !important;
	flex-wrap: nowrap !important;
	width: max-content;
	max-width: none;
	float: none;
	margin: 0 !important;
	padding: 0;
}

.smt-fs-slider--slider .smt-fs-slider-track > .product,
.smt-fs-slider--slider .smt-fs-slider-track > .smt-fs-card {
	float: none;
	clear: none;
	margin: 0;
	padding: 0;
	min-width: 0;
	box-sizing: border-box;
	flex-shrink: 0;
}

.smt-fs-slider--slider .box-image,
.smt-fs-slider--slider .box-image .image-cover,
.smt-fs-slider--slider .box-image .image-plain {
	width: 100%;
	max-width: 100%;
}

/* Flatsome lazy-load: force visible after hydrate */
.smt-fs-slider--slider .box-image img,
.smt-fs-slider--slider .image-cover img {
	opacity: 1 !important;
	visibility: visible !important;
	max-width: 100%;
}

.smt-fs-slider-track.is-no-transition {
	transition: none;
}

.smt-fs-slider--slider .smt-fs-card {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	min-width: 0;
	box-sizing: border-box;
}

.smt-fs-slider--slider .smt-fs-card-body {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}

.smt-fs-slider--slider .smt-fs-card-footer,
.smt-fs-slider--slider .smt-fs-prices {
	margin-top: auto;
}

.smt-fs-slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 32px;
	height: 32px;
	min-height: 32px;
	border: 1px solid #ddd;
	border-radius: 40px;
	background: #fff;
	margin: 0;
	color: #333;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
	transition: opacity 0.2s, background 0.2s;
}

.smt-fs-slider-nav:hover {
	background: #f5f5f5;
}

.smt-fs-slider-nav:disabled,
.smt-fs-slider-nav.is-disabled {
	opacity: 0.35;
	cursor: default;
	pointer-events: none;
}

.smt-fs-slider-prev {
	left: 6px;
}

.smt-fs-slider-next {
	right: 6px;
}

.smt-fs-layout-row .smt-fs-slider-nav {
	display: none;
}

.smt-fs-row-hidden {
	display: none !important;
}

.smt-fs-row-more {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 4px 12px 16px;
}

.smt-fs-row-more[hidden]:not(.is-visible) {
	display: none !important;
}

.smt-fs-row-more.is-visible {
	display: flex;
}

.smt-fs-see-all-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	margin: 0;
	padding: 10px 20px;
	border: 1px solid var(--smt-primary, #ff6d00);
	border-radius: 5px;
	background: #fff;
	color: var(--smt-primary, #ff6d00);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.smt-fs-see-all-more:hover,
.smt-fs-see-all-more:focus {
	background: var(--smt-primary, #ff6d00);
	color: #fff;
	text-decoration: none;
}

/* Product card */
.smt-fs-card {
	display: block;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 5px;
	overflow: hidden;
	transition: box-shadow 0.2s;
}

.smt-fs-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	color: inherit;
}

.smt-fs-card-img {
	position: relative;
	aspect-ratio: 1;
	background: #f5f5f5;
	flex-shrink: 0;
}

.smt-fs-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.smt-fs-pct-badge {
	position: absolute;
	top: 6px;
	left: 6px;
	background: #c62828;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	padding: 2px 6px;
	border-radius: 5px;
	z-index: 1;
}

.smt-fs-card-body {
	padding: 8px 10px;
}

.smt-fs-card-name {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	margin-bottom: 8px;
	color: #1a1a1a;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.7em;
}

.smt-fs-card-body > .smt-fs-bar-wrap,
.smt-fs-card-body > .smt-fs-loop-bar {
	margin: 0 0 10px;
}

.smt-fs-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-top: auto;
}

.smt-fs-prices {
	display: flex;
	flex-direction: row;
	align-items: baseline;
	gap: 6px;
	margin-bottom: 0;
	flex-wrap: wrap;
	font-size: 14px;
	min-width: 0;
}

.smt-fs-price-flash {
	font-size: 15px;
	font-weight: 700;
	color: #222;
}

.smt-fs-price-orig {
	font-size: 13px;
	color: #999;
	text-decoration: line-through;
}

/* Single product */
.single-product .product .summary .smt-fs-bar-wrap,
.single-product .product-main .smt-fs-bar-wrap,
.product .entry-summary > .smt-fs-bar-wrap {
	display: block;
	width: 100%;
	max-width: 100%;
	margin: 10px 0 14px;
	padding: 0;
	float: none;
	clear: both;
}

.single-product .product .summary .smt-fs-bar,
.single-product .product-main .smt-fs-bar,
.product .entry-summary > .smt-fs-bar-wrap .smt-fs-bar {
	max-width: 420px;
}

/* ---- Shop / category card: CSS Grid order (title+bar → price | cart) ----
 * One !important on display:grid to beat Flatsome flex on .box-text.
 */
.product-small:not(.box-overlay):not(.box-shade) .box-text:has(.smt-fs-loop-flash--bar),
.smt-fs-widget .product-small:not(.box-overlay):not(.box-shade) .box-text:has(.smt-fs-loop-flash--bar),
.smt-fs-page .product-small:not(.box-overlay):not(.box-shade) .box-text:has(.smt-fs-loop-flash--bar) {
	display: grid !important;
	grid-template-columns: 1fr auto;
	grid-template-areas:
		"title title"
		"price cart";
	align-items: center;
	column-gap: 8px;
	row-gap: 8px;
}

.product-small:not(.box-overlay):not(.box-shade) .box-text:has(.smt-fs-loop-flash--bar) > .title-wrapper,
.smt-fs-widget .product-small .box-text:has(.smt-fs-loop-flash--bar) > .title-wrapper,
.smt-fs-page .product-small .box-text:has(.smt-fs-loop-flash--bar) > .title-wrapper {
	grid-area: title;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 100%;
	max-width: 100%;
	margin: 0;
}

.product-small .box-text:has(.smt-fs-loop-flash--bar) .product-title,
.product-small .box-text:has(.smt-fs-loop-flash--bar) .product-title a,
.smt-fs-widget .box-text:has(.smt-fs-loop-flash--bar) .product-title,
.smt-fs-widget .box-text:has(.smt-fs-loop-flash--bar) .product-title a,
.smt-fs-page .box-text:has(.smt-fs-loop-flash--bar) .product-title,
.smt-fs-page .box-text:has(.smt-fs-loop-flash--bar) .product-title a {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	color: #1a1a1a;
	text-decoration: none;
}

.product-small .title-wrapper .smt-fs-loop-flash--bar,
.smt-fs-widget .title-wrapper .smt-fs-loop-flash--bar,
.smt-fs-page .title-wrapper .smt-fs-loop-flash--bar {
	display: block;
	width: 100%;
	margin: 8px 0 0;
}

.product-small .title-wrapper .smt-fs-loop-bar,
.product-small .title-wrapper .smt-fs-bar-wrap,
.smt-fs-widget .title-wrapper .smt-fs-loop-bar,
.smt-fs-widget .title-wrapper .smt-fs-bar-wrap,
.smt-fs-page .title-wrapper .smt-fs-loop-bar,
.smt-fs-page .title-wrapper .smt-fs-bar-wrap {
	display: block;
	width: 100%;
	max-width: 100%;
	margin: 0;
	float: none;
	clear: none;
}

.product-small:not(.box-overlay):not(.box-shade) .box-text:has(.smt-fs-loop-flash--bar) > .price-wrapper,
.smt-fs-widget .product-small .box-text:has(.smt-fs-loop-flash--bar) > .price-wrapper,
.smt-fs-page .product-small .box-text:has(.smt-fs-loop-flash--bar) > .price-wrapper {
	grid-area: price;
	width: auto;
	max-width: none;
	min-width: 0;
	margin: 0;
}

.product-small:not(.box-overlay):not(.box-shade) .box-text:has(.smt-fs-loop-flash--bar) > .add-to-cart-button,
.smt-fs-widget .product-small .box-text:has(.smt-fs-loop-flash--bar) > .add-to-cart-button,
.smt-fs-page .product-small .box-text:has(.smt-fs-loop-flash--bar) > .add-to-cart-button {
	grid-area: cart;
	margin: 0;
	padding-left: 0;
	justify-self: end;
	align-self: center;
	max-width: none;
}

.product-small:not(.box-overlay):not(.box-shade) .box-text:has(.smt-fs-loop-flash--bar):not(:has(> .add-to-cart-button)),
.smt-fs-widget .product-small .box-text:has(.smt-fs-loop-flash--bar):not(:has(> .add-to-cart-button)),
.smt-fs-page .product-small .box-text:has(.smt-fs-loop-flash--bar):not(:has(> .add-to-cart-button)) {
	grid-template-columns: 1fr;
	grid-template-areas:
		"title"
		"price";
}

.product-small .box-text:has(.smt-fs-loop-flash--bar) > .box-excerpt,
.smt-fs-widget .box-text:has(.smt-fs-loop-flash--bar) > .box-excerpt,
.smt-fs-page .box-text:has(.smt-fs-loop-flash--bar) > .box-excerpt {
	grid-column: 1 / -1;
}

.product-small .price-wrapper .smt-fs-prices,
.product-small .price-wrapper .smt-fs-price-html,
.smt-fs-widget .price-wrapper .smt-fs-prices,
.smt-fs-widget .price-wrapper .smt-fs-price-html,
.smt-fs-page .price-wrapper .smt-fs-prices,
.smt-fs-page .price-wrapper .smt-fs-price-html {
	flex-direction: row;
	justify-content: flex-start;
	align-items: baseline;
	width: auto;
	gap: 6px;
}

.product-small .smt-fs-bar.smt-fs-bar-sm,
.smt-fs-widget .smt-fs-bar.smt-fs-bar-sm,
.smt-fs-page .smt-fs-bar.smt-fs-bar-sm {
	height: 20px;
	min-height: 20px;
	border-radius: 999px;
	background: #999;
}

.product-small .smt-fs-bar.smt-fs-bar-sm .smt-fs-label,
.smt-fs-widget .smt-fs-bar.smt-fs-bar-sm .smt-fs-label,
.smt-fs-page .smt-fs-bar.smt-fs-bar-sm .smt-fs-label {
	font-size: 11px;
	font-weight: 600;
	padding: 0 10px;
	justify-content: center;
}

.product-small:has(.smt-fs-loop-flash--bar) .add-to-cart-button > .button,
.smt-fs-widget .add-to-cart-button > .button,
.smt-fs-page .add-to-cart-button > .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	min-height: 36px;
	padding: 0;
	margin: 0;
	border-radius: 6px;
	line-height: 1;
}

.smt-fs-widget .product-small .box-text:has(.smt-fs-loop-flash--bar),
.smt-fs-page .product-small .box-text:has(.smt-fs-loop-flash--bar) {
	padding-left: 7px;
	padding-right: 7px;
}

a.woocommerce-LoopProduct-link.woocommerce-loop-product__link {
	height: 36px;
	overflow: hidden;
}

/* Flash page */
.smt-fs-page-products {
	--smt-primary: #ff6d00;
	--smt-cols: 4;
	--smt-cols-t: 3;
	--smt-cols-m: 2;
	--smt-gap: 12px;
	display: grid;
	grid-template-columns: repeat(var(--smt-cols), minmax(0, 1fr));
	gap: var(--smt-gap);
	margin: 0 0 24px;
	padding: 12px;
	background: #f9f9f9;
	border-radius: 5px;
	align-items: stretch;
}

.smt-fs-page-products .smt-fs-card {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.smt-fs-page-products .smt-fs-card-body {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}

.smt-fs-page-products .smt-fs-card-footer,
.smt-fs-page-products .smt-fs-prices {
	margin-top: auto;
}

.smt-fs-page-header {
	--smt-primary: #ff6d00;
	margin: 0 0 24px;
}

.smt-fs-page-banner {
	padding: 24px 20px;
	background: #0d2137;
	border-radius: 5px;
}

.smt-fs-page-banner img {
	max-height: 200px;
	width: 100%;
	object-fit: cover;
	border-radius: 5px;
	margin-bottom: 12px;
	display: block;
}

.smt-fs-page-title,
.smt-fs-page-header .woocommerce-products-header__title {
	color: #fff;
	margin: 0 0 4px;
	font-size: 22px;
	font-weight: 600;
}

.smt-fs-page-sub {
	color: rgba(255, 255, 255, 0.65);
	margin: 0 0 10px;
	font-size: 14px;
}

.smt-fs-page-cta {
	display: inline-block;
	margin-top: 12px;
	background: var(--smt-primary, #ff6d00);
	color: #fff;
	padding: 8px 16px;
	border-radius: 5px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	border: none;
}

.smt-fs-page-cta:hover,
.smt-fs-page-cta:focus {
	color: #fff;
	opacity: 0.92;
}

.smt-fs-flash-page .smt-fs-page-banner .smt-fs-countdown {
	margin-top: 8px;
}

@media (max-width: 991px) {
	.smt-fs-layout-row .smt-fs-slider--row .products,
	.smt-fs-layout-row .smt-fs-slider--row ul.products,
	.smt-fs-layout-row .smt-fs-slider--row:has(> .smt-fs-card) {
		grid-template-columns: repeat(var(--smt-cols-t), minmax(0, 1fr)) !important;
	}

	.smt-fs-page-products {
		grid-template-columns: repeat(var(--smt-cols-t), minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.smt-fs-layout-row .smt-fs-slider--row .products,
	.smt-fs-layout-row .smt-fs-slider--row ul.products,
	.smt-fs-layout-row .smt-fs-slider--row:has(> .smt-fs-card) {
		grid-template-columns: repeat(var(--smt-cols-m), minmax(0, 1fr)) !important;
	}

	.smt-fs-page-products {
		grid-template-columns: repeat(var(--smt-cols-m), minmax(0, 1fr));
	}

	.smt-fs-layout-slider .smt-fs-products-wrap,
	.smt-fs-page[data-layout="slider"] .smt-fs-products-wrap {
		padding: 0 10px;
	}

	.smt-fs-slider--slider {
		padding: 12px 0;
	}

	.smt-fs-page .smt-fs-slider--slider.smt-fs-page-grid {
		padding: 12px 0;
	}

	.smt-fs-label {
		font-size: 11px;
		padding: 0 8px;
	}

	.smt-fs-bar {
		height: 22px;
		min-height: 22px;
	}
}
