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

:root {
    --font-main: "Roboto", sans-serif;
}
/* Responsive Slogan Home */
.slogan-home {
    text-align: center;
    padding: 2rem 1rem;
}

.slogan-home h1 {
    margin: 0;
    font-weight: 400;
    line-height: 1.2;
}

/* Mobile phones (320px - 480px) */
@media (max-width: 480px) {
    .slogan-home {
        padding: 1.5rem 0.5rem;
    }
    
    .slogan-home h1 {
        font-size: 1.2rem !important;
        line-height: 1.3;
    }
}

/* Small tablets (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .slogan-home {
        padding: 1.8rem 1rem;
    }
    
    .slogan-home h1 {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }
}

/* Tablets (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .slogan-home {
        padding: 2rem 1.5rem;
    }
    
    .slogan-home h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }
}

/* Desktop (1025px and up) */
@media (min-width: 1025px) {
    .slogan-home {
        padding: 2.5rem 2rem;
    }
    
    .slogan-home h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
}

/* Alert Messages for Forms */
.alert {
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.alert p {
    margin: 0;
    line-height: 1.4;
}

.alert-success {
    background-color: #d4edda !important;
    color: #155724 !important;
    border: 1px solid #c3e6cb !important;
}

.alert-error {
    background-color: #f8d7da !important;
    color: #721c24 !important;
    border: 1px solid #f5c6cb !important;
}

/* Loading spinner styles */
.fa-spin {
    animation: fa-spin 1s infinite linear;
}

@keyframes fa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form button loading state */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn .fa-spinner {
    margin-right: 5px;
}

/* Input error styling - ring only (subtle) */
.input-error-ring {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 1px #dc3545 !important;
}

.input-error-ring:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.3) !important;
}

/* Responsive 1:1 Aspect Ratio Styles */
.section-double__image--square {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
}

/* Ensure 1:1 aspect ratio for the figure container */
.section-double__figure {
    position: relative;
}

.section-double__figure::before {
    content: '';
    display: block;
    padding-bottom: 100%; /* 1:1 aspect ratio */
}

.section-double__figure > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-double__image--square .image__hero__pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-double__image--square .image__hero__scale {
    width: 100%;
    height: 100%;
    position: relative;
}

.section-double__image--square img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center !important;
    position: absolute;
    top: 0;
    left: 0;
}

/* Responsive behavior for section-double */
@media (max-width: 768px) {
    .section-double__body {
        flex-direction: column !important;
    }
    
    .section-double__figure {
        width: 100% !important;
        order: 1;
    }
    
    .section-double__aside {
        width: 100% !important;
        order: 2;
        padding: 2rem 1rem;
    }
    
    .is-reversed .section-double__figure {
        order: 1; /* Keep image first on mobile for both sections */
    }
}

/* Tablet breakpoint - reduce font sizes */
@media (min-width: 769px) and (max-width: 1024px) {
    .section-double__body {
        display: flex;
        align-items: stretch;
        min-height: 50vh;
    }
    
    .section-double__figure,
    .section-double__aside {
        width: 50%;
    }
    
    .section-double__figure {
        aspect-ratio: 1;
    }
    
    .section-double__aside {
        /*padding: 1.5rem 1rem;*/
    }
    
    /* Reduce font sizes for tablet */
    .section-double__aside .hero__rte h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }
    
    .section-double__aside .hero__rte p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .section-double__aside .btn {
        font-size: 0.85rem !important;
        padding: 0.6rem 1.5rem !important;
    }
    
    .is-reversed .section-double__body {
        flex-direction: row-reverse;
    }
}

@media (min-width: 1025px) {
    .section-double__body {
        display: flex;
        align-items: stretch;
        min-height: 60vh;
    }
    
    .section-double__figure,
    .section-double__aside {
        width: 50%;
    }
    
    .section-double__figure {
        aspect-ratio: 1;
    }
    
    .section-double__aside {
        padding: 2rem 1.5rem;
    }
    
    .is-reversed .section-double__body {
        flex-direction: row-reverse;
    }
}
.text-success{
    color: #28a745 !important;
}
.logo__img img, .footer__logo img {
	width:175px !important;
	/*height:53px !important;*/
    height: 100%;
    object-fit: contain;
}
@media screen and (max-width : 768px) {
    .logo__img img, .footer__logo img{
        width:175px !important;
        /*height:43px !important;*/
    }
}
.footer__logo {
	width:200px!important;
}
.certification-footer img{
    width: 200px;
    height: 100%;
}
.text-danger{
    color: #dc3545 !important;
}
.btn-loading {
    position: relative;
    opacity: 0.8;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: btn-loading-spinner 0.6s linear infinite;
}

@keyframes btn-loading-spinner {
    to {
        transform: rotate(360deg);
    }
}
  #myVideo::-webkit-media-controls {
    display: none !important;
  }

  #myVideo::-moz-media-controls {
    display: none !important;
  }

  #myVideo::-ms-media-controls {
    display: none !important;
  }
 #myVideo {
    pointer-events: none; /* Ngăn mọi hành vi nhấn vào video */
  }

