body {
    font-family: roboto;
    font-size: 16px;
    color: #fbc250;
    margin: 0;
    padding: 0;
    background-color: #281214;
    overflow-x: hidden
}

h1,h2,h3,h4,h5,h6 {
    font-family: roboto;
    font-weight: 700;
    margin: 0 0 15px
}

h1 {
    font-size: 28px
}

h2 {
    font-size: 25px
}

h3 {
    font-size: 23px
}

h4 {
    font-size: 16px
}

a {
    color: #ffe0a3;
    text-decoration: none;
}

a:hover,a:focus {
    outline: none
}

p {
    margin: 0 0 20px
}

ul,ol {
    margin: 0;
    padding: 0;
    list-style: none
}

ul.list-style,ol.list-style {
    padding-left: 15px;
    margin-bottom: 10px
}

ul.list-style {
    list-style-type: disc
}

ol.list-style {
    list-style-type: decimal
}

blockquote.blockquote {
    position: relative;
    border-left: 0;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 20px
}

blockquote.blockquote:before {
    content: "``";
    font-family: roboto;
    display: block;
    position: absolute;
    left: -5px;
    top: 5px;
    font-size: 240px;
    line-height: 200px;
    color: #eceef2;
    letter-spacing: -30px;
    z-index: -2
}

figure.figure-img {
    margin-bottom: 20px
}

figure.figure-img figcaption {
    padding-top: 5px;
    font-size: 13px;
    font-weight: 600
}

.input {
    height: 40px;
    border: 2px solid #eceef2;
    width: 100%;
    padding: 0 15px;
    -webkit-transition: .2s border;
    transition: .2s border
}

.input:focus {
    border-color: #3d455c
}

textarea.input {
    height: 90px;
    padding: 15px
}

.primary-button {
    padding: 9px 45px;
    border: none;
    background-color: #212631;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    color: #fff;
    -webkit-transition: .2s opacity;
    transition: .2s opacity
}

.primary-button:hover,.primary-button:focus {
    color: #fff;
    opacity: .9
}

.section {
    padding-top: 20px
}

.section.section-grey {
    background-color: #fbfbfd;
    border-bottom: 1px solid #eceef2;
    border-top: 1px solid #eceef2
}
.section .section-title h2 {
    text-transform: capitalize;
    font-size: 18px;
    border-bottom: 2px solid #cccccc30;
    padding: 0 5px;
    padding-bottom: 3px;
}

.section-row {
    margin-bottom: 40px
}

#nav {
    height: 70px
}

#nav:after {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(33,38,49,.5);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .2s all;
    transition: .2s all
}

#nav.shadow-active:after {
    opacity: 1;
    visibility: visible
}

#nav-fixed {
    positionx: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 90;
    background: linear-gradient(90deg, #E5A909 0, #FEC93F 25%, #E5A909 50%, #fec93f 75%, #E5A909 100% 100%);
    /* -webkit-box-shadow: 0 -1px 0 0 #eceef2 inset; */
    /* box-shadow: 0 -1px 0 0 #eceef2 inset; */
}

