@font-face {
    font-family: 'MonaSans-Expanded-Bold';
    src: url('../fonts/MonaSans_Expanded-Bold.ttf');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'MonaSans-Expanded-Medium';
    src: url('../fonts/MonaSans_Expanded-Medium.ttf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'MonaSans-Expanded';
    src: url('../fonts/MonaSans_Expanded-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: "Mona Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #262626;
    font-size: 16px;
    line-height: 24px;
}

img, a {
    transition: all 0.5s ease-in-out;
}
img {
    max-width: 100%;
}

a:hover {

    text-decoration: none;

}

.container-fluid {

    padding: 0 30px;

}

ul.navbar {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 0;
    padding-left: 0;
}
ul.navbar > li {
    list-style: none;
    position: relative;
}
nav.navbar {
    padding: 0;
}
ul.navbar > li > a {
    font-size: 16px;
    line-height: 24px;
    color: #262626;
}
ul.navbar > li > a:hover, ul.navbar > li > ul > li a:hover {
    color: #f2dc99;
}
ul.navbar > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99;
    box-shadow: 0px 6px 24px -16px #1212123D;
    background: #fafafa;
    padding: 8px 16px;
    list-style: none;
    min-width: 240px;
    display: none;
}
ul.navbar > li:hover > ul {
    display: block;
}
ul.navbar > li > ul > li a {
    display: block;
    border-bottom: 1px solid #E0E0E0;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #363636;
    padding: 10px 0;
    position: relative;
}
ul.navbar > li > ul > li a::before {
    content: url('../images/arrow-right-line-xam.png');
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 90;
    height: 16px;
}
ul.navbar > li > ul > li:last-child a {
    border: 0;
}
.navbar-nav {

    flex-direction: row;

}

.navbar-nav .nav-item {

    margin-right: 1rem;

}

.navbar-brand {

    font-size: 36px;

    line-height: 40px;

    color: #000000;

    padding: 0;

    font-family: 'MonaSans-Expanded-Medium';

}
.navbar-brand:hover {
    color: #000
}
.navbar-brand strong {

    font-family: 'MonaSans-Expanded-Bold';

}
.home-cart {
    position: relative;
}
.home-cart a {
    color: #262626;
    font-size: 16px;
    line-height: 24px;
}
.home-cart span.cart-count {

    display: inline-block;

    margin-left: 8px;

    border: 1px solid #262626;

    border-radius: 50%;

    text-align: center;

    line-height: 24px;

    font-size: 16px;

    font-weight: 600;

    padding: 4px 11px;

}
.home-cart .mini-cart-wrapper {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 300px;
    z-index: 99;
    padding: 15px;
}
.home-cart .mini-cart-wrapper > ul {
    padding: 0;
}
.home-cart .mini-cart-wrapper p {
    margin: 0;
}

.home-cart:hover .mini-cart-wrapper {
    display: block;
}
/* List item */
.woocommerce-mini-cart-item {
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    flex-wrap: wrap;
}

.woocommerce-mini-cart-item:last-child {
    border-bottom: none;
}

/* Product image */
.woocommerce-mini-cart-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ddd;
}

/* Product name link */
.woocommerce-mini-cart-item a.remove {
    width: 15px;
}
.woocommerce-mini-cart-item a:not(.remove) {
    width: 70%;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.woocommerce-mini-cart-item a:not(.remove):hover {
    color: #262626;
}
.woocommerce-mini-cart-item a.mini-pro-image {
    width: calc(30% - 15px);
}
/* Quantity + price */
.woocommerce-mini-cart-item .quantity {
    font-size: 13px;
    color: #363636;
    white-space: nowrap;
    font-weight: 400;
}

.woocommerce-mini-cart-item .remove:hover {
    color: #ff4d4f;
}

/* Total line */
.woocommerce-mini-cart__total {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 15px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid #e5e5e5;
}

/* Buttons */
.woocommerce-mini-cart__buttons {
    margin-top: 20px!important;
}

.woocommerce-mini-cart__buttons .button {
    display: block !important;
    text-align: center;
    background: #f2dc99!important;
    color: #000 !important;
    padding: 15px 0 !important;
    margin: 0 0 5px 0 !important;
    border-radius: 0 !important;
    font-size: 14px !important;
    text-transform: uppercase;
}
.woocommerce-mini-cart__buttons .button.checkout {
    background: #363636!important;
    color: #fff !important;
}
.woocommerce-mini-cart__buttons .checkout {
    background: #28a745;
}

.woocommerce-mini-cart__buttons .button:hover {
    opacity: 0.9;
}
#top-bar {

    background: #262626;

    padding: 12px 0;

}

#top-bar p {

    font-size: 12px;

    line-height: 18px;

    color: #FCFBFE;

    margin: 0;

}

#top-bar p a {

    font-weight: 600;

    color: #FCFBFE;

}

#top-bar i {

    color: #FAFAFA;

    font-size: 14px;

}

#header {

    padding: 24px 0;

}

