/* --- PHẦN STYLE CHO THẺ SẢN PHẨM KHUYẾN MÃI TOÀN TRANG --- */

/* Thẻ sản phẩm */
.fs-gk-card {
	background: #fff;
	border-radius: 6px;
	padding: 12px; 
	color: #333;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;

	/* ĐƯỜNG VIỀN MỚI: Màu xám nhạt tinh tế */
	border: 1px solid #d9dbdc; 
	/* Điều chỉnh lại bóng đổ mỏng nhẹ hơn để không bị lem trên nền trắng */
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); 

	transition: all 0.2s ease; /* Đổi sang 'all' để viền và bóng chuyển động mượt mà */
	height: 100%; 
	box-sizing: border-box;
}

/* Hiệu ứng khi di chuột vào (Hover) */
.fs-gk-card:hover {
	transform: translateY(-3.5px);

	/* Khi hover: Viền sẽ đậm hơn và bóng đổ sâu hơn tạo độ nổi */
	border-color: #c5cbd0; 
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08); 
}

/* Link bao phủ ảnh và tiêu đề */
.fs-gk-link {
	text-decoration: none !important;
	color: inherit !important;
	display: block;
}

.fs-gk-badge-top {
	font-size: 11px; 
	color: #555;
	border: 1px solid #ddd;
	padding: 2px 6px;
	border-radius: 3px;
	display: inline-block;
	margin-bottom: 8px;
	align-self: flex-start;
	background-color: #fafafa;
}

/* Khung chứa ảnh sản phẩm */
.fs-gk-image-wrapper {
	width: 100%;
	height: 150px; 
	margin: 0 0 8px 0;
	overflow: hidden;
	border-radius: 4px;
}
.fs-gk-prod-img {
	width: 100%;
	height: 100%;
	object-fit: cover; 
}

/* Khung đựng logo thương hiệu */
.fs-gk-brand {
	margin-bottom: 8px;
	width: 60px; 
	height: 30px; 
	display: inline-flex; 
	align-items: center;
	justify-content: center;
	background-color: #f7f9fa; 
	border: 1px solid #eef1f3; 
	border-radius: 4px; 
	padding: 3px 6px; 
	box-sizing: border-box;
}
.fs-gk-brand-img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain; 
	display: block;
}
.fs-gk-brand span {
	font-size: 10px; 
	font-weight: 800;
	color: #666;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
	display: block;
	text-align: center;
}

/* Tiêu đề sản phẩm */
.fs-gk-title-prod {
	font-size: 14px; 
	font-weight: bold;
	line-height: 1.4;
	height: 40px; 
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-bottom: 6px;
	color: #222;
}

/* Thông số kỹ thuật rút gọn */
.fs-gk-spec-badge {
	font-size: 11px; 
	background: #f1f2f4;
	color: #555;
	padding: 3px 6px;
	border-radius: 3px;
	align-self: flex-start;
	margin-bottom: 6px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}

/* Phần chữ Quà tặng */
.fs-gk-gift-text {
	font-size: 13px; 
	font-weight: bold;
	color: #2d50f2;
	margin-bottom: 6px;
}

/* Giá cũ */
.fs-gk-price-old-wrap {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px; 
	color: #888;
	margin-bottom: 2px;
}
.fs-gk-price-old {
	text-decoration: line-through;
}
.fs-gk-discount {
	background: #3a8df2;
	color: #fff;
	padding: 1px 4px;
	font-size: 11px; 
	font-weight: bold;
	border-radius: 3px;
}

/* Giá mới */
.fs-gk-price-new {
	font-size: 16px; 
	font-weight: bold;
	color: #e30613;
	margin-bottom: 8px;
}

/* Phần gọi điện mua hàng (CTA) */
.fs-gk-cta {
	font-size: 13px; 
	color: #258f3c;
	font-weight: bold;
	line-height: 1.3;
	margin-bottom: 0px; 
	border-top: 1px dashed #eee;
	padding-top: 8px;
}
.fs-gk-cta span {
	color: #e30613;
}


.fs-gk-title span.white {
	color: #0d2240 !important;
	padding: 0 10px;
}