@-webkit-keyframes slide-down {
    from {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    to {
        -webkit-transform: translateY(0%);
        transform: translateY(0%)
    }
}

@keyframes slide-down {
    from {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    to {
        -webkit-transform: translateY(0%);
        transform: translateY(0%)
    }
}

@-webkit-keyframes slide-up {
    from {
        -webkit-transform: translateY(0%);
        transform: translateY(0%)
    }

    to {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

@keyframes slide-up {
    from {
        -webkit-transform: translateY(0%);
        transform: translateY(0%)
    }

    to {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

#nav .container {
    position: relative;
    padding: 0 10px;
}

.nav-logo {
    float: left
}

.nav-logo .logo {
    line-height: 70px;
    display: inline-block
}

.nav-logo .logo>img {
    max-height: 50px;
}

.nav-menu {
    margin-left: 20px
}

.nav-menu li a {
    position: relative;
    padding: 20px 20px;
    text-transform: capitalize;
    transition: .2s color;
    color: #000;
    font-size: 18px;
    font-weight: bold;
}

.nav-menu li:first-child a {
}

.nav-menu li a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    -webkit-transition: .2s width;
    transition: .2s width
}

.nav-menu li.cat-1 a:after {
    background-color: #4bb92f
}

.nav-menu li.cat-2 a:after {
    background-color: #ff8700
}

.nav-menu li.cat-3 a:after {
    background-color: #0078ff
}

.nav-menu li.cat-4 a:after {
    background-color: #8d00ff
}

.nav-menu li a:hover,.nav-menu li a:focus {
    background-color: transparent;
    text-decoration: none
}

.nav-menu li.cat-1 a:hover,.nav-menu li.cat-1 a:focus {
    color: #4bb92f
}

.nav-menu li.cat-2 a:hover,.nav-menu li.cat-2 a:focus {
    color: #ff8700
}

.nav-menu li.cat-3 a:hover,.nav-menu li.cat-3 a:focus {
    color: #0078ff
}

.nav-menu li.cat-4 a:hover,.nav-menu li.cat-4 a:focus {
    color: #8d00ff
}

.nav-btns {
    float: right
}

.nav-btns>button {
    padding: 15px 10px;
    border: none;
    line-height: 20px;
    background: 0 0;
    color: #000;
}

.nav-btns .search-form {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s all;
    transition: .3s all
}

.nav-btns .search-form.active {
    opacity: 1;
    visibility: visible
}

.nav-btns .search-form .search-input {
    height: 100%;
    width: 100%;
    border: none;
    background: #fff;
    padding: 0 20px;
    font-weight: 600
}

.nav-btns .search-form .search-close {
    position: absolute;
    top: 50%;
    right: 35px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border: none;
    background: 0 0;
    line-height: 20px;
    color: #212631;
    font-size: 22px;
    padding: 0
}

#nav-aside {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
    max-width: 360px;
    width: 100%;
    padding: 80px 20px 20px 20px;
    overflow-y: scroll;
    z-index: 99;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: .3s all;
    transition: .3s all
}

#nav-aside.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%)
}

.nav-aside-menu li a {
    font-family: roboto;
    font-weight: 700;
    font-size: 23px
}

.nav-aside-social li {
    display: inline-block
}

.nav-aside-social li>a {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #212631;
    color: #fff;
    border-radius: 2px;
    margin-right: 5px;
    -webkit-transition: .2s opacity;
    transition: .2s opacity
}

.nav-aside-social li>a:hover,.nav-aside-social li>a:focus {
    opacity: .9
}

.nav-aside-close {
    position: absolute;
    top: 0;
    right: 0;
    height: 70px;
    width: 70px;
    line-height: 70px;
    text-align: center;
    background-color: transparent;
    color: #212631;
    border: none;
    font-size: 22px;
    border-radius: 50%;
    padding: 0
}

.page-header {
    position: relative;
    margin: 0;
}

.page-header .background-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-size: cover
}

.page-header .background-img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to top, rgb(21 21 21 / 93%) 0%, #00000033 100%);
}

#post-header.page-header {
    padding: 100px 0;
}

.page-header h1 {
    text-transform: capitalize;
    margin-bottom: 0
}

#post-header.page-header h1 {
    color: #fff
}

.page-header .post-meta {
    margin: 15px 0
}

.page-header .post-meta .post-date {
    color: #eceef2
}

.page-header .page-header-breadcrumb {
    margin: 15px 0
}

.page-header .page-header-breadcrumb li {
    display: inline-block
}

.page-header .page-header-breadcrumb li,.page-header .page-header-breadcrumb li a {
    font-size: 13px;
    text-transform: capitalize;
    color: #a7b3c6
}

