/* root */
body {
    font-family: 'Nunito Sans', sans-serif !important;
}
.grid-pd-img .img {
	border-radius: 12px;
	overflow: hidden;
}
.h-z0 {
	z-index: 0;
}
.no-bottom {
	padding-bottom: 0 !important;
}
.main-title h2 {
	font-size: 1.2rem;
}
.main-btn {
	line-height: 1 !important;
    min-height: unset !important;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid var(--fs-color-primary) !important;
    background: #fff !important;
	color: var(--fs-color-primary) !important;
	margin: 0;
}
.main-btn:hover {
	box-shadow: 0 0 0 1px #ff6722 !important;
}

.rad-8.img {
	border-radius: 8px; 
	overflow: hidden;
}
.h-slider-pd .flickity-slider > .col {
	padding-bottom: 0 !important;
}


.service-header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.service-header p:has(a) {
	display: none;
}

.service-link {
    text-decoration: none;
}

.service-link h2 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 24px;
    font-weight: 600;
    color: #111;
    transition: color 0.3s ease;
}

.service-link:hover h2 {
    color: #FF5722;
}

.service-divider {
    width: 1px;
    height: 12px;
    background: #d1d5db;
}

.service-badge {
    display: flex;
    align-items: center;
    gap: 4px;
}

.service-badge-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: flex;
}

.service-badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-badge p,
.service-badge span {
    margin: 0;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    color: #168A77;
}

.flickity-page-dots {
	bottom: 0;
}
.flickity-page-dots .dot {
	width: 20px; 
	height: 4px; 
	border-radius: 0;
}


/* blog post */
.box-blog-post .post-title a, .box-blog-post .from_the_blog_excerpt {
	display: -webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
	overflow: hidden;
}

.box-blog-post .post-category-badge {
    color: #fff;
    background: var(--fs-color-secondary);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 12px; 
	width: fit-content;
	margin-bottom: 10px;
}

/* breadcrumbs */
.bc-sec {
    padding: 15px 0 !important;
}
.rank-math-breadcrumb > p {
    margin: 0;
}

.single-post .entry-content {
	padding-top: 0;
}
.tt-sec {
	padding: 0px 0 0 !important;
	margin-bottom: 5px;
}
.tt-sec .dc-page-title {
margin: 0;
	    line-height: 1;
}

/* ux products */
.product-small.box{
    border:1px solid #e7e7e7;
    border-radius:10px;
    overflow:hidden;
    background:#fff;
}

.product-small .box-image{
    background:#f1f1f1;
}
.product-small .box-image img {
	 mix-blend-mode: multiply;
}

.product-small .box-text{
    padding:10px;
}

.product-small .name a{
    font-size:14px;
    line-height:1.45;
    font-weight:500;
	display: -webkit-box;
	-webkit-line-clampm:2;
	-webkit-box-orient:vertical;
	overflow: hidden;
}
.product-small .price-wrapper {
	margin-top: 10px;
}
.product-small .price-wrapper .price {
	display: flex;
    gap: 5px;
}
.product-small ins span.amount,.product-small span.amount{
    color:#db2f40;
	font-size: 16px;
	font-weight: 700;
} 
.product-small del span.amount{
    color:#666 !important;
    font-size:13px;
	opacity:1;
	font-weight: 400;
}

.fc-product-badge{
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #18b41d;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    margin-bottom: 8px;
}

.fc-product-badge img{
    width:12px;
    height:12px;
}

.fc-promo-slider{
    position:relative;
    height:18px;
    overflow:hidden;
    margin-top:8px;
}

.fc-promo-item{
    position:absolute;
    left:0;
    top:0;
    width:100%;

    display:flex;
    align-items:center;
    gap:6px;

    opacity:0;
    transform:translateY(100%);
    transition:
        transform .45s ease,
        opacity .45s ease;
}

/* item đang hiển thị */
.fc-promo-item.active{
    opacity:1;
    transform:translateY(0);
    z-index:2;
}

/* item cũ trượt lên trên */
.fc-promo-item.exit{
    opacity:0;
    transform:translateY(-100%);
    z-index:1;
}

.fc-promo-item img{
    width:14px;
    height:14px;
    flex-shrink:0;
}

.fc-promo-item span{
    font-size:12px;
    line-height:18px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.fc-product-meta{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:10px;
    font-size:12px;
}

.fc-rating{
    display:flex;
    align-items:center;
    gap:2px;
    font-weight:600;
	position: relative;
}
.fc-rating:after {
	content:"";
	position: absolute;
	top: 50%;
	right: -6px; 
	width: 1px;
	height: 70%;
	transform: translatey(-50%);
	background: #ddd;
}
.fc-rating i {
	font-size: 10px; 
	color: #F8B02A;
}

.fc-meta-divider{
    width:1px;
    height:12px;
    background:#ddd;
}

.fc-used{
    color: #555;
}


/* footer */
.footer-sec ul {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: .6rem;
	list-style: none;
}
.footer-sec ul li {
	margin: 0;
}
.footer-sec .ux-logo-link {
	padding: 0 0 15px !important;
}


/* product cat */
.fastcare-product-categories .category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    text-decoration: none;
    transition: .3s ease;
    background: #eff1f3;
    height: 100%;
	justify-content: space-between;
}
.fastcare-product-categories .category-item img {
	height: 64px; 
	width: auto;
}
.fastcare-product-categories .category-item .category-name {
	padding: 0 .5rem ;
	font-size: 14px;
	font-weight: 700;
	color:#3b3b3b;
	line-height:1.2;
}


/* home */
.h-sec1 .img,.h-sec1 .banner {
	border-radius: 8px;
	overflow: hidden;
}
.h-sec1 .right-img > .col {
	padding-bottom: 10px;
}


.fastcare-brands .brand-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:6px;
    border:1px solid #e5e5e5;
    border-radius:10px;
    text-decoration:none;
    transition:.3s ease;
    background:#fff;
    height:100%;
}

.fastcare-brands .brand-item:hover{
    border-color:#f97316;
    transform:translateY(-3px);
}

.fastcare-brands .brand-image{
    width:56px;
    height:56px;
    flex-shrink:0;
}

.fastcare-brands .brand-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:8px;
}

.fastcare-brands .brand-name{
    font-weight:600;
    font-size:15px;
    color:#111;
}

@media (max-width: 549px){
    .fastcare-brands .brand-item{
        padding:10px;
        gap:8px;
    }

    .fastcare-brands .brand-image{
        width:42px;
        height:42px;
    }

    .fastcare-brands .brand-name{
        font-size:14px;
    }
}




.h-sec3-cat-slider .col {
    width: auto !important;
    padding-right: 8px;
}



.h-sec3-cat-slider .cat-pill {
    display: block;
    padding: 4px 12px;
    background: #f3f4f6;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    color: #111;
    transition: all .3s ease;
}

.h-sec3-cat-slider .cat-pill:hover {
    border-color: #f97316;
    background: #fff;
    color: #111;
}

@media (min-width: 640px) {
    .h-sec3-cat-slider .cat-pill {
        padding: 4px 12px;
        font-size: 14px;
        line-height: 22px;
    }
}
.h-sec3-cat-slider .flickity-slider .col{
	padding-bottom: 0;
	padding: 0 5px !important;
}
.h-blog-link p {
	margin: 0;
	font-weight: 500;
}
.h-blog-link p a {
	color: var(--primary-color) !important;

}
.h-blog .box-blog-post {
	box-shadow: rgba(19, 74, 155, 0.1) 0px 0px 10px 0px;
    border-radius: 12px;
	overflow: hidden;
}
.h-blog .box-blog-post .box-text {
    padding: 16px 16px 14px;
}