.site-footer-wrapper {
    background: #fff !important;
    padding: 0;
    border-top: none;
}
.product-item__image .hover-image {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.product-item__image:hover .hover-image {
    opacity: 1;
}

.product-item__image:hover .main-image {
    opacity: 0;
}

.product-item__image .main-image {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.needsclick.kl-private-reset-css-Xuajs1{
    display: none;
}
.frame__item{
    min-height: 95vh;
}
.announcement__bar{
    justify-content: center;
}
 /* Style cho các tab */


 .tab {
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.tab.tab-product-home {
    font-family: var(--font-main);
}

/* Style cho các nút tab */
.tab button {
    background-color: inherit;
    border: none;
    outline: none;
    /*padding: 14px 16px;*/
    cursor: pointer;
    transition: 0.3s;
    font-size: 17px;
}

/* Style khi tab được active */
.tab button.active {
    background-color: #736254;
    color: #fff;
}

/* Nội dung tab */
.tabcontent {
    display: none;
    padding: 15px;
    border-top: none;
}

/* Hiển thị tab đầu tiên mặc định */
#Tab1 {
    display: block;
}




.filter-section {
    display: flex;
    gap: 15px;
    align-items: center;
    margin: 20px;
    flex-wrap: wrap;
    justify-content: end;
}

.form-select {
    padding: 8px 35px 8px 15px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 30px;
    background-color: #fff;
    cursor: pointer;
    min-width: 180px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 1em;
    outline: none;
}

.form-select:focus {
    outline: none;
    border-color: #666;
}

.filter-btn {
    padding: 8px 40px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
    justify-content: center;
}

.filter-btn:hover {
    background-color: #555;
}

.filter-btn i {
    font-size: 14px;
}


.loading {
    position: relative;
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}



.video-banner-home video{
    height: 100%;
    object-fit: cover;
}
.header__desktop__button.language{
    display: flex;
    align-items: center;
    font-size: 12.9px;
}
.account-sidebar, .user-info{
    font-family: var(--font-main);
}
.order-success{
    font-family: var(--font-main);
}
.content-about p{
    font-family: var(--font-main) !important;
    font-size: 15px !important;
}

.edit-profile-group{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.edit-profile-group input, .edit-profile-address textarea, .reset-item input {
    width: 100%;
    border: 1px solid #ddd;
}
.paginate_button{
    background: #523F31 !important;
    color: #fff !important;
}
footer{
    font-family: var(--font-main);
}
font[size] {
    font-size: 16px !important;
}
#custom-pagination{
    grid-column: 1 / -1;
}
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.column.services p{
    font-family: var(--font-main);
}
.pagination .page-item {
    margin: 0 5px;
}

.pagination .page-item.disabled .page-link {
    color: #ccc;
    cursor: not-allowed;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
}

.pagination .page-item.active .page-link, .pagination .page-link.active {
    background-color: #523F31;
    color: white;
    border: 1px solid #523F31;
}

.pagination .page-link {
    display: inline-block;
    padding: 10px 15px;
    color: #523F31;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.pagination .page-link:hover {
    background-color: #e9ecef;
    color: #0056b3;
}

.pagination .page-item:not(.disabled):not(.active) .page-link:hover {
    border-color: #523F31;
}

.excerpt {
  display: flex;
  flex-direction: column;
  line-height: 30px !important;
    font-family: Barlow Semi Condensed !important;
    font-size: 16px !important;
    color: #000 !important;
}

.top-header a, .top-header i {color: #fff!important;}

.top-header .text-dark {
    color: #fff!important;
}
[class*="product-search-"] .form-inline button:hover {
    background: #90c23d!important;
}
.product-wrapper .shipping-feed-back {
    display: none;
}


.product-wrapper .product-info .product-price .price ins {
    font-size: 18px;
}
.text-justify {
    text-align: justify;
}
.text-feature {
    color:#FCBE0E;
}
.cta-text {
    font-size: 18px;
}

#tradingview_d2640{
    width: 100% !important;
    height: 100% !important;
}
.gold-price-prices span{
    color: #000;
}
span.text-right {
    text-align: right;
}

.username-input span {
    font-size: 14px;
    font-style: italic;
    color: gray;
}
.product-cart-button a, .btn-buynow {
    display: inline-block;
    width: max-content;
    line-height: 1;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 13px;
    text-transform: uppercase;
   background-color: #2a9f51;
   color: #fff;
}
.megaInnerMenu .sub-menu{
    margin-left: 15px;
}

.wc-proceed-to-checkout{
    display: flex;
    color: #fff;
    flex-wrap: wrap;
    justify-content: end;
    align-items: center;
    gap: 10px;
}
.wc-proceed-to-checkout .checkout-button{
    background: #b60909;
}
.product-cart-button a:hover {
    background: #90c23d!important;
    color: #fff!Important;
}
.btn-buynow {
    background-color: #90c23d !important;
}
.btn-buynow:hover {

}
.product-wrapper {
    display: flex;
    flex-direction: column;
}

.product.type-product {
    height: 100%;
}

.product-info > *:not(:last-child) {
    margin-bottom: 15px;
}

.product-info {
    display: flex;
    flex-direction: column;
}

.product-info .product-cart-button {
    margin-top: auto;
}

.product-wrapper .product-info .product-title {
    min-height: 30px;
}
.tempcart .content-box {
    padding:15px;
}

div#preview img {
    height: 150px;
    border: 1px dashed #ccc;
    width: 150px;
    object-fit: contain;
    border-radius: 5px;
}
.ml-3 {
    margin-left: 15px;
}
.wc-proceed-to-checkout  .checkout-button.bg-secondary {
    background: #076466!important;
}
.ecommerce-header {
    background: #5e830d;
}
.icon-all {
    background-color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}
.search-res .icon-search {
    width: 40px;
    height: 40px;
    cursor: pointer;
    text-align: center;
    line-height: 42px;
    color: #ffffff;
    font-size: 17px;
    margin: 0px;
}
.icon-all i {
    color: #2ca052;
}
.strong, strong{
    font-weight: bold !important;
}
.categories-list li{
    list-style: none;
    margin-bottom: 20px;
}
.categories-list{
    margin: 0px;
}
.checkout-main{
    display: grid;
    grid-template-columns: 70% 30%;
}
.group-div-add-to-cart{
    padding: 0px;
    background: #736254;
    border-color: #736254;
    --btn-bg-hover:#736254;
}

.product-btn.add-cart.addToCart{
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 10px;
    color: #fff;
}
.hero__content.custom{
    color: #ffff !important;
}
.btn-shopnow-custom{
    border-color: #fff;
    color: #fff;
}
.user_ab {
    position: absolute;
    top: 100%;
    margin-top: 21px;
    right: 0px;
    transform: translateY(-80%);
    width: 230px;
    padding: 5px;
    box-shadow: 0px 0px 5px #888;
    background-color: #9ecb3b;
    border-radius: 0.25rem;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    -webkit-transition: 0.3s transform;
    transition: 0.3s transform;
}
.user_ab:before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0px;
    right: 0px;
    height: 21px;
}
.box_user_ab:hover .user_ab {
    opacity: 1;
    transform: translateY(0%);
    visibility: visible;
}
.user-header a {
    color: #333;
    display: inline-block;
}