.page-header .page-header-breadcrumb li a {
    -webkit-transition: .2s color;
    transition: .2s color
}

.page-header .page-header-breadcrumb li a:hover,.page-header .page-header-breadcrumb li a:focus {
    color: #0b0f28;
    text-decoration: none
}

.page-header .page-header-breadcrumb li+li:before {
    content: '/';
    display: inline-block;
    margin: 0 10px
}

.post {
    margin-bottom: 20px
}

.post .post-img {
    display: block;
    -webkit-transition: .2s opacity;
    transition: .2s opacity
}

.post .post-img:hover,.post .post-img:focus {
    opacity: .9
}

.post .post-img>img {
    width: 100%
}

.post .post-meta {
    margin-top: 15px;
    margin-bottom: 10px;
	color: #9d9898
}

.post-meta .post-category {
    font-size: 13px;
    text-transform: uppercase;
    padding: 3px 10px;
    font-weight: 600;
    border-radius: 2px;
    margin-right: 15px;
    color: #fff;
    background-color: #212631;
    -webkit-transition: .2s opacity;
    transition: .2s opacity
}

.post-meta .post-category:hover,.post-meta .post-category:focus {
    text-decoration: none;
    opacity: .9
}

.post-meta .post-category.cat-1 {
    background-color: #e61e1e
}

.post-meta .post-category.cat-2 {
    background-color: #0c729899;
}

.post-meta .post-category.cat-3 {
    background-color: #8d00ff
}

.post-meta .post-category.cat-4 {
    background-color: #0078ff
}

.post-meta .post-date {
    font-size: 13px;
    font-weight: 600
}

.post .post-title {
    font-size: 18px;
    line-height: 1.4;
}

.post-tags li {
    display: inline-block;
    margin-right: 3px;
    margin-bottom: 5px
}

.post-tags li a {
    display: block;
    color: #fff;
    background-color: #212631;
    padding: 3px 10px;
    font-weight: 600;
    border-radius: 2px;
    -webkit-transition: .2s opacity;
    transition: .2s opacity
}

.post.post-thumb {
    position: relative
}

.post.post-thumb .post-img:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: -webkit-gradient(linear,left bottom,left top,from(rgba(33,38,49,0.3)),to(transparent));
    background: linear-gradient(to top,rgba(33,38,49,0.3) 0%,transparent 100%)
}

.post.post-thumb .post-body {
    position: absolute;
    bottom: 0;
    padding: 20px 15px
}

.post.post-thumb .post-meta .post-date {
    color: #eceef2
}

.post.post-thumb .post-title {
    font-size: 22px
}

.post.post-thumb .post-title>a {
    color: #fff
}

.post.post-widget:after {
    content: '';
    display: block;
    clear: both
}

.post.post-widget .post-img {
    float: left;
    margin-right: 10px;
}

.post.post-widget .post-img img {
    width: 100%;
    max-width: 120px;
}