/* single */
.single-post .post-sidebar .is-sticky-column .widget_categories,
.archive.category .post-sidebar .is-sticky-column .widget_categories {
	margin: 0;
}

.single-post .post-sidebar .is-sticky-column .widget_categories a,
.archive.category .post-sidebar .is-sticky-column .widget_categories a {
	padding-left: 8px;
}

.single-post .post-sidebar .is-sticky-column .widget_categories li,
.archive.category .post-sidebar .is-sticky-column .widget_categories li {
	padding-right: 8px !important;
	border-radius: 8px;
}

.single-post .post-sidebar .is-sticky-column .widget_categories > ul > li:hover,
.archive.category .post-sidebar .is-sticky-column .widget_categories > ul > li:hover {
	background: rgba(0,0,0,0.06);
}

.single-post .post-sidebar .is-sticky-column .widget_categories > ul > li.active,
.archive.category .post-sidebar .is-sticky-column .widget_categories > ul > li.active {
	background: rgba(0,0,0,0.06);
}

.single-post .widget-area .is-divider,
.archive.category .widget-area .is-divider {
	display: none;
}

.single-post .post-sidebar .widget-area,
.archive.category .post-sidebar .widget-area {
	display: flex; 
	flex-direction: column;
	gap: 1rem;
}

.single-post .post-sidebar .flatsome_recent_posts .recent-blog-posts-li a,
.archive.category .post-sidebar .flatsome_recent_posts .recent-blog-posts-li a {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	margin: 0;
}

.single-post .post-sidebar .flatsome_recent_posts .recent-blog-posts .mr-half,
.archive.category .post-sidebar .flatsome_recent_posts .recent-blog-posts .mr-half {
	margin-right: 10px;
	width: 100px;
	border-radius: 4px;
	overflow: hidden;
}

.single-post .post-sidebar .flatsome_recent_posts .recent-blog-posts .mr-half .badge,
.archive.category .post-sidebar .flatsome_recent_posts .recent-blog-posts .mr-half .badge {
	width: 100%;
	aspect-ratio: 16 / 9;
	height: 100%;
}

.single-post .post-sidebar .flatsome_recent_posts .recent-blog-posts .mr-half .bg-fill,
.archive.category .post-sidebar .flatsome_recent_posts .recent-blog-posts .mr-half .bg-fill {
	background-position: center !important;
}

.single-post .entry-header,
.archive.category .entry-header {
	display: flex;
	flex-direction: column-reverse;
}

.single-post .entry-header .entry-image,
.archive.category .entry-header .entry-image {
	border-radius: 20px; 
	overflow: hidden;
	pointer-events: none;
}

.single-post .entry-header .entry-header-text,
.archive.category .entry-header .entry-header-text {
	display: none;
}

.single-post .custom-post-intro,
.archive.category .custom-post-intro {
	margin-bottom: 30px;
}

.single-post .custom-post-label,
.archive.category .custom-post-label {
	display: inline-block;
	background: #e60023;
	color: #fff;
	padding: 4px 12px;
	border-radius: 8px;
	font-weight: 500;
	margin-bottom: 15px;
	font-size: 13px;
}

.single-post .custom-post-title,
.archive.category .custom-post-title {
	margin-bottom: 15px;
}

.single-post .custom-post-meta,
.archive.category .custom-post-meta {
	display: flex;
	align-items: center;
	gap: 10px;
}

.single-post .custom-post-author img,
.archive.category .custom-post-author img {
	border-radius: 50%;
	width: 48px;
	height: 48px;
}

.single-post .custom-post-date,
.archive.category .custom-post-date {
	color: #777;
	font-size: 13px;
}

.single-post .entry-content,
.archive.category .entry-content {
	padding: 30px; 
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	width: 90%;
	margin: -100px auto 0;
	z-index: 1;
	position: relative;
	background: #fff;
}

.single-post .entry-content img,
.archive.category .entry-content img {
	border-radius: 12px;
	overflow: hidden;
}

.single-post .entry-content .dc-breadcrumb,
.archive.category .entry-content .dc-breadcrumb {
	margin-bottom: 10px;
}

.single-post .entry-content .dc-breadcrumb > ul,
.archive.category .entry-content .dc-breadcrumb > ul {
	row-gap: 0;
}

.single-post .entry-content .dc-breadcrumb li,
.archive.category .entry-content .dc-breadcrumb li {
	color: #333;
	font-size: 14px;
}

@media screen and (min-width: 850px) {
	.single-post .blog-wrapper > .row > .large-3,
	.archive.category .blog-wrapper > .row > .large-3 {
		flex-basis: 28% !important;
		max-width: 28% !important;
	}

	.single-post .blog-wrapper > .row > .large-9,
	.archive.category .blog-wrapper > .row > .large-9 {
		flex-basis: 72% !important;
		max-width: 72% !important;
	}
}

@media screen and (max-width: 849px) {
	.single-post .entry-content,
	.archive.category .entry-content {
		width: 95%;
		padding: 24px;
	}
}

@media screen and (max-width: 549px) {
	.single-post .entry-content,
	.archive.category .entry-content {
		width: 100%;
		padding: 24px;
		margin-top: -20px;
	}
}
.recent-blog-posts-li {
	border: none !important;
}
.recent-blog-posts-li > .recent-blog-posts:first-child {
	padding-top: 0;
}


/* ===============================
   DC Custom Blog Archive Scoped
   Prefix chính: .dc-blog-archive-wrapper
================================ */

.dc-blog-archive-wrapper {
	width: 100%;
	background: #fff;
}

.dc-blog-archive-wrapper .dc-blog-banner {
	margin-bottom: 28px;
}
.dc-blog-archive-wrapper .dc-blog-banner .img {
	border-radius: 12px;
	overflow: hidden;
}

/* ===============================
   Category Nav
================================ */

.dc-blog-archive-wrapper .dc-blog-nav-wrap {
	margin-bottom: 20px;
}

.dc-blog-archive-wrapper .dc-blog-nav-inner {
	padding: 18px 0;
	border-top: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
}

.dc-blog-archive-wrapper .dc-blog-nav-parent {
	padding-right: 20px;
}

.dc-blog-archive-wrapper .dc-blog-nav-parent a,
.dc-blog-archive-wrapper .dc-blog-nav-parent span {
	display: inline-flex;
	align-items: center;
	color: #111;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.dc-blog-archive-wrapper .dc-blog-nav-parent a:hover {
	color: var(--primary-color);
}

.dc-blog-archive-wrapper .dc-blog-nav-child-list {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 10px 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dc-blog-archive-wrapper .dc-blog-nav-child-list li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.dc-blog-archive-wrapper .dc-blog-nav-child-list a {
	position: relative;
	display: inline-flex;
	align-items: center;
	color: #555;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.35;
}

.dc-blog-archive-wrapper .dc-blog-nav-child-list a:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -5px;
	height: 2px;
	background: var(--primary-color);
	transform: scaleX(0);
	transform-origin: left center;
	transition: .25s ease;
}

.dc-blog-archive-wrapper .dc-blog-nav-child-list li.active a,
.dc-blog-archive-wrapper .dc-blog-nav-child-list a:hover {
	color: var(--primary-color);
}