.menu .user-header a:before {
    display: none;
}

.user_ab i {
    margin-right: 8px;
}
.user-header a{
    display: block;
    position: relative;
    font-size: 14px;
    color: #ffffff;
    padding: 3px 3px;
    font-family: var(--f-ExtraBold);
    text-transform: uppercase;
    text-decoration: none;
}
.search-res .search-grid {
    position: absolute;
    top: 50px;
    right: 0px;
    width: 0px;
    height: 40px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--color-main);
    z-index: 2;
    opacity: 0;
    border-radius: 25px;
    line-height: normal;
    
}
.mr-2, .mx-2 {
    margin-right: .5rem !important;
}
.cart-header .count-cart {
    position: absolute;
    top: 0px;
    right: -5px;
    color: #d00;
    background-color: #fff;
    border-radius: 50px;
    padding: 1px 3px;
    line-height: 1;
    box-shadow: 0px 0px 5px #888;
}
.nav-primary-hover .navbar-nav .nav-link:hover {
    color: #fff!important;
    text-decoration: underline;
}
.transition {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}
.main-nav.header-sticky {
    background: #5e830d;
}
.banner-wrapper-item {
    min-height: calc(100vh - 100px);
}

.text-split {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
}
.desc-aboutus.text-split {
    -webkit-line-clamp: 7;
}
.bg-section-8 {
    background: url(../../images/nen-3-20220716222018.jpg);
    background-size: cover;
}
.bg-section-8 ul li {
    list-style: outside;
    margin-bottom: 15px;
}
.bg-section-9 {
    background: #fffcf0;
}
/* Button Frame */
.btn-frame {
    display: block;
    width: 40px;
    height: 40px;
    position: fixed;
    right: 20px;
    z-index: 10;
    cursor: pointer;
}

.btn-frame i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #5e830d;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn-frame i img {
    vertical-align: middle;
    width: 70%;
}

.btn-frame .animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.btn-frame .kenit-alo-circle {
    width: 50px;
    height: 50px;
    top: -5px;
    right: -5px;
    position: absolute;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid rgba(7, 41, 103, 0.8);
    opacity: 0.1;
    border-color: #5e830d;
    opacity: 0.5;
}

.btn-frame .zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

.btn-frame .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.btn-frame .kenit-alo-circle-fill {
    width: 60px;
    height: 60px;
    top: -10px;
    right: -10px;
    position: absolute;
    border-radius: 100%;
    border: 2px solid transparent;
    background-color: rgba(7, 41, 103, 0.35);
    opacity: 0.4;
}

.btn-frame .pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

/* Zalo */
.btn-zalo {
    bottom: 315px;
}

/* Phone */
.btn-phone {
    bottom: 230px;
}

/* Messenger */
.js-facebook-messenger-container.closed {
    display: none !important;
}

.js-facebook-messenger-tooltip {
    bottom: 97px;
    right: 97px;
    color: #404040;
    background: #fff;
}

.js-facebook-messenger-tooltip.closed {
    display: none !important;
}

.js-facebook-messenger-box, .js-facebook-messenger-button {
    z-index: 999;
}

.js-facebook-messenger-tooltip {
    z-index: 999;
    display: none;
    position: fixed;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 2pt 10pt;
    box-shadow: rgba(0, 0, 0, 0.15) 0 2pt 10pt;
    z-index: 1000000000000000019884624838656;
}

.js-facebook-messenger-close-tooltip {
    width: 10px;
    height: 10px;
    display: inline-block;
    cursor: pointer;
    margin-left: 10px;
}

.js-facebook-messenger-box {
    z-index: 999;
}

.js-facebook-messenger-box.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

.js-facebook-messenger-box.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.js-facebook-messenger-button, .js-facebook-messenger-tooltip {
    z-index: 999;
}

.js-facebook-messenger-box {
    display: block;
    position: fixed;
    cursor: pointer;
    bottom: 150px;
    right: 17px;
    width: 46px;
    height: 46px;
    text-align: center;
    background: #5e830d;
    border-radius: 100%;
    overflow: hidden;
    z-index: 99;
    -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
}

.js-facebook-messenger-box.rotate svg#fb-msng-icon {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.js-facebook-messenger-box svg#fb-msng-icon {
    width: 22px;
    height: 23px;
    position: absolute;
    top: 13px;
    left: 12px;
    opacity: 1;
    overflow: hidden;
    -webkit-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -webkit-transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, transform 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
}

.js-facebook-messenger-box.rotate svg#close-icon {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.js-facebook-messenger-box svg#close-icon {
    opacity: 0;
    width: 19px;
    height: 20px;
    position: absolute;
    top: 19px;
    left: 19px;
    -webkit-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -webkit-transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, transform 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
}

.js-facebook-messenger-container, .js-facebook-messenger-container-button {
    z-index: 1000;
}

.js-facebook-messenger-container {
    position: fixed;
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    bottom: 110px;
    right: 90px;
    border-radius: 10px;
    pointer-events: none;
    -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
    -webkit-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
    -webkit-transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
    transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
    transition: transform 160ms ease-in-out, opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
}