.post.post-widget .post-title {
    font-size: 15px;
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.post.post-widget {
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.post.post-row:after {
    content: '';
    display: block;
    clear: both
}

.post.post-row .post-img {
    width: 40%;
    float: left
}

.post.post-row .post-body {
    margin-left: calc(40% + 15px);
}

.post.post-row .post-meta {
    margin-top: 0
}

.post.post-row p {
    font-weight: normal;
    font-size: 14px
}

.post.post-row .post-title {
    margin-bottom: 10px;
}

.sticky-container {
    position: relative;
    padding-left: 80px
}

.sticky-container .sticky-shares {
    position: absolute;
    top: 0;
    left: 0
}

.sticky-shares a {
    display: block;
    margin-bottom: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #fbfbfd;
    color: #a7b3c6;
    border: 1px solid #eceef2;
    -webkit-transition: .2s all;
    transition: .2s all
}

.sticky-shares a:hover {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3)
}

.sticky-shares a.share-facebook:hover {
    color: #3b5998;
    border-color: #3b5998
}

.sticky-shares a.share-twitter:hover {
    color: #55acee;
    border-color: #55acee
}

.sticky-shares a.share-google-plus:hover {
    color: #dd4b39;
    border-color: #dd4b39
}

.sticky-shares a.share-pinterest:hover {
    color: red;
    border-color: red
}

.sticky-shares a.share-linkedin:hover {
    color: #007bb5;
    border-color: #007bb5
}

.post-author .media .media-left {
    padding-right: 40px
}

.post-author .media .media-left .media-object {
    width: 120px;
    border-radius: 50%
}

.post-author .author-social {
    margin-top: 15px
}

.post-author .author-social li {
    display: inline-block;
    margin-right: 5px
}

.post-author .author-social li>a {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #a7b3c6;
    color: #fff;
    border-radius: 2px;
    -webkit-transition: .2s opacity;
    transition: .2s opacity
}

.post-author .author-social li>a:hover,.post-author .author-social li>a:focus {
    color: #fff;
    opacity: .9
}

.post-comments .media {
    padding-top: 15px;
    border-top: 1px solid #eceef2
}

.post-comments .media:nth-child(1) {
    padding-top: 0;
    border-top: none
}

.post-comments .media .media-left {
    padding-right: 15px
}

.post-comments .media .media-left .media-object {
    width: 70px;
    border-radius: 50%
}

.post-comments .media .media-body .media-heading h4 {
    text-transform: capitalize
}

.post-comments .media .media-body .media-heading .time {
    font-size: 13px;
    margin-right: 15px;
    color: #a7b3c6
}

.post-comments .media .media-body .media-heading .reply {
    font-size: 13px;
    color: #a7b3c6;
    -webkit-transition: .2s color;
    transition: .2s color
}

.post-comments .media .media-body .media-heading .reply:hover,.post-comments .media .media-body .media-heading .reply:focus {
    color: #212631;
    text-decoration: none
}

.aside-widget {
    margin-bottom: 40px
}

.category-widget ul li {
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid #eceef2
}

.category-widget ul li+li {
    margin-top: 10px
}

.category-widget ul li>a {
    display: block;
    -webkit-transition: .2s color;
    transition: .2s color
}

.category-widget ul li>a>span {
    float: right;
    color: #fff;
    background-color: #212631;
    padding: 0 5px;
    font-weight: 600;
    border-radius: 2px
}

.category-widget ul li>a.cat-1>span {
    background-color: #4bb92f
}

.category-widget ul li>a.cat-2>span {
    background-color: #ff8700
}

.category-widget ul li>a.cat-3>span {
    background-color: #8d00ff
}

.category-widget ul li>a.cat-4>span {
    background-color: #0078ff
}

.category-widget ul li>a:hover,.category-widget ul li>a:focus {
    text-decoration: none
}

.category-widget ul li>a.cat-1:hover,.category-widget ul li>a.cat-1:focus {
    color: #4bb92f
}

.category-widget ul li>a.cat-2:hover,.category-widget ul li>a.cat-2:focus {
    color: #ff8700
}

.category-widget ul li>a.cat-3:hover,.category-widget ul li>a.cat-3:focus {
    color: #0078ff
}

.category-widget ul li>a.cat-4:hover,.category-widget ul li>a.cat-4:focus {
    color: #8d00ff
}

.tags-widget ul li {
    display: inline-block;
    margin-right: 3px;
    margin-bottom: 5px
}

.tags-widget ul li a {
    display: block;
    padding: 3px 10px;
    font-weight: 600;
    border-radius: 2px;
    -webkit-transition: .2s opacity;
    transition: .2s opacity
}

.tags-widget ul li a:hover,.tags-widget ul li a:focus {
    opacity: .9;
    color: #fff;
    text-decoration: none
}

.archive-widget ul li {
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid #eceef2
}

.archive-widget ul li+li {
    margin-top: 10px
}

.archive-widget ul li>a {
    display: block
}

#footer {
    padding-bottom: 40px;
    background: #21202080;
}

