.c-btn-01 {
	display: inline-block;
	padding: 6px 28px;
	background: transparent;
	color: white;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 300;
	transition: all 0.3s ease;
	border: 1px solid white;
	font-weight: 500;
	cursor: pointer;
	border-radius: 0;
	transition: 0.5s ease;
	font-size: 14px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.c-btn-01--gray {
	background: #9E9E9E;
	color: white;
	border-radius: 30px;
}

.c-btn-01::after {
	content: "";
	background: white;
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	width: 100%;
	height: 0;
	transition: all .3s ease-in-out;
}

.c-btn-01:hover {
	color: #333;
}

.c-btn-01:hover::after {
	height: 100%;
}

.c-btn-01--style2 {
	color: #333;
	border-radius: 30px;
	border-color: #333;
}

.c-btn-01--style2::after {
	background: #333;
}

.c-btn-01--style2:hover {
	color: white;
}


/* title */

.c-ttl__01 {
	font-size: 3.4rem;
	font-weight: 600;
	margin-bottom: 5px;
	line-height: 1.3;
	position: relative;
	text-transform: uppercase;
	z-index: 1;
	color: #484848;

}

.c-ttl__01-lead {
	font-family: var(--font-libre);
	color: #737373;
	font-size: 14px;
	font-style: italic;
	opacity: .8;
	text-transform: none;
}

@media (max-width:768px) {
	.c-ttl__01 {
		font-size: 2.4rem;
	}
}

/* slide */
.js-slide .slick-list {
	margin: 0 -10px;
	padding: 20px 0;
}

.js-slide__item {
	margin: 0 10px;
}

.arrow-common:hover .slick-arrow {
	opacity: 1;
}

.arrow-common .slick-arrow {
	background: linear-gradient(360deg, #347bbb, #2a4e9e);
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.arrow-common .slick-arrow svg {
	width: 20px;
	height: 20px;
	fill: white;
}

@media (max-width:768px) {
	.js-slide__item {
		margin: 0;
	}

	.js-slide .slick-list {
		padding-bottom: 0;
	}
}

/* product */
.product-item {
	background-color: #fff;
	border-radius: 5px;
	/* box-shadow: 0 4px 13px rgba(0, 0, 0, 0.08); */
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: 100%;
	position: relative;
}

.product-item:hover .product-item__image-figure img {
	transform: scale(1.09);
}

.product-item:hover {
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-item__image {
	position: relative;
	background: linear-gradient(135deg, #f5f1ed 0%, #ede8e3 100%);
	/* padding: 40px 20px; */
	text-align: center;
	overflow: hidden;
}

.product-item__image-link {
	line-height: 0;
}

.product-item__badges {
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	display: flex;
	justify-content: space-between;
	z-index: 10;
	line-height: 1;
}

.product-item__badge {
	padding: 2px 12px;
	border-radius: 20px;
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.product-item__badge--stock {
	background-color: #4CAF50;
	color: white;
}

.product-item__badge--sale {
	background-color: #f44336;
	color: white;
}

.product-item__image-figure {
	position: relative;
	padding-top: 100%;
	display: block;
}

.product-item__image-figure img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .5s ease-in;
}

.product-item__actions {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.product-item:hover .product-item__actions {
	opacity: 1;
}

.product-item__action {
	width: 40px;
	height: 40px;
	background-color: white;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-item__action:hover {
	background-color: #2c2c2c;
	color: white;
}

.product-item__action svg {
	width: 18px;
	height: 18px;
}

.product-item__content {
	padding: 10px;
	text-align: center;
}

.product-item__rating {
	display: flex;
	justify-content: center;
	gap: 2px;
	margin-bottom: 15px;
}

.product-item__star {
	width: 16px;
	height: 16px;
	fill: #ffd700;
}

.product-item__star--empty {
	fill: #e0e0e0;
}

.product-item__title {
	font-size: 1.6rem;
	font-weight: 600;
	color: #2a4e9e;
	margin-bottom: 5px;
	line-height: 1.4;
}

.product-item__title>a {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/* number of lines to show */
	line-clamp: 2;
	-webkit-box-orient: vertical;
	color: #2a4e9e;
	font-weight: 600;
}

.product-item__price {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.product-item__price-current {
	font-size: 1.6rem;
	font-weight: 700;
	color: #2c2c2c;
}

.product-item__price-original {
	font-size: 1.3rem;
	color: #999;
	text-decoration: line-through;
}




/* category-item */
.category-item {}

.category-item__title {
	font-size: 18px;
	font-weight: 700;
	text-align: center;
}

.category-item__desc {
	color: #595959;
	overflow: hidden;
	line-height: 1.3;
	font-size: 15px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	/* number of lines to show */
	text-align: center;
	margin-top: 5px;
	-webkit-box-orient: vertical;
}

/* posts */
.news-item {
	position: relative;
	padding-left: 30px
}

.news-item:hover .news-item__img-child img {
	transform: scale(1.2)
}

.news-item__img {
	position: relative;
	/* margin-bottom: 10px */
}

.news-item__img-child {
	position: relative;
	overflow: hidden
}

.news-item__img-child:before {
	content: "";
	padding-top: 75%;
	display: block
}

.news-item__img-child img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 3s ease 0s
}

.news-item__area {
	width: 76px;
	height: 76px;
	background: #fff;
	border-radius: 50%;
	position: absolute;
	top: 15px;
	right: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 13px
}

.news-item__area span {
	font-weight: 700;
	position: relative;
	padding-top: 3px;
	color: #15140f;
}

.news-item__area span:before {
	content: "";
	width: 30px;
	height: 1px;
	background: currentColor;
	top: 1px;
	left: 50%;
	transform: translate(-50%);
	position: absolute
}

.news-item__cate {
	position: absolute;
	left: -30px;
	top: 0;
	writing-mode: vertical-lr;
	text-align: center;
	background: #fff;
	width: 30px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	box-shadow: 0 .15rem .35rem #00000013;
	color: #15140f;
	text-transform: uppercase
}

.news-item__cate span {
	transform: rotate(180deg);
	display: inline-block
}

.news-item__ttl {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px;
}

.news-item__ct {
	background: white;
	padding: 10px;
	box-shadow: 0 0 3px #0000001f;
}

.news-item__desc {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	/* number of lines to show */
	color: #595959;
	font-size: 15px;
	line-height: 1.4;
	text-align: justify;
	line-clamp: 3;

	margin-bottom: 10px;
}

.news-item__ttl a {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/* number of lines to show */
	line-clamp: 2;
	font-size: 17px;
	-webkit-box-orient: vertical;
}

.news-item__redmore .icon {
	display: inline-block;
	transform: translateY(5px);
}

.news-item__redmore .icon svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.news-item__redmore .icon svg path,
.news-item__redmore .icon svg line {
	stroke: currentColor;
}

.post-item {
	text-align: center;
	transition: all .6s;
}

.post-item:hover {
	box-shadow: 0 18px 55px 0 rgba(0, 0, 0, 0.36);
}

.post-item:hover .post-item__img-child img {
	transform: scale(1.09);
}

.post-item__img-child {
	position: relative;
	overflow: hidden;
	padding-top: calc((231 / 360) * 100%);
	display: block;
}

.post-item__img-child img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .6s ease-in;
}

.post-item__content {
	padding: 35px 15px 15px 15px;
	position: relative;
}

.post-item__ttl {
	font-size: 19px;
	margin-bottom: 15px;
}

.post-item__ttl>a {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.post-item__desc {
	color: #737373;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.post-item__extra {
	position: absolute;
	margin: auto;
	display: inline-block;
	left: 50%;
	height: 28px;
	transform: translateX(-50%);
	color: #fff;
	background: #000;
	top: -14px;
	padding: 5px 15px;
	z-index: 2;
	line-height: 1.3;
}

@media screen and (max-width: 992px) {
	.post-item__content {
		padding: 25px 10px 10px 10px;
	}

	.post-item__ttl {
		margin-bottom: 5px;
	}
}

/* hover */
.hover-effect_1 {
	position: relative;
	overflow: hidden;
	display: flex;
	/* border-radius: 10px; */
	margin-bottom: 10px;
}

.hover-effect_1::after {
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: hsla(0, 0%, 100%, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	content: "";
	z-index: 1
}

.hover-effect_1:hover::after {
	height: 250%;
	transition: all .6s linear;
	background-color: transparent
}

.menu-block {
	gap: 25px 0;
	position: relative;
}

.menu-block .c-ttl__01-lead {
	letter-spacing: 5px;
	font-size: 16px;
}

.menu-block:not(:last-child) {
	margin-bottom: 35px;
	/* padding-bottom: 30px; */
}

/* 
.menu-block::after {
	content: "";
	height: 3px;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	background: url(../images/gradient-line.png) no-repeat center/contain;
} */

.menu-block.item-two {
	flex-direction: row-reverse;
}

.list-items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 20px;

}

.list-items:not(:last-child) {
	margin-bottom: 30px;
}

.list-item {
	border-bottom: 1px solid #E6E6E6;
	padding: 15px 0;
	transition: all .3s;

}


.home-menu {
	background-repeat: no-repeat !important;
	background-position: center center !important;
	background-size: cover !important;
	background-attachment: fixed !important;
	position: relative;
	z-index: 1;
	padding: 30px 0 25px;
}

.home-menu>.ctnr {
	max-width: 975px;
}


.list-items {
	/* background: white; */
}

.list-item__img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
}

.list-item__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.list-item__ct {
	width: calc(100% - 95px);
}

.list-item:hover {
	padding-left: 8px;

}

.list-item__ttl {
	font-size: 16px;
	font-weight: 600;
}

.list-item__desc {
	color: #797979;
	font-size: 13px;
}

.list-item__price {
	text-align: right;
}

/* sec-breadcrumb */

.section__search {
	padding: 50px 0;
}


@media (max-width: 768px) {
	.product-item__content {
		padding: 10px;
	}

	.list-items:not(:last-child) {
		margin-bottom: 15px;
	}
}

@media screen and (max-width: 640px) {
	.list-items {
		grid-template-columns: 1fr;
	}
}

/*  */
/* sec-breadcrumb */
.sec-breadcrumb {
	background: #eee;
	position: relative;
	z-index: 1;
}

.sec-breadcrumb .breadcrumb {
	gap: 10px;
}

.sec-breadcrumb .breadcrumb a {
	color: white;
}

.sec-breadcrumb::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, left bottom, left top, from(#000000), to(transparent));
	background: -o-linear-gradient(bottom, #000000, transparent);
	background: linear-gradient(0, #000000, transparent);
	background-size: 100% 100%;
	background-position: center bottom;
	background-repeat: no-repeat;
	opacity: .5;
}



.sec-breadcrumb img {
	display: block;
	width: 100%;
	height: 350px;
	object-fit: cover;
}

.sec-breadcrumb__box {
	position: absolute;
	width: 100%;
	top: 72%;
	left: 0;
	z-index: 100;
	text-align: center;
	transform: translateY(-50%);
}

.sec-breadcrumb__ttl {
	display: block;
	width: 100%;
	color: #fff;
	margin-bottom: 5px;
	font-size: 30px;
}

@media screen and (max-width: 992px) {
	.sec-breadcrumb img {
		height: 275px;
	}
}

/* modal */
/* Modal Overlay */
/* <div class="modal-overlay" id="basicModal">
        <div class="modal">
            <div class="modal__header">
                <h2 class="modal__title"></h2>
                <p class="modal__subtitle"></p>
                <button class="modal__close">
                    <svg fill="currentColor" viewBox="0 0 16 16">
                        <path d="M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854Z"/>
                    </svg>
                </button>
            </div>
            <div class="modal__body">
                <div class="modal__content">
                    
                </div>
            </div>
            <div class="modal__footer">
                <button class="btn btn--secondary modal-close">Close</button>
                <button class="btn btn--primary">Learn More</button>
            </div>
        </div>
    </div> */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(4px);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay--active {
	opacity: 1;
	visibility: visible;
}

.modal-overlay--active .modal {
	transform: scale(1) translateY(0);
	opacity: 1;
}

/* Modal Container */
.modal {
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
	max-width: 500px;
	width: 100%;
	max-height: 90vh;
	overflow: hidden;
	transform: scale(0.7) translateY(100px);
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
}

.modal__content {
	padding: 30px;
}

/* Modal Header */
.modal__header {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	padding: 10px 32px;
	border-bottom: 1px solid #e5e7eb;
	position: relative;
}

.modal__title {
	font-size: 24px;
	font-weight: 700;
	color: #111827;
	margin: 0;
	padding-right: 40px;
}

.modal__title.ta-center {
	padding: 0 40px;
}

.modal__subtitle {
	font-size: 14px;
	color: #6b7280;
	margin-top: 4px;
}


.modal__close {
	position: absolute;
	top: 10px;
	right: 20px;
	width: 32px;
	height: 32px;
	padding: 0;
	border: none;
	background: rgba(107, 114, 128, 0.1);
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	color: #6b7280;
}

.modal__close:hover {
	background: rgba(239, 68, 68, 0.1);
	color: #ef4444;
	transform: rotate(90deg);
}

.modal__close svg {
	width: 16px;
	height: 16px;
}

.modal__body {
	/* padding: 32px; */
	max-height: 60vh;
	overflow-y: auto;
}

.modal__body::-webkit-scrollbar {
	width: 6px;
}

.modal__body::-webkit-scrollbar-track {
	background: #f1f5f9;
	border-radius: 3px;
}

.modal__body::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 3px;
}

.modal__body::-webkit-scrollbar-thumb:hover {
	background: #94a3b8;
}

.modal__footer {
	background: #f9fafb;
	padding: 10px 32px;
	border-top: 1px solid #e5e7eb;
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.modal__footer .btn {
	padding: 10px 20px;
	font-size: 14px;
}

.modal--small {
	max-width: 400px;
}

.modal--large {
	max-width: 800px;
}

.modal--xlarge {
	max-width: 1100px;
}

/* Animation Classes */
.fade-in {
	animation: fadeIn 0.3s ease;
}

.fade-out {
	animation: fadeOut 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.bounce-in {
	animation: bounceIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
	0% {
		transform: scale(0.3) translateY(100px);
		opacity: 0;
	}

	50% {
		transform: scale(1.05) translateY(-20px);
	}

	70% {
		transform: scale(0.9) translateY(10px);
	}

	100% {
		transform: scale(1) translateY(0);
		opacity: 1;
	}
}

@media (max-width: 992px) {
	.modal__footer {
		padding: 15px 8px;
	}

	.modal__header {
		padding: 15px 8px;
	}

	.modal__title {
		font-size: 20px;
	}

	.modal__content {
		padding: 15px;
	}

	.modal__close {
		top: 9px;
		right: 7px;
		width: 25px;
		height: 25px;
	}
}

/* end moodal */

.form-group {
	margin-bottom: 15px;
	position: relative;
}

.form-label {
	display: block;
	margin-bottom: 5px;
	color: #333;
	font-weight: 500;
	font-size: 1em;
}

.form-required {
	color: #e74c3c;
}

.form-control {
	width: 100%;
	padding: 5px 15px;
	border: 1px solid #e0e0e0ab;
	border-radius: 5px;
	font-size: 16px;
	height: 40px;
	transition: all 0.3s ease;
	background: white;
	font-family: inherit;
}

.form-control:focus {
	outline: none;
	border-color: #333;
	background: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.form-row {

	gap: 20px 0;
}

textarea.form-control {
	resize: vertical;
	min-height: 100px;
}

.time-slots {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 10px;
	margin-top: 10px;
}

.time-slot {
	position: relative;
}

.time-slot input[type="radio"] {
	position: absolute;
	opacity: 0;
}

.time-slot label {
	display: block;
	padding: 5px;
	background: white;
	border: 2px solid #e0e0e0;
	border-radius: 5px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-bottom: 0;
}

.time-slot input[type="radio"]:checked+label {
	background: #333;
	color: white;
	border-color: #333;
	transform: scale(1.05);
}

.time-slot label:hover {
	border-color: #333;
	background: #e8ecff;
}

.submit-btn {
	background: #333;
	color: white;
	padding: 18px 40px;
	border: none;
	border-radius: 50px;
	font-size: 1.1em;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
	transition: all 0.3s ease;
	margin-top: 20px;
}

.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
	transform: translateY(0);
}

/*  */
.media-sitebar {
	padding-top: 20px;
	border-top: 0px solid #cdcdcd;
}

.media-sitebar ul {
	justify-content: center;
}

.media-sitebar ul {
	padding-bottom: 15px;
	display: flex;
	border-bottom: 1px solid #cdcdcd;
	padding-top: 15px;
	align-items: center;
	border-top: 1px solid #cdcdcd;
}

.media-sitebar ul li a svg {
	width: 20px;
	height: 20px;
}

.media-sitebar ul li a {
	display: inline-flex;
	width: 30px;
	height: 30px;
	background: #ed1c23ff;
	border-radius: 4px;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
	fill: #fff;
}

.media-sitebar ul .facebook a {
	background: #0866ff;
	margin-left: 10px;
}

.media-sitebar ul .zalo a {
	background: #0866ff;
}

.media-sitebar ul .instagram a {
	background: #fff;
}

.media-sitebar ul .tweet a {
	background: #009ded;
}

.media-sitebar ul .instagram a {
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.media-sitebar ul .pinterest a {
	background: #e70024;
}

.media-sitebar ul .whatsapp a {
	background: #0dc144;
}

/*  */