.dc-blog-archive-wrapper .dc-blog-nav-child-list li.active a:after,
.dc-blog-archive-wrapper .dc-blog-nav-child-list a:hover:after {
	transform: scaleX(1);
}

/* ===============================
   Section Heading
================================ */

.dc-blog-archive-wrapper .dc-archive-section {
	margin-bottom: 72px;
}

.dc-blog-archive-wrapper .dc-archive-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 14px;
	border-bottom: 1px solid #ededed;
}

.dc-blog-archive-wrapper .dc-archive-title {
	position: relative;
	margin: 0;
	padding-left: 16px;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.03em;
	color: #111;
}

.dc-blog-archive-wrapper .dc-archive-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 90%;
    background: var(--primary-color);
    transform: translatey(-50%);
}

.dc-blog-archive-wrapper .dc-archive-title a {
	color: #111;
}

.dc-blog-archive-wrapper .dc-archive-title a:hover {
	color: var(--primary-color);
}

.dc-blog-archive-wrapper .dc-archive-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	padding: 9px 20px;
	border: 1px solid #dedede;
	border-radius: 999px;
	background: #fff;
	color: #222;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	transition: .25s ease;
}

.dc-blog-archive-wrapper .dc-archive-more span {
	font-size: 17px;
	line-height: 1;
	transform: translateY(-1px);
}

.dc-blog-archive-wrapper .dc-archive-more:hover {
	border-color: var(--primary-color);
	background: var(--primary-color);
	color: #fff;
}

/* ===============================
   Main Layout
================================ */

.dc-blog-archive-wrapper .dc-archive-main-row {
	align-items: flex-start;
}

.dc-blog-archive-wrapper .dc-archive-left-col,
.dc-blog-archive-wrapper .dc-archive-right-col {
	padding-bottom: 0;
}

.dc-blog-archive-wrapper .dc-archive-featured-post {
	margin-bottom: 26px;
}

.dc-blog-archive-wrapper .dc-archive-featured-post .row,
.dc-blog-archive-wrapper .dc-archive-normal-posts .row,
.dc-blog-archive-wrapper .dc-archive-side-posts .row {
	margin-left: -12px;
	margin-right: -12px;
}

.dc-blog-archive-wrapper .dc-archive-featured-post .post-item,
.dc-blog-archive-wrapper .dc-archive-normal-posts .post-item,
.dc-blog-archive-wrapper .dc-archive-side-posts .post-item {
	padding-left: 12px;
	padding-right: 12px;
}

.dc-blog-archive-wrapper .dc-archive-featured-post .post-item {
	padding-bottom: 0;
}

.dc-blog-archive-wrapper .dc-archive-normal-posts .post-item {
	padding-bottom: 26px;
}

.dc-blog-archive-wrapper .dc-archive-side-posts .post-item {
	padding-bottom: 18px;
}

/* ===============================
   General Blog Card
================================ */

.dc-blog-archive-wrapper .box-blog-post {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 0 10px 0 rgba(19, 74, 155, 0.10);
}

.dc-blog-archive-wrapper .box-blog-post .box-image {
	border-radius: 0;
	overflow: hidden;
	background: #f5f5f5;
}

.dc-blog-archive-wrapper .box-blog-post .box-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .45s ease;
}

.dc-blog-archive-wrapper .box-blog-post:hover .box-image img {
	transform: scale(1.04);
}

.dc-blog-archive-wrapper .box-blog-post .box-text {
    padding: 16px 16px 14px;
}

.dc-blog-archive-wrapper .box-blog-post .post-meta {
	margin-bottom: 7px;
	color: #8b8b8b;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.35;
}

.dc-blog-archive-wrapper .box-blog-post .post-title {
	margin: 0 0 9px;
	color: #111;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.02em;
}

.dc-blog-archive-wrapper .box-blog-post .post-title a {
	color: #111;
}

.dc-blog-archive-wrapper .box-blog-post .post-title a:hover {
	color: var(--primary-color);
}

.dc-blog-archive-wrapper .box-blog-post .from_the_blog_excerpt {
	margin: 0 0 12px;
	color: #666;
	font-size: 14px;
	line-height: 1.6;
}

.box-blog-post .text-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--primary-color);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
}

.box-blog-post .text-link svg {
	width: 17px;
	height: 17px;
	fill: currentColor;
	transition: .25s ease;
}

.box-blog-post .text-link:hover svg {
	transform: translateX(4px);
}

/* ===============================
   Featured Post - Flatsome Vertical
================================ */

.dc-blog-archive-wrapper .dc-archive-featured-post .box-vertical {
	display: flex;
	align-items: stretch;
	gap: 24px;
}

.dc-blog-archive-wrapper .dc-archive-featured-post .box-vertical .box-image {
	width: 48%;
	min-width: 48%;
	margin: 0;
}

.dc-blog-archive-wrapper .dc-archive-featured-post .box-vertical .box-text {
	width: 52%;
	padding: 0;
	display: flex;
	align-items: center;
	padding: 14px 14px 10px 0;
}

.dc-blog-archive-wrapper .dc-archive-featured-post .box-vertical .box-text-inner {
	width: 100%;
}

.dc-blog-archive-wrapper .dc-archive-featured-post .box-blog-post .post-title {
	font-size: 1.2rem;
}

.dc-blog-archive-wrapper .dc-archive-featured-post .box-blog-post .from_the_blog_excerpt {
	font-size: 15px;
	line-height: 1.65;
}

/* ===============================
   Normal Grid Posts
================================ */

.dc-blog-archive-wrapper .dc-archive-normal-posts .box-blog-post .post-title {
	font-size: 18px;
	line-height: 1.35;
}

.dc-blog-archive-wrapper .dc-archive-normal-posts .box-blog-post .post-meta {
	font-size: 12px;
}

.dc-blog-archive-wrapper .dc-archive-normal-posts .box-blog-post .from_the_blog_excerpt {
	font-size: 14px;
	line-height: 1.55;
}

/* ===============================
   Right Side Vertical Posts
================================ */


.dc-blog-archive-wrapper .dc-archive-side-posts .box-vertical {
	display: flex;
	align-items: center;
	gap: 14px;
}

.dc-blog-archive-wrapper .dc-archive-side-posts .post-item:last-child .box-vertical {
	border-bottom: 0;
	padding-bottom: 0;
}

.dc-blog-archive-wrapper .dc-archive-side-posts .box-vertical .box-image {
	width: 40%;
	min-width: 40%;
	margin: 0;
}

.dc-blog-archive-wrapper .dc-archive-side-posts .box-vertical .box-text {
	width: 60%;
	padding: 10px 10px 10px 0;
}
.dc-blog-archive-wrapper .dc-archive-side-posts .post-category-badge {
	margin-bottom: 5px;
}

.dc-blog-archive-wrapper .dc-archive-side-posts .box-blog-post .post-meta {
	margin-bottom: 5px;
	font-size: 12px;
	color: #8b8b8b;
}

.dc-blog-archive-wrapper .dc-archive-side-posts .box-blog-post .post-title {
	margin: 0;
	font-size: 15px;
	line-height: 1.38;
	font-weight: 700;
}

.dc-blog-archive-wrapper .dc-archive-side-posts .box-blog-post .from_the_blog_excerpt,
.dc-blog-archive-wrapper .dc-archive-side-posts .box-blog-post .text-link {
	display: none;
}
/* ===============================
   Pagination
================================ */