.js-facebook-messenger-top-header {
    width: 220px;
    color: #ffffff;
    background: #5e830d;
    display: block;
    position: relative;
    width: 220px;
    background: #5e830d;
    color: #ffffff;
    text-align: center;
    line-height: 1;
    padding: 10px;
    font-size: 14px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.js-facebook-messenger-container iframe, .js-facebook-messenger-container-button iframe {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.js-facebook-messenger-box, .js-facebook-messenger-button, .js-facebook-messenger-tooltip {
    z-index: 999;
}

.js-facebook-messenger-container, .js-facebook-messenger-container-button {
    z-index: 1000;
}

.js-facebook-messenger-top-header {
    color: #ffffff;
    background: #5e830d;
    width: 220px;
}

.js-facebook-messenger-tooltip {
    color: #404040;
    background: #fff;
}

.js-facebook-messenger-container.open {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    pointer-events: all;
}

.js-facebook-messenger-tooltip {
    bottom: 97px;
    right: 97px;
}

.js-facebook-messenger-box.open svg#fb-msng-icon {
    opacity: 0;
}

.js-facebook-messenger-box.rotate.open svg#close-icon {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.js-facebook-messenger-box.open svg#close-icon {
    opacity: 1;
}
.btn-custom {
    border: solid 1px #2a9f51;
    color: #fff;
    background-color: #2a9f51;
    padding: 0.75rem 2.5rem;
    font-size: 16px;
    border-radius: 0.5rem;
}
.btn-custom.active, .btn-custom:hover {
    border: solid 1px #90c23d;
    background-color: #90c23d;
    color: #ffffff !important;
}
.text_num{position: absolute;min-width: max-content;right: 0%;top: 50%;transform: translate(0% , -50%);font-weight: bold;color: #fff;opacity: 0;overflow: hidden; visibility: hidden;}
.btn_num:hover .text_num{transform: translate(-50% , -50%);opacity: 1; visibility: visible;}
.bg-section-8 .container {
    background: #ffffffbf;
    padding: 15px;
    border-radius: 20px;
    padding-top: 40px;
}
.checkout-area .content-box .content .billing-address select,  .checkout-area .content-box .content .ship-diff-addres-area select {
    margin-bottom: 10px;
}
.thumb-blog-horizontal .post-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: top;
}

.blog_inner img{
    width: 100%;
}
#brands .brands ul li  {
    margin-bottom: 30px;
}
.closed{
    margin-top: 15px;
}
.products-header{
    display: flex;
    align-items: center;
    background-color: #eee;
    justify-content: space-between;
}
.page-title{
    text-transform: uppercase;
    color: #2a9f51;
    font-family: var(--f-ExtraBold);
    font-size: clamp(16px,3.5vw,36px);
    line-height: 1.2;
    text-align: center;;
}
.product-image img{
    width: 100%;
}
#cart-count{
    margin-left: -4px;
}
.row.set-account-pass.d-none{
    display: none;
}
.payment-information{
    display: flex;
    flex-direction: column;
}
.payment-information .payment{
    display: flex;
    align-items: center;
}
.btnCheckout{
    background-color: #736254;
    margin-top: 20px;
    border: 1px solid #736254;
}
.btnCheckout:hover{
    border: 1px solid #736254;
}
.checkout-area .content-box .content .order-area .order-item{
    margin-top: 15px;
}
.checkout-area .content-box .content .ship-diff-addres-area{
    display: none;
}
#shipshow{
    display: none;
}
.checkout-area .content-box .content label{
    margin: 20px 0px;
}
.order-area .py-4{
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}
.shop-thank{
    margin-top: 70px;
}
.shipping-add-area, .billing-add-area{
    font-family: var(--font-main);
}
.shipping-add-area address, .billing-add-area address{
    line-height: 40px;
}
.user-info p{
    margin-bottom: 10px;
}
.group-box-dashboard{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
#confirmUpload{
    background: #b60909;
    margin-bottom: 15px;
}
.brands .navbar-nav{
    border: none;
}
#header .navbar #mainNav .nav li.open.megaMenu .dropdown-menu li .listTitle.header{
    color: #ffff !important;
}
.footFeature h4, .footFeature h2, .footer-center h4{
    color: #ffff;
}
.shopFeatures_new .list-title-home h3, .shopFeatures_new .list-title-home h2{
    color: #076466;
}
.blogTitle{
    margin: 5px 15px 0 !important;

}
.purchase-action{
    display: grid;
    grid-template-columns: 70% 30%;
}
.purchase-action #qaddcrt{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #b60909;
    color: white;

}
.singleProduct .heading{
    line-height: 35px;
}
.pagination{
    display: flex;
    justify-content: center;
    align-items: center;
}
.title-search{
    margin-bottom: 20px;
}
.row-login{
    display: flex;
    justify-content: center;
}
.row-full-login{
    padding-top: 70px;
    padding-bottom: 70px;
}
.btn-view-order-detail-user, .btn-add-ticket{
    background: #736254;
    font-size: 14px;
    border: 1px solid #736254;
}
.btn-view-order-detail-user:hover{
    border: 1px solid #736254;
}
.btn-add-ticket{
    font-size: 16px;
    padding: 6px 30px;
    color: #ffff;
}

.dashboard-sidebar-btn{
    background-color: #076466 !important;
    margin-bottom: 10px;
}
.custom-form-reset-pass, .custom-form-edit-profile{
    display: grid;
    grid-gap: 10px;
}
.menu_mobile{
    display: none;
}
.menu_desktop{
    display: block;
}
.menu_desktop .nav{
    flex-direction: row !important;
}
.menu_desktop .megaInnerMenu{
    flex-direction: column !important;
}
.menu_desktop .megaInnerMenu.product-hot-header{
    display: flex;
    flex-direction: row !important;
}
.menu_desktop .boxMenu{
    width: 70% !important;
}
.proBuyBtn{
    justify-content: center;
}
.icon-cart-desktop{
    justify-content: end;
}