#footer {

    background: #262626;

    padding-top: 60px;

}
.top-footer {
    padding-bottom: 48px;
    border-bottom: 1px #FAFAFA solid;
}
.top-footer .col-infomation a.logo {

    font-family: 'MonaSans-Expanded-Medium';

    font-size: 36px;

    line-height: 40px;

    color: #fafafa;

}

.top-footer .col-infomation a.logo strong {

    font-family: 'MonaSans-Expanded-Bold';

}

.top-footer .col-infomation .description {

    line-height: 24px;

    color: #FAFAFA;

    font-style: italic;

    margin: 16px 0 32px 0;

}

.top-footer .col-infomation ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.top-footer .col-infomation ul li {
    list-style: none;
    margin: 0;
}
.top-footer .col-menu p, .top-footer .col-contact > p {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    margin: 0 0 16px 0;
}
.top-footer .col-menu ul {
    padding: 0;
    margin: 0;
}
.top-footer .col-menu ul li {
    margin: 0 0 12px 0;
}
.top-footer .col-menu ul li a {
    font-size: 16px;
    line-height: 24px;
    color: #FAFAFA;
    display: block;
}
.top-footer .col-contact .col-contact-content p {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 8px 0;
    color: #FAFAFA;
}
.top-footer .col-contact .col-contact-content ul {
    padding: 0;
    margin: 0 0 16px 0;
}
.top-footer .col-contact .col-contact-content ul li {
    list-style: none;
    color: #FAFAFA;
    line-height: 24px;
    margin: 0 0 4px 0;
    padding: 0 0 0 28px;
    background: url('../images/building-fill.png') no-repeat left center;
}
.top-footer .col-contact .col-contact-content ul li:last-child {
    background: url('../images/smartphone-fill.png') no-repeat left center;
}
.bottom-footer {
    padding: 16px 0;
}
.bottom-footer .copyright {
    color: #FAFAFA;
    margin: 0;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
}
.bottom-footer .payment-logos ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px;
    margin: 0;
    padding: 0;
}
.bottom-footer .payment-logos ul li {
    margin: 0;
}
.product-page h1 {
    color: #000000;
    font-weight: 400;
    font-size: 60px;
    line-height: 72px;
    margin: 48px 0 16px 0;
}
.product-page ul.product-categories {
    margin: 0 0 60px 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 32px;
}
.product-page ul.product-categories li {
    list-style: none;
}
.product-page ul.product-categories li a {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #afafaf;
}
.product-page ul.product-categories li a:hover, .product-page ul.product-categories li.active a {
    border-bottom: 1px #262626 solid;
    color: #262626;
}
.product-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 0 64px 0;
}
.product-item, .related-project .project-item {
    padding: 24px 32px;
    border-right: 1px solid #363636;
    border-bottom: 1px solid #363636;
}
.product-item:nth-child(-n+4), .related-project .project-item:nth-child(-n+4) {
    border-top: 1px solid #363636;
}
.product-item:nth-child(4n+1), .related-project .project-item:nth-child(4n+1) {
    border-left: 1px solid #363636;
}
/* .product-card:nth-child(4n) {
    border-left: none;
}
.product-item:nth-last-child(-n+4) {
    border-bottom: none;
} */
.product-item .product-image {
    position: relative;
}
.product-item .product-image img {
    width: 100%;
    transition: opacity 0.4s ease;
    display: block;
}
.product-item .product-image img.hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
}
.product-item .product-image:hover img.hover-image {
    opacity: 1;
}
.product-item h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
}
.product-item h3 a {
    color: #262626;
}
.product-item h3 a:hover {
    color: #f2dc99;
}
.product-item .product-color-price {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}
.product-item .product-color-price .product-color {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.product-item .product-color-price .product-color .color-swatch {
    width: 24px;
    height: 24px;
}
.product-item .product-color-price .product-price {
    width: 50%;
    text-align: right;
    color: #262626;
    line-height: 24px;
    font-weight: 600;
}
.view-more-product, .view-more-project, .view-all-project {
    margin: 0 0 64px 0;
}
.view-more-product a, .view-more-project a, .view-all-project a {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    background: #262626;
}
.view-more-product a:hover, .view-more-project a:hover, .view-all-project a:hover {
    background: #f2dc99;
    color: #262626;
}
.view-more-product a i, .view-more-project a i {
    font-size: 20px;
    margin: 0 0 0 8px;
}
.featured-one-post {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    grid-template-columns: 50% 50%;
}
.featured-one-post.no-single {
    display: block;
    padding: 20px 0 80px 0;
}
.featured-one-post .post-image {
    overflow: hidden;
}
.featured-one-post .post-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.featured-one-post .post-content {
    border: 1px #363636 solid;
    padding: 60px;
}
.featured-one-post.no-single .post-content {
    border: 0;
    padding: 0;
}
.featured-one-post .post-content h3, .featured-one-post .post-content h4 {
    margin: 0 0 24px 0;
}
.featured-one-post.no-single .post-content h3, .featured-one-post.no-single .post-content h4 {
    margin: 0 0 24px 0;
    font-size: 24px;
    line-height: 24px;
}
.featured-one-post .post-content h3 a, .featured-one-post .post-content h4 {
    font-weight: 400;
    font-size: 38px;
    line-height: 46px;
    color: #000;
}
.featured-one-post.no-single .post-content h3 a, .featured-one-post.no-single .post-content h4 {
    font-weight: 400;
    font-size: 24px;
    line-height: 24px;
    color: #000;
}
.featured-one-post .post-content .short-description {
    color: #363636;
    margin: 0 0 24px 0;
}
.featured-one-post .post-content .view-detail a {
    color: #868686;
    font-weight: 400;
    font-style: italic;
    font-size: 14px;
    line-height: 20px;
}
.featured-one-post .post-content .view-detail a:hover {
    color: #f2dc99;
}
.project-page {
    margin: 80px 0 0 0;
}
.max-912 {
    margin: 0 auto;
    max-width: 912px;
}
.project-page .project-content h3, .aside-content > p:nth-child(1), .aside-content > p:nth-child(2) {
    font-weight: 400;
    font-size: 60px;
    line-height: 72px;
    margin: 0 0 32px 0;
}
.project-list {
    margin: 80px 0 64px 0;
}
.single-project {
    margin: 80px 0 0 0;
}
.single-project h1 {
    font-weight: 400;
    font-size: 60px;
    line-height: 72px;
    margin: 0 0 32px 0;
}
.single-project-title {
    margin-bottom: 60px;
}
.single-project-title .description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.single-project .image-blow-description img {
    width: 100%;
}
.single-project .content-below-image {
    margin-top: 80px;
}
.single-project .content-below-image h3, .single-project-content h3, .content-below-product h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 24px;
    margin: 0 0 24px 0;
}
.single-project .content-below-image p strong {
    font-weight: 600;
}
.single-project .gallery-below-content {
    margin: 80px 0 0 0;
    display: grid;
    grid-template-columns: 50% 50%;
}
.single-project .gallery-below-content-full {
    display: block;
}
.single-project .gallery-below-content .gallery-item {
    overflow: hidden;
}
.single-project .gallery-below-content .gallery-item img {
    width: 100%;
}
.single-project-content {
    margin-top: 30px;
}
.single-project-content .wp-caption p {
    text-align: center;
    background: #FAFAFA;
    font-weight: 400;
    font-style: italic;
    font-size: 14px;
    line-height: 20px;
    padding: 12px 0;
}
.single-project-content .wp-caption {
    margin-bottom: 28px;
}
.product-in-project, .related-project {
    margin: 80px 0 0 0;
}
.product-in-project .title, .related-project .title, .category-list .title, .home-set-product .title {
    font-weight: 400;
    font-size: 48px;
    line-height: 60px;
    color: #000;
    margin: 0 0 40px 0;
    text-transform: capitalize;
}
.category-list .title a {
    color: #000;
}
.related-project .title {
    text-transform: none;
}
.single-project .content-below-product {
    margin-top: 80px;
}
.single-project .project-item, .related-project .project-item {
    padding: 0;
}
.related-project .project-item .project-image {
    overflow: hidden;
    height: 320px;
}
.related-project .project-item .project-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.related-project .project-item .project-image:hover img {
    transform: scale(1.05);
}
.related-project .project-item .project-content {
    padding: 30px 32px;
}
.related-project .project-item .project-content h3 {
    margin: 0 0 16px 0;
    overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 2;
    line-clamp: 2;
   -webkit-box-orient: vertical;
}
.related-project .project-item .project-content h3 a {
    color: #000;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
}
.related-project .project-item .project-content .view-detail a {
    color: #868686;
    font-weight: 400;
    font-style: italic;
    font-size: 14px;
    line-height: 20px;
}
.single-product .woocommerce-product-gallery {
    width: 57%!important;
    border: 1px solid #363636;
    border-bottom: 0;
    border-left: 0;
    margin: 0!important;
    /* min-height: 658px; */
    float: none;
}
.single-product .woocommerce-product-gallery .flex-viewport img {
    max-height: 658px !important;
    margin: 0 auto;
}
.single-product .summary {
    width: 43%!important;
    border: 1px solid #363636;
    border-bottom: 0;
    border-right: 0;
    border-left: 0;
    padding: 30px 40px;
    /* min-height: 759px; */
    margin: 0!important;
    float: none;
}
.woocommerce div.product div.images .flex-control-thumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.woocommerce div.product div.images .flex-control-thumbs li {
    width: calc(100% / 6);
}
.woocommerce div.product div.images .flex-control-thumbs li img {
    width: 100px;
    margin: 0 auto;
}
.single-product h1 {
    font-weight: 500;;
    font-size: 30px;
    line-height: 40px;
    color: #000;
}
.woocommerce-product-details__short-description {
    display: none;
}

