.lala-flashsale-section {
	margin: 24px 0;
}

.lala-flashsale-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.lala-flashsale-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	font-weight: 700;
	color: #ee4d2d;
}

.lala-flashsale-title-icon {
	font-size: 20px;
}

.lala-flashsale-countdown-total {
	background: #fff;
	border: 1px solid #ee4d2d;
	border-radius: 4px;
	padding: 2px 8px;
	font-size: 13px;
	font-family: monospace;
}

.lala-flashsale-viewall {
	white-space: nowrap;
}

.lala-flashsale-collapse-wrap {
	text-align: center;
	margin-top: 12px;
}

.lala-flashsale-hidden {
	display: none !important;
}

/* Grid: desktop mac dinh 6 SP/hang - phai khop DESKTOP_ITEMS_PER_ROW o PHP va
   hang so trong flashsale.js. Tablet/mobile ghi de o media query ben duoi. */
.lala-flashsale-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 12px;
}

@media (max-width: 1023px) {
	.lala-flashsale-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.lala-flashsale-carousel {
	position: relative;
}

/* Base: an mac dinh, chi bat hien o mobile qua media query ben duoi. QUAN
   TRONG: khoi rule nay PHAI dung TRUOC @media (max-width: 599px) - neu dat SAU
   (nhu ban dau) thi rule khong-dieu-kien nay se luon thang rule trong media
   query do dung sau hon trong file (cung do uu tien), khien mui ten khong bao
   gio hien duoc du dung mobile. */
.lala-flashsale-arrow {
	display: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: #ee4d2d;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
}

.lala-flashsale-arrow-prev {
	left: 2px;
}

.lala-flashsale-arrow-next {
	right: 2px;
}

/* Mobile: khong dung nut "Xem tat ca" - hien 1 hang duy nhat, cuon ngang de xem
   het sp con lai, moi man hinh thay ~2 sp. */
@media (max-width: 599px) {
	.lala-flashsale-grid {
		display: grid;
		/* Phai reset ve "none" - neu khong se ke thua nham grid-template-columns:
		   repeat(4, 1fr) tu media query tablet o tren (vi max-width: 1023px van
		   dung o man hinh mobile), khien 4 SP dau bi ep vao 4 cot 1fr chat hep
		   thay vi dung dung grid-auto-columns: 46% duoi day cho TAT CA cac cot. */
		grid-template-columns: none;
		grid-auto-flow: column;
		grid-auto-columns: 46%;
		grid-template-rows: 1fr;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 4px;
	}

	.lala-flashsale-card {
		scroll-snap-align: start;
	}

	.lala-flashsale-card.lala-flashsale-hidden {
		display: flex !important;
	}

	.lala-flashsale-viewall,
	.lala-flashsale-collapse-wrap {
		display: none !important;
	}

	/* An thanh cuon mac dinh cua trinh duyet - thay bang cap nut mui ten 2 ben
	   (van vuot ngang binh thuong duoc, chi an phan "thanh truot" nhin roi mat). */
	.lala-flashsale-grid {
		scrollbar-width: none;
	}

	.lala-flashsale-grid::-webkit-scrollbar {
		display: none;
	}

	.lala-flashsale-arrow {
		display: flex;
	}
}

.lala-flashsale-card {
	position: relative;
	display: flex;
	flex-direction: column;
	border: 1px solid #eee;
	border-radius: 6px;
	padding: 8px;
	text-decoration: none;
	color: inherit;
	background: #fff;
	transition: box-shadow 0.15s ease;
}

.lala-flashsale-card:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.lala-flashsale-badge {
	position: absolute;
	top: 8px;
	left: 8px;
	background: #ee4d2d;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	padding: 2px 6px;
	border-radius: 3px;
	z-index: 1;
}

.lala-flashsale-image img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	display: block;
}

.lala-flashsale-name {
	margin-top: 6px;
	font-size: 13px;
	line-height: 1.3;
	max-height: 2.6em;
	overflow: hidden;
}

.lala-flashsale-price {
	margin-top: 6px;
	display: flex;
	align-items: baseline;
	gap: 6px;
	flex-wrap: wrap;
}

.lala-flashsale-price-sale {
	color: #ee4d2d;
	font-weight: 700;
	font-size: 14px;
}

.lala-flashsale-price-regular {
	color: #999;
	font-size: 12px;
	text-decoration: line-through;
}

.lala-flashsale-progress {
	display: block;
	margin-top: 6px;
	height: 6px;
	border-radius: 3px;
	background: #ffd9cc;
	overflow: hidden;
}

.lala-flashsale-progress-bar {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, #ff7337, #ee4d2d);
	border-radius: 3px;
}

.lala-flashsale-progress-label {
	display: block;
	margin-top: 2px;
	font-size: 11px;
	color: #ee4d2d;
	font-weight: 600;
}

.lala-flashsale-countdown {
	margin-top: 6px;
	font-size: 12px;
	font-weight: 600;
	color: #ee4d2d;
	letter-spacing: 0.5px;
}

/* Banner tren trang san pham don (render_single_product_banner) */
.lala-flashsale-product-banner {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	background: linear-gradient(90deg, #fff2ec, #ffe4d9);
	border: 1px solid #ee4d2d;
	border-radius: 6px;
	padding: 8px 12px;
	margin: 12px 0;
	font-size: 14px;
	color: #b53a1f;
	font-weight: 600;
}

.lala-flashsale-countdown-banner {
	background: #ee4d2d;
	color: #fff;
	border-radius: 4px;
	padding: 2px 8px;
	font-family: monospace;
	margin-top: 0;
}