.listTitle.header .row-header {
    align-items: center;
    border-bottom: none !important;
} 
.listTitle.header .row .title-feature-header{
    margin-bottom: 0px ;
}
.listTitle.header .row .all-product{
    border-bottom: none !important;
}
.menu_desktop .megaInnerMenu.product-hot-header .hovCntInner i{
    position: absolute;
    right: -45%;
    top: 13px;
}
.menu_desktop .megaInnerMenu.product-hot-header img{
    padding: 0px;
}
.featureCats .item .imgHov .hovArea{
    display: flex;
    justify-content: center;
}
.featureCats .item .imgHov .hovArea a{
    margin-top: 40px !important;
    position: absolute;
    width: 50%;
}
.product .productInner.item-prod-home:hover .imgHov .hovArea .proPrice{
    display: flex;
    justify-content: center;
}
.product .productInner.item-prod-home .imgHov .hovArea .proPrice{
    display: flex;
    justify-content: center;
}
#testiTab{
    justify-content: center;
}
#breadcrumbRow .pageTitle ul{
    align-items: center;
}

footer .topFooter .widget li{
    line-height: 30px;
}
footer .topFooter .widget a{
    color: #ffff;
}
.row-bottom-footer{
    display: flex;
    justify-content: space-between;
}
.full-row.custom{
    padding-top: 0px;
    padding-bottom: 70px;
}
.product .productInner .proName a{
    font-size: 14px;
}

[class~=site-navigation] ul>li[class~=level-0] ul[class~=sub-menu] li a{
    color: #000;
}
.megaMenu {
    position: relative;
}
.contactInf p{
    margin-bottom: 0px;
}

.contactInfo h5{
    font-family: Barlow Semi Condensed !important;
    font-size: 16px !important;
    color: #333333 !important;
}
/* Dropdown menu styling */
.megaMenu .dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

/* Mega inner menu styling */
.megaInnerMenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.megaInnerMenu li {
    padding: 10px 0;
}

.megaInnerMenu a {
    color: #333;
    text-decoration: none;
    display: block;
}
.woocommerce-cart-form__cart-item .quantity .quantity-nav{
    width: 225%;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit, .btn-register-custom, .btn-save-custom{
    color: #fff !important;
}





/* Custom css cho template mới */
.header-desktop, #site-footer {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
    background: #ededed !important
}
[class~=block-feature] [class~=box] [class~=box-icon] img{
    width: 50px;
}
[class~=site-navigation] ul>li[class~=level-0]{
    padding-left: 10px;
    padding-right: 10px;
}
.menu-item-text{
    font-size: 15px;
    font-family: Barlow Semi Condensed;
    font-weight: bold;
}
.modal-backdrop{
    z-index: 0;
}
#site-footer [class~=block] [class~=block-title]{
    line-height: 20px;
}
[class~=site-header][class~=header-v1][class~=relative] [class~=site-navigation] ul>li[class~=level-0]>[class~=sub-menu] {
    margin-top: -10.5pt;
}
[class~=site-header] [class~=header-page-link] [class~=login-header]>a{
    font-family: Barlow Semi Condensed;
    font-size: 15px;
    font-weight: bold;
}
.img-container-grid{
    display:flex;
    flex-wrap: wrap;
  }
  
  .smallsquare{
    max-width:20%;
    height:auto;
    flex:0 0 20%;
    padding-top:20%;
    display:grid;
    position:relative;
  }
  
  .h_rectangle{
    max-width: 40%;
    flex: 0 0 40%;
    padding-top:20%;
    position:relative;
  }
  
  .bigsquare{
    max-width:40%;
    height:auto;
    flex:0 0 40%;
    padding-top:40%;
    display:grid;
    position:relative;
  }
  .bigsquare_blank{
    max-width:40%;
    height:auto;
    flex:0 0 40%;
    display:flex;
    flex-wrap: wrap;
  }
  .inner_square{
    max-width:50%;
    flex: 0 0 50%;
    height:50%;
    position:relative;
  }
  .v_rectangle{
    max-width: 20%;
    flex: 0 0 20%;
    padding-top:40%;
    position:relative;
  }
  
  .img-grid-c{
    width:100%;
    height:100%;
    top:0;
    left:0;
    position:absolute;
    object-fit:cover;
    object-position:center;
    padding:2.5px;
  }

body.home .section .block-title h2, [class~=m-b-0], .products-list.grid .product-wapper .products-content h3.product-title a, [class~=block-product-cats] [class~=item-product-cat-content] [class~=product-cat-content-info] [class~=item-title]{
    font-family: Barlow Semi Condensed;
}
.about-us .item-sub-menu{
    display: flex;
    justify-content: center;
    align-items: center;
}
.slogan span{
    line-height: 3.5;
    font-size: 70px !important;
    font-family: 'DFVN ED Lavonia', sans-serif;
    color: #076466;
}
.slogan {
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    width: 100%;
}

.marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 10s linear infinite;
}
[class~=site-header] [class~=site-logo] img{
    max-width: 300px ;
}
.button-outline:hover{
    color:#ffff !important;
}

/* Hoạt cảnh keyframes cho hiệu ứng cuộn */
@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
.header-mobile-fixed{
    position: sticky !important;
}

.font-barlow{
    font-family: Barlow Semi Condensed !important;
}
.blog .excerpt p, .blog .excerpt p span{
    line-height: 30px !important;
    font-family: Barlow Semi Condensed !important;
    font-size: 16px !important;
    color: #000 !important;
}
.post-title a{
    font-size: 17px;
    line-height: 27px;
}
#contactForm{
    flex-direction: column;
}
.loginform input, .registerform input{
    border: 1px solid #ddd;
    padding: 10px;
}