.my-full-description p.title, .my-short-description p.title, .material p.title, .size .title {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #868686;
    margin: 0 0 4px 0;
}
.my-full-description {
    margin: 0 0 30px 0;
}
.woo-selected-variation-item-name, a.reset_variations {
    display: none!important;
}
th.label label {
    font-weight: 400!important;
    font-size: 14px;
    line-height: 20px;
    color: #868686;
}
.before-related-products {
    clear: both;
}
.related.products {
    margin: 80px 0 0 0;
}
.related.products h2 {
    font-weight: 400;
    font-size: 60px;
    line-height: 72px;
    color: #000000;
    margin: 0 0 50px 0;
}
.customer-reviews {
    background: #FBF5ED;
    padding: 80px 0;
}
.customer-reviews .review-item .review-content {
    margin: 0 0 32px 0;
    font-size: 24px;
    line-height: 34px;
    color: #000;
}
.customer-reviews .review-item .review-title p {
    margin: 0;
}
.customer-reviews .review-item .review-title ul {
    margin: 0;
    margin-left: 8px;
    padding: 0 0 0 18px;
}
.material {
    margin: 0 0 20px 0;
}
.size {
    margin: 0 0 30px 0;
}
.woocommerce-variation-price {
    margin: 0 0 32px 0;
}
.woocommerce-variation-price .price {
    font-weight: 600;
    font-size: 20px!important;
    line-height: 30px;
    color: #000!important;
}
form.cart {
    display: flex;
    align-items: center;
}
.qty-btn {
    border: 1px solid #ccc;
    background: #fff;
    width: 56px;
    height: 56px;
    text-align: center;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    float: left;
}
.qty-minus {
    border-right: 0;
}
.qty-plus {
    border-left: 0;
}
input.qty {
    width: 93px!important;
    text-align: center;
    border: 1px solid #ccc;
    border-left: none;
    border-right: none;
    height: 56px;
}
.woocommerce div.product form.cart div.quantity {
    margin: 0;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
.woocommerce div.product form.cart .button {
    margin: 0 0 0 9px;
    background: #262626;
    border-radius: 0;
    font-weight: 600;
    padding: 17px 40px 15px 40px;
}
.woocommerce div.product form.cart .button img {
    margin: 0 0 0 12px;
}
.page-content h1 {
    color: #000000;
    font-weight: 400;
    font-size: 60px;
    line-height: 72px;
    margin: 48px 0 30px 0;
    text-align: center;
}
.page-content .wc-block-components-product-name {
    color: #000;
}
table.wc-block-cart-items .wc-block-cart-items__header th, .wc-block-cart .wc-block-cart__totals-title {
    font-size: 16px!important;
}
.wp-block-woocommerce-proceed-to-checkout-block a {
    background: #f2dc99;
    color: #000;
    font-weight: 600;
}
.wp-block-woocommerce-proceed-to-checkout-block a:hover {
    background: #363636;
    color: #fff;
}
.about-page {
    margin: 80px 0 0 0;
}
.about-page .about-content {
    text-align: justify;
}
.about-page .about-content h3 {
    text-align: center;
    margin: 0 auto 32px auto;
    font-weight: 400;
    font-size: 60px;
    line-height: 72px;
    max-width: 800px;
}
.about-list-content {
    margin: 80px 0 0 0;
}
.about-list-content .about-content-item {
    display: grid;
    grid-template-columns: 50% 50%;
}
.about-list-content .about-content-item .image {
    overflow: hidden;
}
.about-list-content .about-content-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-list-content .about-content-item .inner-content {
    border: 1px #363636 solid;
    padding: 60px;
}
.about-list-content .about-content-item .inner-content > p {
    font-weight: 400;
    font-size: 38px;
    line-height: 46px;
    letter-spacing: -4%;
    margin: 0 0 40px 0;
}
.about-list-content .about-content-item .inner-content .inner-item .icon {
    margin: 0 0 24px 0;
}
.about-list-content .about-content-item .inner-content .inner-item:not(:last-child) {
    margin: 0 0 40px 0;
}
.about-list-content .about-content-item .inner-content .inner-item .content p:first-child {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    margin: 0 0 8px 0;
}
.about-list-content .about-content-item .inner-content .inner-item .content p {
    margin: 0;
}
.about-list-content .about-content-item .inner-content .inner-item.d-flex {
    gap: 24px;
}
.about-list-content .about-content-item .inner-content .inner-item.d-flex .icon {
    width: 64px;
    overflow: hidden;
}
.about-list-content .about-content-item .inner-content .inner-item.d-flex .content {
    width: calc(100% - 88px);
}
.about-page .view-all-project, .home-projects .view-all-project, .related-project .view-all-project {
    margin-top: 48px;
}
.contact-page .col-left {
    border: 1px #363636 solid;
    border-left: 0;
    padding: 60px;
    height: 100%;
}
.contact-page .col-left h1 {
    font-weight: 400;
    font-size: 60px;
    line-height: 72px;
    color: #000;
}
.contact-page .col-right {
    padding: 60px;
    border: 1px #363636 solid;
    border-left: 0;
    border-right: 0;
}
.contact-page .col-right p:first-child {
    font-weight: 400;
    font-size: 60px;
    line-height: 72px;
    color: #000;
    margin: 0 0 32px 0;
}
.contact-page .col-right .list-branch {
    margin: 32px 0 0 0;
}
.contact-page .col-right .list-branch > p {
    font-weight: 500;
    font-size: 30px;
    line-height: 40px;
}
.contact-page .col-right .list-branch-content p {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 8px 0;
}
.contact-page .col-right .list-branch-content ul {
    padding: 0;
    margin: 0 0 16px 0;
}
.contact-page .col-right .list-branch-content ul li {
    list-style: none;
    color: #363636;
    line-height: 24px;
    margin: 0 0 4px 0;
    padding: 0 0 0 28px;
    background: url('../images/building-fill-dark.png') no-repeat left center;
}
.contact-page .col-right .list-branch-content ul li:last-child {
    background: url('../images/smartphone-fill-dark.png') no-repeat left center;
}
.receiving-channel {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #3A3A3A;
    font-style: italic;
    padding: 60px 0;
}
.receiving-channel p {
    margin: 0;
}
.receiving-channel-list {
    display: grid;
    grid-template-columns: 50% 50%;
}
.receiving-channel-list .receiving-channel-item {
    border-right: 1px solid #363636;
    border-bottom: 1px solid #363636;
}
.receiving-channel-list .receiving-channel-item:nth-child(-n+2), .receiving-channel-list .receiving-channel-item:nth-child(-n+2) {
    border-top: 1px solid #363636;
}
.receiving-channel-list .receiving-channel-item:nth-child(2n+1), .receiving-channel-list .receiving-channel-item:nth-child(2n+1) {
    border-left: 1px solid #363636;
}
.receiving-channel-list .receiving-channel-content {
    padding: 32px 60px;
}
.receiving-channel-list .receiving-channel-content p:first-child {
    font-weight: 500;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: -4%;
    margin: 0 0 15px 0;
}
.receiving-channel-list .receiving-channel-content ul {
    padding-left: 25px;
}
.contact-page {
    margin: 80px 0 0 0;
}
.contact-page .map iframe {
    width: 100%;
    height: 600px;
}
.category-page {
    margin: 80px 0 0 0;
}
.category-page h1 {
    font-weight: 400;
    font-size: 60px;
    line-height: 72px;
    text-align: center;
    margin: 0 0 8px 0;
}
.category-page .category-content {
    margin-bottom: 80px;
}
.category-post-item .category-post-image {
    overflow: hidden;
    height: 320px;
}
.category-post-item .category-post-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.category-post-item .category-post-image:hover img {
    transform: scale(1.05);
}
.category-post-item .category-post-content {
    padding: 30px 32px;
}
.category-post-item .category-post-content h3 {
    margin: 0 0 16px 0;
    overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 2;
    line-clamp: 2;
   -webkit-box-orient: vertical;
}
.category-post-item .category-post-content h3 a {
    color: #000;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
}
.category-post-item .category-post-content .view-detail a {
    color: #868686;
    font-weight: 400;
    font-style: italic;
    font-size: 14px;
    line-height: 20px;
}
.category-post-item {
    border-right: 1px solid #363636;
    border-bottom: 1px solid #363636;
}
.category-post-item:nth-child(-n+3) {
    border-top: 1px solid #363636;
}
.category-post-item:nth-child(3n+1) {
    border-left: 1px solid #363636;
}
.wp-pagenavi .pages {
    display: none;
}
.wp-pagenavi {
    text-align: center;
    margin: 64px 0;
    width: 100%;
}
.wp-pagenavi a, .wp-pagenavi span.current {
    border: 0;
    color: #262626;
    font-weight: 600;
}
.wp-pagenavi span.current {
    color: #bebebe;
}
.consultation-form {
    margin: 32px 0 0 0;
}
.consultation-form .wpcf7-form {
    flex-wrap: wrap;
    gap: 8px;
    display: flex;
}
.consultation-form .name, .consultation-form .phone, .consultation-form .demand {
    width: 248px;
}
.consultation-form .send {
    width: calc(100% - 776px);
}
.consultation-form label {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
}
.consultation-form input {
    max-width: 100%;
}
.consultation-form .name input, .consultation-form .phone input, .consultation-form .demand input {
    border: 1px #363636 solid;
    border-radius: 4px;
    padding: 11px 12px;
}
.consultation-form .send input {
    background: #262626;
    border-radius: 4px;
    color: #fff;
    padding: 12px;
    margin-top: 30px;
    border: 0;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
}
.consultation-form .send input:hover {
    background: #f2dc99;
    color: #262626;
}
.commit .commit-title {
    font-weight: 400;
    font-size: 38px;
    line-height: 46px;
    letter-spacing: -4%;
    margin: 24px 0 24px 0;
}
.commit .commit-list {
    flex-wrap: wrap;
    gap: 16px;
}
.commit .commit-list .commit-item {
    padding: 60px 27px;
    background: #FBF5ED;
    width: calc(100% / 3 - 11px);
    height: 298px;
}
.commit .commit-list .commit-item .icon {
    height: 64px;
    margin: 0 0 24px 0;
}
.commit .commit-list .commit-item .content p {
    margin: 0;
}
.commit .commit-list .commit-item .content p:first-child {
    font-size: 24px;
    line-height: 34px;
    margin: 0 0 8px 0;
}
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).disabled span,
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).disabled .variable-item-contents {
    opacity: 1;
}
.color-variable-item, .color-variable-item .variable-item-contents, .color-variable-item .variable-item-contents span {
    border-radius: 50%!important;
}
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).disabled .variable-item-contents::before {
    display: none;
}
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.color-variable-item) {
    box-shadow: none;
    border: 1px #c3c3c3 solid;
    height: 48px;
    padding: 12px 24px;
    border-radius: 48px!important;
}
.woo-variation-swatches .variable-items-wrapper .variable-item.color-variable-item {
    width: 48px;
    height: 48px;
}
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item):focus,
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item):hover,
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).selected {
    box-shadow: none;
    border: 1px #363636 solid;
}
.variations tbody tr:not(:last-child) {
    margin: 0 0 20px 0;
}
.woocommerce div.product form.cart .variations td.woo-variation-items-wrapper {
    margin-bottom: 15px;
}
td.product-price dt {
    display: none;
    margin: 0;
}
.woocommerce table.shop_table th {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    padding: 16px;
}
.woocommerce table.shop_table dl.variation, .woocommerce table.shop_table dl.variation p {
    margin: 0;
}
.woocommerce table.shop_table {
    border: 0;
    margin-bottom: 0;
}
.woocommerce a.remove {
    color: #262626!important;
}
.mini-cart-wrapper dl.variation {
    display: none;
}
.woocommerce-cart table.cart img {
    width: 80px;
}
.woocommerce-cart table.cart .pro-name {
    color: #000;
    font-weight: 600;
}
td.product-quantity .qty, td.product-quantity .qty-btn {
    border: 0;
}
td.product-quantity .quantity {
    display: flex;
    justify-content: center;
    align-items: center;
}
td.product-quantity {
    text-align: center;
}
input.qty {
    float: left;
}
td.product-subtotal {
    font-weight: 600;
    color: #000;
}
button[name="update_cart"] {
    display: none!important;
}
.woocommerce-page table.cart td.actions {
    padding: 80px 0 0 0;
}
.woocommerce-page table.cart td.actions #coupon_code {
    width: 327px!important;
    padding: 8px 15px;
    border-radius: 4px;
    border: 1px #363636 solid;
}
.woocommerce-page table.cart td.actions .button {
    background: #262626;
    color: #fff;
    padding: 13px 24px;
    border-radius: 4px;
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    width: 37%;
}
.cart_totals .desc {
    text-align: left;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    margin: 0 0 16px 0;
}
.woocommerce .cart-collaterals .wc-proceed-to-checkout {
    padding-top: 0;
    text-align: left;
}
.woocommerce .cart-collaterals .wc-proceed-to-checkout a {
    padding: 20px !important;
    text-transform: none;
    font-size: 16px !important;
    line-height: 24px !important;
    font-weight: 600 !important;
}
.woocommerce .cart-collaterals .wc-proceed-to-checkout a:hover,
.woocommerce-page table.cart td.actions .button:hover {
    background: #f2dc99!important;
    color: #000!important;
}
.woocommerce .cart-collaterals .wc-proceed-to-checkout span {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
}
.woocommerce .cart-collaterals .order-total ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0 0 16px 0;
    padding: 0;
    align-items: center;
}
.woocommerce .cart-collaterals .order-total ul li {
    width: 50%;
    text-align: left;
    list-style: none;
}
.woocommerce .cart-collaterals .order-total ul li:last-child {
    text-align: right;
    font-size: 24px;
    line-height: 34px;
}
.woocommerce .cart-collaterals .coupon-total ul li:last-child {
    font-size: 16px;
    line-height: 24px;
}
.woocommerce .cart-collaterals .order-total ul li:last-child strong {
    font-weight: 500;
}
.woocommerce .cart-collaterals .continue-buy {
    margin: 16px 0 0 0;
}
.woocommerce .cart-collaterals .continue-buy a {
    font-size: 16px;
    line-height: 24px;
    color: #262626;
}
.woocommerce .cart-collaterals .continue-buy a img {
    width: auto;
}
.slick-home .slick-slide img {
    width: 100%;
}
.home-product-categories .proc-item {
    border-right: 1px solid #363636;
    border-bottom: 1px solid #363636;
}
.home-product-categories .proc-item:nth-child(-n+4) {
    border-top: 1px solid #363636;
}
.home-product-categories .proc-item:nth-child(4n+1) {
    border-left: 1px solid #363636;
}
.home-product-categories .proc-item .proc-item-content {
    padding: 24px 32px;
}
.home-product-categories .proc-item .proc-item-content h3 {
    margin: 0 0 8px 0;
}
.home-product-categories .proc-item .proc-item-content h3 a {
    font-weight: 400;
    font-size: 38px;
    line-height: 46px;
    letter-spacing: -4%;
    text-transform:capitalize;
    color: #262626;
}
.home-product-categories .proc-item .proc-item-content h3 a:hover {
    color: #f2dc99;
}
.home-product-categories .proc-item .proc-item-content .total-products {
    margin: 0;
}
.home-product-categories .proc-item .proc-item-image {
    overflow: hidden;
}
.home-product-categories .proc-item .proc-item-image img {
    width: 100%;
}
.home-product-categories .proc-item .proc-item-image:hover img {
    transform: scale(1.05);
}
.home-about {
    padding: 80px 0 0 0;
}
.home-about .col-left p {
    font-weight: 500;
    font-size: 30px;
    line-height: 40px;
    margin: 0;
}
.home-about .col-left p:last-child {
    font-family: 'MonaSans-Expanded';
    font-size: 48px;
    line-height: 48px;
}
.home-about .col-left p:last-child strong {
    font-family: 'MonaSans-Expanded-Bold';
}
.home-about .col-right p {
    margin: 0 0 24px 0;
}
.home-about .col-right p:last-child {
    margin: 0;
}
.home-about .col-right a {
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    padding: 16px 68px 16px 32px;
    background: url('../images/arrow-right-line-white.png') #262626 no-repeat right 32px center;
}
.home-about .col-right a:hover {
    background: url('../images/arrow-right-line-white.png') #f2dc99 no-repeat right 32px center;
    color: #262626;
}
.home-about .commit {
    margin: 80px 0 0 0;
}
.aside-content {
    padding: 80px 0;
}
.aside-content > p:nth-child(1) {
    margin: 0;
}
.aside-content > p:nth-child(2) {
    margin: 0 0 32px 0;
}
.aside-list-contents .post-content > p:first-child {
    font-weight: 400;
    font-size: 38px;
    line-height: 46px;
    margin: 0 0 24px 0;
}
.products-in-set p.title {
    margin: 48px 0;
    font-weight: 400;
    font-size: 60px;
    line-height: 72px;
}
#billing_state_field {
    display: block !important;
}
/* Reset layout mặc định WooCommerce */
.woocommerce-billing-fields__field-wrapper .form-row,
.woocommerce-additional-fields__field-wrapper .form-row {
    float: none !important;
    width: 100% !important;
    margin: 0;
    clear: none;
    display: block;
}
.shipping-vr td {
    font-weight: normal!important;
    padding-left: 0!important;
    padding-right: 0!important;
}
/* Dùng grid 2 cột */
.woocommerce-billing-fields__field-wrapper,
.woocommerce-additional-fields__field-wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.woocommerce-additional-fields > h3 {
    display: none;
}
/* Các field full width */
#billing_last_name_field,
#billing_address_1_field,
#order_comments_field {
    grid-column: 1 / -1;
}
.woocommerce form .form-row label {
    font-weight: 600;
}
.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
    padding: 12px 15px;
}
.your-order {
    padding: 32px;
    border: 1px solid #363636;
}
#order_review table.shop_table th {
    padding-left: 0;
    font-weight: 400;
}
.woocommerce-checkout .page-inner-content {
    margin-bottom: 40px;
}
tr.order-total strong {
    font-weight: 600;
}
tr.order-total span {
    font-size: 20px;
    line-height: 30px;
}
tr.cart-subtotal td, tr.shipping td {
    font-weight: 400!important;
}
/* Style checkbox trong checkout */
.woocommerce .form-row.privacy {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 10px;
    margin-bottom: 20px;
}

