.g6tv-flash-sale {
	background: linear-gradient(135deg, #197553, #1826ff);
	border-radius: 16px;
	padding: 22px;
	color: #fff;
	text-align: center;
	max-width: 100%;
	margin: 20px auto;
}

.g6tv-fs-title {
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 6px;
}

.g6tv-fs-desc {
	font-size: 14px;
	opacity: 0.95;
	margin-bottom: 14px;
}

.g6tv-fs-timer {
	display: flex;
	justify-content: center;
	gap: 14px;
}

.g6tv-fs-timer div {
	background: rgba(255,255,255,0.22);
	padding: 10px 14px;
	border-radius: 10px;
	min-width: 70px;
}

.g6tv-fs-timer span {
	font-size: 26px;
	font-weight: 800;
	display: block;
}

.g6tv-fs-timer small {
	font-size: 11px;
	letter-spacing: 1px;
}
/* ==============================
   FLASH SALE CTA BUTTON
   ============================== */

.g6tv-fs-cta {
	margin-top: 18px;
	text-align: center;
}

/* Button chính */
.g6tv-fs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	padding: 14px 30px;
	min-width: 220px;

	background: #ffffff;
	color: #e53935;

	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.3px;
	text-transform: uppercase;

	border-radius: 999px;
	text-decoration: none;
	border: none;

	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

/* Hover */
.g6tv-fs-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
	background: #fff5f5;
	color: #d32f2f;
}

/* Active (click) */
.g6tv-fs-btn:active {
	transform: translateY(0);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Focus (accessibility) */
.g6tv-fs-btn:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.35),
	            0 8px 22px rgba(0, 0, 0, 0.25);
}

/* Mobile tối ưu */
@media (max-width: 768px) {
	.g6tv-fs-btn {
		width: 100%;
		max-width: 100%;
		padding: 14px 20px;
		font-size: 14px;
	}
}