.img-container-grid img{
    width: 100%;
    height: 600px;
}
.slick-slide{
    height: auto !important;
}
.btn-continue-shopping, .btn-save-custom {
   
    background-color: #736254;
    color: #ffff;
    border: none !important;
}
.btn-continue-shopping{
    padding: 10px 35px;
}
.tempcart, .dashboard-user, .login-user, .register-user, .register-user, .search-results, .details-user, .reset-user, .order-user, .profile-user, .shop-checkout, .shop-cart
, .fe-recruitment, .ticket-user{
    padding: 0px 0px 70px;
}
.product{
    margin-bottom: 10px !important;
}
.button-login, .btn-register-custom{
    background: #000;
    color: #fff !important;
    padding: 5px;
    border: none;
}
.button-login:hover, .btn-register-custom:hover{
    background: #000;
}

.gold-price-header{
    justify-content: end;
    gap: 10px;
}
.sidebar-blog, .account-info{
    padding: 15px;
}

[class~=block-product-cats][class~=round-border] [class~=item-product-cat-content] [class~=item-image] img{
    border: none !important;
}

footer .categories-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
}

.footer .categories-list li {
    list-style: none; 
}
.video-home{
    height: 100%;
}
.video-home video{
    height: 100%;
    object-fit: cover;
}
.shop-details .buttons .add-to-cart-wrap .quantity button.plus, .shop-details .buttons .add-to-cart-wrap .quantity button.minus{
    z-index: 999;
}
.order-status.declined{
    background-color: red;
}
.language-select{
    padding: 0px;
    font-size: 20px !important;
    border: none;
}
.hover-box {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    background-color: white;
    border: 1px solid #ccc;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    font-family: Barlow Semi Condensed !important;
    font-size: 16px !important;
    text-align: start;
   
}
.hover-box p{
    font-family: Barlow Semi Condensed !important;
    font-size: 16px !important;
}
.hover-trigger:hover .hover-box {
    display: block;


}

.hover-trigger {
    position: relative;
    cursor: pointer;
    transition: all .3s;
}
.hover-trigger img{
    width: 115px;
}
#uploadBill, .btn-orderqr{
    background-color: #33aebd;
}
[class~=site-main] [class~=page-title]{
    margin-bottom: 40px !important;
}
.btn-orderqr{
    padding: 10px 35px;
    font-size: 16px;
    color: #ffff;
}
.gold-price-category{
    position: sticky;
    top: 0;
    height: auto !important;
}
.gold-price-sidebar{
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 10px;
    height:100%;
    color:#000;
    font-family: Sofia Pro;
}
.gold-price-sideba.products{
    height:500px;
}
.currency {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 16px;
    font-weight: bold;
  }

  .currency img {
    width: 25px;
    margin-right: 5px;
  }

  .price-box {
    text-align: end;
  }
  .price-box #bid-price{
    font-size: 36px;
    font-weight: 600;
  }

  .change {
    display: flex;
    gap: 5px;
  
    font-size: 18px;
    justify-content: end;
  }

  .bid-ask {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
  
  }
  .bid-ask #ask-price{
    font-size: 25px;
  }
  .bid-ask p {
    margin: 0;
  }
  #currency-select{
    border:1px solid #6a6a6a;
  }
  .price-list {
    margin: 20px 0;
  }

  .price-list table {
    width: 100%;
    font-size: 16px;
    border-collapse: collapse;
    border: 0px;
  }

  .price-list table th, 
  .price-list table td {
    padding: 8px 5px;
    text-align: left;
    border-bottom: 0px;
    border-right: 0px;
  }

  .price-list table td {
    text-align: right;
  }

 .product-lable .hot{
    background: transparent;
    padding: 0px;
    right: 0px;
    top: 0;
 }
 .product-lable.cart, .product-lable.gallery{
    position: relative;
 }

  .range {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
  }

  .gold-price{
    height: 500px;
    padding:10px;
  }
  .link.view.custom{
    color:#4a4a4a;
  }
  .remove.mybtn1.custom{
    color:red;
  }
  .btn-apply-ticket{
    background-color: #000000;
  }
  .close-modal-delete-ticket{
    color: #000;
  }
  .btn-404{
    background: #33aebd;
    border: none;
  }
  .certification img{
    width: 60%;
  }
  
   .custom-select-container {
    position: relative;
    width: 110px;
   
}

.selected-option {
    cursor: pointer;
}

/* Danh sách các tùy chọn ẩn mặc định */
.language-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    z-index: 1;
    max-height: 200px;
    overflow-y: auto;
    width: 130px;
    text-align: start;
}

/* Hiển thị các tùy chọn khi hover vào custom select */
.custom-select-container:hover .language-options {
    display: block;
}

.language-options li {
    padding: 10px;
    cursor: pointer;
    font-size: 12.9px;
    color: #000;
}

.language-options li:hover {
    background-color: #b7a896;
    color: #000;
}
.item-service .icon__animated img{
    width: 50px;
}
.item-service .icon__animated {
    justify-content: center;
    width: 100%;
}
.logo-footer-custom {
    height: 50px;
    width: 200px;
}
.checkout-area .content-box .content .order-area .order-item .product-content .unit-price{
    align-items: center;
}
p{
    margin: 0px;
}
.account table th{
    background: #736254 !important;
    color: #ffff;
}
.checkout-area .content-box .content .order-area .order-item .product-content .unit-price .label{
    margin: 0;
}
.group-address address{
    line-height: 40px;
}
a.print-order-btn{
    background-color:#523F31 ;
}


