@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

.floating-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-call:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.floating-call svg {
    width: 24px;
    height: 24px;
    fill: white;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

#wpadminbar {
    display: none;
}

.in-stock {
    color: green;
}

.out-stock {
    color: red;
}

.discontinued {
    color: gray;
}

:root {
    --primary-color: rgb(0, 0, 0);
    /* Nâu hồng đất */
    --secondary-color: #3A2E2A;
    /* Nâu đậm sang trọng */
    --accent-color: #EAC7B4;
    /* Be hồng dịu */
    --highlight-color: #FFD7B5;
    /* Cam sáng dịu */

    --black-color: #1E1E1E;
    /* Đen than sang */

    --white-color: #ffffff;
    /* Trắng */
    --gray-color: #f2f2f2;
    /* Xám nền */
    --text-color: #2C2C2C;
    --text-light-color: #7A7A7A;
    --border-color: #E0DAD8;
    --bg-color: #ffffff;
    --font-main: "Roboto", serif;
}

/* Áp dụng font cho tất cả các thẻ, trừ các class liên quan đến icon */
h1, h2 {
    font-family: "Playfair Display", serif;
    text-transform: uppercase;
}

html,
body {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 18px;
    background: var(--bg-color);
    padding: 0;
    margin: 0;
    color: var(--black-color);
}

p {
    font-size: 14px;
    line-height: 1.45;
    margin: 0 0 10px;
    color: var(--black-color);
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-weight: 600;
}

a:hover {
    text-decoration: none;
}

a {
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    text-decoration: none;
    color: var(--black-color);
}

:focus {
    outline: none;
}

img {
    max-width: 100%;
}

ul {
    padding: 0;
    margin: 0;
}

