#dialog-iframe {
	padding: 0;
	overflow: initial;
	width: 100%;
}

.dialog-iframe__box {
	position: relative;
	width: 100%;
	max-width: 1200px;
}

.dialog-iframe__box:before {
	content: "";
	padding-top: 56.25%;
	display: block;
}

.dialog-iframe__box iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#dialog-iframe .fancybox-close-small {
	position: absolute;
	right: 10px;
	top: -45px;
	background: transparent;
	padding: 0;
	color: white
}

.banner {
	margin-top: 15px;
}

.cart-notification {
	background: #fff;
	border: 1px solid #ddd;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	padding: 12px;
	width: 300px;
	display: flex;
	gap: 10px;
	margin-top: 10px;
	border-radius: 6px;
	animation: fadein 0.3s ease;
	position: relative;
}

.cart-notification img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 4px;
}

.cart-notification .info {
	flex: 1;
}

.cart-notification .info .name {
	font-weight: bold;
	margin-bottom: 4px;
}

.cart-notification .info .price {
	color: #f00;
}

.cart-notification .info .price-none {
	display: none;
}

.cart-notification .info .old-price-none {
	display: none;
}

.cart-notification .info .old-price {
	text-decoration: line-through;
	color: #888;
	font-size: 0.9em;
}

.cart-notification .view-cart-btn {
	display: inline-block;
	margin-top: 6px;
	padding: 4px 8px;
	background: var(--color-3);
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-size: 0.85em;
}

.cart-notification.fade-out {
	animation: fadeout 0.5s forwards;
}