.product__video {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.video-thumb {
    background-color: #f5f5f5;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.video-thumb .icon-play {
    width: 30px;
    height: 30px;
    color: #333;
}
.product__video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.socials img{
    width: 30px;
    height: 30px;
}
.socials li{
    display: flex;
    gap: 10px;
}
@media screen and (max-width: 1030px){
    .language-switcher{
        padding: 15px;
    }
}
@media screen and (max-width: 1024.98px) {
    
    .gold-price-category{
        margin: 0px 0px 20px 0px !important;
    }
    .gold-price-sidebar{
        margin:10px;
    }
   
    .info.gold-price{
        padding: 10px;
        height: 500px;
        margin-top: 10px;
    }
    .video-home video{
        height: 100%;
    }
    .row-banner-home{
        flex-direction: column-reverse;
    }
    .sliderCont.slider-home{
        flex-direction: column-reverse;
        height: 100%;
    }
    .quantity-nav{
        width: 24%;
    }
    #breadcrumbRow .pageTitle ul{
        font-size: 14px;
    }
    .menu_mobile .navbar-brand{
        height: 100%;
        display: block;
    }
    .banner-wrapper-item {
        min-height: 453px;
    }
    .purchase-action{
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
    .purchase-action .add_to_cart_button img{
        width: auto;
    }
    .purchase-action #qaddcrt{
        padding: 10px 35px;
    }
    .tab-description{
        margin-top: 20px;
    }
    
    .add_to_cart_button{
        margin-left: 0px;
    }
    #breadcrumbRow h2{
        font-size: 20px;
    }
    .product .productInner .proBuyBtn .btn{
        width: 70%;
    }
    .menu_mobile .navbar{
        background-color: #ffff !important;
    }
    .text-flaticon{
        color:#076466;
    }


    #header .menu_mobile .navbar li.active a,#header .menu_mobile .navbar li.open a{
        box-shadow: none;
        background: #b60909;
        color: #FFF;
    }
    .d-carousel-cener .active.center .dc-inner .dc-containt h2{
        line-height: 35px;
    }
    footer .topFooter .footFeatures{
        justify-content: center;
    }
    .product .productInner .proName a{
        font-size: 14px;
    }
    .site-logo{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .slogan span{
        font-size: 30px !important;
    }
    [class~=site-header] [class~=site-logo] img{
        max-width: 300px;
    }
    .img-container-grid img{
        height: 100%;
    }
}

@media screen and (max-width: 820px) {
    .language-switcher{
        padding:15px;
     }
     .radio-design label{
        font-size: 14px;
     }
     .edit-profile-group{
        grid-template-columns: 1fr;
     }
     .flickity-viewport.product{
        height: 370px !important;
     }
     .filter-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    
    .form-select, .filter-btn {
        width: 100%;
        min-width: 100%;
    }

}
@media screen and (max-width: 767.98px) {
    .group-box-dashboard{
        grid-template-columns: 1fr;
    }
    /* .product-lable.gallery .hot img{
        display: none;
    } */
    .checkout-main{
        grid-template-columns: 1fr;
    }
     .language-switcher{
        padding:15px;
     }
    .row-corporate{
        gap: 20px;
    }
    .sign-in-form, .registration-form{
        padding: 17px 15px 30px !important;
    }
   
    .about-us .mm-next{
        display: none;
    }
  

    .banner-wrapper-infor .info{
        width: 100%;
        padding: 0px 15px;
    }
    .quantity-nav{
        width: 25%;
    }
    .row-bottom-footer{
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    .flexslider{
        margin: 0;
    }
    .menu_mobile{
        display: block;
    }
    .col-search{
        display: none;
    }
    .menu_desktop{
        display: none;
    }
    .product.col-sm-3{
        width: 100%;
    }
    .singleProduct .heading{
        font-size: 17px;
    }
    #breadcrumbRow h2{
        font-size: 15px;
    }
    .singleProduct .qtyAtc{
        margin-left: 0px;
    }
    .singleProduct .qtyAtc .quantity .input-group{
        width: 30%;
        margin-left: 40px;
    }
    .breadcrumb .active{
        line-height: 25px;
    }
    .d-carousel-cener .active.center .dc-inner .dc-containt h2{
        line-height: 35px;
        font-size: 20px;
    }

    #brands .brands ul li a{
        margin: 0px 3px;
    }
    .section-success-thank{
        display: block;
    }
    .form-control[name='personal_email'], .form-control[name='personal_confirm']{
        margin-top: 10px;
    }
    .top-collection-tab .nav-pills .nav-item .nav-link, .title-main {
        font-size: 22px;
        line-height: 1.5;
    }
    .product-wrapper .product-info .product-title {
        min-height: 60px;
    }
    .product-cart-button {
        flex-wrap: wrap;
        display: flex;
    }
    
    .product-cart-button > * {
        font-size: 13px!important;
        padding: 5px 4px!important;
    }
    #header .logo_line .searchSec .wishlistCompare .nav li a{
        top: -25px;
    }
    #header .logo_line .logo .logo_a img{
        width: 50%;
        height: auto;
    }
    .tabRow{
        margin-top: 20px;
    }
    .product-cart-button > * {width: 100%!important;display: block!important;margin: 0;}
    
    .product-cart-button > *:not(:last-child) {
        margin-bottom: 5px;
    }
    .d-none.d-xs-block {
        display: block!important;
    }
    .banner-wrapper-item {
        min-height: 165px;
    }
    .wc-proceed-to-checkout{
        font-size: 14px;
    }
    .menu_mobile .title-prod-header-mobile{
        text-align: center;
    font-weight: 700;
    line-height: 25px;
    margin-top: 10px;
    }
    .megaMenu .dropdown-menu {
        position: relative;
        width: 100%;
        box-shadow: none;
        border-top: 1px solid #ddd;
    }

    .megaMenu > a {
        display: block;
        width: 100%;
        padding: 15px;
        text-align: left;
        cursor: pointer;
    }

    .megaMenu .dropdown-menu li {
        padding: 10px;
    }

    .megaMenu .dropdown-menu a {
        color: #333;
        padding: 10px;
        display: block;
        width: 100%;
    }

    .megaMenu .dropdown-menu {
        display: none;
    }

    .megaMenu .dropdown-menu.show {
        display: block; 
    }
   
}
@media screen and (max-width: 480px) {
    .wc-proceed-to-checkout{
        font-size: 13px;
    }
    .quantity-nav {
        width: 163px;
    }
}