.woocommerce .form-row.privacy .woocommerce-form__input-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #868686; /* màu đen cho checkbox tick */
    margin-top: 2px;
    cursor: pointer;
}

.woocommerce .form-row.privacy label {
    font-weight: 400!important;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.woocommerce .form-row.privacy input:checked + label {
  font-weight: 500;
}
button#place_order {
    width: 100%;
    background: #262626;
    border-radius: 2px;
    color: #fff;
    padding: 20px 32px;
}
.woocommerce-checkout #payment {
    background: none;
}
.woocommerce-checkout #payment h3 {
    margin: 48px 0 20px 0;
}
.woocommerce-checkout #payment ul.payment_methods {
    padding: 0;
    border: 0;
}
.form-row.place-order {
    display: none;
}
.hidden-desktop, .woocommerce-breadcrumb {
    display: none!important;
}
.nav-toggle {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #363636;
    padding: 10px 0 0 0;
}
.category-list .title {
    margin: 48px 0;
}
.single-page {
    margin: 80px 0;
}
.single-page h1 {
    font-weight: 400;
    font-size: 60px;
    line-height: 72px;
    text-align: center;
    margin: 0 0 8px 0;
}
ul.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 80px 0;
    gap: 3px;
}
ul.breadcrumbs li, ul.breadcrumbs li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    list-style: none;
    color: #262626;
}
img.aligncenter {
    margin: 0 auto;
    display: block;
}
.faq-item {
    border: 1px solid #3636361A;
    padding: 10px 15px;
    margin: 0 0 16px 0;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 17px;
    line-height: 27px;
}
.faq-toggle {
    font-size: 20px;
    transition: transform 0.3s ease;
}
.faq-answer {
    display: none;
    padding-top: 8px;
    color: #333;
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    display: block;
}
.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}
.set-list-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.set-list {
    background: #FBF5ED;
    padding: 48px 0;
}
.set-item {
    background: #fff;
}
.set-item .set-image {
    padding: 4px;
    overflow: hidden;
    height: 298px;
}
.set-item .set-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}
.set-item .set-image:hover img {
    transform: scale(1.05);
}
.set-item .set-content {
    padding: 16px;
}
.set-item .set-content h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 10px 0 0 0;
}
.set-item .set-content h3 a {
    color: #262626;
}
.set-item .set-content h3 a:hover {
    color: #966421;
}
.set-item .set-category span {
    display: inline-block;
    background: #FBF5ED;
    border-radius: 4px;
    padding: 0 8px;
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    color: #966421;
    text-transform: capitalize;
}
.home-set-product {
    padding: 48px 0;
    background: #FBF5ED;
}
.home-set-product .view-all-project {
    margin: 48px 0 0 0;
}
.home-news {
    background: #fafafa;
}
.home-news .set-item {
    box-shadow: 0px 4px 16px -8px #1212122E;
}
.home-news .set-item .set-content h3 {
    margin: 0;
}
.woocommerce-order p.success {
    font-weight: 500;
    font-size: 30px;
    line-height: 40px;
    color: #000;
    margin: 40px 0 16px 0;
}
.product-page-description {
    margin: 16px 0 80px 0;
}
.product-page-description .product-page-description-content h3 {
    font-size: 24px;
    line-height: 24px;
    font-weight: 500;
    margin: 0 0 24px 0;
}
.product-page-description .product-page-description-content {
    text-align: justify;
    height: 120px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}