@keyframes fadein {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeout {
	from {
		opacity: 1;
		transform: translateY(0);
	}

	to {
		opacity: 0;
		transform: translateY(-20px);
	}
}


.banner-slider img {
	border-radius: 5px;
	width: 100%;
}

.banner .img-m {
	display: none;
}

/* Category  */
.home-categories {
	padding: 15px 0;
}

.category-slider .slick-slide {
	margin: 55px 8px 0;
	padding: 60px 8px 15px;
}

.category-slider .slick-list {
	margin: 0 -8px;
}

.item-category {
	background-color: var(--color-2);
	font-weight: 700;
	position: relative;
	text-align: center;
	display: block;
}

.item-category .wrap-img {
	padding-bottom: 70%;
	border-radius: 50%;
	width: 70%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
}

.item-category .name {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	height: 37px;
	font-size: 13px;
}

/* Flash sale  */
.flash-sale {
	margin-top: 20px;
}

.flash-sale .inner {
	background-color: var(--color-5);
	padding: 30px 20px;
	border-radius: 5px;
}

.flash-sale .title-wrap {
	color: var(--color-2);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 50px;
}

.flash-sale .title {
	font-size: 26px;
	font-weight: 900;
	letter-spacing: 1px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.flash-sale .time-sale {
	display: flex;
	align-items: center;
	gap: 4px;
	text-align: center;
}

.flash-sale .time-sale span {
	margin-right: 8px;
}

.flash-sale .time-sale .time {
	background-color: #ffb700;
	color: var(--color-1);
	border-radius: 5px;
	padding: 4px;
	width: 37px;
}

.flash-sale .time-sale .number {
	font-weight: 700;
}

.flash-sale .time-sale .type {
	font-size: 12px;
}

.flash-sale .see-all {
	text-align: right;
}

.flash-sale .see-all svg {
	width: 25px;
	height: 25px;
}

.flash-sale .see-all a {
	color: var(--color-2);
	display: inline-flex;
	align-items: center;
	gap: 4px;
	text-decoration: underline;
}

.flash-sale .item-product {
	border: none;
}

.product-block {
	margin-top: 16px;
}

.product-block>.row {
	row-gap: 16px;
}

.item-product {
	background-color: white;
	border-radius: 5px;
	border: 1px solid #f4f4f4;
	padding: 10px 15px;
	position: relative;
	overflow: hidden;
	height: 100%;
}

.item-product .discount {
	background: linear-gradient(93.01deg, #d31100 15.48%, #ff2310 92.66%);
	border-radius: 5px 5px 5px 0px;
	padding: 0px 10px;
	color: #fff;
	position: absolute;
	left: 5px;
	top: 5px;
	height: 24px;
	line-height: 24px;
	text-align: center;
}

.item-product .discount::before {
	content: "";
	position: absolute;
	left: 0;
	top: 22px;
	border-right: 10px solid transparent;
	border-bottom: 0px solid transparent;
	border-top: 10px solid #d31100;
}

.item-product .wrap-img {
	position: relative;
	height: 0;
	overflow: hidden;
	display: block;
	padding-bottom: 100%;
}

.item-product .wrap-img img {
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 0.5s ease 0s;
}

.item-product .wrap-img .image1 {
	transform: translateY(0);
}

.item-product .wrap-img .image2 {
	opacity: 0;
	visibility: hidden;
	transform: translateY(-100%);
}

.item-product:hover .image1 {
	opacity: 0;
	transform: translateY(100%);
}

.item-product:hover .has-one .image1 {
	opacity: 1;
	transform: translateY(0%);
}

.item-product:hover .image2 {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.item-product .name {
	font-size: 15px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	height: 39px;
	margin-bottom: 15px;
}

.item-product .des {
	margin-top: 10px;
	display: none;
}

.item-product .des ul {
	margin-left: 18px;
}

.item-product .price-wrap {
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 3px 8px;
}

.item-product .price-new {
	font-size: 15px;
	color: #f30000;
	font-weight: 700;
}

.item-product .price-old {
	color: #8a919b;
	font-size: 12px;
}

.item-product .price-wrap .hot img {
	width: 35px;
}

.item-product .quick-view {
	display: flex;
}

.item-product .quick-view svg {
	width: 24px;
	height: 24px;
}

.item-product .add-cart-ajax {
	background-color: var(--color-5);
	color: var(--color-2);
	padding: 5px 15px;
	border-radius: 5px;
	display: inline-block;
	font-weight: 700;
}

.item-product .view-detail-btn {
	background-color: var(--color-3);
	color: var(--color-2);
	padding: 5px 15px;
	border-radius: 5px;
	display: inline-block;
	font-weight: 700;
}

.item-product .add-cart-ajax:hover {
	background-color: var(--color-3);
}

.item-product .product-button {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	top: calc(100% + 5px);
	left: 0;
	padding-top: 12px;
	gap: 4px;
	width: 100%;
}

.item-product .product-info {
	/* background-color: var(--color-2); */
	position: relative;
	z-index: 2;
	transition: .3s;
	padding-top: 10px;
}



.stars {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-bottom: 5px;
}

.stars ul li {
	list-style: none;
	display: flex;
}

.stars ul {
	display: inline-flex;
}

.stars ul li svg {
	width: 20px;
	height: 20px;
}

.flash-sale .item-product .productcount {
	display: block;
}

.item-product .productcount {
	margin-top: 15px;
	margin-bottom: 5px;
	min-height: 17px;
	display: none;
}

.item-product .productcount .countitem {
	background-color: #ffe8e6;
	border-radius: 10px;
	position: relative;
	height: 17px;
}

.item-product .productcount .fire {
	position: absolute;
	width: 22px;
	height: 22px;
	top: -9px;
	left: 0;
	z-index: 1;
}

.item-product .productcount .countdown {
	position: absolute;
	border-radius: 10px;
	background: linear-gradient(to right, #c8103d, #f4b631);
	z-index: 0;
	left: 0;
	top: 0;
	height: 17px;
}

.item-product .productcount .number {
	font-size: 12px;
	position: absolute;
	top: 0;
	z-index: 3;
	color: var(--color-2);
	line-height: 17px;
	left: 50%;
	min-width: 70px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
	transform: translateX(-50%);
}

.flashsale-slider {
	padding-bottom: 30px;
	margin-top: 25px;
}

.flashsale-slider .slick-slide {
	margin: 0 8px;
}

.flashsale-slider .slick-list {
	margin: 0 -8px;
}

.flashsale-slider .slick-dots {
	bottom: -10px;
}

.slick-dots li {
	height: 15px;
	width: 15px;
	border: none;
	background-color: #f4f5f8;
}

.slick-dots li.slick-active {
	background-color: #fabd5c;
}

.slick-dots li button:before {
	display: none;
}

/* Product category  */
.product-category .inner {
	background-color: var(--color-2);
	border-radius: 5px;
	margin-top: 30px;
	padding: 30px 25px;
}

.category-child {
	text-align: right;
	overflow-x: auto;
	white-space: nowrap;
}

.category-child::-webkit-scrollbar {
	height: 5px;
}

.category-child::-webkit-scrollbar-thumb {
	background: var(--color-3);
	border-radius: 10px;
}

.category-child li {
	display: inline-block;
}

.category-child li:not(:first-child) {
	margin-left: 5px;
}

.category-child li a {
	display: inline-block;
	padding: 5px 10px;
	border-radius: 5px;
	border: 1px solid #e2e2e2;
	font-weight: 400;
}

.category-child li a:hover {
	color: var(--color-2);
	background-color: var(--color-3);
}

.product-category .title a {
	color: var(--color-3);
	text-transform: uppercase;
	font-size: 22px;
}

.product-category .banner-category {
	margin-top: 25px;
}

.product-category .banner-category .slick-slide {
	margin: 0 8px;
}

.product-category .banner-category .slick-list {
	margin: 0 -8px;
}

.product-category .banner-category img {
	border-radius: 5px;
}

/* News home  */
.news-home {
	padding: 30px 0;
}

.news-home .inner {
	background-color: var(--color-2);
	border-radius: 5px;
	padding: 30px 25px;
}

.news-home .title {
	display: inline-flex;
	background: linear-gradient(0deg, var(--color-3), var(--color-4));
	border-radius: 5px;
	color: var(--color-2);
	font-size: 16px;
	text-transform: uppercase;
	padding: 6px 30px 6px 10px;
	align-items: center;
	gap: 6px;
}

.news-home-block {
	margin-top: 30px;
}

.item-news-home.left .wrap-img {
	padding-bottom: 64.5%;
	margin-bottom: 10px;
}

.item-news-home.left .name {
	font-size: 20px;
}

.item-news-home.left .des {
	font-size: 15px;
	margin-top: 5px;
}

.item-news-home .wrap-img {
	padding-bottom: 71.5%;
}

.item-news-home .name {
	font-size: 17px;
}

.item-news-home .des {
	font-size: 14px;
	margin-top: 5px;
	text-align: justify;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
}

.right .item-news-home:not(:last-child) {
	margin-bottom: 16px;
}

/* Đối tác  */
.doi-tac-slider .slick-slide {
	margin: 0 8px;
	background-color: var(--color-2);
	padding: 2px;
	border-radius: 5px;
	height: auto;
}

.doi-tac-slider .slick-list {
	margin: 0 -8px;
}

.doi-tac-slider .item img {
	border-radius: 5px;
}

.doi-tac {
	/* background: linear-gradient(0deg, var(--color-3), #2e3192); */
	padding: 20px 0;
}



.list-card-products .main-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
	background: white;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 30px;
	padding: 15px;
}

.list-card-products .sidebar {
	background: #d9e4ff;
	padding: 40px 10px;
	width: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
}

.list-card-products .sidebar-image {
	width: 180px;
	height: 180px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}

.list-card-products .sidebar-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.list-card-products .sidebar h2 {
	color: #120b17;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 25px;
	text-transform: uppercase;
}

.list-card-products .view-more-btn {
	background: #3590ce;
	border: none;
	color: white;
	padding: 9px 30px;
	font-size: 16px;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.3s;
	font-weight: 500;
}

.list-card-products .products-grid {
	min-width: 0;
	flex: 1;
	padding-bottom: 2px;
}

.list-card-products .product-card {
	padding: 15px 10px 5px;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: box-shadow 0.3s;
	margin: 1px 10px;
	border-radius: 3px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.list-card-products .product-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.list-card-products .product-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 20px;
}

.list-card-products .brand-logos {
	display: flex;
	gap: 10px;
	align-items: center;
}

.list-card-products .logo {
	height: 24px;
}

.list-card-products .schneider-logo {
	color: #3dcd58;
	font-weight: bold;
	font-size: 14px;
}

.list-card-products .hoplong-logo {
	color: #4a9eff;
	font-size: 12px;
	background: white;
	border: 1px solid #4a9eff;
	padding: 2px 8px;
	border-radius: 12px;
}

.list-card-products .stock-badge {
	background: #3dcd58;
	color: white;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 600;
}

.list-card-products .product-image {
	width: 100%;
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	position: relative;
}

.list-card-products .product-image img {
	max-width: 100%;
	max-height: 100%;
	height: 100%;
	width: 100%;
	object-fit: contain;
}

.list-card-products .watermark {
	position: absolute;
	bottom: 10px;
	right: 10px;
	color: #e0e0e0;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.list-card-products .product-title {
	color: #120b17;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 15px;
	min-height: 45px;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.list-card-products .product-specs {
	margin-bottom: 10px;
}

.list-card-products .spec-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 8px;
	font-size: 12px;
	color: #555;
}

.list-card-products .spec-icon {
	width: 18px;
	height: 18px;
	background: #0d065c;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 10px;
	margin-right: 8px;
	flex-shrink: 0;
	margin-top: 2px;
}

.list-card-products .product-price a {
	color: white;
	font-size: 16px;
	font-weight: bold;
	margin-top: auto;
	background: #3590ce;
	display: block;
	text-align: center;
	padding: 5px;
	border-radius: 5px;
}


.section-form-product-news .ctnr {
	width: 100%;
	align-items: center;
	padding-top: 68px;
	padding-bottom: 78px;
	position: relative;
}

.section-form-product-news .left-section {
	/* color: white; */
	margin-right: 190px;
	padding-right: 395px;
}

.section-form-product-news .left-section h1 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 30px;
	line-height: 1.3;
	text-transform: uppercase;
}

.section-form-product-news .left-section p {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 40px;
	opacity: 0.95;
}

.section-form-product-news .btn-learn-more {
	color: white;
	background: #ff932e;
	border: none;
	padding: 15px 40px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid #cdcdcd30;
}

.section-form-product-news .btn-learn-more:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.section-form-product-news .right-section {
	background: white;
	padding: 34px;
	border-radius: 8px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	width: 100%;
	max-width: 527px;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}

.section-form-product-news .form-header h2 {
	font-size: 28px;
	font-weight: 700;
	color: #120b17;
	margin-bottom: 10px;
}

.section-form-product-news .form-header p {
	font-size: 14px;
	color: #999;
	margin-bottom: 35px;
}

.section-form-product-news .form-group {
	margin-bottom: 25px;
}

.section-form-product-news .form-group input,
.section-form-product-news .form-group textarea {
	width: 100%;
	padding: 15px 20px;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	font-size: 15px;
	transition: all 0.3s ease;
	font-family: inherit;
}

.section-form-product-news .form-group input:focus,
.section-form-product-news .form-group textarea:focus {
	outline: none;
	border-color: #1e7ac7;
	box-shadow: 0 0 0 3px rgba(30, 122, 199, 0.1);
}

.section-form-product-news .form-group input::placeholder {
	color: #aaa;
}

.section-form-product-news .add-product-btn {
	width: 100%;
	padding: 15px;
	background: white;
	border: 2px dashed #ddd;
	border-radius: 4px;
	color: #666;
	font-size: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 25px;
}

.section-form-product-news .add-product-btn:hover {
	border-color: #120b17;
	color: #120b17;
	background: #f8f9fa;
}

.section-form-product-news .file-upload-section {
	display: flex;
	gap: 15px;
	margin-bottom: 30px;
	align-items: center;
}

.section-form-product-news .btn-choose-file {
	padding: 12px 24px;
	background: white;
	border: 1px solid #ddd;
	border-radius: 4px;
	color: #666;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.section-form-product-news .btn-choose-file:hover {
	border-color: #120b17;
	color: #120b17;
}

.section-form-product-news .file-name {
	flex: 1;
	padding: 12px 20px;
	background: #f8f9fa;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	color: #999;
	font-size: 14px;
	font-style: italic;
	display: flex;
	align-items: center;
	gap: 8px;
}

.section-form-product-news .info-icon {
	width: 18px;
	height: 18px;
	background: #ddd;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 12px;
	cursor: help;
}

.section-form-product-news .btn-submit {
	width: 100%;
	padding: 18px;
	background: #3590ce;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.section-form-product-news .btn-submit:hover {
	background: #666;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(30, 122, 199, 0.3);
}

.section-form-product-news input[type="file"] {
	display: none;
}

@media (max-width: 1200px) {
	.section-form-product-news .container {
		grid-template-columns: 1fr;
		max-width: 600px;
	}

	.section-form-product-news .left-section {
		padding: 40px;
		text-align: center;
	}

	.section-form-product-news .right-section {
		padding: 40px;
	}
}

@media (max-width: 768px) {
	.section-form-product-news .left-section {
		padding: 30px 20px;
	}

	.section-form-product-news .left-section h1 {
		font-size: 28px;
	}

	.section-form-product-news .left-section p {
		font-size: 15px;
	}

	.section-form-product-news .right-section {
		padding: 30px 20px;
	}

	.section-form-product-news .form-header h2 {
		font-size: 24px;
	}

	.section-form-product-news .file-upload-section {
		flex-direction: column;
		align-items: stretch;
	}

	.section-form-product-news .btn-choose-file {
		width: 100%;
	}
	.list-card-products .product-specs{
		margin-bottom: 0;
	}
}

@media (max-width: 480px) {
	.section-form-product-news body {
		padding: 10px;
	}

	.section-form-product-news .left-section h1 {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.section-form-product-news .left-section p {
		font-size: 14px;
	}

	.section-form-product-news .right-section {
		padding: 25px 15px;
	}

	.section-form-product-news .form-header h2 {
		font-size: 22px;
	}

	.section-form-product-news .form-group input,
	.section-form-product-news .form-group textarea {
		padding: 12px 15px;
		font-size: 14px;
	}
}


.section-form-product-news {
	background: linear-gradient(to right, #003f8a, #3590ce);
	margin: 70px 0 140px;
	color: white;
}



.box-phukien-container .header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 21px;
}

.box-phukien-container .header h1 {
	font-size: 21px;
	color: #1f2937;
	font-weight: 700;
}

.box-phukien-container .header a {
	text-decoration: none;
	font-weight: 500;
	font-size: 13px;
	white-space: nowrap;
	transition: color 0.3s;
	background-color: #f0f7ff;
	display: block;
	padding: 10px 20px;
	border-radius: 5px;
	color: #3590ce;
}

.box-phukien-container .header a:hover {
	color: #0d0558;
}

.box-phukien-container .product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
}

.box-phukien-container .product-card {
	background: white;
	border-radius: 7px;
	/* padding: 13px; */
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	border: 1px solid #e5e7eb;
	cursor: pointer;
	overflow: hidden;
	transition: all 0.3s ease;
}

.box-phukien-container .product-card:hover {
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	border-color: #120b17;
	transform: translateY(-2px);
}

.box-phukien-container .product-content {
	display: flex;
	gap: 16px;
	align-items: center;
	overflow: hidden;
	padding-right: 10px;
}

.box-phukien-container .product-image {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
	/* border-radius: 8px; */
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	transition: transform 0.3s ease;
	padding: 10px;
}

.box-phukien-container .product-card:hover .product-image {
	transform: scale(1.1);
}

.box-phukien-container .product-info {
	flex: 1;
	min-width: 0;
}

.box-phukien-container .product-name {
	font-size: 16px;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 8px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.3s;
}

.box-phukien-container .product-card:hover .product-name {
	color: #3b82f6;
}

.box-phukien-container .product-description {
	font-size: 15px;
	color: #6b7280;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (max-width: 1200px) {
	.box-phukien-container .product-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}
}

@media (max-width: 768px) {
	.box-phukien-container body {
		padding: 16px;
	}

	.box-phukien-container .header {
		margin-bottom: 32px;
	}

	.box-phukien-container .header h1 {
		font-size: 24px;
	}

	.box-phukien-container .header a {
		font-size: 14px;
	}

	.box-phukien-container .product-grid {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
		gap: 16px;
	}

	.box-phukien-container .product-card {
		padding: 20px;
	}

	.box-phukien-container .product-image {
		width: 64px;
		height: 64px;
		font-size: 28px;
	}

	.box-phukien-container .product-name {
		font-size: 16px;
	}

	.box-phukien-container .product-description {
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.box-phukien-container .product-grid {
		grid-template-columns: 1fr;
	}

	.box-phukien-container .header h1 {
		font-size: 20px;
	}
}


.box-container {
	padding: 20px;
	background: #fff;
	border-radius: 5px;
}

.box-phukien-container {
	padding-bottom: 30px;
}



.section-blog-news {
	/* Responsive */
	padding: 30px 0px;
}

.section-blog-news .header {
	margin-bottom: 32px;
	text-align: center;
}

.section-blog-news .header h2 {
	font-size: 26px;
	font-weight: 700;
	color: #120b17;
	text-transform: uppercase;
	padding-bottom: 6px;
}

.section-blog-news .btn-view-all {
	border: none;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: background-color 0.3s;
	border-radius: 5px;
	padding: 10px 15px;
	background-color: #3590ce;
	margin-top: 10px;
	color: white;
}

.section-blog-news .btn-view-all:hover {
	background-color: #0d0558;
}

.section-blog-news .grid {
	gap: 24px;
}

.section-blog-news .card {
	background: white;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s, transform 0.3s;
	cursor: pointer;
	margin: 0px 10px;
	height: unset;
	margin-bottom: 10px;
}

.section-blog-news .card:hover {
	=: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.section-blog-news .card-image-wrapper {
	position: relative;
	height: 224px;
	overflow: hidden;
}

.section-blog-news .card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-blog-news .promo-banner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background: linear-gradient(90deg, #4ade80 0%, #22c55e 100%);
	color: white;
	text-align: center;
	padding: 8px;
	font-size: 14px;
	font-weight: 500;
}

.section-blog-news .promo-tag {
	display: inline-block;
	background-color: #16a34a;
	padding: 2px 12px;
	border-radius: 20px;
	font-size: 12px;
	margin-right: 8px;
}

.section-blog-news .promo-date {
	font-size: 12px;
}

.section-blog-news .badge {
	position: absolute;
	bottom: 12px;
	left: 12px;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	background-color: #dbeafe;
	color: #0d0558;
}

.section-blog-news .card-content {
	padding: 20px;
}

.section-blog-news .card-title {
	font-size: 16px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 8px;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 48px;
}

.section-blog-news .card-description {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.list-card-products .spec-item ul li {
	list-style: none;
}

.category-list__content {
	display: flex;
	justify-content: space-between;
	gap: 0px 20px;
	margin-top: 20px;
}

.category-list__item .thumbnail-item img {
	max-height: 120px;
	width: 100%;
	object-fit: cover;
	border-radius: 5px;
}

.box-banner-category {
	display: flex;
	justify-content: space-between;
	gap: 0px 20px;
	margin-top: 20px;
}

.box-banner-category img {
	border-radius: 5px;
}

.box-banner-home-pages .hero-slider img {
	height: 100%;
	display: block;
	width: 100%;
}

.box-banner-home-pages .hero-slider .slider-main {
	height: 100%;
	width: 100%;
	display: block;
}

.box-phukien-container .header h2 {
	font-size: 22px;
	text-transform: uppercase;
	color: #0d065c;
}

.box-phukien-container .product-image img {
	height: 41px;
	object-fit: contain;
}

.list-card-products .spec-item ul li {
	position: relative;
	overflow: hidden;
	margin-bottom: 11px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-left: 20px;
	font-size: 13px;
}

.list-card-products .spec-item ul li:before {
	width: 15px;
	height: 15px;
	background: #3590ce;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 8px;
	margin-right: 8px;
	flex-shrink: 0;
	content: "✓";
	position: absolute;
	left: 0;
	color: #fff;
}

.list-card-products .spec-item ul li:nth-child(n + 4) {
	display: none;
}

.list-card-products .product-price {
	/* background: #3590ce; */
	/* text-align: center; */
	/* padding: 5px; */
	/* border-radius: 5px; */
	/* margin-bottom: 9px; */
}

.item-redmor-new {
	padding: 0px 20px;
	margin-bottom: 10px;
}

.title-separator {
	display: flex;
	justify-content: center;
	position: relative;
	text-align: center;
	margin-top: 0px;
	margin-bottom: 10px;
}

.title-separator:before {
	content: '';
	display: block;
	width: 60px;
	height: 1px;
	background: #0d065c;
	position: absolute;
	top: calc(50% - 1px);
	left: calc(50% - 77px);
}

.title-separator .separator-center {
	display: block;
	width: 32px;
	height: 12px;
	position: relative;
}

.title-separator:after {
	content: '';
	display: block;
	width: 60px;
	height: 1px;
	background: #0d065c;
	position: absolute;
	top: calc(50% - 1px);
	right: calc(50% - 77px);
}

.title-separator .separator-center:before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border: 1px solid #0d065c;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	left: 8px;
}

.title-separator .separator-center:after {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border: 1px solid #0d065c;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	right: 8px;
}

@media (max-width: 768px) {
	.section-blog-news .header h2 {
		font-size: 24px;
	}

	.section-blog-news .grid {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.section-blog-news .grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1025px) {
	.section-blog-news .grid {}
}

.section-blog-news .chevron-icon {
	width: 18px;
	height: 18px;
}




.news-container {
	padding: 30px;
	background: #fff;
	border-radius: 5px;
}

@media (max-width: 1400px) {
	.list-card-products .products-grid {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	}
}

@media (max-width: 1200px) {
	.list-card-products .products-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 992px) {
	.list-card-products .products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.list-card-products .main-wrapper {
		flex-direction: column;
	}

	.list-card-products .sidebar {
		width: 100%;
		padding: 30px 20px;
	}

	.list-card-products .sidebar-image {
		width: 150px;
		height: 150px;
	}

	.list-card-products .products-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.list-card-products .product-card {
		padding: 10px;
	}
}

@media (max-width: 576px) {
	.list-card-products .products-grid {
		grid-template-columns: 1fr;
	}

	.list-card-products .sidebar h2 {
		font-size: 24px;
	}

	.list-card-products .product-title {
		font-size: 15px;
		min-height: auto;
	}

	.list-card-products .product-price {
		font-size: 16px;
	}
}


.list-card-products {
	padding: 20px 0px;
}

.item-product .product-info .list-card-products {
	padding: unset;
}
.list-card-products  .products-grid .slick-slide .product-card{
	border: 1px solid #D9D9D9;
	box-shadow: none;
}
@media (max-width: 768px) {
	.slick-dots li {
		height: 12px;
		width: 12px;
	}

	.category-child {
		text-align: left;
		margin-top: 12px;
	}

	.item-product .product-button {
		position: unset;
		padding-top: 5px;
	}

	.item-product:hover .product-info {
		transform: translateY(0px);
	}

	.item-product .add-cart-ajax {
		font-size: 12px;
		padding: 5px;
	}

	.banner .img-m {
		display: block;
	}

	.banner .img-pc {
		display: none;
	}
}

@media (max-width: 550px) {
	.news-home {
		padding: 20px 0;
	}

	.news-home .inner {
		padding: 15px;
	}

	.item-news-home .des {
		display: none;
	}

	.item-news-home.left .des {
		display: -webkit-box;
		margin-bottom: 15px;
	}

	.news-home-block {
		margin-top: 15px;
	}

	.product-category .title {
		font-size: 20px;
	}

	.product-category .inner {
		padding: 15px 10px;
		margin-top: 20px;
	}

	.product-category .clm,
	.flash-sale .clm,
	.product-list .clm {
		padding: 0px 4px;
	}

	.product-category .row,
	.flash-sale .row,
	.product-list .row {
		padding: 0px -4px;
	}

	.product-block {
		margin-top: 8px;
	}

	.product-block>.row {
		row-gap: 8px;
	}

	.item-product .des {
		font-size: 13px;
	}

	.product-category .category-child {
		margin-bottom: 10px;
	}

	.product-category .banner-category {
		margin-top: 15px;
	}

	.flash-sale .inner {
		padding: 15px 10px;
		position: relative;
	}

	.flashsale-slider .slick-slide {
		margin: 0 4px;
	}

	.flashsale-slider .slick-list {
		margin: 0 -4px;
	}

	.item-product .price-wrap {
		margin-top: 10px;
	}

	.flash-sale .see-all {
		position: absolute;
		top: 26px;
		right: 12px;
	}

	.flashsale-slider .slick-dots {
		bottom: -5px;
	}

	.flash-sale {
		margin-top: 5px;
	}

	.flash-sale .time-sale span {
		display: none;
	}

	.flash-sale .title-wrap {
		display: block;
	}

	.flash-sale .time-sale .time {
		display: flex;
		gap: 5px;
		align-items: center;
		width: unset;
	}

	.flash-sale .time-sale {
		background: #ffb700;
		justify-content: center;
		border-radius: 5px;
		font-size: 16px;
		gap: 10px 15px;
		margin-top: 10px;
	}

	.flash-sale .time-sale .type {
		font-size: 14px;
		transform: translateY(1px);
	}

	.category-slider .slick-slide {
		margin: 45px 8px 0;
		padding: 50px 5px 15px;
	}
}

@media(max-width:990px) {
	.list-card-products>.ctnr {
		padding: 0;
	}
	.list-card-products .product-image{
		height: 148px;
	}
	.list-card-products  .products-grid .slick-list{
		margin: 0 -5px;
	}
	.list-card-products  .products-grid .slick-slide {
		margin: 5px;
		height: auto;
	}
	.list-card-products  .products-grid .slick-slide .product-card{
		margin: 0;
	}
	.list-card-products .main-wrapper{
		border-radius: 0;
	}
	.news-container {
		padding: 20px;
	}

	.section-blog-news .card {
		margin: unset;
	}

	.section-blog-news {
		padding-top: 0px;
	}

	.list-card-products {
		padding-bottom: 0px;
	}

	.section-form-product-news .btn-learn-more {
		padding: 10px 24px;
	}

	.section-form-product-news {
		margin: 20px 0px;
	}

	.section-form-product-news .left-section {
		margin: unset;
		padding-top: 16px;
	}

	.section-form-product-news .right-section {
		position: unset;
		transform: unset;
	}

	.section-form-product-news .left-section p {
		margin-bottom: 20px;
	}

	.section-form-product-news .ctnr {
		padding: 10px;
	}

	.list-card-products .view-more-btn {
		font-size: 14px;
		padding: 7px 15px;
		border-radius: 5px;
	}

	.list-card-products .sidebar h2 {
		font-size: 18px;
	}

	.list-card-products .sidebar-image {
		display: none;
	}

	.list-card-products .sidebar {
		justify-content: space-between;
		align-items: center;
		padding: 0;
		flex-direction: row;
		background: transparent;
	}
	.list-card-products .view-more-btn{
		background: transparent;
		color: #3590ce;
		padding: 0;
	}

	.list-card-products .sidebar h2 {
		margin-bottom: 0px;
	}

	.list-card-products .main-wrapper {
		display: block;
	}

	.list-card-products .product-price {
		margin-top: unset;
	}

	.list-card-products .product-card {
		height: unset;
	}

	.products-grid.slider-product-pages {
		padding-top: 20px;
	}

	.box-category-header {
		padding: unset !important;
	}

	.box-banner-home-pages .sidebar {
		display: none;
	}
	
}