.dc-blog-archive-wrapper .dc-archive-pagination {
	margin-top: 18px;
	text-align: center;
}

.dc-blog-archive-wrapper .dc-archive-pagination .page-numbers {
	margin-bottom: 0;
}

/* ===============================
   Mobile
================================ */

@media (max-width: 849px) {
	.dc-blog-archive-wrapper .dc-archive-featured-post .box-vertical .box-image {
		display: block !important;
	}
	.dc-blog-archive-wrapper .dc-blog-banner {
		margin-bottom: 22px;
	}

	.dc-blog-archive-wrapper .dc-blog-nav-wrap {
		margin-bottom: 0;
	}

	.dc-blog-archive-wrapper .dc-blog-nav-inner {
		padding: 16px 0;
	}

	.dc-blog-archive-wrapper .dc-blog-nav-parent {
		margin-bottom: 14px;
		padding-right: 0;
	}

	.dc-blog-archive-wrapper .dc-blog-nav-parent a,
	.dc-blog-archive-wrapper .dc-blog-nav-parent span {
		font-size: 21px;
	}

	.dc-blog-archive-wrapper .dc-blog-nav-child-list {
		justify-content: flex-start;
		gap: 9px 16px;
	}

	.dc-blog-archive-wrapper .dc-blog-nav-child-list a {
		font-size: 14px;
	}

	.dc-blog-archive-wrapper .dc-archive-section {
		margin-bottom: 52px;
	}

	.dc-blog-archive-wrapper .dc-archive-heading {
		align-items: flex-start;
	}

	.dc-blog-archive-wrapper .dc-archive-title {
		font-size: 24px;
	}

	.dc-blog-archive-wrapper .dc-archive-featured-post {
		margin-bottom: 18px;
	}

	.dc-blog-archive-wrapper .dc-archive-featured-post .box-vertical .box-text,
	.dc-blog-archive-wrapper .dc-archive-side-posts .box-vertical .box-text {
		padding-top: 12px;
	}

	.dc-blog-archive-wrapper .dc-archive-featured-post .box-blog-post .post-title {
		font-size: 22px;
	}

	.dc-blog-archive-wrapper .dc-archive-normal-posts .box-blog-post .post-title {
		font-size: 17px;
	}

	.dc-blog-archive-wrapper .dc-archive-side-posts {
		padding-left: 0;
	}

	.dc-blog-archive-wrapper .dc-archive-side-posts .post-item {
		padding-bottom: 20px;
	}

	.dc-blog-archive-wrapper .dc-archive-side-posts .box-blog-post .post-title {
		font-size: 17px;
	}

	.dc-blog-archive-wrapper .dc-archive-more-mobile {
		margin-top: 6px;
		text-align: center;
	}
}
@media(max-width:549px) {
	.dc-blog-archive-wrapper .dc-archive-featured-post .box-vertical {
		flex-direction: column;
		gap: 0;
	}
	.dc-blog-archive-wrapper .dc-archive-featured-post .box-vertical .box-text {
		padding: 16px;
		width: 100%;
	}
	.dc-blog-archive-wrapper .dc-archive-side-posts .box-vertical .box-image {
		width: 40% !important;
		min-width: 40% !important;
	}
}
.post-sidebar .flatsome_recent_posts .widget-title  {
	font-size: 1.1rem;
}
.post-sidebar .flatsome_recent_posts > ul {
	margin-top: 10px !important;
}
.dc-archive-more-mobile {
	text-align: center;
}

/* header */
.header-main .header-button > a{
		background: #fff;
		width: 40px;
		height: 40px; 
		padding: 5px;
		display: flex;
		justify-content:center;
		align-items:center;
		border: none;
		color: #111;
	border-radius:8px;
}
.header-main .header-button > a:hover {
		box-shadow: inset 0 0 0 100px rgba(0, 0, 0, .05);
}
.header-main .header-button > a img {
		width: 24px !important;
}

.dc-hs-wrap {
	position: relative;
	width: 100%;
	max-width: 520px;
	z-index: 999;
}

.dc-hs-form {
	position: relative;
	display: flex;
	align-items: center;
	width: min(550px, calc(100vw - 24px));
	height: 40px;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.dc-hs-submit {
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	color: #111827;
	cursor: pointer;
	padding: 0;
	margin: 0;
}

.dc-hs-submit svg {
	fill: currentColor;
	opacity: 0.78;
}

.dc-hs-input {
	width: 100%;
	height: 46px;
	border: none !important;
	background: transparent;
	box-shadow: none !important;
	padding: 0 14px 0 0 !important;
	font-size: 15px;
	color: #111827;
	outline: none;
}

.dc-hs-input:focus {
	box-shadow: none;
}

.dc-hs-input::placeholder {
	color: #6b7280;
}
.dc-catmega-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.58);
	opacity: 0;
	visibility: hidden;
	transition: opacity .18s ease, visibility .18s ease;
	z-index: 9998;
}

.dc-catmega-wrap.is-active .dc-catmega-backdrop {
	opacity: 1;
	visibility: visible;
}

.dc-catmega-wrap.is-active {
	z-index: 10000;
}