#footer .container {
    padding-top: 40px;
    border-top: 1px solid #f4f4f9;
    font-weight: normal;
    font-size: 14px;
    text-align: justify;
}

.footer-widget {
    margin-bottom: 40px
}

.footer-widget .footer-title {
    margin-bottom: 40px;
    text-transform: capitalize;
    font-size: 18px
}

.footer-widget a {
    color: #a7b3c6;
    -webkit-transition: .2s color;
    transition: .2s color
}

.footer-widget a:hover,.footer-widget a:focus {
    text-decoration: none;
    color: #212631
}

.footer-logo {
    margin-bottom: 40px
}

.footer-nav li {
    display: inline-block;
    margin-right: 15px
}

.footer-links li+li {
    margin-top: 5px
}

.footer-copyright {
    margin-top: 20px;
    color: #a7b3c6;
    font-size: 13px
}

.footer-newsletter form {
    position: relative
}

.footer-newsletter form>input.input {
    padding-right: 55px
}

.footer-newsletter form>.newsletter-btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 40px;
    line-height: 40px;
    width: 40px;
    text-align: center;
    color: #a7b3c6;
    background: 0 0;
    border: none;
    border-radius: 0 2px 2px 0;
    -webkit-transition: .2s opacity;
    transition: .2s opacity
}

.footer-newsletter form>.newsletter-btn:hover {
    opacity: .9
}

.footer-social {
    margin-top: 20px
}

.footer-social li {
    display: inline-block;
    margin-right: 5px
}

.footer-social li>a {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #a7b3c6;
    color: #fff;
    border-radius: 2px;
    -webkit-transition: .2s opacity;
    transition: .2s opacity
}

.footer-social li>a:hover,.footer-social li>a:focus {
    color: #fff;
    opacity: .9
}

@media only screen and (max-width: 991px) {
    #nav .nav-menu {
        display:none
    }
}

@media only screen and (max-width: 767px) {
    .page-header h1 {
        font-size:28px
    }

    .post.post-row .post-body {
    margin-left: calc(40% + 10px);
    }

    .post.post-row .post-body p {
        display: none
    }
	.post.post-row .post-title {
		font-size: 17px;
		line-height: 1.3;
		font-weight: 500;
	}
	.post.post-row .post-meta {
		margin-top: 15px;
		margin-bottom: 3px;
	}
	.post.post-row .post-meta .post-category {
		margin-right: 5px;
	}
}
#menu-menu, #menu-menu-1 {
	li {
		display: block;
		padding-bottom: 10px;
		border-bottom: 1px solid #eceef2
	}

	li+li {
		margin-top: 10px
	}

	li>a {
		display: block;
		-webkit-transition: .2s color;
		transition: .2s color
	}

	li>a>span {
		float: right;
		color: #fff;
		background-color: #212631;
		padding: 0 5px;
		font-weight: 600;
		border-radius: 2px
	}

}
@media (max-width: 768px) {
    .mmenu {
        display:none
    }
}
.admin-bar .nav-aside-close {
    top: 32px;
}
.post-au {
    color: #858282;
    font-size: 14px;
    margin-right: 12px;
    font-weight: 500;
}
.mmenu {
    font-size: 15px;
}
@media screen and (max-width: 782px) {
    .topbai {
        margin-bottom: 0;
    }
}

.ms_products {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ms_product {
  width: 32%;
  box-sizing: border-box;
    border-radius: 8px;
    overflow: hidden;
}

.image-wrapper {
  position: relative;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  /* display: block; */
  /* object-fit: cover; */ /* cắt tràn nếu cần */
}

.title-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: bold;
  z-index: 1;
  max-width: 100%;
  box-sizing: border-box;
}