* {
    box-sizing: border-box;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    text-transform: uppercase;
    font-family: "Playfair Display", serif;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu {
    width: fit-content;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row .mega-menu-column>ul.mega-sub-menu>li.mega-menu-item {
    padding: 10px 15px;
}

/*=======================
       Page Layout
=======================*/
.list-flex {
    display: flex;
    flex-wrap: wrap;
}

.flex-middle {
    align-items: center;
}

.flex-center {
    justify-content: space-between;
}

.text-center {
    text-align: center;
}

.text-upppercase {
    text-transform: uppercase;
    font-family: "Playfair Display", serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.image-fit {
    overflow-y: hidden;
}

.image-fit img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.home-top h1 {
    color: var(--black-color);
    max-width: 873px;
    margin: 0 auto 20px;
    font-size: 48px;
}

#header {
    padding: 10px 0;
}

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-in-out;
    justify-content: center;
    gap: 80px;
    padding: 16px 0;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

body.fixed-header-space {
    padding-top: 80px;
}

/* Top bar */
header .container {
    max-width: 900px;
}

.header-top {
    color: var(--black-color);
    font-size: 14px;
    padding: 10px 0;
}

.header-top a {
    color: var(--black-color);
    text-decoration: none;
}

.header-top .top-contact i {
    margin-right: 5px;
    color: var(--primary-color);
}

.menu-main-box {
    width: 100%;
}

.gtranslate-dropdown select {
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    background: #fff url("data:image/svg+xml,%3Csvg fill='gray' height='12' viewBox='0 0 24 24' width='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat right 10px center;
    background-size: 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.gtranslate-dropdown {
    position: relative;
    display: inline-block;
}

.gtranslate_wrapper {
    text-align: center;
}

.flex-between {
    justify-content: space-between;
}

.top-right {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 50%;
    justify-content: flex-end;
}

.top-slogan {
    flex: 1;
    overflow: hidden;
    padding: 0 15px;
    max-width: 500px;
}

.slogan-header-mobile {
    display: none;
}

.marquee {
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

.marquee p {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
    color: var(--black-color);
    font-size: 14px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}


.logo {
    height: 70px;
}

.logo img {
    height: 100%;
}

.menu-main {
    display: flex;
    gap: 40px;
    align-items: center;
}

.menu-main ul {
    margin: 0 -13.5px;
}

.menu-main li {
    display: inline-block;
    margin: 0 10px;
    vertical-align: middle;
    line-height: 1;
    max-width: 200px;
    width: 100%;
    padding: 12px;
}

.menu-main li a {
    color: var(--text-color);
    font-size: 13px;
    font-weight: 600;
}

.menu-main li a:hover {
    opacity: 0.8;
}

.menu-main li.menu-contact a {
    padding: 11px 8px;
    border: 1px solid var(--black-color);
}

.menu-main li.menu-contact a:hover {
    background: var(--black-color);
    color: var(--black-color);
}

.bg-black {
    background: rgba(0, 0, 0, 0.1);
}

.color-white {
    color: var(--white-color);
}

.color-bg {
    background: var(--black-color);
}

.home-number {
    padding: 32.5px;
    margin-top: 30px;
}

.home-number .number-it {
    width: 25%;
    padding: 7.5px;
}

.number-it-box {
    padding: 30px 10px;
    background: var(--primary-color);
    height: 100%;
}

.number-it-box h3 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 10px;
    font-weight: 700;
}

.number-it-box p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 0;
    color: #fff;
}

.box-title {
    display: inline-block;
    background: var(--text-color);
    font-weight: 600;
    font-size: 20px;
    padding: 10px 20px;
    color: var(--black-color);
}

#footer {
    padding-top: 30px;
}

.ft-top {
    margin-bottom: 20px;
}

.ft-menu ul {
    margin: 0px -13px;
}

.ft-menu li {
    display: inline-block;
    margin: 0 13px;
    font-size: 13px;
    font-weight: 600;
}

.ft-menu li a {
    color: var(--black-color);
}

.ft-title {
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "Playfair Display", serif;
    margin-bottom: 10px;
}

.menu-function li {
    display: block;
    font-size: 13px;
    margin-bottom: 9px;
}

.menu-function li a {
    color: var(--black-color);
}

.custom-footer-menu {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.custom-footer-menu li a {
    font-size: 14px;
    font-weight: bold;
}

.copyright {
    font-size: 14px;
    font-weight: bold;
    padding: 20px 0px;
    margin: 0px;
}

#footer .container {
    max-width: 1400px;
}

.ft-right {
    max-width: 400px;
    width: 100%;
}

.ft-left {
    width: 65%;
    display: flex;
    justify-content: space-between;
}

.footer-info {
    max-width: 600px;
    width: 100%;
}

.footer-policies,
.footer-info {
    display: flex;
    flex-direction: column;
}

.footer-contact-form .wpcf7-form p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-contact-form .wpcf7-form .wpcf7-form-control-wrap {
    width: 48%;
}

.footer-contact-form .wpcf7-form .wpcf7-form-control-wrap:last-child {
    width: 99%;
}

.footer-socials ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-socials ul li img {
    height: 20px;
    width: 20px;
    object-fit: cover;
}

.footer-map iframe {
    width: 100%;
    height: 200px;
}

.copyright-box {
    text-align: center;
}

.ft-right p span {
    margin-bottom: 5px;
}

.ft-right p a {
    color: var(--black-color);
}

#footer a:hover {
    text-decoration: underline;
}

.text-uppercase {
    text-transform: uppercase;
    font-family: "Playfair Display", serif;
}