.dc-catmega-toggle {
	position: relative;
	z-index: 10001;
	border-radius: 6px;
	transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

.dc-catmega-wrap.is-active .dc-catmega-toggle {
	background: #fff;
	color: #ff5b22;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.dc-catmega-panel {
	z-index: 10000;
}
.dc-hs-panel {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	width: min(550px, calc(100vw - 24px));
	max-height: 76vh;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all .18s ease;
}

.dc-hs-wrap.is-active .dc-hs-panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dc-hs-panel-inner {
	max-height: 76vh;
	overflow-y: auto;
    padding: 12px 8px 12px 16px;
}

.dc-hs-section + .dc-hs-section {
	margin-top: 20px;
}

.dc-hs-title {
	margin: 0 0 10px;
	font-size: 16px;
	line-height: 1.35;
	font-weight: 700;
	color: #2f3440;
}

.dc-hs-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.dc-hs-tag {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 6px 13px;
	border-radius: 8px;
	background: #f1f3f6;
	color: #4b5563;
	font-size: 14px;
	line-height: 1.2;
	text-decoration: none;
	transition: background .18s ease, color .18s ease;
}

.dc-hs-tag:hover {
	background: #ff5b22;
	color: #fff;
}

.dc-hs-brands {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.dc-hs-brand {
    width: 62px;
    height: 62px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	overflow: hidden;
	text-decoration: none;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.dc-hs-brand:hover {
	border-color: #ff5b22;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
	transform: translateY(-1px);
}

.dc-hs-brand span {
	padding: 4px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	color: #111827;
}

@media (max-width: 849px) {
	.dc-hs-wrap {
		max-width: 100%;
	}

	.dc-hs-form {
		height: 44px;
		border: 2px solid #ff5b22;
		border-radius: 8px;
	}

	.dc-hs-submit {
		width: 44px;
		height: 44px;
	}

	.dc-hs-input {
		height: 44px;
		font-size: 14px;
	}

	.dc-hs-panel {
		position: fixed;
		top: 58px;
		left: 8px;
		right: 8px;
		width: auto;
		max-height: calc(100vh - 72px);
		border-radius: 0 0 12px 12px;
	}

	.dc-hs-panel-inner {
		max-height: calc(100vh - 72px);
		padding: 14px 14px 18px;
	}

	.dc-hs-title {
		font-size: 15px;
	}

	.dc-hs-tag {
		min-height: 28px;
		padding: 6px 11px;
		font-size: 13px;
	}

	.dc-hs-brand {
		width: 56px;
		height: 56px;
	}
}

.dc-hs-clear {
	width: 28px;
	height: 28px;
	display: none;
	align-items: center;
	justify-content: center;
	flex: 0 0 28px;
	margin-right: 10px;
	border: 0;
	border-radius: 50%;
	background: #c9cdd3;
	color: #fff;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}

.dc-hs-clear span {
	display: block;
	transform: translateY(-1px);
}

.dc-hs-wrap.has-keyword .dc-hs-clear {
	display: flex;
}

.dc-hs-suggest {
	display: none;
	padding: 14px 18px 22px;
	max-height: 76vh;
	overflow-y: auto;
}

.dc-hs-wrap.has-keyword .dc-hs-suggest {
	display: block;
}

.dc-hs-wrap.has-keyword .dc-hs-default-panel {
	display: none;
}

.dc-hs-suggest-title {
	margin: 0 0 14px;
	font-size: 16px;
	line-height: 1.35;
	font-weight: 700;
	color: #111827;
}

.dc-hs-suggest-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.dc-hs-product {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	text-decoration: none;
	color: inherit;
}

.dc-hs-product-img {
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	overflow: hidden;
}

.dc-hs-product-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.dc-hs-product-info {
	min-width: 0;
	display: block;
	padding-top: 1px;
}

.dc-hs-product-name {
	display: block;
	margin-bottom: 5px;
	font-size: 15px;
	line-height: 1.35;
	font-weight: 400;
	color: #374151;
}

.dc-hs-product-price {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;
	line-height: 1.2;
}

.dc-hs-product-price-sale {
	font-size: 14px;
	font-weight: 700;
	color: #ef233c;
}

.dc-hs-product-price-sale .woocommerce-Price-amount {
	color: inherit;
}

.dc-hs-product-price-regular span.amount{
	font-size: 13px;
	font-weight: 400 !important;
	color: #8b8f97;
	text-decoration: line-through;
}

.dc-hs-product-price-regular .woocommerce-Price-amount {
	color: inherit;
}

.dc-hs-suggest-loading,
.dc-hs-suggest-empty {
	padding: 4px 0 10px;
	font-size: 14px;
	line-height: 1.5;
	color: #6b7280;
}

@media (max-width: 849px) {
	.dc-hs-clear {
		width: 24px;
		height: 24px;
		flex-basis: 24px;
		margin-right: 10px;
		font-size: 18px;
	}

	.dc-hs-suggest {
		max-height: calc(100vh - 72px);
		padding: 13px 14px 20px;
	}

	.dc-hs-suggest-title {
		font-size: 15px;
		margin-bottom: 13px;
	}

	.dc-hs-suggest-list {
		gap: 17px;
	}

	.dc-hs-product {
		gap: 13px;
	}

	.dc-hs-product-img {
		width: 46px;
		height: 46px;
		flex-basis: 46px;
	}

	.dc-hs-product-name {
		font-size: 15px;
	}

	.dc-hs-product-price-sale {
		font-size: 15px;
	}

	.dc-hs-product-price-regular {
		font-size: 12px;
	}
}

  .store-btn {
    display: flex;
    align-items: center !important;
    justify-content: center;
    height: 40px !important;
    gap: 8px;
    padding: 8px 12px !important;
    background: #ffffff;
    color: #222 !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500 !important;
    transition: all 0.3s ease;
    }

    .store-btn:hover {
      color: #ff7a00;
    }

    .store-btn:hover svg {
      fill: var(--primary-color);
    }

    .store-btn svg {
      width: 24px;
      height: 24px;
      fill: currentColor;
      transition: fill 0.3s ease;
      flex-shrink: 0;
    }

    .store-btn span {
      white-space: nowrap;
      font-size: 14px;
      line-height: 22px;
				text-transform: none;
    }
.store-btn:hover {
		color:var(--primary-color) !important;
}

    @media (min-width: 1024px) {
      .store-btn span {
        font-size: 16px;
        line-height: 22px;
      }
    }



.dc-catmega-wrap {
	position: relative;
	display: inline-block;
	z-index: 998;
}

.dc-catmega-toggle {
    height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px 0 16px;
    border: 0;
    background: #fff;
    color: #111827;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    border-radius: 8px;
    margin: 0;
	text-transform: none;
}

.dc-catmega-icon {
	width: 20px;
	display: inline-flex;
	flex-direction: column;
	gap: 4px;
}

.dc-catmega-icon span {
	width: 18px;
	height: 2px;
	display: block;
	background: currentColor;
	border-radius: 99px;
}

.dc-catmega-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #111827;
	transition: transform .18s ease;
}

.dc-catmega-arrow svg {
	fill: currentColor;
}

.dc-catmega-wrap.is-active .dc-catmega-arrow {
	transform: rotate(180deg);
}

.dc-catmega-panel {
	position: fixed;
	top: 72px;
	left: 50%;
	width: min(1280px, calc(100vw - 24px));
	height: 495px;
	background: #fff;
	border-top: 1px solid #f05a28;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.22);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 16px) !important;
	transition: all .18s ease;
	overflow: hidden;
	z-index: 9999;
	border-radius: 12px;
}

.dc-catmega-wrap.is-active .dc-catmega-panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dc-catmega-inner {
	display: grid;
	grid-template-columns: 224px minmax(520px, 1fr) 300px;
	height: 100%;
}

.dc-catmega-left {
	background: #fff;
	border-right: 1px solid #f0f1f3;
	padding: 16px 16px 18px;
}

.dc-catmega-left-title {
	margin: 0 0 10px;
	font-size: 18px;
	line-height: 1.3;
	font-weight: 700;
	color: #1f2937;
}

.dc-catmega-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.dc-catmega-menu-item {
	margin: 0 0 4px;
}

.dc-catmega-menu-item a {
	min-height: 40px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 9px 12px;
	border: 1px solid transparent;
	border-radius: 7px;
	color: #1f2937;
	font-size: 14px;
	line-height: 1.25;
	text-decoration: none;
	transition: all .16s ease;
}

.dc-catmega-menu-item.is-active a,
.dc-catmega-menu-item a:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
	background: #fff8f4;
}
.dc-catmega-menu-item.is-active img {
	  filter: brightness(0) saturate(100%) invert(54%) sepia(92%) saturate(2336%) hue-rotate(343deg) brightness(102%) contrast(102%);
}

.dc-catmega-menu-icon {
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: currentColor;
}

.dc-catmega-menu-icon img {
	max-width: 22px;
	max-height: 22px;
	object-fit: contain;
	display: block;
}

.dc-catmega-center {
	padding: 18px 22px;
	overflow-y: auto;
}

.dc-catmega-title {
	margin: 0 0 12px;
	font-size: 16px;
	line-height: 1.35;
	font-weight: 700;
	color: #4b5563;
}

.dc-catmega-brand-box {
	margin-bottom: 18px;
}

.dc-catmega-brands {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.dc-catmega-brand {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	overflow: hidden;
	text-decoration: none;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.dc-catmega-brand:hover {
	border-color: #ff5b22;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
	transform: translateY(-1px);
}

.dc-catmega-brand img {
	object-fit: contain;
	display: block;
}

.dc-catmega-brand span {
	padding: 4px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	color: #111827;
}

.dc-catmega-tab {
	display: none;
}

.dc-catmega-tab.is-active {
	display: block;
}

.dc-catmega-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 46px;
	row-gap: 20px;
}

.dc-catmega-group-title {
	display: block;
	margin: 0 0 9px;
	color: #4b5563;
	font-size: 16px;
	line-height: 1.35;
	font-weight: 700;
	text-decoration: none;
}

.dc-catmega-group-title:hover {
	color: #ff5b22;
}

.dc-catmega-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.dc-catmega-links li {
	margin: 0 0 9px;
}

.dc-catmega-links a {
	color: #4b5563;
	font-size: 14px;
	line-height: 1.35;
	text-decoration: none;
}

.dc-catmega-links a:hover {
	color: #ff5b22;
	text-decoration: underline;
}

.dc-catmega-empty {
	font-size: 14px;
	color: #6b7280;
}

.dc-catmega-right {
	background: #f3f4f6;
	padding: 20px 14px;
	overflow-y: auto;
}

.dc-catmega-products {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.dc-catmega-product {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px;
	background: #fff;
	border-radius: 8px;
	color: inherit;
	text-decoration: none;
	transition: transform .16s ease, box-shadow .16s ease;
}

.dc-catmega-product:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}

.dc-catmega-product-img {
	width: 54px;
	height: 54px;
	flex: 0 0 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.dc-catmega-product-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.dc-catmega-product-info {
	min-width: 0;
	display: block;
}

.dc-catmega-product-name {
	display: block;
	margin-bottom: 5px;
	color: #6b7280;
	font-size: 13px;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.dc-catmega-product-price {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
	line-height: 1.2;
}

.dc-catmega-product-sale {
	color: #111827;
	font-size: 13px;
	font-weight: 700;
}

.dc-catmega-product-sale .woocommerce-Price-amount {
	color: inherit;
}

.dc-catmega-product-regular {
	color: #9ca3af;
	font-size: 12px;
	text-decoration: line-through;
}

.dc-catmega-product-regular .woocommerce-Price-amount {
	color: inherit;
}

.dc-catmega-product-discount {
	color: #ef233c;
	font-size: 11px;
	font-weight: 700;
}

@media (max-width: 849px) {
	.dc-catmega-wrap {
		display: block;
		width: 100%;
	}

	.dc-catmega-toggle {
		width: 100%;
		height: 44px;
		justify-content: flex-start;
		padding: 0 12px;
	}

	.dc-catmega-arrow {
		margin-left: auto;
	}

	.dc-catmega-panel {
		position: fixed;
		top: 54px;
		left: 8px;
		right: 8px;
		width: auto;
		height: calc(100vh - 68px);
	}

	.dc-catmega-inner {
		grid-template-columns: 120px minmax(0, 1fr);
	}

	.dc-catmega-left {
		padding: 12px 8px;
	}

	.dc-catmega-left-title {
		font-size: 14px;
		margin-bottom: 8px;
	}

	.dc-catmega-menu-item a {
		min-height: 38px;
		gap: 7px;
		padding: 8px 7px;
		font-size: 12px;
	}

	.dc-catmega-menu-icon {
		width: 20px;
		height: 20px;
		flex-basis: 20px;
	}

	.dc-catmega-center {
		padding: 12px;
	}

	.dc-catmega-grid {
		grid-template-columns: 1fr;
		row-gap: 16px;
	}

	.dc-catmega-brands {
		gap: 8px;
	}

	.dc-catmega-brand {
		width: 48px;
		height: 48px;
	}

	.dc-catmega-group-title {
		font-size: 14px;
	}

	.dc-catmega-links a {
		font-size: 13px;
	}

}
html.dc-catmega-lock,
body.dc-catmega-lock {
	overflow: hidden;
	height: 100%;
}

.dc-catmega-backdrop {
	touch-action: none;
}

.dc-catmega-panel,
.dc-catmega-left,
.dc-catmega-center,
.dc-catmega-right {
	overscroll-behavior: contain;
}


/* grid category */
.dc-sidecat-wrap {
	position: relative;
	height:100%;
	z-index: 50;
}

.dc-sidecat-menu-box {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	padding: 16px 12px;
	height: 100%;
}

.dc-sidecat-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.dc-sidecat-menu-item {
	margin: 0 !important;
}

.dc-sidecat-menu-item a {
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    border: 1px solid transparent;
    border-radius: 7px;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.25;
    text-decoration: none;
    transition: all .16s ease;
}

.dc-sidecat-menu-item.is-active a,
.dc-sidecat-menu-item a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #fff8f4;
}
.dc-sidecat-menu-item.is-active a img {
	  filter: brightness(0) saturate(100%) invert(54%) sepia(92%) saturate(2336%) hue-rotate(343deg) brightness(102%) contrast(102%);
}

.dc-sidecat-menu-icon {
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: currentColor;
}

.dc-sidecat-menu-icon img {
	max-width: 23px;
	max-height: 23px;
	object-fit: contain;
	display: block;
}

.dc-sidecat-menu-name {
	display: block;
	min-width: 0;
}

.dc-sidecat-panel {
	position: absolute;
	top: 0;
	left: calc(100% + 8px);
	width: calc(300% + 55px);
	height: 500px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
	opacity: 0;
	visibility: hidden;
	transform: translateX(8px);
	transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
	overflow: hidden;
	z-index: 60;
}

.dc-sidecat-wrap:hover .dc-sidecat-panel,
.dc-sidecat-wrap.is-active .dc-sidecat-panel {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

.dc-sidecat-tab {
	display: none;
	height: 100%;
}

.dc-sidecat-tab.is-active {
	display: block;
}

.dc-sidecat-panel-inner {
	display: grid;
	grid-template-columns: minmax(560px, 1fr) 300px;
	height: 100%;
}

.dc-sidecat-center {
	padding: 20px 24px;
	overflow-y: auto;
}

.dc-sidecat-title {
	margin: 0 0 12px;
	font-size: 16px;
	line-height: 1.35;
	font-weight: 700;
	color: #4b5563;
}

.dc-sidecat-brand-box {
	margin-bottom: 20px;
}

.dc-sidecat-brands {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.dc-sidecat-brand {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	overflow: hidden;
	text-decoration: none;
	transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.dc-sidecat-brand:hover {
	border-color: #ff5b22;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
	transform: translateY(-1px);
}

.dc-sidecat-brand img {
	object-fit: contain;
	display: block;
}

.dc-sidecat-brand span {
	padding: 4px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	color: #111827;
}

.dc-sidecat-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 44px;
	row-gap: 22px;
}

.dc-sidecat-group-title {
	display: block;
	margin: 0 0 9px;
	color: #4b5563;
	font-size: 16px;
	line-height: 1.35;
	font-weight: 700;
	text-decoration: none;
}

.dc-sidecat-group-title:hover {
	color: #ff5b22;
}

.dc-sidecat-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.dc-sidecat-links li {
	margin: 0 0 9px !important;
}

.dc-sidecat-links a {
	color: #4b5563;
	font-size: 14px;
	line-height: 1.35;
	text-decoration: none;
}

.dc-sidecat-links a:hover {
	color: #ff5b22;
	text-decoration: underline;
}

.dc-sidecat-empty {
	font-size: 14px;
	color: #6b7280;
}

.dc-sidecat-right {
	background: #f3f4f6;
	padding: 20px 14px;
	overflow-y: auto;
}

.dc-sidecat-products {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.dc-sidecat-product {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px;
	background: #fff;
	border-radius: 8px;
	color: inherit;
	text-decoration: none;
	transition: transform .16s ease, box-shadow .16s ease;
}

.dc-sidecat-product:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}

.dc-sidecat-product-img {
	width: 54px;
	height: 54px;
	flex: 0 0 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.dc-sidecat-product-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.dc-sidecat-product-info {
	min-width: 0;
	display: block;
}

.dc-sidecat-product-name {
	display: block;
	margin-bottom: 5px;
	color: #6b7280;
	font-size: 13px;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.dc-sidecat-product-price {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
	line-height: 1.2;
}

.dc-sidecat-product-sale {
	color: #111827;
	font-size: 13px;
	font-weight: 700;
}

.dc-sidecat-product-sale .woocommerce-Price-amount {
	color: inherit;
}

.dc-sidecat-product-regular {
	color: #9ca3af;
	font-size: 12px;
	text-decoration: line-through;
}

.dc-sidecat-product-regular .woocommerce-Price-amount {
	color: inherit;
}

.dc-sidecat-product-discount {
	color: #ef233c;
	font-size: 11px;
	font-weight: 700;
}

.dc-sidecat-product-empty {
	font-size: 13px;
	color: #6b7280;
}

.dc-sidecat-panel,
.dc-sidecat-center,
.dc-sidecat-right {
	overscroll-behavior: contain;
}

@media (max-width: 849px) {
	.dc-sidecat-wrap {
		width: 100%;
		height: auto;
		display: grid;
		grid-template-columns: 88px minmax(0, 1fr);
		background: #fff;
		border: 1px solid #e5e7eb;
		border-radius: 8px;
		overflow: hidden;
		z-index: 100;
	}

	.dc-sidecat-menu-box {
		width: 88px;
		height: auto;
		min-height: 520px;
		padding: 12px 8px;
		border: 0;
		border-right: 1px solid #e5e7eb;
		border-radius: 0;
		overflow-y: auto;
	}

	.dc-sidecat-menu-item a {
		min-height: auto;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 6px;
		padding: 10px 6px !important;
		border: 0;
		border-radius: 8px;
		font-size: 11px;
		line-height: 1.25;
		text-align: center;
	}

	.dc-sidecat-menu-item.is-active a,
	.dc-sidecat-menu-item a:hover {
		border-color: transparent;
		background: #fff1ea;
		color: var(--primary-color);
	}

	.dc-sidecat-menu-icon {
		width: 26px;
		height: 26px;
		flex: 0 0 26px;
	}

	.dc-sidecat-menu-icon img {
		max-width: 24px;
		max-height: 24px;
	}

	.dc-sidecat-menu-name {
		width: 100%;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	.dc-sidecat-menu-item {
		padding: 0 !important;
	}

	.dc-sidecat-panel {
		position: static;
		width: 100%;
		height: 520px;
		margin: 0;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		display: block;
		overflow: hidden;
	}

	.dc-sidecat-wrap:not(.is-active) .dc-sidecat-panel {
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.dc-sidecat-wrap:hover .dc-sidecat-panel {
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.dc-sidecat-tab {
		height: 100%;
	}

	.dc-sidecat-panel-inner {
		display: block;
		height: 100%;
	}

	.dc-sidecat-center {
		height: 100%;
		padding: 16px 14px 20px;
		overflow-y: auto;
	}

	.dc-sidecat-right {
		display: none;
	}
	.dc-sidecat-grid .dc-sidecat-links li a,.dc-sidecat-grid .dc-sidecat-links li {
		padding: 0 !important;
	}
}
@media(max-width:549px) {
	.dc-sidecat-grid {
		grid-template-columns: repeat(1, minmax(0, 1fr));
		column-gap: 20px;
		row-gap: 15px;
	}
}



/* product page */
.fc-shop-order-bar {
	width: 100%;
	margin: 0 0 18px;
	display: flex;
	justify-content: flex-end;
}

.fc-shop-order-inner {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #fff;
}

.fc-shop-order-btn,
.fc-shop-order-price-toggle {
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 0 12px;
	border: 1px solid #e5e7eb;
	border-radius: 7px;
	background: #fff;
	color: #374151;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: all .16s ease;
	margin: 0 !important;
}

.fc-shop-order-btn i,
.fc-shop-order-price-toggle i {
	font-size: 13px;
	color: #333;
	transition: color .16s ease;
}

.fc-shop-order-btn:hover,
.fc-shop-order-price-toggle:hover,
.fc-shop-order-btn.is-active,
.fc-shop-order-price-toggle.is-active {
	border-color: #ff5b22;
	color: #ff5b22;
	background: #fff;
}

.fc-shop-order-btn:hover i,
.fc-shop-order-price-toggle:hover i,
.fc-shop-order-btn.is-active i,
.fc-shop-order-price-toggle.is-active i {
	color: #ff5b22;
}

.fc-shop-order-price {
	position: relative;
}

.fc-shop-order-price-dropdown {
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	min-width: 155px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
	padding: 6px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: all .16s ease;
	z-index: 30;
}

.fc-shop-order-price:hover .fc-shop-order-price-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.fc-shop-order-price-dropdown a {
	display: block;
	padding: 9px 10px;
	border-radius: 6px;
	color: #374151;
	font-size: 13px;
	line-height: 1.25;
	text-decoration: none;
	white-space: nowrap;
}

.fc-shop-order-price-dropdown a:hover,
.fc-shop-order-price-dropdown a.is-active {
	background: #fff4ed;
	color: #ff5b22;
}

@media (max-width: 849px) {
	.fc-shop-order-bar {
		justify-content: flex-start;
		overflow-x: auto;
		margin-bottom: 14px;
		padding-bottom: 2px;
	}

	.fc-shop-order-inner {
		flex-wrap: nowrap;
		min-width: max-content;
	}

	.fc-shop-order-btn,
	.fc-shop-order-price-toggle {
		height: 32px;
		padding: 0 10px;
		font-size: 13px;
	}
}
.products-loop-archive {
	padding-top: 0;
}


/* single product */
.dc-sp-student-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 10px;
    padding: 4px 7px 4px 4px;
    border-radius: 4px;
    background: #05b72f;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
	gap: 2px;
}
.dc-sp-student-label img , .dc-sp-student-price-line img {
	width: 12px;
	height: 12px;
}
.product-info .product-title {
    margin-bottom: 8px;
    color: #1f2933;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
}

.dc-sp-rating-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
    color: #1f2933;
    font-size: 14px;
    line-height: 1.3;
}

.dc-sp-rating-score {
    font-weight: 700;
}

.dc-sp-stars {
    color: #f5a000;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1;
}


.dc-sp-service-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.dc-sp-service-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.dc-sp-service-time {
    color: #ff7a00;
}

.dc-sp-service-warranty {
    color: #159f85;
}

.dc-sp-service-icon {
    font-size: 16px;
    line-height: 1;
}

.dc-sp-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border: 1px solid #9aa0a6;
    border-radius: 50%;
    color: #9aa0a6;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
}

.dc-sp-price-box {
    margin: 0 0 18px;
    padding: 14px 13px 12px;
    border: 1px solid #e9edf2;
    border-radius: 8px;
    background: #fff;
}

.dc-sp-old-price-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.2;
}

.dc-sp-old-price {
    color: #6b7280;
    text-decoration: line-through;
}

.dc-sp-discount-percent {
    color: #ef3340;
    font-weight: 700;
}

.dc-sp-main-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
}

.dc-sp-main-price,
.dc-sp-main-price .amount,
.dc-sp-main-price .woocommerce-Price-amount {
    color: #ef3340;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.15;
}

.dc-sp-main-price del {
    display: none;
}

.dc-sp-main-price ins {
    text-decoration: none;
}

.dc-sp-vat-note {
    color: #8a8f98;
    font-size: 13px;
    font-weight: 500;
}

.dc-sp-booking-count {
    margin-bottom: 12px;
    color: #555;
    font-size: 13px;
    line-height: 1.3;
}

.dc-sp-student-price-line {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 12px;
    padding: 4px 7px 4px 4px;
    border-radius: 4px;
    background: #05b72f;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
	gap: 2px;
}

.dc-sp-student-final-price {
    margin-left: 3px;
    white-space: nowrap;
}
.dc-sp-student-final-price span.amount {
	color: #fff !important;
}
.dc-sp-promo-box {
    padding: 10px 11px;
    border: 1px solid #16bfa4;
    border-radius: 7px;
    background: #fff;
}

.dc-sp-promo-title {
    margin-bottom: 6px;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.dc-sp-promo-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dc-sp-promo-list li {
    position: relative;
    margin: 0 0 5px;
    padding-left: 22px;
    color: #333;
    font-size: 13px;
    line-height: 1.45;
}

.dc-sp-promo-list li:last-child {
    margin-bottom: 0;
}

.dc-sp-promo-list li::before {
    content: "✓";
    position: absolute;
    top: 2px;
    left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border: 1px solid #16bfa4;
    border-radius: 50%;
    color: #16bfa4;
    font-size: 9px;
    line-height: 1;
}

.dc-sp-variation-block {
    margin: 16px 0 14px;
}

.dc-sp-variation-label {
    margin-bottom: 8px;
    color: #333;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
}

.dc-sp-variation-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dc-sp-variation-card {
    display: flex;
    align-items: center;
    gap: 8px;
    width: calc(50% - 4px);
    min-height: 58px;
    padding: 6px 8px;
    border: 1px solid #e7ebf0;
    border-radius: 8px;
    background: #fff;
    color: #333;
    text-align: left;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, opacity .18s ease;
	margin: 0;
    width: fit-content;
}

.dc-sp-variation-card:hover,
.dc-sp-variation-card.is-active {
    border-color: #ff5a1f;
    box-shadow: 0 0 0 1px #ff5a1f inset;
}

.dc-sp-variation-card.is-disabled {
    opacity: .4;
    pointer-events: none;
}

.dc-sp-variation-thumb {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    overflow: hidden;
    border-radius: 5px;
    background: #f3f4f6;
}

.dc-sp-variation-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dc-sp-variation-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dc-sp-variation-name {
    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
}

.dc-sp-variation-price,
.dc-sp-variation-price .amount,
.dc-sp-variation-price .woocommerce-Price-amount {
    margin-top: 2px;
    color: #1f2933;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
}

.dc-sp-variation-price del {
    display: none;
}

.dc-sp-variation-price ins {
    text-decoration: none;
}

.dc-sp-variation-card.is-active .dc-sp-variation-name,
.dc-sp-variation-card.is-active .dc-sp-variation-price,
.dc-sp-variation-card.is-active .dc-sp-variation-price .amount,
.dc-sp-variation-card.is-active .dc-sp-variation-price .woocommerce-Price-amount {
    color: #ff5a1f;
}

.dc-sp-compare-link {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    color: #ff5a1f;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.dc-sp-compare-link::before {
    content: "⇆";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    margin-right: 5px;
    border: 1px solid currentColor;
    border-radius: 4px;
    font-size: 10px;
    line-height: 1;
}

/* Ẩn bảng biến thể mặc định nhưng vẫn giữ select trong DOM để Woo/Flatsome xử lý add to cart */
.variations_form table.variations {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* Ẩn giá variation phụ bên dưới form vì đã có box giá custom phía trên */
.single_variation_wrap .woocommerce-variation-price {
    display: none;
}

@media (max-width: 549px) {
    .product-info .product-title {
        font-size: 22px;
    }

    .dc-sp-main-price,
    .dc-sp-main-price .amount,
    .dc-sp-main-price .woocommerce-Price-amount {
        font-size: 24px;
    }

    .dc-sp-service-meta {
        gap: 10px;
    }

    .dc-sp-variation-card {
        width: 100%;
    }

    .dc-sp-student-price-line {
        display: flex;
        width: 100%;
    }
}
.pd-sum-ct .quantity{
	    display: flex;
    justify-content: space-between;
    border: 1px solid #ced4da;
    border-radius: 4px;
}
.pd-sum-ct .quantity .button {
	box-shadow: none !important;
	border: none !important;
	background: none !important;
	padding: 0 15px;
}
.pd-sum-ct .quantity input {
	box-shadow: none !important;
	border: none !important;
	background: none !important;
}
.pd-sum-ct .single_add_to_cart_button {
    width: calc(100% - 140px);
    box-shadow: none;
    border-radius: 4px;
}

.single-pd-gal .product-thumbnails .flickity-slider a {
	border-radius: 8px;
	background: #f9f9f9 !important;
	border: 1px solid #ddd;
}
.single-pd-gal .product-thumbnails .flickity-slider a img {
	opacity: 1;
}
.single-pd-gal .product-thumbnails .is-nav-selected a, .single-pd-gal .product-thumbnails .is-nav-selected a:hover {
	border: 1px solid var(--primary-color);
}
.single-pd-gal .product-thumbnails .is-nav-selected a img, .single-pd-gal .product-thumbnails a:hover img {
	transform: none !important;
	border: none !important;
}
.single-product-commit {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #ffb58f;
    border-radius: 8px;
    background: linear-gradient(180deg, #fff4eb 0.31%, #fffbf8 21.43%, #ffffff 100.31%);
    font-size: 14px;
    line-height: 1.05rem;
}

.single-product-commit__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.single-product-commit__title span {
    color: #222222;
    font-size: 14px;
    line-height: 1.313rem;
    font-weight: 500;
}

.single-product-commit__title strong {
    color: #ff6722;
    font-weight: 700;
}

.single-product-commit__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.single-product-commit__item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    padding: 5px 11px;
    border: 1px solid #eeeeee;
    border-radius: 999px;
    background: #ffffff;
}

.single-product-commit__item-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    color: #111111;
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: -0.01rem;
}

.single-product-commit__item-inner img {
    max-width: 100%;
    height: auto;
    flex-shrink: 0;
}

.single-product-commit__item-inner strong {
    color: #ff6722;
    font-weight: 700;
}

.single-product-commit__item-inner a {
    color: #ff6722;
    text-decoration: none;
}

.single-product-commit__item-inner a:hover {
    text-decoration: underline;
}

@media (min-width: 640px) {
    .single-product-commit {
        padding: 12px;
    }

    .single-product-commit__list {
        flex-direction: row;
        flex-wrap: wrap;
        column-gap: 8px;
        row-gap: 4px;
    }

    .single-product-commit__item {
        width: fit-content;
    }

    .single-product-commit__item-inner {
        font-size: 12px;
        line-height: 22px;
    }
}