@media only screen and (max-width: 749px) {
    .product-grid {
        gap: 10px;
    }
    .tab button{
        /*padding: 14px 11px;*/
    }
}
.main-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    /* Tỷ lệ cố định 16:9 (1280x720) */
    aspect-ratio: 16/9;
    max-height: 720px;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide-image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-image {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    display: block;
}

.swiper-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    max-width: 800px;
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.3s;
}

.slide-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.6s;
}

.slide-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #8a1225;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, opacity 0.8s ease, transform 0.8s ease;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition-delay: 0.9s;
}

.slide-button:hover {
    background-color: #6e0e1e;
}

.swiper-slide-active .slide-title,
.swiper-slide-active .slide-subtitle,
.swiper-slide-active .slide-button {
    opacity: 1;
    transform: translateY(0);
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 22px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.5);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: white;
}

@media (max-width: 768px) {
    .main-slider {
        /* Giữ nguyên tỷ lệ 16:9 trên thiết bị di động */
        aspect-ratio: 16/9;
        max-height: 500px;
    }

    .slide-title {
        font-size: 1.75rem;
    }

    .slide-subtitle {
        font-size: 1rem;
    }

    .slide-button {
        padding: 10px 20px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .main-slider {
        /* Giữ nguyên tỷ lệ 16:9 trên thiết bị di động nhỏ */
        aspect-ratio: 16/9;
        max-height: 400px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .slide-title {
        font-size: 1.5rem;
    }
}
.product-swiper {
    width: 100%;
    padding: 20px 10px 40px;
    position: relative;
    overflow: hidden;
}

/* Ẩn phân trang Swiper */
.swiper-pagination {
    display: none;
}

/* Tabs */
.tab-product-home {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.tablinks1 {
    background: none;
    border: none;
    color: #333;
    font-size: 16px;
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-grow: 0;
    white-space: nowrap;
}

.tablinks1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: #710e15;
    transition: width 0.3s ease;
}

.tablinks1:hover::after, .tablinks1.active::after {
    width: 60%;
}

.tablinks1.active {
    font-weight: bold;
    color: #710e15;
}

/* Product Card Styles */
.product-card {
    /*margin: 0 10px 20px;*/
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: none;
    box-shadow: none;
    background-color: transparent;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card__image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

/* Màu nền cho sản phẩm */
/*.product-card.bg-cream .product-card__image-wrapper {*/
/*    background-color: #f5efe3;*/
/*}*/

/*.product-card.bg-burgundy .product-card__image-wrapper {*/
/*    background-color: #710e15;*/
/*}*/

.product-card__logo {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: auto;
    opacity: 0.7;
    z-index: 1;
}

.product-card__image-link {
    display: block;
    text-decoration: none;
}

.square-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
}

.product-img, .product-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease;
    /*padding: 10%;*/
}

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

/*.product-card__image-wrapper:hover .product-img {*/
/*    opacity: 0;*/
/*}*/

/*.product-card__image-wrapper:hover .product-img-hover {*/
/*    opacity: 1;*/
/*}*/

/* Ẩn nút hành động */
.product-card__actions {
    display: none;
}

/* Ẩn badge */
.product-card__badge {
    display: none;
}

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

.product-card__title {
    font-size: 14px;
    margin: 0 0 8px;
    font-weight: 500;
    line-height: 1.4;
    font-family: 'Times New Roman', Times, serif;
}

.product-card__title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card__title a:hover {
    color: #710e15;
}

/* Ẩn giá và thay bằng Contact */
.product-card__price {
    display: none;
}

.product-card__contact {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
    font-family: 'Times New Roman', Times, serif;
    display: inline-block;
}

.product-card__contact:hover {
    border-bottom-color: #666;
    color: #333;
}
.login-required-message {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    margin: 20px 0;
    font-family: var(--font-main);
}

.login-required-content {
    max-width: 400px;
    padding: 30px 20px;
}

.login-icon {
    margin-bottom: 20px;
    color: #6c757d;
}

.login-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #343a40;
}

.login-message {
    font-size: 16px;
    margin-bottom: 25px;
    color: #6c757d;
}

.login-button {
    display: inline-block;
    padding: 10px 25px;
    background-color: transparent;
    border:1px solid #000           ;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}
/* Responsive */
@media screen and (max-width: 992px) {
    .tab-product-home {
        justify-content: center;
        flex-wrap: wrap;
    }
}
@media (max-width: 991px) {
    .tablinks1 {
        font-size: 12px;
        /*padding: 8px 15px;*/
    }
}
@media screen and (max-width: 768px) {
    .tab-product-home .tablinks1 {
        padding: 6px 12px;
        font-size: 13px;
    }
    .login-required-message {
        min-height: 250px;
    }

    .login-icon svg {
        width: 40px;
        height: 40px;
    }

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

    .login-message {
        font-size: 14px;
    }
}
@media screen and (max-width: 576px) {
    .tab-product-home {
        justify-content: center;
    }

    .tab-product-home .tablinks1 {
        padding: 5px 10px;
        font-size: 12px;
        flex: 0 0 auto;
    }
    .login-required-message {
        min-height: 200px;
        padding: 15px;
    }

    .login-required-content {
        padding: 20px 15px;
    }

    .login-icon {
        margin-bottom: 15px;
    }

    .login-icon svg {
        width: 36px;
        height: 36px;
    }

    .login-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .login-message {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .login-button {
        padding: 8px 20px;
        font-size: 14px;
    }
}