.info {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #291900;
  padding: 15px;
  font-size: 14px;
  font-weight: bold;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  text-align: right;
}

.category {
  font-size: 16px;
  color: #f9f9f9;
  margin: 0 0 4px;
}

.price {
  font-size: 26px;
  font-weight: bold;
  color: #fd3737;
  margin: 0;
  margin-top: 10px;
}

@media (max-width: 992px) {
  .ms_product {
    width: 48%;
  }
}

@media (max-width: 576px) {
  .ms_product {
    width: 100%;
  }
}

.blog-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card {
  width: 32%;
  background: #1e1e1e;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card-img {
  position: relative;
}

.card-img img {
  width: 100%;
  display: block;
}

.card-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #068a0b;
  color: #fff;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 20px;
}

.card-content {
  padding: 16px;
}

.card-date {
  font-size: 14px;
  color: #aaaaaa;
  margin: 0 0 10px;
}

.card-title a {
  font-size: 18px;
  font-weight: bold;
  color: #4caf50;
  text-decoration: none;
}

.card-title a:hover {
  color: #81c784;
  text-decoration: underline;
}

.card-desc {
  font-size: 15px;
  color: #cccccc;
  margin-bottom: 16px;
}

.card-link {
  font-weight: bold;
  color: #4caf50;
  text-decoration: none;
}

.card-link:hover {
  color: #81c784;
  text-decoration: underline;
}

@media (max-width: 992px) {
  .card {
    width: 48%;
  }
}

@media (max-width: 576px) {
  .card {
    width: 100%;
  }
}
.testimonial-section {
  margin-top: 60px;
  padding: 20px 0;
  color: #e0e0e0;
  text-align: center;
}

.testimonial-card {
  background: #4c31016e;
  padding: 30px;
  border-radius: 12px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.testimonial-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.testimonial-name {
  color: #4caf50;
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 4px;
}

.testimonial-rating {
  color: #ffeb3b;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
}
.testimonial-left {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 12px;
}
/* Swiper navigation style */
.swiper-button-next,
.swiper-button-prev {
  color: #4caf50;
}

.swiper-pagination-bullet {
  background: #4caf50;
}


.staff-section {
  margin-top: 60px;
  padding: 20px 0;
  color: #e0e0e0;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #ffffff;
}

.staff-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.staff-card {
  background: #1e1e1e;
  border-radius: 12px;
  padding: 20px;
  width: 32%;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.staff-card:hover {
  transform: translateY(-5px);
}

.staff-img img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.staff-name {
  font-size: 18px;
  font-weight: bold;
  color: #4caf50;
  margin: 10px 0 4px;
}

.staff-role {
  font-size: 15px;
  color: #aaa;
  margin-bottom: 12px;
}

.staff-link {
  color: #4caf50;
  font-weight: bold;
  text-decoration: none;
}

.staff-link:hover {
  color: #81c784;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .staff-card {
    width: 48%;
  }
}

@media (max-width: 576px) {
  .staff-card {
    width: 100%;
  }
}


.massage-card {
  background-color: #2c1111;
  color: #f9c93d;
  border: 2px solid #f9c93d;
  border-radius: 10px;
  padding: 30px 0;
  width: 300px;
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0 auto;

	h2 {
	  font-size: 24px;
	  margin-bottom: 10px;
	}

	.price {
	  font-size: 22px;
	  font-weight: bold;
	  margin: 10px 0;
	  color: #fff;
	}

	.btn-book {
	  background-color: #8ec36f;
	  color: #fff;
	  border: none;
	  padding: 12px 20px;
	  font-weight: bold;
	  border-radius: 10px;
	  margin: 20px 0;
	  cursor: pointer;
	  font-size: 14px;
	}

	h3 {
	  font-size: 20px;
	  color: #ffc107;
	  margin: 20px 0 10px;
	}

	.description-title {
	  color: #f6d56a;
	  font-weight: bold;
	  margin-bottom: 10px;
	}

	.service-list {
	  list-style: none;
	  padding: 0;
	  margin: 0 0 15px;
	}

	.service-list li {
	  margin: 6px 0;
	  color: #f6d56a;
	}

	.note {
	  font-size: 13px;
	  color: #f9c93d;
	}

}
header, nav {
a {
  text-decoration: none;
  color: #000;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
}

/* Top bar */
.top-bar {
  background: #050505;
  color: white;
  font-size: 14px;
}
.top-bar-inner {
  max-width: 1200px;
  margin: auto;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar .social-icons a {
  color: white;
  font-size: 16px;
}
.social-icons {
    display: flex;
    gap: 18px;
}
#post-header a {
    color: #f5bc4e;
}
.main-nav {
    background: #ffcc00;
    border-bottom: 1px solid #a58505;
    position: relative;
}
.home .main-nav {
    margin-bottom: 15px;
}
.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.logo img {
	height: 70px;
	margin: -10px 0;
}
.menu {
  display: flex;
  gap: 25px;
  font-weight: bold;
  flex-wrap: wrap;
}
.menu li a {
  color: #000;
    font-size: 17px;
}
.menu li.highlight a {
    border-bottom: 2px solid;
}
.hotline {
  background: #068a0b;
  color: white;
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #000;
}

@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    width: 100%;
    display: none;
  }
  .menu.active {
    display: flex;
    margin: 0 -20px;
    border-top: 1px solid #fffcfc29;
    margin-top: 20px;
    padding: 20px;
    box-sizing: content-box;
  }
  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 0;
    line-height: 70px;
  }
  .hotline {
    display: none;;
  }
}
.tab-header {
  background-color: #b3193b; /* Màu đỏ đậm */
  color: white;
  font-size: 22px;
  font-weight: bold;
  padding: 15px 30px;
  height: 60px;
  line-height: 30px;
  position: relative;
  clip-path: path("M0 0 H calc(100% - 100px) Q 100% 50% calc(100% - 100px) 100% H 0 Z");
}