.bg-section {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


.search-btn {
    padding: 6px 10px;
    background: var(--black-color);
    color: var(--white-color);
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.search-btn:hover {
    background: #444;
}

.search-container {
    position: relative;
    display: inline-block;
}

.search-box input.search-input {
    width: 210px;
}

.search-box {
    position: absolute;
    top: 140%;
    right: 10%;
    z-index: 1000;
    background: white;
    padding: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.search-box form {
    display: flex;
}

body.search-open {
    overflow: hidden;
}

.toogle-menu {
    border: 0 none;
    display: none;
    height: 15px;
    width: 22px;
    z-index: 999;
    cursor: pointer;
    outline: 0;
    float: right;
    background: none;
    position: relative;
}

.toogle-menu span {
    font-size: 0;
    height: 1px;
    width: 100%;
    background: var(--text-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.toogle-menu span::after, .toogle-menu span::before {
    font-size: 0;
    height: 1px;
    width: 100%;
    background: var(--text-color);
    position: absolute;
    left: 0;
    content: "";
}

.toogle-menu span::after {
    transform: translateY(6px);
}

.toogle-menu span::before {
    transform: translateY(-6px);
}

.toogle-menu.exit span::before {
    transform: translateY(0px) rotate(45deg);
}

.toogle-menu.exit span::after {
    transform: translateY(0px) rotate(-45deg);
}

.toogle-menu.exit span {
    background-color: transparent;
}

.video-iframe iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.change-slider .slick-arrow {
    display: none !important;
}

.slider-funtion .slider-prev.disabled, .slider-funtion .slider-next.disabled {
    filter: invert(81%) sepia(1%) saturate(538%) hue-rotate(250deg) brightness(101%) contrast(102%);
}

/* form contact */
.contact-section {
    background: var(--bg-color, #FFF9F7);
    color: var(--text-color, #2C2C2C);
    padding: 60px 20px;
}

.contact-box {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid var(--border-color, #E0DAD8);
    padding: 30px;
    border-radius: 10px;
    background-color: var(--white-color, #ffffff);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.contact-left {
    text-align: center;
    flex: 1 1 250px;
}

.contact-left .contact-logo {
    width: 120px;
    margin-bottom: 15px;
}

.company-name {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color, #B9806D);
}

.contact-right {
    flex: 1 1 400px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 14px;
}

.contact-info li {
    margin-bottom: 10px;
}

.contact-info i {
    margin-right: 8px;
    color: var(--primary-color, #B9806D);
}

.contact-note {
    font-style: italic;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-light-color, #7A7A7A);
}

.contact-form input {
    padding: 10px;
    border: 1px solid var(--border-color, #E0DAD8);
    background: var(--black-color);
    color: var(--text-color, #2C2C2C);
    border-radius: 4px;
    outline: none;
}

.contact-form input::placeholder {
    color: var(--text-light-color, #7A7A7A);
}

.form-group {
    display: flex;
    gap: 10px;
}

.full-width {
    width: 100%;
    margin-bottom: 15px;
}

.form-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.form-actions .btn-send {
    background-color: var(--black-color, #B9806D);
    color: var(--white-color);
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    font-family: inherit;
    margin-bottom: 10px;
}

.form-actions .btn-send:hover {
    background-color: var(--secondary-color, #3A2E2A);
}

.form-actions p {
    margin: 0px;
}

.btn-whatsapp {
    background-color: #451404fa;
    color: var(--white-color);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 4px;
    font-weight: bold;
    transition: 0.3s;
    text-align: center;

}

.btn-whatsapp:hover {
    opacity: 0.8;
}

.ft-logo img {
    max-width: 100px;
    height: auto;
    object-fit: cover;
    width: 100%;
}

@media (max-width: 1024px) {
    .ft-left {
        width: 100%;
        max-width: 100%;
    }

    .footer-info {
        max-width: 70%;
        width: 100%;
    }

    .ft-right {
        max-width: 100%;
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .slogan-header-mobile {
        display: block !important;
    }

    .contact-box {
        flex-direction: column;
        padding: 20px;
    }

    .form-group {
        flex-direction: column;
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-send, .btn-whatsapp {
        width: 100%;
        text-align: center;
    }

    .contact-right {
        flex: 1;
        width: 100%;
    }


    .contact-left {
        flex: 1;
        width: 100%;
    }

    .footer-info {
        max-width: 100%;
        width: 100%;
    }
}

.blog-section {
    padding: 60px 0px;
    text-align: center;
}

.blog-subtitle {
    text-transform: uppercase;
    font-family: "Playfair Display", serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.blog-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color, #B9806D);

    margin-bottom: 40px;
}

.blog-slider .blog-card,
.blog-lists .blog-card {
    background: var(--white-color, #ffffff);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
    margin: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.blog-lists .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.blog-thumb {
    overflow: hidden;
}

.blog-thumb img {
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.5);
}

.blog-thumb {
    position: relative;
}

.blog-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-date {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color, #B9806D);
    color: var(--white-color, #ffffff);
    padding: 6px 8px;
    font-size: 13px;
    text-align: center;
    border-radius: 4px;
    font-weight: bold;
    line-height: 1.2;
}

.blog-content {
    padding: 15px;
}

.blog-name {
    font-size: 16px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-desc {
    font-size: 14px;
    color: var(--text-light-color, #7A7A7A);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-view-all {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 25px;
    border: 2px solid var(--primary-color, #B9806D);
    color: var(--primary-color, #B9806D);
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-view-all:hover {
    background-color: var(--primary-color, #B9806D);
    color: #fff;
}

@media screen and (max-width: 768px) {
    .blog-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .blog-slider .blog-card {
        margin: 0 5px;
    }

    .blog-content {
        padding: 12px;
    }

    .blog-name {
        font-size: 15px;
    }

    .blog-desc {
        font-size: 13px;
    }

    .btn-view-all {
        width: 100%;
        padding: 12px 0;
    }
}

/* section categroy */
.categories-section {
    background: #FFF9F7;
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color, #B9806D);
    margin-bottom: 40px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-card {
    background: rgb(0, 0, 0);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    position: relative;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 150px;
    display: block;
    object-fit: cover;
}

.category-name {
    background: var(--primary-color, #B9806D);
    color: var(--white-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    font-family: "Playfair Display", serif;
    padding: 12px 10px;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}


/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .category-name {
        font-size: 13px;
        padding: 10px;
    }
}

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

/* blog page */
.blog-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.tab-item {
    padding: 8px 18px;
    background: var(--black-color);
    color: var(--white-color, #ffffff);
    border: none;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    font-family: var(--font-main);
}

.tab-item.active,
.tab-item:hover {
    color: var(--white-color, #ffffff);
    background: var(--black-color);
    opacity: 0.8;
}


@media (max-width: 768px) {
    .tab-item {
        font-size: 14px;
        padding: 6px 14px;
    }
}

.blog-lists {
    display: flex;
    gap: 20px;
}

.blog-lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-lists .blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

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

@media (max-width: 576px) {
    .blog-lists {
        grid-template-columns: 1fr;
    }
}

.blog-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.page-btn {
    padding: 8px 14px;
    border: 1px solid var(--primary-color, #B9806D);
    background-color: rgb(0, 0, 0);
    color: var(--primary-color, #B9806D);
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    font-family: inherit;
    font-weight: bold;
}

.page-btn:hover,
.page-btn.active {
    background-color: var(--primary-color, #B9806D);
    color: rgb(0, 0, 0);
}

.page-dot {
    padding: 8px 10px;
    font-size: 14px;
    color: #999;
}

/* Mobile */
@media screen and (max-width: 576px) {
    .page-btn {
        padding: 6px 10px;
        font-size: 13px;
    }
}

/*end site blog  */
/* section reviews */
.testimonials-section {
    background-color: var(--bg-color);
    padding: 60px 0px;
    text-align: center;
}

.section-subtitle {
    text-transform: uppercase;
    font-family: "Playfair Display", serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
}


.testimonial-card {
    background: var(--white-color);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin: 0 10px;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 10px;
}

.stars {
    color: #f7b733;
    font-size: 18px;
    margin-bottom: 15px;
}

.quote {
    display: -webkit-box;
    -webkit-line-clamp: unset;
    -webkit-box-orient: vertical;
    font-style: italic;
    color: #555;
    height: 6em;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.quote::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}


.client {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light-color);
}

.btn-outline-red {
    display: inline-block;
    margin-top: 40px;
    padding: 10px 24px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-red:hover {
    background: var(--black-color);
    color: var(--white-color);
    opacity: 0.8;
}

/* Responsive dưới 768px */
@media screen and (max-width: 768px) {
    .testimonials-list {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-card {
        max-width: 100%;
    }

    .section-title {
        font-size: 22px;
    }

    .quote {
        font-size: 14px;
    }
}

/* page blog detail */
.blog-detail-section {
    padding-bottom: 60px;
}

.blog-detail {
    background: var(--white-color);
    border-radius: 8px;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
    overflow: hidden;
}

.blog-detail h1 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
    text-align: left;
}

.blog-detail .meta {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.blog-detail img {
    max-width: 100%;
    border-radius: 8px;
    height: 400px;
    margin: 20px 0;
    object-fit: none;
    width: 100%;
}

.blog-top h1 {
    margin-top: 30px;
    font-size: 28px;
    color: var(--black-color);
}

.blog-detail h2 {
    margin-top: 30px;
    font-size: 24px;
    color: var(--primary-color);
}

.blog-detail p {
    margin: 15px 0;
}

.blog-detail ul,
.blog-detail ol {
    padding-left: 20px;
}

.blog-detail blockquote {
    margin: 20px 0;
    padding: 15px 20px;
    background: var(--bg-color);
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    color: var(--text-light);
}

.blog-detail-page {
    padding: 20px 0px 30px 0px !important;
}

.page-wrapper {
    display: flex;
    gap: 40px;
    background-color: var(--bg-color);
    font-family: var(--font-main);
    color: var(--text-color);
}

.content-area {
    flex: 3;
    font-size: 14px;
}

.sidebar {
    flex: 1;
    position: relative;
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
    background: var(--white-color);
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.sidebar h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: bold;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li a {
    display: block;
    padding: 5px 0;
    color: var(--text-light-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.sidebar ul li a:hover {
    color: var(--primary-color);
}

#breadcrumbs {
    font-size: 14px;
    color: var(--text-light-color);
    margin-bottom: 10px;
    margin-top: 15px;
}

#breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
}

#breadcrumbs a:hover {
    text-decoration: underline;
}

#breadcrumbs span {
    margin: 0 6px;
}

@media screen and (max-width: 768px) {
    .blog-detail h1 {
        font-size: 24px;
    }

    .blog-detail h2 {
        font-size: 20px;
    }

    .page-wrapper {
        flex-direction: column;
    }

    .sidebar {
        order: -1;
    }

    .sticky-sidebar {
        position: relative;
        top: auto;
    }
}

/* end page blog detail */
/* page helps */
.helps-banner {
    background-image: url('../images/about/image2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    text-align: center;
    color: rgb(0, 0, 0);
    position: relative;
}

.helps-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.helps-banner .container {
    position: relative;
    z-index: 2;
}

.helps-title {
    font-size: 42px;
    text-transform: uppercase;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    margin: 0;
    color: var(--white-color, #ffffff);
}

@media (max-width: 768px) {
    .helps-banner {
        padding: 60px 20px;
    }

    .helps-title {
        font-size: 28px;
    }
}

.helps-policies {
    display: grid;

    gap: 24px;
    margin: 40px auto;
    justify-content: center;
}

.policy-box {
    background: var(--white-color, #ffffff);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.policy-box:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.policy-box .icon {
    margin-bottom: 15px;
}

.policy-box h3 {
    font-size: 18px;
    color: var(--primary-color, #B9806D);
    margin-bottom: 10px;
}

.policy-box p {
    font-size: 14px;
    color: var(--black-color, #7A7A7A);
}

.faq-section {
    background: var(--white-color, #ffffff);
    padding: 60px 20px;
    font-family: var(--font-main);
}

.faq-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.faq-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.faq-column {
    flex: 1 1 45%;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    font-family: var(--font-main);
    padding: 15px 0;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 0 15px 0;
    color: var(--text-light);
    font-size: 15px;
}

.faq-answer ul {
    padding-left: 20px;
    margin: 10px 0;
}

.faq-answer ul li {
    list-style-type: disc;
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-column {
        flex: 1 1 100%;
    }

    .helps-title {
        font-size: 22px;
    }

    .policy-box {
        padding: 20px;
    }

    .faq-title {
        font-size: 20px;
    }

    .faq-grid {
        flex-direction: column;
        gap: 10px;
    }

    .helps-policies {
        grid-template-columns: repeat(1, 1fr);

    }
}


/* CONTACT FORM STYLING */
.contact-help {
    padding: 60px 20px;
    background: var(--bg-color);
    text-align: center;
}

.contact-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-subtitle {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-row p {
    display: flex;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    background: #fff;
    color: var(--text-color);
    box-sizing: border-box;
    margin-bottom: 10px;
}

.contact-form .wpcf7-spinner {
    display: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    margin-top: 15px;
    background-color: var(--text-color) !important;
    color: #fff !important;
    border: none;
    padding: 12px 24px;
    font-weight: bold;
    font-size: 14px;
    border-radius: 24px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100px !important;
}

.btn-submit:hover {
    background-color: var(--primary-color) !important;
}

.wpcf7 form .wpcf7-response-output {
    border-radius: 6px;
    padding: 5px 16px;
    font-weight: 500;
    font-size: 15px;
    margin-top: 10px !important;
    color: #000;
}

/* Thành công */
.wpcf7-response-output.wpcf7-mail-sent-ok {
    border: 1px solid #4CAF50;
    background-color: #e6f5ea;
    color: #2e7d32;
}

/* Lỗi gửi */
.wpcf7-response-output.wpcf7-mail-sent-ng {
    border: 1px solid #f44336;
    background-color: #fdecea;
    color: #c62828;
}

/* Lỗi xác thực */
.wpcf7-response-output.wpcf7-validation-errors {
    border: 1px solid #ffa000;
    background-color: #fff8e1;
    color: #ff6f00;
}

/* Spam */
.wpcf7-response-output.wpcf7-spam-blocked {
    border: 1px solid #9c27b0;
    background-color: #f3e5f5;
    color: #6a1b9a;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .contact-form .form-row {
        flex-direction: column;
    }

    .contact-title {
        font-size: 24px;
    }

    .btn-submit {
        width: 100%;
    }
}

/* end */
/* page best seller */
.best-seller-section {
    padding: 60px 0px;
    background: #fff9f7;
}

.section-titlesub {
    text-align: center;
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.product-filter-wrap {
    text-align: right;
    margin-bottom: 20px;
}

.product-filter-wrap label {
    font-weight: 500;
    margin-right: 10px;
}

.product-filter-wrap select {
    padding: 8px 12px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--white-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    height: 400px;
}

.product-thumb {
    position: relative;
    width: 100%;
    height: 100%;
}

.default-img,
.hover-img {
    width: 100%;
    display: block;
    transition: opacity 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    height: 100%;
}

.default-img {
    opacity: 1;
    z-index: 1;
}

.hover-img {
    opacity: 0;
    z-index: 2;
}

.product-card:hover .default-img {
    opacity: 0;
}

.product-card:hover .hover-img {
    opacity: 1;
}

/* Overlay box */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    color: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    box-sizing: border-box;
    transition: background 0.3s ease;
}

.overlay-content {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    text-align: center;
    color: rgb(0, 0, 0);
}

.overlay-content {
    padding: 0 30px;
}

.product-card:hover .overlay-content {
    transform: translate(-50%, -50%);
    top: 60%;
    opacity: 1;
}

.overlay-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    transition: opacity 0.3s ease;
    opacity: 1;
    color: var(--white-color);

}

.overlay-desc,
.btn-detail {
    color: var(--black-color);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none !important;
}

.product-card:hover .overlay-desc {
    display: -webkit-box;
    opacity: 1;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card:hover .btn-detail {
    opacity: 1;
    display: block !important;
}


.btn-detail {
    display: inline-block;
    background: var(--black-color);
    border: 1.5px solid var(--primary-color);
    color: var(--white-color);
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-detail:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-shop {
    display: inline-block;
    padding: 8px 14px;
    font-size: 13px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-shop:hover {
    background: var(--primary-color);
    color: rgb(0, 0, 0);
}


/* video */
/* Flex hàng ngang */
.row-flex {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* --- Video Box --- */
.video-box {
    flex: 1 1 45%;
    position: relative;
    max-width: 100%;
    width: 100%;
}

.row-reverse {
    flex-direction: row-reverse;
}

.video-iframe-box {
    display: none;
}

.video-box {
    position: relative;
}

.video-play:hover {
    opacity: 0.8;
}

.video-play img {
    margin-right: 11px;
}

.video-iframe-box .video-iframe,
.video-box .image-fit img {
    width: 100%;
    display: block;
    border-radius: 8px;
    height: 350px;
    overflow: hidden;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 10px;
    border-radius: 50px;
    cursor: pointer;
}

/* Iframe ẩn mặc định, show bằng JS nếu cần */

/* --- Text Box bên phải --- */
.video-text-box {
    flex: 1 1 50%;
    max-width: 100%;
}

.video-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: "Playfair Display", serif;
}

.video-desc {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #000;
}

/* --- Responsive dưới 768px --- */
@media screen and (max-width: 768px) {
    .row-flex {
        flex-direction: column;
    }

    .video-title {
        font-size: 22px;
        text-align: center;
    }

    .video-desc {
        text-align: center;
        font-size: 15px;
    }

    .video-text-box {
        text-align: center;
        padding: 0 15px;
    }

    .video-play {
        font-size: 14px;
        padding: 10px 16px;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

}

/* our story */
.section-brand-story {
    padding: 60px 0px;
    background-color: var(--bg-color)
}

.brand-story-wrapper {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.brand-story-content {
    flex: 1 1 55%;
}

.brand-story-image {
    flex: 1 1 40%;
    text-align: center;
}

.brand-story-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.section-brand-story p {
    margin-bottom: 16px;
    font-size: 15.5px;
    line-height: 1.7;
}

.section-brand-story .section-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #222;
}

/* Responsive */
@media (max-width: 768px) {
    .brand-story-wrapper {
        flex-direction: column;
    }

    .brand-story-content,
    .brand-story-image {
        flex: 1 1 100%;
    }

    .brand-story-image {
        margin-top: 30px;
    }
}

/* site category child */
.breadcrumb {
    background: var(--bg-color);
    padding: 20px 0;
    font-size: 14px;
}

.breadcrumb ul {
    display: flex;
    list-style-type: none;
    gap: 10px;
}

.breadcrumb ul a {
    font-weight: bold;
}

.breadcrumb a strong {
    color: var(--primary-color);
}

.collection-wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

/* Sidebar */
.collection-sidebar {
    background: var(--bg-color);
    width: 100%;
    max-width: 250px;
}

.collection-sidebar h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: "Playfair Display", serif;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

.filter-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.filter-list li {
    margin-bottom: 10px;
}

.filter-list a {
    display: block;
    text-decoration: none;
    color: var(--white-color);
    padding: 8px 12px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "Playfair Display", serif;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background: var(--black-color);
}

.filter-list a:hover {
    background-color: var(--white-color);
    color: rgb(0, 0, 0);
    border-color: var(--primary-color);
}

.filter-list a.active {
    background-color: var(--primary-color);
    color: rgb(0, 0, 0);
    font-weight: bold;
    border-color: var(--primary-color);
}

.recent-viewed img {
    width: 100%;
    margin-top: 10px;
    border-radius: 4px;
}

.recent-viewed p {
    font-size: 13px;
}

.section-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding-bottom: 20px;
}

.section__subheading {
    font-size: 16px;
    line-height: 18px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "Playfair Display", serif;
    text-align: center;
    color: var(--black-color);
}

.section__title {
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
    text-transform: capitalize;
    text-align: center;
    color: var(--black-color);
    margin-bottom: 0px;
}

.section__description p {
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    color: var(--black-color);
    text-align: center;
    max-width: 800px;
    width: 100%;
}

/* Main content */
.collection-products {
    flex: 1;
}

.collection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    text-align: center;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
    background: var(--white-color);
    transition: box-shadow 0.3s;
}

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

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.product-title {
    font-size: 15px;
    margin: 15px 0;
    min-height: 45px;
}

.shop-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #c00;
    color: rgb(0, 0, 0);
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
    transition: background 0.3s;
}

.shop-btn:hover {
    background: #a00;
}

/* Responsive */
@media (max-width: 992px) {
    .collection-wrapper {
        flex-direction: column;
    }

    .collection-sidebar {
        width: 100%;
        max-width: 100%;
    }

    .collection-products {
        width: 100%;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* 404 page */
.page-404 {
    padding: 100px 20px;
    text-align: center;
    background-color: #f9f9f9;
    color: #333;
}

.error-box {
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-size: 120px;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.error-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.error-message {
    font-size: 16px;
    margin-bottom: 30px;
    color: #666;
}

.btn-back-home {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-back-home:hover {
    background-color: var(--primary-color)
}

.glsr-button.wp-block-button__link {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: rgb(0, 0, 0);
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
    border: none;
    font-family: inherit;
}

/* 🌟 Tổng thể phần đánh giá */
.glsr {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #333;
}

/* ⭐ Đánh giá tổng điểm */
.glsr-summary {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* 🔸 Thanh phần trăm đánh giá */
.glsr-rating-bar {
    background-color: #e0e0e0;
    border-radius: 3px;
}

.glsr-rating-bar span {
    background-color: #f1c40f;
    border-radius: 3px;
}

.glsr-review {
    background: rgb(0, 0, 0);
    border: 1px solid #eee;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.glsr-review-header {
    font-weight: bold;
    margin-bottom: 10px;
    color: #444;
}

.glsr-review-content {
    font-style: italic;
    color: #555;
}

.glsr-stars span {
    color: var(--accent-color) !important;
    font-size: 18px;
}

form.glsr-review-form {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 10px;
}

form.glsr-review-form label {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
    font-family: var(--font-main);
}

form.glsr-review-form input[type="text"],
form.glsr-review-form textarea.glsr-textarea {
    width: 100% !important;
    border: 1px solid var(--border-color) !important;
    padding: 10px !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-family: var(--font-main);
}

.btn-read-more {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.btn-read-more:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* page search */
.search-page-container {
    padding: 20px;
}

.search-page-container h2 {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
    color: var(--primary-color);
}

.best-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.search-results .product-card {
    height: 280px;
}

.btn-load-more {
    display: inline-block;
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: 600;
}

.btn-load-more:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-load-more:active {
    transform: translateY(0);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.load-more-wrap {
    text-align: center;
    margin: 30px 0;
}

.section-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.section-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.section-banner h1 {
    position: relative;
    z-index: 2;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
}

.blog-detail-content a {
    word-break: break-word;
    white-space: normal;
    overflow-wrap: break-word;
    display: inline;

}

.footer-contact {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #eee;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.footer-contact-info li {
    margin-bottom: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    color: var(--black-color);
}

.footer-contact-info li i {
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-contact-note {
    font-size: 13px;
    margin-top: 10px;
    color: #555;
}


.footer-form-actions {
    margin-top: 10px;
}

.footer-contact-form .wpcf7-form {
    display: flex;
    flex-direction: column;
}

.footer-contact-form input[type="text"],
.footer-contact-form input[type="email"],
.footer-contact-form input[type="tel"],
.footer-contact-form textarea {
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: var(--white-color);
    color: #333;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.footer-contact-form input[type="text"]:focus,
.footer-contact-form input[type="email"]:focus,
.footer-contact-form input[type="tel"]:focus,
.footer-contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.footer-contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.footer-contact-form input[type="submit"] {
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 12px 20px;
    font-size: 15px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer-contact-form input[type="submit"]:hover {
    opacity: 0.8;
}

ul.page-numbers {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 20px 0;
    gap: 8px;
}

ul.page-numbers li {
    display: inline-block;
}

ul.page-numbers a,
ul.page-numbers span {
    display: inline-block;
    padding: 8px 14px;
    text-decoration: none;
    border: 1px solid #ddd;
    color: #0c0c0c;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

ul.page-numbers a:hover {
    background-color: #080808;
    color: white;
    border-color: #bcc0c4;
}

ul.page-numbers .current {
    background-color: #121314;
    color: white;
    border-color: #0c0d0e;
    cursor: default;
}

ul.page-numbers .next::after {
    content: " →";
}

.page-btn {
    padding: 8px 16px;
    background-color: #0c0b0b;
    border: 1px solid #ccc;
    color: white;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.page-btn:hover {
    background-color: #060707;
    color: white;
    border-color: #090a0a;
}

.page-btn.active,
.page-btn[aria-current="page"] {
    background-color: #0c0c0c;
    color: white;
    font-weight: bold;
    cursor: default;
}

.next-btn::after {
    content: " →";
}

.country-select .country-list .country-name,
.country-select .country-list .flag {
    color: #111;
    font-family: var(--font-main);
    font-size: 14px;
}

#uacf7_country_select .country-select .wpcf7-uacf7_country_dropdown, #uacf7_country_select .country-select {
    color: #111;
    font-family: var(--font-main);
    font-size: 14px;
}

select[name="product-category"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    font-size: 14px;
    color: #333;
    font-family: var(--font-main);
    appearance: none;
    /* Ẩn mũi tên mặc định trên Safari/Chrome */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23333' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px 6px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

select[name="product-category"]:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-family: var(--font-main);
    font-size: 14px;
}

#cf7-phone {
    font-family: var(--font-main);
    font-weight: bold;
}

.product-info .wpcf7-form-control {
    padding: 10px;
    background: #fff;
    border: 1px solid #111;
    font-size: 14px;
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 700;
}

.product-info .wpcf7-form-control.wpcf7-submit:hover {
    background: #111;
    color: #fff;
}