.product-page-description .product-page-description-content.show-full {
    height: 100%;
    overflow: hidden;
}
.product-page-description .view-detail {
    margin: 30px 0 0 0;
}
.product-page-description .view-detail a {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #868686;
    font-style: italic;
}
.single-content-pro {
    border-top: 1px #363636 solid;
    padding: 80px 0;
}
.single-content-pro h3 {
    font-weight: 400;
    font-size: 38px;
    line-height: 46px;
    letter-spacing: -4%;
    margin: 0 0 24px 0;
}
.single-content-pro img {
    margin: 24px auto;
    display: block;
}
.woocommerce-checkout #payment ul.payment_methods li input {
    margin-right: 8px;
}
.woocommerce-checkout #payment ul.payment_methods li input[type="radio"]:checked + label {
    font-weight: 600;
}
.woocommerce-checkout #payment div.payment_box {
    background: #FEF1E6;
    color: #F6831F;
}
.woocommerce-checkout #payment div.payment_box::before {
    display: none;
}
.woocommerce-checkout #payment div.payment_method_bacs {
    background: none;
}
.woocommerce-checkout #payment div.payment_method_bacs .desc {
    position: relative;
    padding: 16px 16px 16px 48px;
    background: #FEF1E6;
    color: #F6831F;
}
.woocommerce-checkout #payment div.payment_method_bacs .desc::after {
    display: block;
    content: url('../images/information-2-fill.png');
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 99;
}
.woocommerce-checkout #payment div.payment_method_bacs .bank-transfer-qr {
    margin: 0 0 15px 0;
}
.promotion-box {
    border: 1px solid #F6831F;
    background: #fff7f1;
    border-radius: 4px;
    margin-top: 20px;
    margin: 0 0 30px 0;
    overflow: hidden;
}
.promotion-header {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px;
    background: #FEF1E6;
}
.promotion-header .dashicons {
    color: #ff9800;
}
.promotion-items {
    background: #fff;
    padding: 0 12px;
}
.promotion-item {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #f0e0d0;
}
.promotion-item:last-child {
    border-bottom: none;
}
.promotion-thumb img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
}
.promotion-info {
    flex: 1;
}
.promotion-title {
    font-weight: 600;
    color: #F6831F;
}
.promotion-price {
    color: #262626;
    font-size: 12px;
}
.promotion-price del {
    color: #999;
    font-size: 12px;
    margin-left: 6px;
}
.promotion-note {
    color: #363636;
    font-size: 12px;
    line-height: 18px;
}
.promotion-name {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
}
.voucher-item {
    font-size: 14px;
    line-height: 20px;
}
.voucher-item .voucher-code {
    color: #F6831F;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    padding: 0 6px;
    background: #FEF1E6;
}