.tab-title {
  position: relative;
  z-index: 2;
}

.tab-header::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 120px;
  height: 100%;
  background: #f4f4f4; /* Nền nội dung */
  border-top-right-radius: 5px;
  clip-path: path("M0,0 Q80,50 0,100 L120,100 L120,0 Z"); /* Đường uốn cong */
  z-index: 1;
}

/* Vùng chứa tổng thể slider */
.topslide-section {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Swiper container */
.topslide-swiper {
  width: 100%;
  height: auto;
}

/* Swiper slide */
.topslide-swiper .swiper-slide {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hình ảnh trong slide */
.topslide-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

/* Swiper pagination */
.topslides-section {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.topslide-swiper {
  width: 100%;
}

.topslide-swiper .swiper-wrapper {
  display: flex;
}

.topslide-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

.topslide-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.topslide-swiper .swiper-button-next,
.topslide-swiper .swiper-button-prev {
  color: white;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.3s;
}

.topslide-swiper .swiper-button-next:hover,
.topslide-swiper .swiper-button-prev:hover {
  background: rgba(255, 215, 0, 0.8); /* màu vàng nhạt khi hover */
  color: black;
}

/* Thu nhỏ icon mũi tên bên trong */
.topslide-swiper .swiper-button-next::after,
.topslide-swiper .swiper-button-prev::after {
  font-size: 18px;
}
.swipermb  {
  display: none !important;
}
/* Responsive adjustments */
@media (max-width: 480px) {
.swiperpc  {
  display: none !important;
}
.swipermb  {
  display: block !important;
}
.container {
    padding-right: 12px;
    padding-left: 12px;
}
}
.single h1 {
    font-size: 32px;
    margin-top: 20px;
    margin-bottom: 12px;
}
a.ms_read_more {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  display: block;
  text-align: right;
  margin: 20px 10px;
  float: right;
}
