/*
Theme Name: Storefront Child
Template: storefront
Author: tt
Version: 1.0.0
*/

@import url("../storefront/style.css");

body, button, input, select, textarea, a {
    font-family: 'IBMPlexSans', sans-serif !important;
}

a:focus,
a:active,
a:visited,
button:focus,
button:active,
input:focus,
input:active {
    outline: none;
    box-shadow: none;
}

/* Định dạng header trong Swiper */
.site-header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    padding: 15px 0;
    background: transparent;
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.8); /* ví dụ: màu nền đen mờ */
    transition: background 0.3s ease;
}

/* Logo và menu trong header */
.storefront-primary-navigation .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0px;
    border-bottom: 1px solid #fff;
}

/* Menu navigation */
.site-header nav {
    display: flex;
    gap: 15px;
}

/* Link menu */
.site-header nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    transition: all 0.3s ease-in-out;
}

/* Hover menu */
.site-header nav a:hover {
    border-radius: 5px;
}

/* CSS cho Swiper */
.mySwiper .swiper-container {
    width: 100%;
    height: 100vh;
}

.mySwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mySwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sponsor-detail {
    padding: 60px 0;
}

.sponsor-detail .sponsor-content {
    margin: 20px 0;
}

.sponsor-detail .sponsor-title {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: 32px;
}

.sponsor-detail .sponsor-thumbnail {
    margin: 0 auto;
    text-align: center;
}

.sponsor-detail .sponsor-thumbnail img {
    margin: 0 auto;
    text-align: center;
}

@media screen and ( min-width: 768px ) {
    .woocommerce-active .site-header .main-navigation {
        width: 100% !important;
        margin-right: 0;
        display: block !important;
    }
}


.storefront-primary-navigation .col-full {
    display: flex;
    align-items: center; /* Căn giữa theo chiều dọc */
    justify-content: space-between; /* Tạo khoảng cách giữa logo và menu */
    flex-wrap: wrap; /* Đảm bảo responsive khi thu nhỏ màn hình */
}

.storefront-primary-navigation .site-branding {
    flex: 1; /* Để logo chiếm một phần của hàng */
    margin-bottom: 0px;
}

.storefront-primary-navigation .main-navigation {
    flex: 2; /* Để menu chiếm phần còn lại */
}

.storefront-primary-navigation .menu {
    display: flex;
    gap: 5px; /* Khoảng cách giữa các mục menu */
}

.storefront-primary-navigation .menu li {
    list-style: none;
}

.storefront-primary-navigation .menu li.current-menu-item a::after {
    width: 100%;
    left: 0;
}


.storefront-primary-navigation .menu a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    display: inline-block;
    font-weight: 600;
}

.storefront-primary-navigation .site-branding {
    width: 100% !important;
    float: left !important;
    margin-right: 100px !important;
    max-width: 95px;
}

.storefront-primary-navigation .menu a {
    color: #fff;
    position: relative;
    font-weight: 600;
}

.storefront-primary-navigation ul.nav-menu > li > a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px; /* Độ dày của đường gạch */
    background-color: #DC411A;
    bottom: -2px;
    left: 50%;
    transition: width 0.3s ease, left 0.3s ease;
}

.storefront-primary-navigation ul.nav-menu > li > a:hover::after {
    width: 100%;
    left: 0;
}

.main-navigation ul.menu > li.menu-item-has-children > a::after {
    position: unset;
}

.main-navigation ul.menu > li.menu-item-has-children > a:hover::after {
    width: 0;
    left: unset;
}

.main-navigation ul li a:hover, .main-navigation ul li:hover > a, .site-title a:hover, .site-header ul.menu li.current-menu-item > a {
    color: #fff;
    font-weight: 600;
}

.nav-login .btn-register {
    background-color: #DC411A;
    border: 1px solid #DC411A;
}

.nav-login a {
    font-weight: 600;
    padding: 1.618em 1em;
    text-decoration: none;
    padding: 10px 15px;
    transition: all 0.3s ease-in-out;
    color: #fff;
}

.storefront-primary-navigation .menu-item-type-custom a img {
    display: inline-block;
}

.main-navigation ul.menu ul.sub-menu {
    background-color: #0D121C;
}

.homepage-gallery-container .swiper-container {
    overflow: hidden;
    width: 100%;
}

.homepage-gallery-container .gallery-title {
    position: absolute;
    top: 60px;
    left: 60px;
    color: #fff;
    font-size: 72px;
    line-height: 90px;
    font-weight: bold;
    z-index: 10;
}

.wrapper-swiper-home1 {
    position: relative;
}

.gallery-img {
    position: relative;
    width: 100%;
}


.wrapper-swiper-home1:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Điều chỉnh độ cao của bóng mờ */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 60%, #000000 100%);

    z-index: 2;
}

.gallery-img:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #080B0A 0%, rgba(0, 0, 0, 0) 14.5%, #000 100%);

    pointer-events: none;
    z-index: 2;
}

.homepage-gallery-container .txt-color {
    font-weight: bold;
    color: #DC411A;
    display: block;
}


.homepage-gallery-container .gallery-content {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    text-align: left;
    font-size: 16px;
    line-height: 22px;
    z-index: 5;
    max-width: 600px;
}

.homepage-gallery-container .gallery-content h4 {
    font-weight: bold;
    color: #DC411A;
}

.homepage-gallery-container .gallery-content p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 20px;
}

.homepage-gallery-container .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homepage-gallery-container .swiper-container {
    overflow: hidden;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 480px) {
    .homepage-gallery-container .swiper-container {
        min-height: 320px;
    }
}

.homepage-gallery-container .swiper-container-wrapper {
    display: flex;
    flex-flow: column nowrap;
    height: 100vh;
    width: 100vw;
}

@media (min-width: 480px) {
    .homepage-gallery-container .swiper-container-wrapper {
        flex-flow: row nowrap;
    }
}


.homepage-gallery-container .swiper-slide {
    text-align: center;
    background-size: cover;
    background-position: center;
    background-color: #fff;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 100% !important;
    max-height: 1024px;
}

.homepage-gallery-container .swiper-slide .description,
.homepage-gallery-container .swiper-slide .title {
    display: block;
    opacity: 0;
    transition: 0.5s ease 0.5s;
}

.homepage-gallery-container .swiper-slide-active .description,
.homepage-gallery-container .swiper-slide-active .title {
    opacity: 1;
}

.homepage-gallery-container .swiper-slide-active .title {
    margin-bottom: 0.5rem;
    font-size: 24px;
    color: #000;
    transition: opacity 0.5s ease 0.5s;
}

.homepage-gallery-container .swiper-slide-active .description {
    font-size: 16px;
    color: #777;
    transition: opacity 0.5s ease 0.75s;
}

.homepage-gallery-container .gallery-top {
    position: relative;
    width: 100%;
    height: 75vh;
}

@media (min-width: 480px) {
    .homepage-gallery-container .gallery-top {
        width: 80%;
        height: 100vh;
        margin-right: 10px;
    }
}

.homepage-gallery-container .gallery-thumbs {
    width: 100%;
    height: 25vh;
    padding-top: 10px;
    position: absolute;
    right: 60px;
    top: 25%;
    z-index: 5;
}

@media (min-width: 480px) {
    .homepage-gallery-container .gallery-thumbs {
        width: 400px;
        height: 50%;
        padding: 0;
        overflow: auto;
    }
}

.homepage-gallery-container .gallery-thumbs::-webkit-scrollbar {
    display: none; /* Ẩn thanh cuộn trên Chrome, Safari */
}

.homepage-gallery-container .gallery-thumbs .swiper-wrapper {
    flex-direction: row;
}

@media (min-width: 480px) {
    .homepage-gallery-container .gallery-thumbs .swiper-wrapper {
        flex-direction: column;
    }
}

.homepage-gallery-container .gallery-thumbs .swiper-slide {
    width: 25%;
    flex-flow: row nowrap;
    /*height: 250px !important;*/
    opacity: 0.75;
    cursor: pointer;
}

.homepage-gallery-container .gallery-thumbs .swiper-slide {
    position: relative;

}

.homepage-gallery-container .swiper-thumbs .swiper-slide {
    background-color: transparent;
}
.swiper-container.gallery-thumbs {
    padding-top: 100px;
    padding-bottom: 100px;
}

.homepage-gallery-container .gallery-thumbs .swiper-slide.swiper-slide-thumb-active::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 5px solid #ffffff;
    box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;

    pointer-events: none;
    border-radius: 8px;
}

.homepage-gallery-container .gallery-thumbs .swiper-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #ffffff; /* Viền màu trắng */
    pointer-events: none;
    border-radius: 8px;
}

@media (min-width: 480px) {
    .homepage-gallery-container .gallery-thumbs .swiper-slide {
        flex-flow: column nowrap;
        width: 100%;
    }
}

.homepage-gallery-container .gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    overflow: hidden;
}

.homepage-gallery-container {
    position: relative;
}

.swiper-homepage-section-distance {

}

.swiper-homepage-section-distance.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 60px;
}

.swiper-homepage-section-distance .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
}

.swiper-homepage-section-distance .swiper-slide img {
    display: block;
    width: 100%;
}

.wrapper-homepage {
    background-color: #080B0A;
}

.wrapper-content-about-us .row {
    max-width: 1000px;
    margin: 0 auto;
}

.wrapper-homepage .wrapper-section-distance .row {
    max-width: unset;
}

.wrapper-img-bottom {
    margin: 0 auto;
    text-align: center;
}

.wrapper-img-bottom img {
    margin: 0 auto;
    text-align: center;
}


.section-new-arrival > div {
    display: flex;
    gap: 20px; /* Khoảng cách giữa 2 cột */
    max-height: 500px; /* Giới hạn chiều cao */
    overflow: hidden; /* Ẩn phần vượt quá */
    gap: 20px;
}

.section-new-arrival .left {
    flex: 1;
    position: relative;
}


.section-new-arrival .left p {
    font-weight: bold;
    font-size: 96px;
    line-height: 96px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    -webkit-text-stroke-width: 2px; /* Độ dày của đường viền chữ */
    -webkit-text-stroke-color: #EA5823; /* Màu của đường viền */
    color: transparent; /* Màu của chữ sẽ là trong suốt */
    font-family: "IBMPlexSans";
}

.section-new-arrival.section-2 .left p {
    text-align: right;
    -webkit-text-stroke-width: 2px; /* Độ dày của đường viền chữ */
    -webkit-text-stroke-color: #EA5823; /* Màu của đường viền */
    color: transparent; /* Màu của chữ sẽ là trong suốt */
    font-family: "IBMPlexSans";
}

.section-new-arrival .custom-products-grid {
    flex: 1; /* Cột phải chiếm 50% */
    overflow-y: auto; /* Hiển thị thanh cuộn */
    max-height: 500px; /* Đảm bảo nội dung không vượt quá */
    padding-right: 10px;

    /* Ẩn thanh cuộn */
    scrollbar-width: none; /* Firefox */
}

.section-new-arrival .custom-products-grid .card {
    background: rgba(137, 137, 137, 0.2);
    padding: 10px;
}

.section-new-arrival .custom-products-grid .card .card-title a {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}

.section-new-arrival .custom-products-grid .card-text {
    margin-bottom: 0px;
}

.section-new-arrival .custom-products-grid .card .card-title {
    margin-bottom: 0px;
}

.section-new-arrival .custom-products-grid .card .card-text .text-1 {
    font-size: 24px;
    line-height: 32px;
    color: #EA5823;
    font-weight: bold;
}

.section-new-arrival .custom-products-grid .card .btn-custom {
    background-color: #EA5823 !important;
    color: #fff;
    width: 220px;
    margin: 0 auto;
    margin-top: 20px;
    border: 1px solid #EA5823;
    margin-right: 0px;
}

.section-new-arrival .custom-products-grid .card .wrapper-img {
    max-width: 192px;
    height: 192px;
    background-color: #fff;
    border-radius: 8px;
    position: absolute;
    top: -17px;
    z-index: 1;
    left: 15px;
    /* width: 200px; */
    width: 200px;
    overflow: hidden;
    display: block;
}

.section-new-arrival .custom-products-grid .card {
    margin-top: 50px;
    position: relative;
    overflow: auto;
    z-index: 0;
    box-sizing: border-box;
    overflow: unset;
    min-height: 192px;
    padding-bottom: 10px;
}

.section-new-arrival .custom-products-grid .card .custom-padding {
    padding-left: 15px;
    padding-right: 15px;
}

.section-new-arrival .custom-products-grid .card .product-image {
    width: 100%;
    height: 100%; /* THÊM DÒNG NÀY */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.section-new-arrival .custom-products-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.section-new-arrival .products {
    list-style: none;
    padding: 0;
}

.section-new-arrival .products li {
    padding: 15px 0;
}

.section-new-arrival .woocommerce img {
    max-width: 100%;
    height: auto;
}

/* Nếu có section-2 thì đảo vị trí 2 cột */
.section-new-arrival.section-2 > div {
    flex-direction: row-reverse;
}

/* Nếu có section-2 thì đảo vị trí 2 cột */
.section-new-arrival.section-2 > div {
    flex-direction: row-reverse;
}

.section-video {
    position: relative;
    padding-bottom: 56.25%; /* Giữ tỷ lệ 16:9 */
    height: 0;
    overflow: hidden;
    margin-top: 70px;
    min-height: 516px; /* Đảm bảo tối thiểu 516px */
}

.section-video .wp-block-embed__wrapper {
    width: 100%;
    height: 516px;
    overflow: hidden;
    position: relative;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.section-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mySwiper {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    z-index: unset !important;
}

.mySwiper .custom-container {
    position: absolute;
    top: 40%;
    right: 13%;
    z-index: 3;
}

.mySwiper .swiper-pagination {
    display: flex;
    flex-direction: column;
}

.mySwiper .swiper-pagination-bullet {
    background: none !important;
    color: white; /* Màu số */
    font-size: 20px !important;
    font-weight: bold;
    width: auto;
    height: auto;
    opacity: 0.6;
    transition: opacity 0.3s;
    margin: 0;
    padding: 0;
    position: relative;
    line-height: 1;
}

.mySwiper .swiper-pagination-bullet-active {
    opacity: 1;
    font-size: 45px !important;
    position: relative;
}

.mySwiper .swiper-pagination-bullet-active::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 2px;
    border-bottom: 2px solid white;
    top: 69%;
    right: -70px;
}

.swiper-slide-active .gallery-title {
    animation: slide-in 0.3s ease-in both;
}


.gallery-thumbs .swiper-slide img {
    transition: 0.3s;
}

.gallery-thumbs .swiper-slide-active {
    opacity: 1;
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.gallery-thumbs .swiper-slide-thumb-active img {
    transform: scale(1.1); /* Phóng to 1.2 lần */
    transition: transform 0.3s ease-in-out; /* Hiệu ứng mượt */
    border-radius: 70px;
}
.homepage-gallery-container .gallery-thumbs {
    height: 500px;
}
.wrapper-section-distance {
    margin-top: 60px;
}
.homepage-gallery-container .gallery-thumbs:after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 60%, #000000 100%);
    z-index: 1;
}
.wrapper-section-distance .gallery-item {
    border-left: 1px solid white;
    padding-left: 20px;
    position: relative;
}

.wrapper-section-distance .gallery-item {
    height: 487px;
}

.wrapper-section-distance .gallery-item.gallery-item-1 .wrapper-content .wrapper-content-primary,
.wrapper-section-distance .gallery-item.gallery-item-1 .wrapper-content .wrapper-content-hover {
    position: absolute;
    bottom: 0;
}

.wrapper-section-distance .gallery-item.gallery-item-2 .wrapper-content .wrapper-content-primary,
.wrapper-section-distance .gallery-item.gallery-item-2 .wrapper-content .wrapper-content-hover {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.wrapper-section-distance .gallery-item.gallery-item-3 .wrapper-content .wrapper-content-primary,
.wrapper-section-distance .gallery-item.gallery-item-3 .wrapper-content .wrapper-content-hover {
    position: absolute;
    bottom: 50px;
}


.wrapper-section-distance .gallery-item.gallery-item-3 {
    border-right: 1px solid white;
}

.wrapper-section-distance .gallery-item .gallery-title {
    font-weight: bold;
    font-size: 72px;
    line-height: 90px;
    margin-bottom: 15px;
    color: #fff;
}

.wrapper-section-distance .gallery-item .gallery-desc {
    font-weight: bold;
    font-size: 16px;
    font-style: italic;
    line-height: 24px;
    margin-bottom: 30px;
    color: #fff;
}

.wrapper-section-distance .gallery-arrow {
    position: relative;
    width: 80px;
    height: 2px; /* Độ dày của thân mũi tên */
    background-color: white; /* Màu của mũi tên */
}

.wrapper-section-distance .gallery-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -2px;
    transform: translateY(-50%) rotate(45deg);
    width: 15px;
    height: 15px;
    border-top: 3px solid white;
    border-right: 3px solid white;
}

.wrapper-section-distance .gallery-item .wrapper-content-hover .gallery-arrow {
    margin-bottom: 15px;
    background-color: #DC411A;
}

.wrapper-section-distance .gallery-item .wrapper-content-hover .gallery-arrow::after {
    border-top: 3px solid #DC411A;
    border-right: 3px solid #DC411A;
}

.wrapper-section-distance .gallery-item .wrapper-content-hover .gallery-desc {
    margin-bottom: 15px;
}

.wrapper-section-distance .wrapper-gallery-title {
    position: relative;
}

.wrapper-section-distance .wrapper-gallery-title .gallery-title {
    position: absolute;
    bottom: 0;
    color: #DC411A;
    right: 10px
}


.wrapper-content-hover {
    opacity: 0;
    transform: translateY(10px);
    transition: all 500ms ease-in-out;
}

.wrapper-content-custom.wrapper-content-homepage p {

}

.wrapper-content-primary {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.wrapper-section-distance .gallery-item {
    transition: all 500ms ease-in-out;
}

.wrapper-section-distance .gallery-item:hover .wrapper-content-hover {
    opacity: 1;
    transform: translateY(0);
}

.wrapper-section-distance .gallery-item:hover .wrapper-content-primary {
    opacity: 0;
    transform: translateY(-10px);
}

.wrapper-homepage .custom-title {
    margin-bottom: 60px;
}

.custom-title {
    font-size: 48px;
    line-height: 64px;
    font-weight: bold;
    position: relative;
    color: #fff;
    text-align: center;
    margin-top: 40px;
    padding-top: 70px;
}

.custom-title span {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.custom-title::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 30px; /* Độ dày của đường gạch */
    background-color: #DC411A;
    top: 40px;
    z-index: 0;
    left: 50%;
}

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

.map-container {
    width: 100%;
    max-width: 100%;
    margin-top: 60px;
}

.map-container iframe {
    width: 100%;
    height: 400px; /* Điều chỉnh chiều cao theo nhu cầu */
    border: none;
}


.site-footer {
    background-size: auto;
    background-position: bottom;
    background-repeat: no-repeat;

    background-color: #0D121C;
    padding-top: 60px;
}

.site-footer li {
    color: #fff;
    margin-bottom: 10px;
}

.site-footer ul {
    margin: 0;
}

.site-footer h3 {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: 32px;
    height: 32px;
}

.site-footer ul li img {
    display: inline-block;
    margin-right: 10px;
}

.site-footer ul li a {
    text-decoration: unset;
}

.site-footer .wrapper-image {
    margin: 0 auto;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 160px;
}

.site-footer .wrapper-image img {
    margin: 0 auto;
    text-align: center;
}

.wrapper-banner img {
    width: 100%;
}

.wrapper-content-custom {
    background-color: rgba(10, 10, 10, 255);
}

.wrapper-content-custom .title {
    margin-top: 60px;
    font-size: 36px;
    font-weight: bold;
    line-height: 48px;
    text-align: center;
    color: #fff;


}

.wrapper-diawings-section-diawing-golf .title {
    border-bottom: 1px solid #3F0F0B;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}


.wrapper-content-custom .woocommerce-breadcrumb a:first-of-type::before {
    content: "";
}

.wrapper-content-custom .woocommerce-breadcrumb {
    text-align: center;
    color: #fff;
}

.wrapper-content-custom .storefront-breadcrumb {
    padding-top: 0;
}

.wrapper-content-custom .woocommerce-breadcrumb a {
    font-size: 16px;
    color: #fff;
    text-decoration: unset;
}

.wrapper-content-custom .woocommerce-breadcrumb .breadcrumb-separator {

}

.wrapper-content-custom .woocommerce-breadcrumb .breadcrumb-separator::after {
    color: #fff;
    opacity: 1;
}

.wrapper-content-custom .title-2 {
    font-size: 36px;
    font-weight: bold;
    line-height: 48px;
    position: relative;
    color: #fff;
    margin-bottom: 80px;
}

.wrapper-content-custom .title-2::after {
    content: ""; /* Bắt buộc để hiển thị */
    position: absolute;
    width: 200px;
    height: 5px;
    bottom: -10px;
    left: 0;
    background-color: #DC411A; /* Dùng background-color thay vì color */
}

.wrapper-content-custom .title-2::before {
    content: "";
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 80px; /* Thêm kích thước */
    height: 80px; /* Thêm kích thước */
    position: absolute;
    right: 0;
}

.wrapper-content-custom p {
    margin-bottom: 20px;
    color: #fff;
}

.wrapper-diawings-table-custom p {
    margin-bottom: 0px;
}

.nav-custom {
    margin-top: 40px;
    margin-bottom: 40px;
}

.nav-custom .nav-item {
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.nav-custom .nav-item:last-child::after {
    height: 0;
}

.nav-custom .nav-item::after {
    height: 50px;
    width: 1px;
    background: #fff;
    content: "";
    right: -50px;
    top: 20px;
    position: absolute;

}

.nav-custom .number {
    color: #EA5823;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
    display: block;
}

.nav-custom .text {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    display: block;
    max-width: 200px;
    width: 200px;
}

.wrapper-content-about-us .text-color {
    color: #EA5823;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
}


.wrapper-content-sponsor {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding-top: 100px;
}

.wrapper-content-sponsor > * {
    position: relative;
    z-index: 3; /* Content hiển thị trên lớp phủ */
}

.wrapper-content-sponsor .title {
    font-size: 48px;
    line-height: 72px;
    font-weight: bold;
    margin-top: 20px;
    color: #fff;
}

.wrapper-content-sponsor .title {
    padding-bottom: 10px;
    border-bottom: 1px solid #3F0F0B;
}

.wrapper-content-sponsor .title .custom-text {
    color: #EA5823;
}

.wrapper-content-sponsor p {
    font-size: 24px;
    line-height: 32px;
    color: #fff;
}

.wrapper-content-sponsor .title-3 {
    font-size: 36px;
    line-height: 48px;
    color: #fff;
    font-weight: bold;
}

.wrapper-content-sponsor .sponsor-item {
    border: unset;
    border-radius: 15px;
    background: rgba(163, 163, 163, 0.1);
}

.wrapper-content-sponsor .sponsor-item .card-body {
    text-align: left;
    padding: 30px 30px 15px 30px;
    position: relative;
}

.wrapper-content-sponsor .sponsor-item .card-body::after {
    text-align: left;

    background-size: cover;
    background-position: center;
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    right: 20px;
    top: 63%;
    transform: translateY(-50%);
}


.wrapper-content-sponsor .sponsor-item .card-body .card-title {
    color: #EA5823;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;

    display: -webkit-box;
    -webkit-line-clamp: 2; /* Giới hạn tối đa 2 dòng */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal; /* Cho phép xuống dòng */
}

.wrapper-content-sponsor .sponsor-item .card-body .card-text {
    max-width: 90%;
    color: #fff;

    display: -webkit-box;
    -webkit-line-clamp: 2; /* Giới hạn tối đa 2 dòng */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal; /* Cho phép xuống dòng */
}

.wrapper-content-sponsor .sponsor-item .card-body .card-text p {
    color: #fff;
    font-size: 16px;
    line-height: 20px;
}

.wrapper-content-sponsor .sponsor-item .post-thumbnail {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 400px /* Full màn hình */
}

.wrapper-content-sponsor .sponsor-item .card-body {
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    padding-top: 30px;
}

.banner-gtr .hidden {
    opacity: 0;
}

.banner-gtr {
    position: relative;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh; /* Full màn hình */
    min-height: 900px;
}

.banner-gtr:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #080B0A 0%, rgba(0, 0, 0, 0) 14.5%, #000 100%);

    pointer-events: none;
    z-index: 2;
}

.banner-gtr.banner-gtr2-2:after {
    content: unset;
    background: unset;
}

.banner-gtr .container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.banner-gtr .row {
    /*position: absolute;*/
    /*bottom: 100px;*/
    margin-top: 200px;
}

.banner-gtr .title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    line-height: 32px;
    margin-bottom: 20px;
    padding-top: 190px;
}

.banner-gtr .title span {
    display: block;

}

.banner-gtr .title .txt-color {
    font-size: 48px;
    font-weight: bold;
    line-height: 72px;
    color: #EA5823;

}

.banner-gtr .content {
    color: #fff;
    font-size: 20px;
    line-height: 30px;

}

.banner-gtr .content a {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    font-style: italic;
    position: relative; /* cần thiết để định vị ::before */
    padding-left: 20px; /* tạo khoảng cách giữa chấm và chữ */
}

.banner-gtr .content a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #EA5823;
    border-radius: 50%; /* tạo hình tròn */
}

.banner-gtr .content p {
    margin-bottom: 15px;

}

.banner-gtr .wrapper-thumbs {
    position: absolute;
    bottom: 0;
}

.banner-gtr .wrapper-thumbs img {
    display: inline-block;


}

.wrapper-content-gtr .storefront-breadcrumb {
    display: none;
}

.wrapper-content-gtr .title {
    margin-top: 120px;
    margin-bottom: 40px;
    border-bottom: 1px solid #3F0F0B;
    padding-bottom: 15px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

.banner-gtr .custom-cl {
    position: relative;
}


.wrapper-gtr .custom-products-grid {
    margin-top: 60px;
}

.wrapper-gtr .custom-products-grid .wrapper-product-image {
    max-width: 472px;
    max-height: 440px;
    width: 100%;
    height: 100%;
}

.wrapper-gtr .custom-products-grid .product-image {
    background-size: cover;
    width: 100%;
    background-repeat: no-repeat;
    display: block;
    object-fit: contain;
    background-position: center;
    height: 100%;
    background-origin: unset;
}

.wrapper-content-custom.wrapper-content-gtr .wrapper-gtr .description .title {
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    margin-top: 15px;
    text-align: left;
    margin-bottom: 20px;
}

.wrapper-content-custom.wrapper-content-gtr .wrapper-gtr .card .inserted-post-content {
    margin-bottom: 80px;
}

.wrapper-content-custom.wrapper-content-gtr .wrapper-gtr p {
    font-size: 16px;
    line-height: 24px;
}

.wrapper-content-custom.wrapper-content-gtr .wrapper-gtr .text-1 {
    color: #EA5823;
    font-size: 24px;
    line-height: 36px;
}

.wrapper-content-custom.wrapper-content-gtr .wrapper-gtr .btn-custom {
    color: #fff;
    background-color: #EA5823;
    font-size: 14px;
    line-height: 20px;
    border-color: #EA5823;
    border-radius: unset;
}


div#timeline {
    background: #3F3F46;
    margin-top: 60px;
    height: 5px;
    width: 100%;
    position: relative;
}

div#timeline .inside {
    position: absolute;
    height: 4px;
    background-color: #fff;
    width: 0%;
    top: 3px;
    left: 0;
}

div#timeline .dot {
    z-index: 99;
    transition: 0.3s ease-in-out;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    text-align: center;
    cursor: pointer;
    transform: translateX(-50%); /* Đảm bảo dot căn giữa */
}

div#timeline .dot {
    background: #3F3F46;
}

div#timeline .dot:hover {
    transform: scale(1.2) translateX(-50%);
    background-color: #EA5823;
    color: #E5E5E5;
    left: unset;
}

div#timeline .dot date {
    font-size: 14px;
    line-height: 20px;
    display: block;
    position: relative;
    top: 35px;
    text-align: left;
    width: 100px;
    left: 0px;
    color: #E5E5E5;
}

div#timeline .dot span {
    display: none;
    margin-top: 12px;
    width: 10px;
    height: 10px;
    background-color: #fff;
    position: relative;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.wrapper-gtr-watching-sport {

}

.wrapper-gtr-watching-sport .wp-block-image {
    float: left;
}

.wrapper-gtr-watching-sport .wp-block-image img {
    height: 270px !important;
}

.wrapper-gtr-watching-sport .row .wp-block-image:nth-child(2) {
    float: left;
    width: 60%;
}

.wrapper-gtr-watching-sport .row .wp-block-image:nth-child(3) {
    float: left;
    width: 40%;
}

.wrapper-gtr-watching-sport .row .wp-block-image:nth-child(4) {
    float: left;
    width: 40%;
}

.wrapper-gtr-watching-sport .row .wp-block-image:nth-child(5) {
    float: left;
    width: 60%;
}

.wrapper-gtr-watching-sport .row .wp-block-image figure {
    width: 100%;


}

.wrapper-gtr-watching-sport .row .wp-block-image img {
    width: 100%;


}

.wrapper-gtr-fun-golf {
    margin: 0 auto;
    text-align: center;
}

.wrapper-gtr-fun-golf .row > .wp-block-group {
    float: left;
    width: 33%;
    margin-bottom: 20px;
}

.wrapper-gtr-fun-golf .row > .wp-block-group:nth-child(6) {
    margin-left: 200px;
}

.wrapper-gtr-watching-sport .title {
    margin-top: 60px;
}

.wrapper-gtr-fun-golf .sub-title {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    border-bottom: 1px solid white;
    padding-bottom: 10px;
    position: relative;
    margin-top: 15px;
}

.wrapper-gtr-fun-golf .sub-title::after {
    content: "";
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    right: 0;
    width: 25px;
    height: 25px;
    top: 0;
}

.wrapper-gtr-fun-golf .sub-title .text-color {
    color: #EA5823;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
}

.wrapper-gtr-fun-golf .sub-description {
    font-style: italic;
}

.banner-gtr.banner-gtr2 .content {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    text-align: center;
}

.banner-gtr.banner-gtr2 .large-title {
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 90px;
    font-weight: bold;
    line-height: 90px;
    text-align: center;
}

.banner-gtr.banner-gtr2 .title {
    color: #fff;
    margin-top: 0;
    margin-bottom: 70px;
    font-size: 45px;
    font-weight: bold;
    line-height: 45px;

}

.banner-gtr.banner-gtr2 p {
    color: #fff;
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 45px;

}

.custom-products-grid-2 {
    left: 30%;
}

.wrapper-content-gtr .custom-products-grid-2 .card {
    border-radius: 8px;
    padding: 20px;
}

.wrapper-content-gtr .custom-products-grid-2 .card .wrapper-product-image {
    border-radius: 8px;
}

.custom-products-grid-2 .card {
    background: rgba(163, 163, 163, 0.1);
    width: 70%;
    margin-left: 30%;
    padding: 10px;
    border-radius: unset;
}

.wrapper-feature-gtr {
    display: flex;
    flex-wrap: wrap; /* Cho phép xuống hàng nếu không đủ chỗ */
    gap: 15px; /* Khoảng cách giữa các item */
}

.wrapper-feature-gtr .gtr-item {
    width: calc(50% - 40px); /* Chia 2 cột, trừ đi khoảng cách */
    margin-right: 15px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 30px;
    background: rgba(163, 163, 163, 0.1);
    margin-bottom: 20px;
}

.wrapper-feature-gtr {
    overflow: hidden;

}

.wrapper-feature-gtr-bg {
    background-size: auto;
    background-position: bottom;
    background-repeat: no-repeat;

    margin-top: 120px;
}

.wrapper-feature-gtr-bg .wrapper-feature-gtr .title {
    font-size: 30px;
    line-height: 44px;
    font-weight: bold;
    margin: 0;
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: left;
    border: unset;

    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
}

.wrapper-feature-gtr-bg .wrapper-feature-gtr p {
    font-size: 16px;
    line-height: 24px;
    text-align: justify;
    margin-bottom: 10px;
}

.wrapper-feature-gtr .gtr-item ul {
    margin-left: 20px;
}

.wrapper-feature-gtr .gtr-item li {
    font-size: 16px;
    line-height: 24px;
    text-align: justify;
    color: #fff;
    margin-bottom: 10px;
}

.wrapper-feature-gtr-bg .wrapper-feature-gtr .number {
    font-size: 160px;
    line-height: 74px;
    color: #DC411A;
    position: absolute;
    bottom: 55px;
    right: 20px;

    -webkit-text-stroke-width: 2px; /* Độ dày của đường viền chữ */
    -webkit-text-stroke-color: #EA5823; /* Màu của đường viền */
    color: transparent; /* Màu của chữ sẽ là trong suốt */
    font-family: "IBMPlexSans";

    text-align: right;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: #EA5823;
    font-size: 160px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -3.2px;
}

.wrapper-content-gtr .gtr-item {
    position: relative;
    overflow: hidden;
    padding-bottom: 180px;
    border-radius: 5px;
}

.wrapper-content-gtr .gtr-item.gtr-item-1 {
    border-bottom: 3px solid #DC411A;
}

.wrapper-content-gtr .gtr-item.gtr-item-2 {
    border-left: 3px solid #DC411A;
}

.wrapper-content-gtr .gtr-item.gtr-item-3 {
    border-right: 3px solid #DC411A;
}

.wrapper-content-gtr .gtr-item.gtr-item-4 {
    border-top: 3px solid #DC411A;
}


.wrapper-content-diawings .storefront-breadcrumb {
    display: none;
}

.wrapper-content-diawings .entry-header {
    display: none;
}

.custom-single-post-container * {
    color: #fff;
}

.wrapper-terms * {
    color: #fff;
}


.custom-product-category-list .item {
    content: "";
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    width: 33%;
    height: 700px;
    position: relative;
}

.custom-product-category-list .item span {
    position: absolute;
    bottom: 20px;
    color: #EA5823;
    font-size: 46px;
    font-weight: bold;
    line-height: 90px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.custom-product-category-list .item span p {
    text-align: center;
    -webkit-text-stroke-width: 2px; /* Độ dày của đường viền chữ */
    -webkit-text-stroke-color: #EA5823; /* Màu của đường viền */
    color: transparent; /* Màu của chữ sẽ là trong suốt */
    font-family: "IBMPlexSans";
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 90px;
    letter-spacing: -1.44px;
    transform: translateY(0%);
    transition: transform 0.5s ease, color 0.5s ease, -webkit-text-stroke 0.5s ease;
}


.custom-product-category-list .item:hover {

}

.custom-product-category-list .item:hover span {
    bottom: 50%;
    transform: translate(-50%, 50%);
}

.custom-product-category-list .item:hover span p {
    transform: translateY(0);
    color: #EA5823;
    -webkit-text-stroke-width: 0;
    transition: all 500ms ease-in-out;
}

.custom-product-category-list .item {
    position: relative;
    overflow: hidden;
}

.custom-product-category-list .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000CC; /* nền đen có độ mờ */
    opacity: 0;
    transition: all 500ms ease-in-out;
    z-index: 1;
    transform: scale(1);


}

.custom-product-category-list .item.item-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('http://localhost/ddgolfv2/wp-content/uploads/2025/05/Frame-48095834.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 500ms ease-in-out;
    z-index: 0;
    transform: scale(1);
}

.custom-product-category-list .item.item-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('http://localhost/ddgolfv2/wp-content/uploads/2025/05/Frame-48095834-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 500ms ease-in-out;
    z-index: 0;
    transform: scale(1);
}

.custom-product-category-list .item.item-3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('http://localhost/ddgolfv2/wp-content/uploads/2025/05/Frame-48095834-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 500ms ease-in-out;
    z-index: 0;
    transform: scale(1);
}

/* Khi hover: lớp phủ hiện ra */
.custom-product-category-list .item:hover::before {
    opacity: 1;
}

/* Nội dung bên trong nên nằm trên lớp phủ */
.custom-product-category-list .item span {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2; /* Đảm bảo nằm trên lớp phủ */
}

.site-main, .hentry {
    margin-bottom: 0;
}

.wrapper-diawings-section-diawing-golf .btn-custom {
    text-decoration: unset !important;
    border-radius: unset !important;
}

.wrapper-diawing-slider-ball .title {
    margin-top: 0px;
    margin-bottom: 40px;
    border-bottom: 1px solid #3F0F0B;
    padding-bottom: 15px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

.wrapper-diawing-slider-ball .hentry .entry-content figure.wp-block-image {
    margin: 0 auto;
    text-align: center;
}

.wrapper-diawing-slider-ball .content {
    margin: 0 auto;
    text-align: center;
    margin-bottom: 100px;
}

.wrapper-diawing-slider-ball .content p {
    margin-bottom: 10px;
    text-align: center;
}

.custom-product-category-list .title {
    margin-top: 150px;
    margin-bottom: 40px;
    border-bottom: 1px solid #3F0F0B;
    padding-bottom: 15px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

.wrapper-content-product .storefront-breadcrumb {
    display: none;
}

.wrapper-banner-diawing-custom .wp-block-image {
    margin: 0;
}

.wrapper-banner-diawing-custom .wp-block-image .aligncenter {
    margin: 0;
    width: 100%;
}

.wrapper-banner-diawing-custom .wp-block-image img {
    margin: 0;
    width: 100%;
}

.wrapper-diawings-table-custom .text-color {
    color: #EA5823;
    font-weight: bold;
    font-style: italic;

    font-size: 30px;
    line-height: 44px;
}

.wrapper-diawings-table-custom .title {
    color: #E5E5E5;
    text-align: left;
    margin-top: 0;
    margin-bottom: 0px;

    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
}

.wrapper-diawings-table-custom .description {
    font-size: 16px;
    line-height: 24px;
}

.wrapper-diawings-table-custom .row {
    padding-top: 20px;
    padding-bottom: 20px;


}

.wrapper-diawings-table-custom .wrapper-container {
    border: 1px solid transparent; /* cần để hiển thị border-image */
    border-image-source: linear-gradient(90deg, #080B0A 0%, #EA5823 50%, #080B0A 100%);
    border-image-slice: 1; /* quan trọng để hiển thị toàn bộ border */
}

.wrapper-diawings-table-custom .wrapper-container:last-child {
    border-bottom: 1px solid #fff;
    margin-bottom: 60px;
}

.wrapper-diawings-table-custom .align-bottom {
    display: flex;
    align-items: flex-end;
}

.wrapper-gtr-feature {
    margin-top: 60px;
    margin-bottom: 60px;
}

.wrapper-gtr-feature .item img {
    width: 120px;
    height: 120px;
}

.wrapper-gtr-feature .custom-check-list {
    list-style: none;
    padding-left: 0;
    margin-left: 10px;
}

.wrapper-gtr-feature .item:nth-child(1) {
    border-top: 1px solid;
    border-image-source: linear-gradient(90deg, #080B0A 0%, #EA5823 50%, #080B0A 100%);
    border-image-slice: 1;
    border-top-width: 1px;
    padding-top: 20px;
}

.wrapper-gtr-feature .item {
    margin-bottom: 20px;
    border-bottom: 1px solid;
    border-image-source: linear-gradient(90deg, #080B0A 0%, #EA5823 50%, #080B0A 100%);
    border-image-slice: 1; /* Quan trọng: để gradient áp dụng đúng */
    border-width: 1px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.wrapper-content-gtr .banner-gtr:after {
    content: unset;
}

.wrapper-gtr-fun-golf .title {
    margin-top: 60px;
    margin-bottom: 0px;
    /*border-bottom: 1px solid #3F0F0B;*/
    border: unset;
}

.wrapper-gtr-fun-golf .description {
    border-bottom: 1px solid #3F0F0B;
    padding-bottom: 15px;
}

.wrapper-gtr-feature .custom-check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    text-align: left;
    color: #fff;
}

.wrapper-gtr-feature .title {
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
    text-align: left;
    margin-top: 0;
    margin-bottom: 15px;
    border: unset;
}

.wrapper-gtr-feature .custom-check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.wrapper-diawings-section-img {
    margin: 60px;
    margin-top: 100px;
}

.wrapper-diawings-section-img img {
    width: 100%;
}

.wrapper-diawings-section-img .item {
    margin-bottom: 15px;
}


.wrapper-custom-diawings-full-img {

}

.wrapper-custom-diawings-full-img .aligncenter {
    width: 100%;
    margin: 0 !important;
}

.wrapper-custom-diawings-full-img .wp-block-image img {
    width: 100%;
}

.wrapper-custom-diawings-full-img .wp-block-image {
    margin: 0;
}

.wrapper-login {
    display: flex;
    height: 100vh;
}

.wrapper-login-page {
    overflow: hidden;
}

.wrapper-login-page .wrapper-login-desc {
    max-width: 360px;
    margin: 0 auto;
}

.wrapper-login-page .wrapper-login-desc .title {
    font-size: 30px;
    line-height: 44px;
    text-align: center;
    margin-bottom: 15px;
    color: #fff;
    margin-top: 40px;
}

.wrapper-login-page .wrapper-login-desc .description {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    margin-bottom: 60px;
}

.wrapper-login-page .wrapper-content {
    margin: 0 auto;
    margin-top: 60px;
    margin-right: auto;
    margin-left: auto;
}

.wrapper-login-page .back-home a {
    color: #fff;
    font-weight: bold;
}

.wrapper-login-page input[type=text], .wrapper-login-page input[type=password] {
    border-radius: unset;
    border: 1px solid #424242;
    background: #292929;
    color: #fff;
}

.wrapper-login-page input[type=text]::placeholder, .wrapper-login-page input[type=password]::placeholder {
    color: #A3A3A3;
    opacity: 1; /* mặc định một số trình duyệt làm mờ */
}

.wrapper-login-page input[type=text]:focus, .wrapper-login-page input[type=password]:focus {
    color: #fff;
    border: 1px solid #fff;
}

.wrapper-login-page input[type=text]:focus, .wrapper-login-page input[type=password]:focus {
    color: #fff;
    border: 1px solid #fff;
}

.wrapper-login-page label, .wrapper-login-page a {
    color: #fff;
}

.text-red {
    color: #F04438;
}

.text-orange {
    color: #EA5823;
}

.btn-custom {
    background-color: #EA5823 !important;
    color: #fff;
    border: 1px solid #EA5823;
}

.btn-custom-default {
    border: 0;
    border-radius: 0;
    background: none;
    background-color: #43454b;
    border-color: #43454b;
    color: #fff;
    cursor: pointer;
    padding: .6180469716em 1.41575em;
    text-decoration: none;
    font-weight: 600;
    text-shadow: none;
    display: inline-block;
    -webkit-appearance: none;
}

.btn-custom-default:link,
.btn-custom-default:visited,
.btn-custom-default:hover,
.btn-custom-default:focus,
.btn-custom-default:active {
    border: 0;
    border-radius: 0;
    background: none;
    background-color: #43454b;
    border-color: #43454b;
    color: #fff;
    cursor: pointer;
    padding: .6180469716em 1.41575em;
    text-decoration: none;
    font-weight: 600;
    text-shadow: none;
    display: inline-block;
    -webkit-appearance: none;
}

.text-term {
    margin-top: 60px;
    /*position: absolute;*/
    /*bottom: 40px;*/
}

.position-relative {
    position: relative;
}

.wrapper-login-page .bg-login img,
.wrapper-login-page .bg-register img {
    opacity: 0;
}

.wrapper-login-page .bg-login {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.wrapper-login-page .bg-login .logo,
.wrapper-login-page .bg-register .logo {
    opacity: 1;
    top: 50px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.wrapper-register .bg-register {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}


.wrapper-login-page .bg-register .back-home a {
    top: 50px;
    position: absolute;
    left: 60px;
}


.custom-product-detail input[type="number"]::-webkit-inner-spin-button,
.custom-product-detail input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.wrapper-cat {

}

.wrapper-cat .wrapper-cat-section {
    margin: 0 auto;
    text-align: center;
    margin-bottom: 60px !important;
}

.wrapper-cat .custom-img-cat {
    margin: 0 auto;
    text-align: center;
    display: inline-block;
    border: 1px solid transparent;
}

.wrapper-cat .active-cat {
    border: 1px solid #EA5823;
    display: inline-block;
}


.wrapper-cat .custom-img-cat:focus, .wrapper-cat .custom-img-cat:active {
    border: unset;
    outline: unset;
}

.wrapper-content-product div.product .woocommerce-product-gallery img {
    width: 100%;
}

.wrapper-cat .custom-img-cat .text-color {
    font-weight: bold;
    font-size: 24px;
    line-height: 32px;
    color: #EA5823;
}

.wrapper-cat .custom-img-cat .img-cat {
    width: 384px;
    height: 193px;
    display: block;
    max-width: 100% !important;
    transition: transform 0.5s ease-in-out;
    margin: 0 auto;
}


.wrapper-cat .active-cat.custom-img-cat {
    display: flex; /* hoặc inline-block */
    overflow: hidden; /* ẩn phần ảnh vượt ra ngoài */
    align-items: center; /* căn giữa dọc nếu cần */
    flex-direction: column;
}

.wrapper-cat .active-cat.custom-img-cat img.img-cat {
    transform: scale(1.2); /* phóng to khi hover */
}


.wrapper-cat .active-cat.custom-img-cat .text-color {
    font-weight: 700;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: -2%;
    color: #EA5823;
    z-index: 1;
}


.wrapper-content-cats .woocommerce-breadcrumb {
    display: none;
}

.custom-product-card {
    background: transparent;
    margin-bottom: 20px;
}

.custom-product-card {
    background: transparent;
}

.custom-product-card .wrapper-thumb {
    height: 384px;
    object-fit: cover;
    width: 100%;
    margin-bottom: 15px;

    position: relative;
}

/* Nền mờ */
.custom-product-card .wrapper-thumb .hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Màu nền mờ */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.custom-product-card .wrapper-thumb:hover .hover-overlay {
    opacity: 1;
}

.custom-product-card .wrapper-thumb:hover .hover-buttons {
    opacity: 1;
}

.custom-product-card .wrapper-thumb .hover-buttons {
    opacity: 0;
    position: absolute;
    bottom: 20px;
    z-index: 2;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: row;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    justify-content: space-between;
}

.custom-product-card .wrapper-thumb .hover-buttons .ajax_add_to_cart {
    color: #fff;
    background-color: #EA5823;
    text-align: center;
    order: 1;
    padding: 0;
    margin: 0;
    height: 49px;
    width: 80px;
}

.custom-product-card .wrapper-thumb .hover-buttons .added_to_cart {
    display: none;
}

.custom-product-card .wrapper-thumb .hover-buttons .wpcbn-btn {
    order: 2;
    color: #fff;
    background-color: #EA5823;
    width: 200px;
    text-align: center;
}

.custom-product-card .wrapper-thumb .hover-buttons .ajax_add_to_cart {
    background-color: #fff;
    border: 1px solid #fff;
    visibility: hidden;
    position: unset;
}

.custom-product-card .wrapper-thumb .hover-buttons .ajax_add_to_cart::after {
    border: 1px solid #fff;
    padding: 10px 10px 10px 10px;
    display: inline-block;
    visibility: visible;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: baseline;
    content: "\f07a";
    line-height: 1.618;
    text-align: right;
    position: absolute;
    top: 0;
    left: 0;
}

.custom-product-card .wrapper-thumb .img-product {
    width: 100%;
    height: 384px;
    object-fit: cover;

}

.custom-product-card h2, .custom-product-card p, .custom-product-card span {
    color: #fff;
}

.custom-product-card h2 {
    font-size: 16px;
    line-height: 24px;
}

.custom-product-card span {
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
}

.custom-product-card del span {
    padding-left: 10px;
    font-size: 14px;
    line-height: 20px;
    color: #A3A3A3;
}

.custom-product-card del span .woocommerce-Price-currencySymbol {
    padding-left: 0px;
}

.woocommerce-loop-product__rating .star-rating {
    color: #fff; /* màu viền sao (sao chưa fill) */
    position: relative;
    display: inline-block;
    font-size: 16px;
    overflow: hidden;
}

.woocommerce-loop-product__rating .star-rating span {
    color: #f8c41c; /* sao đã fill - vàng */
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    white-space: nowrap;
    z-index: 1;
}

/* Container cho phân trang */
.custom-pagination {
    display: flex;
    justify-content: center; /* Căn giữa pagination */
    align-items: center;
    gap: 10px; /* Khoảng cách giữa các phần tử */
    margin-top: 20px;
}

/* Style cho từng nút phân trang */
.custom-pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: unset;
}

/* Làm nổi bật trang hiện tại */
.custom-pagination .current {
    background-color: #DC411A;
    color: #fff;
    border-color: #DC411A;
    font-weight: bold;
    border: unset;
}

/* Hiệu ứng hover */
.custom-pagination .page-numbers:hover {
    background-color: #DC411A;
    color: #fff;
    border-color: #DC411A;
    border: unset;
}

/* Style cho nút Previous và Next */
.custom-pagination .prev,
.custom-pagination .next {
    font-size: 14px;
    font-weight: bold;
}

.custom-pagination .prev.page-numbers,
.custom-pagination .next.page-numbers {
    background-color: #fff;
    color: #292929;

}


/* Định vị nút Previous ở bên trái */
.custom-pagination .prev {
    margin-right: auto; /* Đẩy nút Previous sang trái */
}

/* Định vị nút Next ở bên phải */
.custom-pagination .next {
    margin-left: auto; /* Đẩy nút Next sang phải */
}

.custom-product-detail .back-to-homepage {
    color: #0073aa;
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-block;
}

.custom-product-detail .custom-product-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.custom-product-detail .product-images {
    flex: 1 1 45%;
}

.custom-product-detail .summary.entry-summary {
    flex: 1 1 50%;
}

.storefront-product-pagination {
    display: none;
}

.custom-product-detail .woocommerce-tabs ul.tabs li a {
    color: #fff;
}

.custom-product-detail .product_title {
    color: #fff;
    font-weight: 700;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: -0.02em; /* -2% */
}

.custom-product-detail .woocommerce-Price-amount {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
}

.custom-product-detail .woocommerce-product-details__short-description p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #A3A3A3;

}

.custom-product-detail .product_meta {
    display: none;
}

.custom-product-detail .edit-link {
    display: none;
}

.woocommerce div.product form.cart .quantity {
    display: inline-block;
    align-items: center;
    justify-content: center;
    float: unset;
    margin-right: 0;
}

.woocommerce div.product form.cart .quantity .qty {
    width: 60px;
    text-align: center;
    height: 40px;
    margin: 0 5px;

    border: none;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 0px;
    margin: 0px;
}

.custom-product-wrapper button.plus {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    background: transparent;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    padding-top: 7px;
    margin-left: -9px;
}

.custom-product-wrapper button.minus {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    background: transparent;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    padding-top: 7px;
}

.woocommerce div.product form.cart .quantity button.plus,
.woocommerce div.product form.cart .quantity button.minus {
    background-color: #eee;
    border: 1px solid #ccc;
    font-size: 20px;
    padding: 0 10px;
    cursor: pointer;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-product-detail .related.products {
    display: none;
}

.single-product div.product .woocommerce-product-gallery {
    width: 100%;
}

.custom-product-detail .custom-accordion {
    margin-top: 50px;
}

.custom-product-detail .custom-accordion .accordion-item {
    background: transparent;
    border: none;
    border-top: 1px solid;
    border-image-source: linear-gradient(90deg, #080B0A 0%, #EA5823 50.5%, #080B0A 100%);
    border-image-slice: 1;
    border-left: none;
    border-right: none;
    border-bottom: none;
}

.custom-product-detail .custom-accordion .accordion-button {
    padding: 0;
    font-weight: bold;
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    box-shadow: unset;
    background: transparent;
    padding-top: 20px;
}

.custom-product-detail .custom-accordion .accordion-header {
    margin-bottom: 20px;
}

.custom-product-detail .custom-accordion .accordion-body {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    padding: 0;
    padding-left: 15px;
    padding-bottom: 15px;
}

.custom-product-detail .custom-accordion .accordion-body .shop_attributes {
    background: transparent;
}

.custom-product-detail .custom-accordion .accordion-body .shop_attributes th,
.custom-product-detail .custom-accordion .accordion-body .shop_attributes td {
    background: transparent;
    color: #fff
}

.custom-product-detail .custom-accordion .accordion-body h2 {
    display: none;
}

.custom-product-detail .accordion-toggle-icon::before {
    content: "+";
    font-weight: bold;
    font-size: 1.2rem;
    display: inline-block;
    width: 1em;
    text-align: center;
    position: absolute;
    right: 0;
    top: 20px;
}

.custom-product-detail .accordion-button:not(.collapsed) .accordion-toggle-icon::before {
    content: "–";
    position: absolute;
    right: 0;
    top: 20px;
}

.wrapper-content-login .storefront-breadcrumb {
    display: none;
}

/* Giới hạn kích thước hình ảnh */
.wrapper-content-cart {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 60px;
}

.wrapper-content-cart .cart_item td {
    padding-top: 15px;
    padding-bottom: 15px;
}

#menu-item-1049, #menu-item-1025 {
    display: none;
}

.wrapper-content-cart .title {
    margin-bottom: 40px;
    border-bottom: 1px solid #3F0F0B;
    padding-bottom: 15px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

.wrapper-content-cart .calculated_shipping h2 {
    display: none;
}

.wrapper-content-cart .wc-proceed-to-checkout {
    margin-top: 60px;
}

.wrapper-content-cart .wc-proceed-to-checkout .checkout-button {
    width: 100%;
    height: auto;
    padding: 16px 22px;
    background-color: #EA5823;
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
}

.wrapper-content-cart .product-price .wrapper-product-price {
    display: none;
}

.wrapper-content-cart .woocommerce-cart-form__contents td,
.wrapper-content-cart table:not( .has-background ) tbody tr:nth-child(2n) td, fieldset,
.wrapper-content-cart .shop_table_responsive tbody tr td, table.shop_table_responsive tbody tr th {
    background: transparent;
}

.wrapper-content-cart .shop_table_responsive tbody tr.order-total td {
    padding: 0;
}

.account-orders-table tbody tr th {
    background: #fff !important;
    font-size: 16px !important;
    line-height: normal !important;
}

.wrapper-content-cart .shop_table_responsive tbody tr td, table.shop_table_responsive tbody tr th {
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    color: #fff;
}

.wrapper-content-cart table.shop_table_responsive tbody tr th {
    margin: 0;
    padding: 0;
}

.wrapper-content-cart .product-thumbnail {
    width: 200px;
}

.wrapper-content-cart .product-thumbnail img {
    width: 178px;
    height: 178px;
    object-fit: cover;
}

.wrapper-content-cart .product-name {
    width: 80%;
}

.wrapper-content-cart .product-name * {
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    color: #fff;
}

.wrapper-content-cart .product-name .product-info-flex .qty {
    background-color: transparent;
    color: #DC411A;
    border: 1px solid #fff;
}

.wrapper-content-cart .woocommerce-cart-form__contents .actions {
    display: none;
}

.wrapper-content-cart .wrapper-product-quantity .quantity .qty.text {
    display: none;
}

/* Ẩn mũi tên tăng/giảm trên Chrome, Safari, Edge */
.wrapper-content-cart .wrapper-product-quantity .qty-wrapper .custom-qty-input::-webkit-inner-spin-button,
.wrapper-content-cart .wrapper-product-quantity .qty-wrapper .custom-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Ẩn mũi tên tăng/giảm trên Firefox */
.wrapper-content-cart .wrapper-product-quantity .qty-wrapper .custom-qty-input {
    -moz-appearance: textfield;
}

.wrapper-content-cart .qty-wrapper * {
    color: #DC411A;
}

.wrapper-content-cart .product-name a {
    text-decoration: unset;
}

.wrapper-content-cart .product-price {
    text-align: right;
}

.wrapper-content-cart .cart-collaterals .cart_totals {
    width: 30%;
}

.wrapper-content-cart .cart-collaterals .cart_totals .order-total td,
.wrapper-content-cart .cart-collaterals .cart_totals .order-total th {
    text-align: right;
}

.wrapper-content-cart .product-remove-custom .remove {
    text-align: right;
    display: inline-block;
    width: 36px;
    height: 36px;
    margin-bottom: 20px;
}

.wrapper-content-cart .product-remove-custom .remove img {
    width: 36px;
    height: 36px;
}

.product-remove-custom .remove::before {
    content: "";
}

.wrapper-content-cart .wrapper-product-price .woocommerce-Price-amount {
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    color: #fff;
}

.wrapper-content-cart .wrapper-product-subtotal .woocommerce-Price-amount {
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    color: #fff;
    white-space: nowrap;
}

.wrapper-content-cart .cart-subtotal {
    display: none;
}

.wrapper-content-cart .cart-subtotal .shop_table {
    margin-bottom: 0px;
}

.wrapper-content-cart .cart_totals h2 {
    display: none;
}

.wrapper-content-cart .order-total .woocommerce-Price-amount {
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;

    color: #EA5823;
}

.wrapper-checkout-custom #order_review_heading, .wrapper-checkout-custom #order_review {
    background-color: transparent;
}

.wrapper-login .error {
    display: none;
    padding-top: 10px;
}

@media screen and ( min-width: 768px ) {
    .wrapper-checkout-custom #order_review_heading, .wrapper-checkout-custom #order_review {
        width: 100%;
        float: unset;
        background-color: transparent !important;
    }

}

.wrapper-checkout-custom #order_review {

}

.wrapper-checkout-custom table.woocommerce-checkout-review-order-table th,
.wrapper-checkout-custom table.woocommerce-checkout-review-order-table td,
.wrapper-checkout-custom table.woocommerce-checkout-review-order-table tr:nth-child(2n) td {
    background-color: transparent;
!important;
    color: #fff;
}

.wrapper-checkout-custom #payment .payment_methods > li .payment_box,
.wrapper-checkout-custom #payment .place-order,
.wrapper-checkout-custom #payment .payment_methods > li:not(.woocommerce-notice) {
    background-color: transparent;
!important;
    color: #fff;
}

.wrapper-checkout-custom #payment .payment_methods > li .payment_box {

}

.woocommerce-order-details p {
    color: #0b0b0b !important;
}

.wrapper-btn-google, .wrapper-btn-facebook {
    display: none;
}

.woocommerce-MyAccount-content .woocommerce-info .wc-forward {
    display: none;
}

.wrapper-checkout-custom #payment .payment_methods > .wc_payment_method > label {
    border: 1px solid #fff;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 24px;
    margin-left: 20px;
}

.wrapper-my-account mark {
    font-weight: bold;
    color: #fff;
}

.woocommerce-order-custom .woocommerce-order-details__title {
    font-size: 36px;
    font-weight: bold;
    line-height: 48px;
    color: #fff;
}

.woocommerce-order-custom .woocommerce-customer-details * {
    color: #fff;
}

.woocommerce-order-custom .woocommerce-customer-details .woocommerce-column__title {
    font-size: 36px;
    font-weight: bold;
    line-height: 48px;
    color: #fff;
}

.wrapper-my-account .woocommerce-order-details .woocommerce-table__product-name.product-name .product-quantity {
    color: #EA5823;
}

.woocommerce-order-custom .woocommerce-customer-details address {
    color: #fff;
}

.wrapper-checkout-custom input[name="payment_method"]:checked + label {
    background-color: #fff;
    color: #F04438;
}

.wrapper-checkout-custom input[name="payment_method"]:checked + label + .payment_box,
.wrapper-checkout-custom input[name="payment_method"]:checked + label {
    background-color: #fff;
    color: #F04438;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
}

.wrapper-checkout-custom #payment .payment_methods li input[type=radio]:first-child:checked + label:before {
    color: #F04438;
}

.wrapper-checkout-custom #payment .place-order .button {
    color: #fff;
    background-color: #F04438;
    font-weight: bold;
    font-size: 18px;
    line-height: 28px;
}

.woocommerce-form-coupon-toggle {
    display: none;
}

.wrapper-checkout-custom .title {
    font-weight: bold;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 0px;
}

.wrapper-checkout-custom .btn-back {
    margin-bottom: 40px;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    display: inline-block;
    text-decoration: unset !important;
}

.wrapper-checkout-custom .title-4, .wrapper-checkout-custom #order_review_heading {
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
}

.wrapper-checkout-custom #order_review_heading {
    margin-left: 23px;
    margin-bottom: 0 !important;
    padding-bottom: 0;
}


.wrapper-checkout-custom .woocommerce-input-wrapper input {
    border-radius: unset;
    border: 1px solid #fff;
    background: #292929;
    color: #fff;
}

.wrapper-checkout-custom .woocommerce-input-wrapper input::placeholder {
    color: #A3A3A3;
    opacity: 1; /* mặc định một số trình duyệt làm mờ */
}

.wrapper-checkout-custom .select2-container {
    margin-bottom: 15px;
}

.wrapper-checkout-custom .select2-container--default .select2-selection--single .select2-selection__rendered {
    border-radius: unset;
    border: 1px solid #fff;
    background: #292929;
    color: #fff;
    padding: 8px;
    width: 100%;
    appearance: none; /* Ẩn giao diện mặc định của trình duyệt */
    -webkit-appearance: none;
    -moz-appearance: none;
}

.wrapper-content-account {
    padding-top: 120px;
}

.wrapper-content-account .woocommerce-MyAccount-navigation ul li a::before {
    float: left;
    margin: 0;
    padding: 0;
    margin-right: 30px;
    font-size: 24px;
    opacity: 1;
}

.wrapper-content-account .woocommerce-MyAccount-navigation ul li {
    margin-bottom: 15px;
}

.wrapper-content-account .woocommerce-MyAccount-navigation ul li a {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    overflow: hidden;
    clear: both;
    display: inline-block;

    display: flex;
    align-items: center; /* Canh giữa theo chiều dọc */
    height: 100%; /* Đảm bảo thẻ a chiếm toàn bộ chiều cao cha */
    padding: 10px 15px; /* Tùy chỉnh khoảng cách nếu cần */
}

.wrapper-content-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding-left: 0; /* Tùy chọn: loại bỏ khoảng cách bên trái */
    margin: 0; /* Tùy chọn: loại bỏ margin */
}

.wrapper-content-account .woocommerce-MyAccount-navigation ul {
    margin-bottom: 10px;
}

.wrapper-content-account .woocommerce-MyAccount-navigation-link.is-active {
    background: #FCE8D8;

}

.wrapper-content-account .woocommerce-MyAccount-navigation-link.is-active a {
    color: #EA5823;
    font-weight: bold;
}

.wrapper-my-account a.woocommerce-order-details {
    color: #EA5823;
}

.wrapper-my-account .woocommerce-order-details .woocommerce-button,
.wrapper-my-account .account-orders-table .woocommerce-button {
    color: #fff;
    background-color: #EA5823;
    min-width: 100px;
    text-align: center;
}

.wrapper-my-account .woocommerce-MyAccount-content a {
    color: #EA5823;
    font-weight: bold;
}

.wrapper-content-product {
    padding-top: 120px;
}

.wrapper-content-sponsor .wrapper-header-content {
    margin: 0 auto;
    text-align: center;
    margin-bottom: 40px;
}

.wrapper-content-sponsor .wrapper-header-content img {
    margin: 0 auto;
    text-align: center;
}

.wrapper-content-sponsor .wrapper-header-content .banner-1 {
    width: 124px;
    height: 96px;
    margin-bottom: 20px;
}

.wrapper-content-sponsor .wrapper-header-content .banner-2 {
    width: 100%;
    margin-top: 0px;
    max-width: 750px;
}


.breadcrumb-container {
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    text-decoration: unset;
    margin: 20px 0;
    padding: 10px;
    background-color: transparent;
}

.breadcrumb-container .title {
    font-size: 24px;
    font-weight: bold;
    line-height: 32px;
    text-align: center;
}

.breadcrumb-container a {
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    text-decoration: unset;
}

.breadcrumb-container a:hover {
    color: #fff;
}

.breadcrumb-container span {
    color: #fff;
}

.sponsor-detail-container .sponsor-title {
    color: #fff;
}

.sponsor-detail-container .sponsor-content {
    text-align: left;
}

.sponsor-detail-container .btn-back {
    margin-bottom: 40px;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    display: inline-block;
    text-decoration: unset !important;
    float: left;
}

.wrapper-content-product-category {
    padding-top: 100px
}

.wrapper-icon-cart {
    position: relative;
}

.wrapper-icon-cart .cart-count {
    position: absolute;
    top: 0;
    left: 31px;
    width: 20px; /* Kích thước của vòng tròn */
    height: 20px; /* Kích thước của vòng tròn */
    background-color: #EA5823; /* Màu nền của vòng tròn */
    color: white; /* Màu chữ */
    border-radius: 50%; /* Để tạo hình tròn */
    display: flex;
    justify-content: center; /* Canh giữa chữ */
    align-items: center; /* Canh giữa chữ */
    font-size: 12px; /* Kích thước chữ */
    font-weight: bold; /* Chữ đậm */
}

.wrapper-content-custom .wrapper-product-image .product-image {
    background-size: cover;
    background-position: center;
    width: 400px;
    height: 400px;
    border-radius: 8px;
}

.custom-products-grid .btn-custom {
    text-decoration: unset !important;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    padding: 10px 20px !important;
    border-radius: unset !important;
}

.wrapper-content-gtr .custom-products-grid .woocommerce-Price-amount {
    font-weight: 600;
    font-style: italic;
}


.wrapper-content-gtr .custom-products-grid .text-end .btn-custom::after {
    content: " ↗";
    font-size: 16px;
    margin-left: 5px;
    display: inline-block;
}

.custom-products-grid .woocommerce-Price-amount {
    font-size: 24px;
    line-height: 36px;
    font-weight: bold;
    color: #EA5823;
}

.custom-products-grid .title {
    text-align: left;
}

.wrapper-content-gtr .custom-products-grid p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #E5E5E5;

    font-weight: 400;
    letter-spacing: 0%;
    text-align: justify;

}

.wrapper-content-gtr .custom-products-grid .title {
    text-align: left;
    margin: 0;
    border: unset;
}

.custom-products-grid p {
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
}

.wrapper-content-gtr .entry-title {
    display: none;
}

.custom-products-grid-2 ul {
    margin-left: 0;
    list-style-type: disc;
    color: white;
    margin-left: 20px;
}

.wrapper-custom-diawings-full-img .size-large {
    margin: 0;
}

.woocommerce-MyAccount-content .title {
    margin-top: 0px;
    margin-bottom: 40px;
    border-bottom: 1px solid #3F0F0B;
    padding-bottom: 15px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

.storefront-primary-navigation .nav-login a {
    margin-left: 10px;
}

.section-new-arrival .custom-products-grid .card .card-text .text-2 .woocommerce-Price-amount {
    font-size: 16px;
    line-height: 24px;
    color: #E5E5E5;
    text-decoration: line-through;
    font-style: italic;
    padding-left: 10px;
    font-weight: normal;
}


.section-new-arrival.section-3::after {
    content: "";
    position: unset;
    bottom: -90%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(1, 1, 1, 0) 48.03%, #010101 96.07%);
    pointer-events: none;
    z-index: 2;
}

.languages-mobile {
    display: none;
}

.wrapper-diawings-section-diawing-golf {
    padding: 0px 0 60px 0;
}

.wrapper-diawings-section-diawing-golf img {
    width: 100%;
    max-width: 321px;
    margin: 0 auto;
}

.wrapper-diawings-section-diawing-golf .wp-block-image {
    margin: unset;
    display: block;
}

.wrapper-diawings-section-diawing-golf .section-1 {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.wrapper-diawings-section-diawing-golf .section-2 {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.wrapper-diawings-section-diawing-golf .section-3 {
    margin-top: 200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.wrapper-content-about-us .woocommerce-breadcrumb {;
    border-bottom: 1px solid #3F0F0B;
    padding-bottom: 15px;
}

.wrapper-content-about-us .nav-custom {
    margin-top: 60px !important;
    margin-bottom: 60px;
}

.wrapper-my-account .col2-set#customer_login .col-1, .col2-set.addresses .col-1 {
    width: 100%;
    float: unset;
}

.wrapper-my-account .woocommerce-MyAccount-content h2 {
    margin-top: 0px;
    font-size: 36px;
    font-weight: bold;
    line-height: 48px;
    text-align: center;
    color: #fff;
}

.wrapper-my-account address {
    color: #fff;
}

.wrapper-my-account fieldset {
    padding: 0;
}

.wrapper-content-account {
}

.woocommerce-MyAccount-content {
    width: 80%;
    padding-left: 60px;
    padding-left: 60px;


}

.wrapper-content-account .addresses header.title a {
    margin: 0;
}

.wrapper-content-account .addresses header.title a::before {
    font-size: 20px;
}

.wrapper-content-account .title {

}

.wrapper-my-account .title {
    margin-top: 0px;
}

.wrapper-my-account .woocommerce-MyAccount-content h2 {
    margin-bottom: 20px;
    border-bottom: 1px solid #3F0F0B;
    padding-bottom: 15px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

.woocommerce-MyAccount-navigation {
    width: 20%;
    margin-right: 0;
    height: 100vh;
}

.wrapper-my-account fieldset legend {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    background: transparent;
    color: #fff;
    margin: 0;
    padding: 0;
}

.wrapper-my-account .woocommerce-Button {
    background-color: #F04438;
    color: #fff;
    float: right;
    margin-bottom: 20px;
}

.wrapper-my-account .woocommerce-address-fields .button {
    background-color: #F04438;
    color: #fff;
    float: right;
    margin-bottom: 20px;
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a::before {
    content: "\f07a";
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a::before {
    content: "\f3c5";
}

.wrapper-content-custom.wrapper-content-homepage p {
    margin: 0;
}

.container-404 .woocommerce-breadcrumb {
    margin-top: 100px;
}

.container-404 h1, .container-404 h2 {
    color: #fff;
}

.custom-product-detail table.variations label {
    color: #fff;
}

.custom-product-detail a.reset_variations {
    color: #fff;
    display: none;
}

.custom-product-detail a.reset_variations::before {
    color: #fff;
}

.custom-product-detail .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_button_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-selected {
    background-color: #EA5823;
}

.custom-product-detail .single_add_to_cart_button {
    background-color: #EA5823;
    padding-top: 7px;
    padding-bottom: 7px;
    width: 50%;
    margin-left: 10px;
}

.custom-product-detail .single_add_to_cart_button:hover {
    background-color: #EA5823;
}

.custom-product-detail .qty {
    background-color: transparent;
    color: #EA5823;
}

.custom-product-detail .single_add_to_cart_button ~ button {
    background-color: #fff;
    border: 1px solid #fff;
    visibility: hidden;
    width: 120px;
    position: relative;
    height: auto;
}

.custom-product-detail .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {

}

.woocommerce-loop-product__price del {
    color: #A3A3A3;
}

.custom-product-detail .single_add_to_cart_button ~ button::after {
    border: 1px solid #fff;
    padding: 10px 10px 10px 10px;
    display: inline-block;
    visibility: visible; /* Hiển thị pseudo-element ngay cả khi button bị ẩn */
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: baseline;
    content: "\f07a";
    line-height: 20px;
    text-align: right;
    position: absolute;
    bottom: 0;
}

.wrapper-checkout-custom .woocommerce-additional-fields h3 {
    display: none;
}

.wrapper-checkout-custom .woocommerce-terms-and-conditions-link {
    color: #fff;
}

.wrapper-content-checkout {
    padding-top: 100px;
}

.homepage-gallery-container .gallery-content p {
    margin-bottom: 12px !important;
}

.wrapper-checkout-custom .select2-container--default .select2-selection--single .select2-selection__arrow b {
    top: 80%;
}

.wrapper-checkout-custom .select2-container--default .select2-selection--single {
    border: unset !important;
    padding: 0;
}

.wrapper-checkout-custom .woocommerce-input-wrapper input {
    border: unset !important;
}

.wrapper-checkout-custom textarea, .wrapper-checkout-custom .input-text {
    background-color: #43454b;
    color: #fff;
}

.wrapper-checkout-custom .select2-container--default .select2-selection--single .select2-selection__rendered {
    border: unset !important;
}

.site-footer .wrapper-image {
    display: block;
}

.site-footer .wrapper-image-mobile {
    display: none;
}

.social-links {
    display: block;
}

.social-links li {
    display: flex;
    align-items: center;
}

.social-links img {
    margin-right: 6px; /* Khoảng cách giữa icon và chữ */
    width: 24px;
}

.banner-gtr .wrapper-thumbs {
    opacity: 1;
}

.banner-gtr .title {
    opacity: 1;
}

.wrapper-diawings-section-diawing-golf .section-1 {
    text-align: center;
}

.wrapper-diawings-section-diawing-golf .section-2 {
    text-align: center;
}

.wrapper-diawings-section-diawing-golf .section-3 {
    text-align: center;
    position: unset;
}

.wrapper-diawings-section-diawing-golf .section-3 .btn-custom {
    position: unset;
}

.wrapper-content-about-us .nav-custom .number {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.wrapper-login-page .bg-register .back-home-desktop {
    display: block;

}

.wrapper-login-page .bg-register .back-home-mobile {
    display: none;

}

@media screen and (min-width: 1025px) {
    .main-navigation .primary-navigation {
        display: block;
    }

    .main-navigation .handheld-navigation,
    .menu-toggle {
        display: none;
    }
}

/* Desktop thông thường */
@media screen and (max-width: 1600px) {
    div#timeline #dot-7 date {
        left: -45px;
    }

    .banner-gtr.banner-gtr2 {
        min-height: 700px;
        height: 100%;
    }


    .section-new-arrival .custom-products-grid .card .wrapper-img {
        width: 150px;
        height: 150px;
    }

}

@media screen and (max-width: 1200px) {
    .custom-product-category-list .item span p {
        font-size: 50px;
    }

    .banner-gtr.banner-gtr2 {
        min-height: 500px;
        height: 100%;
    }

    div#timeline #dot-7 date {
        left: 0px;
    }

    .wrapper-content-gtr .title {
        margin-top: 60px;
    }

    .wrapper-gtr-watching-sport .title {
        margin-top: 20px;
    }

    .wrapper-gtr-feature .title {
        margin-top: 0px;
    }

    .wrapper-content-gtr .title.custom-title-3 {
        margin-top: 120px;
    }

    .wrapper-feature-gtr-bg {
        margin-top: 60px;
    }

    .wrapper-content-about-us .nav-custom {
        margin-left: 0px;
    }

    .nav-custom .nav-item::after {
        right: -20px;
    }

    .nav-custom .text {

    }

    .woocommerce-MyAccount-navigation {
        width: unset;
        height: unset;
    }

    .woocommerce-MyAccount-content {
        width: unset;
        padding-left: 0px;
    }

    .wrapper-content-hover .col-9 {
        flex: 0 0 auto;
        width: 60%;
    }

    .wrapper-content-hover .col-3 {
        flex: 0 0 auto;
        width: 40%;
    }

    .main-navigation ul.menu > li > a, .main-navigation ul.nav-menu > li > a {
        padding-left: 11px;
        padding-right: 11px;
    }

    .homepage-gallery-container .gallery-content {
        max-width: 400px;
    }

    .wrapper-content-custom .wrapper-product-image .product-image {
        width: 100%;
    }

    .custom-products-grid-2 .card {
        width: 100%;
        margin-left: 0%;
    }

    div#timeline {
        width: 90%;
    }
}

/* Laptop / Tablet xoay ngang */
@media screen and (max-width: 1024px) {
    .section-new-arrival .custom-products-grid .card .custom-padding {
        padding-left: 40px;
    }

    .wrapper-cat .custom-img-cat .img-cat {
        width: 100%;
        height: 100%;
    }

    .custom-product-card .wrapper-thumb {
        height: 320px;
    }

    .custom-product-card .wrapper-thumb .img-product {
        height: 320px;
    }

    .custom-product-category-list .item span p {
        font-size: 40px;
    }

    .wrapper-diawings-section-img {
        margin-top: 40px;
    }

    .wrapper-diawing-slider-ball .content {
        margin-bottom: 60px;
    }

    div#timeline #dot-7 date {
        left: 40px;
    }

    .wrapper-content-gtr .custom-container {
        position: relative;
        height: 500px; /* hoặc 100% nếu cần full */
    }

    div#timeline .dot date {
        font-size: 14px;
    }

    .wrapper-content-about-us .nav-custom {
        display: block;
        margin-top: 0px !important;
        margin-bottom: 20px;
        margin-left: 0px;
    }

    .wrapper-content-about-us .nav-custom .nav-item {
        margin-bottom: 20px;
    }

    .wrapper-content-about-us .nav-custom .nav-item::after {
        height: 1px;
        width: 30px;
        background: #fff;
        content: "";
        top: unset;
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .wrapper-content-about-us .nav-custom .nav-item:last-child::after {
        content: unset;
    }

    .wrapper-content-about-us .nav-custom .text {
        margin: 0 auto;
        display: block;
    }

    .wrapper-content-about-us .nav-custom .number {
        margin-bottom: 0;
    }

    .nav-custom .nav-item::after {

        right: -7px;
    }

    .site-footer h3 {
        font-size: 18px;
    }

    .site-footer .wrapper-image-mobile img {
        text-align: center;
        margin: 0 auto;
    }

    .site-footer ul li img {
        margin-right: 0;
        width: 20px;
    }

    .section-new-arrival .left p, .section-new-arrival.section-2 .left p {

        text-align: center;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: #EA5823;
        font-size: 60px;
        font-style: normal;
        font-weight: 700;
        line-height: 60px;
        letter-spacing: -0.96px;

        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .wrapper-login {
        height: 100%;
    }

    .section-new-arrival .custom-products-grid .card .card-text .text-1 {
        font-weight: 600;
        font-size: 18px;
        line-height: 28px;
        letter-spacing: 0;
    }

    .section-new-arrival .custom-products-grid .card .card-title a {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
        margin-bottom: 14px;
    }

    .wrapper-login-page .wrapper-login .form-check-label, .wrapper-login-page .wrapper-login .form-check-label .form-label {
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0%;
    }

    .wrapper-login-page .wrapper-login-desc .description {
        margin-bottom: 20px;
    }

    .wrapper-login-page .wrapper-login-desc .title {
        margin-top: 120px;
        font-weight: 600;
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 0%;
    }

    .wrapper-login-page .bg-login img {
        display: none;
    }

    .wrapper-login-page .bg-login img.logo {
        display: block;
    }

    .wrapper-login-page .wrapper-login {
        padding-bottom: 100px;
    }

    .wrapper-login-page .back-home {
        position: absolute;
        bottom: -80px;

        left: 50%;
        transform: translateX(-50%);
    }

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

    .wrapper-login-page .bg-login {
        max-height: 300px;
    }

    .wrapper-login-page .wrapper-content {
        margin-right: 10px;
        margin-left: 10px;
    }

    .wrapper-login-page .wrapper-login .col-6 {
        order: 1;
    }

    .wrapper-login-page .wrapper-login .col-6.position-relative {
        order: 2;
    }

    .wrapper-login-page .wrapper-login .col-6 {
        width: 100%;
        flex: unset;
    }

    .wrapper-login-page .wrapper-login .text-term {
        position: unset;
    }

    .section-new-arrival.section-2 .left p {
        font-size: 70px;
    }

    .main-navigation .primary-navigation {
        display: none;
    }

    .main-navigation .handheld-navigation,
    .menu-toggle, .handheld-navigation, .main-navigation.toggled .handheld-navigation, .main-navigation.toggled ul.menu {
        display: block;
    }

    .menu-toggle {
        display: inline-block;
    }

    .main-navigation.toggled .handheld-navigation ul.menu {
        position: absolute;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        background-color: #080B0A;
        top: 76px;
        display: flex;
        flex-direction: column; /* Mỗi li 1 dòng */
        align-items: flex-end; /* Căn sát lề phải */
        list-style: none;
        margin: 0;
        padding: 0;
        right: 0;
    }

    .main-navigation.toggled .menu ul {
        position: absolute;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        background-color: #080B0A;
        top: 75px;
        display: flex;
        flex-direction: column; /* Mỗi li 1 dòng */
        align-items: flex-end; /* Căn sát lề phải */
        list-style: none;
        margin: 0;
        padding: 0;
        right: 0;
    }

    .handheld-navigation ul.menu li > a,
    .main-navigation.toggled .menu ul > li > a {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .handheld-navigation ul.menu:last-child {
        display: none;
    }

    .main-navigation.toggled ul.menu:last-child {
        display: block;
    }

    .main-navigation div.menu:last-child {
        display: none;
    }

    .main-navigation.toggled div.menu:last-child {
        display: block;
    }

    button.menu-toggle, button.menu-toggle:hover {
        color: #fff !important;;
    }

    .main-navigation {
        margin-right: 20px;
        text-align: right;
    }

    .main-navigation .nav-login {
        display: inline-block;
    }

    .main-navigation.toggled ul.menu li,
    .main-navigation.toggled .menu ul li {
        width: auto;
    }


    button.menu-toggle::before, button.menu-toggle::after, button.menu-toggle span::before {
        display: none;
    }

    button.menu-toggle {
        padding: 10px 20px;
        border: unset;
        background: transparent;
        color: #fff;
        font-size: 25px;
        float: unset;
        display: inline-block;
    }

    button.menu-toggle, button.menu-toggle:hover {
        background: transparent;

    }

    .main-navigation.toggled ul.menu li,
    .main-navigation.toggled .menu ul li {
        width: 100%;
        text-align: right;
        padding: 10px;
    }

    .languages-mobile {
        display: block;
    }

    .languages-mobile img {
        width: 16px;
        height: 11px;
    }

    .languages-mobile span {
        margin-left: 0.3em;
    }

    /* Phần hiển thị đã chọn */
    .select2-selection__rendered span {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #fff;
    }

    .select2-dropdown {
        z-index: 99999;
    }

    /* Dòng trong dropdown */
    .select2-results__option span {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    /* Cờ */
    .select2-results__option img,
    .select2-selection__rendered img {
        width: 16px;
        height: 11px;
        object-fit: cover;
    }

    .select2-container {
        width: 150px !important;
    }

    .select2-container--default .select2-selection--single {
        background-color: transparent; /* Nền trong suốt */
        border: unset; /* Viền nhẹ */
        padding: 6px 12px;
        height: 36px;
        font-size: 14px;
        display: flex;
        align-items: center;

    }

    /* Icon mũi tên */
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 100%;
        right: 8px;
    }

    /* Phần hiển thị nội dung đã chọn */
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #333;
        display: flex;
        align-items: center;
        gap: 8px;
        padding-left: 0;
    }

    /* Dropdown khi mở ra */
    .select2-container--default .select2-results > .select2-results__options {
        background: #fff;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 14px;
    }

    /* Mỗi dòng trong danh sách */
    .select2-results__option {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 6px 10px;
    }

    /* Hover mỗi dòng */
    .select2-results__option--highlighted {
        background-color: #f0f0f0;
        color: #333;
    }


    .wrapper-content-gtr div#timeline {
        left: 50%;
        transform: translateX(-50%) translateX(-45px);
        position: absolute;
    }

    div#timeline {
        background: #3F3F46;
        margin-left: 40px;
        width: 3px; /* nhỏ chiều ngang */
        height: 500px; /* hoặc 100% nếu cần full */
        position: relative;

        margin-right: auto;
        margin-left: auto;
    }

    div#timeline .inside {
        position: absolute;
        width: 4px; /* width nhỏ, cao dài */
        background-color: #fff;
        height: 0%; /* bắt đầu từ 0% */
        left: 0;
        top: 0;
    }

    div#timeline .dot {
        z-index: 99;
        transition: 0.3s ease-in-out;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        position: absolute;
        transform: translateX(-40%); /* canh dot ra giữa */
        cursor: pointer;
        background: #3F3F46;
        left: unset !important;;
    }

    div#timeline .dot date {
        left: 40px;
        top: 0px;
    }

    /* QUAN TRỌNG: dot theo chiều dọc */
    div#timeline #dot-1 {
        top: 0;
        left: 0px;
    }

    div#timeline #dot-2 {
        top: 15%;
        left: 0px;
    }

    div#timeline #dot-3 {
        top: 30%;
        left: 0px;
    }

    div#timeline .dot:hover {
        left: 3px !important;
    }

    div#timeline #dot-4 {
        top: 45%;
        left: 0px;
    }

    div#timeline #dot-5 {
        top: 60%;
        left: 0px;
    }

    div#timeline #dot-6 {
        top: 75%;
        left: 0px;
    }

    div#timeline #dot-7 {
        top: 90%;
        left: 0px;
    }

    #language-switcher-mobile, .nav-login {
        display: none;
    }

    .storefront-primary-navigation .select2-container {
        display: none;
    }

    .wrapper-login-page .bg-register img {
        display: none;
    }

    .wrapper-login-page .bg-register img.logo {
        display: block;
    }

    .wrapper-login-page .bg-register .back-home-desktop {
        display: none;

    }

    .wrapper-login-page .bg-register .back-home-mobile {
        display: block;

    }

    .section-new-arrival .custom-products-grid .card .btn-custom {
        width: 120px;
    }

    .section-new-arrival .custom-products-grid .card .wrapper-img {
        width: 120px;
        height: 120px;
    }

    /* Styles cho màn hình <= 1024px */
    .storefront-primary-navigation {
        overflow: hidden;
    }

    .storefront-primary-navigation .nav-login .btn-login,
    .storefront-primary-navigation .nav-login .btn-register {
        display: none;
    }

    .storefront-primary-navigation .nav-login .wrapper-icon-cart {
        padding: 0 0px 0 15px;
    }

    .storefront-primary-navigation .select2-container {
        width: 130px !important;
    }

    .storefront-primary-navigation .main-navigation {
        gap: 0;
        margin-right: 0px;
    }

    button.menu-toggle, button.menu-toggle:hover {
        padding-right: 0px;
    }

    .wrapper-icon-cart .cart-count {
        top: -9px
    }

    .storefront-primary-navigation .site-branding {
        margin-right: 0 !important;
        max-width: 95px;
    }

    .storefront-primary-navigation .main-navigation {
        flex: unset;
        justify-content: center;
        align-items: center;
    }

    .woocommerce-active .site-header .site-branding {
        flex: unset;
    }

    .homepage-gallery-container .gallery-title {
        position: unset;
        margin-left: 40px;
        font-size: 20px;
        line-height: 20px;
        font-weight: 700;
    }

    .homepage-gallery-container .gallery-content {
        background: transparent;
        transform: unset;
        top: 0;
        width: 100%;
        max-width: 100%;
        left: 40px;
    }

    .homepage-gallery-container .gallery-thumbs {
        left: 50%;
        top: 450px;
        transform: translateX(-50%);
    }


}

/* Tablet đứng */
@media screen and (max-width: 768px) {
    .banner-gtr {
        min-height: 600px;
    }

    .banner-gtr .custom-cl-2 {
        width: 100%;
        position: absolute;
        bottom: 10%;
    }

    .banner-gtr .row {
        margin-top: 100px;
    }

    .custom-product-card h2 {
        font-weight: 400;
        font-size: 12px;
        line-height: 18px;
        letter-spacing: 0;
    }

    .custom-product-card span {
        font-weight: 700;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
    }

    .custom-product-category-list .item span p {
        font-weight: 400;
        font-size: 56px;
        line-height: 73.54px;
        letter-spacing: -2%;
        text-align: center;
        vertical-align: middle;

        text-align: center;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: #EA5823;
        font-size: 48px;
        font-style: normal;
        font-weight: 700;
        line-height: 60px;
        letter-spacing: -0.96px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .banner-gtr.banner-gtr2 {
        min-height: 350px;
        height: 100%;
    }

    .wrapper-section-distance .row > * {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
    }

    .wrapper-content-cart .product-thumbnail img {
        width: 88px;
        height: 88px;
    }

    .wrapper-content-cart .cart-collaterals .cart_totals {
        width: 100%;
        float: unset;
    }

    .wrapper-swiper-home1:after {
        bottom: -62px;
        height: 100vh;
    }

    .homepage-gallery-container .gallery-content h4 {
        margin-top: 20px;
        font-weight: 700;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
    }

    .wrapper-content-custom.wrapper-content-homepage p {
        font-weight: 400;
        font-size: 12px;
        line-height: 18px;
        letter-spacing: 0;
        width: 80%;
    }

    .homepage-gallery-container .gallery-title {
        z-index: 3;
        position: relative;
        top: 0;
        left: 0;
    }

    .section-video {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .section-video .wp-block-embed__wrapper {
        height: 100%;
    }

    .social-links {
        display: block;
        gap: 40px; /* Khoảng cách giữa các icon */
        padding-left: 0;
        list-style: none;
    }

    .site-footer .wrapper-image {
        display: none;
    }

    .site-footer .wrapper-image-mobile {
        display: block;
        margin: 0 auto;
        margin-top: 40px;
        text-align: center;
    }

    .site-footer .wrapper-image-mobile img {
        text-align: center;
    }

    .site-footer {
        padding-top: 0px
    }

    .section-video {
        margin-top: 40px;
    }

    .site-footer h3 {
        height: unset;
        margin-top: 40px;
    }

    .section-new-arrival .custom-products-grid {
        padding: 0;
        margin: 0;
    }

    .wrapper-feature-gtr-bg {
        margin-top: 120px;
    }

    .banner-gtr .content {
        margin-bottom: 40px;
    }

    .banner-gtr .content a {
        font-weight: 400;
        font-style: italic;
        font-size: 18px;
        line-height: 28px;
        letter-spacing: 0;
    }

    .banner-gtr .content p {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
    }

    .banner-gtr .wrapper-thumbs {
        opacity: 0;
    }

    .banner-gtr .title {
        opacity: 0;
    }

    .wrapper-content-custom .title-2::before {
        display: none;
    }

    .section-new-arrival .custom-products-grid .card .btn-custom {
        width: 120px;
        margin-right: 0px;
    }

    .section-new-arrival .custom-products-grid .card .wrapper-img {
        width: 120px;
        height: 120px;
    }

    .section-new-arrival .custom-products-grid .card {
        height: unset;
        min-height: unset;
    }


    /* Styles cho màn hình <= 768px */
    .site-footer {
        background-size: contain;
    }

    .site-footer .wrapper-image {
        margin-bottom: 40px;
    }

    .custom-section-2 {
        background-size: auto;
    }

    .mySwiper {
        height: 500px;
    }

    .wrapper-content-custom .wrapper-product-image .product-image {
        height: 300px;
    }

    .main-navigation ul.menu {
        width: 100%;
        right: 0px;
    }

    .homepage-gallery-container .txt-color {
        font-size: 20px;
        font-weight: 700;
        line-height: 20px;
        margin-bottom: 10px;
    }

    .homepage-gallery-container .gallery-thumbs {
        top: 300px;
    }

    .homepage-gallery-container .gallery-img {
        min-height: 700px;
    }

    .homepage-gallery-container .gallery-img img {
        height: 100%;
        max-width: fit-content;
        width: unset;
        min-height: 700px;
        min-width: 780px;
    }

    .wrapper-section-distance {
        margin: 0;
    }

    .wrapper-content-hover {
        opacity: 1;
        visibility: visible;
    }

    .wrapper-content-custom.wrapper-content-homepage .gallery-desc p {
        font-weight: 700;
        font-style: italic;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0;
        text-align: left;
        vertical-align: middle;
    }

    .wrapper-content-hover .col-9 {
        width: 75%;
    }

    .wrapper-content-hover .col-3 {
        width: 25%;
    }

    .wrapper-section-distance .wrapper-gallery-title .gallery-title {

        line-height: 50px;
    }

    .wrapper-content-primary {
        opacity: 0;
        visibility: hidden;
    }

    .wrapper-section-distance .gallery-item {
        border-left: unset;
        border-top: 1px solid white;
    }

    .wrapper-section-distance {
        max-width: 100%;

    }

    .wrapper-section-distance .gallery-image img {
        min-width: 271px;
        max-width: 271px;
        object-fit: cover;
        height: 271px;
    }

    .wrapper-section-distance .gallery-item {
        height: 370px;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .wrapper-section-distance .gallery-item .wrapper-content .wrapper-content-hover,
    .wrapper-section-distance .gallery-item.gallery-item-2 .wrapper-content .wrapper-content-hover,
    .wrapper-section-distance .gallery-item.gallery-item-3 .wrapper-content .wrapper-content-hover {
        left: 50%;
        top: 25px;
        transform: translateX(-50%);
    }

    .wrapper-section-distance .gallery-item.gallery-item-3 {
        border-right: unset;
    }

    .section-new-arrival > div {
        display: block;
        max-height: unset;
    }

    .section-new-arrival .left p {
        position: unset;
        transform: unset;
        font-weight: 700;
        font-size: 48px;
        line-height: 60px;
        text-align: center;
    }

    .section-new-arrival .custom-products-grid {
        max-height: unset;
    }

    .section-new-arrival .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .section-new-arrival .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .section-new-arrival .custom-products-grid .card .btn-custom {
        width: 120px;
        margin-right: 0;
    }

    .custom-title span {
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }

    .section-new-arrival.section-2 .left p {
        text-align: center;
    }

    .section-video {
        min-height: unset;
    }

    .wrapper-content-about-us .nav-custom .number {
        font-size: 18px;
    }

    .wrapper-content-custom .title {
        font-weight: 600;
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0;
        text-align: center;
        vertical-align: middle;
        margin-top: 40px;
    }

    .wrapper-checkout-custom .title {
        margin-top: 0px;
    }

    .wrapper-content-custom .woocommerce-breadcrumb a {
        font-size: 14px;
    }

    .wrapper-content-custom .title-2 {
        margin-top: 20px;
        margin-bottom: 40px;
        font-weight: 700;
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 0;
        vertical-align: middle;
        text-align: center;
    }

    .wrapper-content-custom .title-2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .wrapper-content-custom p {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
        text-align: justify; /* Horizontal alignment */
        vertical-align: middle; /* Vertical alignment (inline or table-cell contexts) */
    }

    .wrapper-homepage .col-md-6:nth-child(1) {
        order: 2;
    }

    .wrapper-homepage .col-md-6:nth-child(2) {
        order: 1;
    }

    .wrapper-content-about-us .nav-custom {
        display: block;
        margin-top: 0px !important;
        margin-bottom: 20px;
        margin-left: 0px;
    }

    .wrapper-content-about-us .nav-custom .nav-item {
        margin-bottom: 20px;
    }

    .wrapper-content-about-us .nav-custom .nav-item::after {
        height: 1px;
        width: 30px;
        background: #fff;
        content: "";
        top: unset;
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .wrapper-content-about-us .nav-custom .nav-item:last-child::after {
        content: unset;
    }

    .wrapper-content-about-us .nav-custom .text {
        margin: 0 auto;
        display: block;
    }

    .wrapper-content-about-us .nav-custom .number {
        margin-bottom: 0;
    }

    .custom-products-grid-2 ul {
        padding-left: 20px;
    }


    .wrapper-content-gtr .gtr-item.gtr-item-1,
    .wrapper-content-gtr .gtr-item.gtr-item-2,
    .wrapper-content-gtr .gtr-item.gtr-item-3,
    .wrapper-content-gtr .gtr-item.gtr-item-4 {
        width: 100%;
        border: unset;
        border-bottom: 2px solid #DC411A;
    }

    .wrapper-feature-gtr .gtr-item {
        background: transparent;
    }

    .wrapper-feature-gtr-bg .wrapper-feature-gtr p, .wrapper-feature-gtr .gtr-item li {
        font-weight: 400;
        font-size: 12px;
        line-height: 18px;
        letter-spacing: 0;
        margin-bottom: 0;
    }

    .wrapper-gtr-fun-golf .row > .wp-block-group,
    .wrapper-gtr-fun-golf .row > .wp-block-group:nth-child(6) {
        width: 100%;
        float: unset;
        margin-left: 0px;
    }

    .wrapper-gtr-watching-sport .row .wp-block-image:nth-child(1),
    .wrapper-gtr-watching-sport .row .wp-block-image:nth-child(2),
    .wrapper-gtr-watching-sport .row .wp-block-image:nth-child(3),
    .wrapper-gtr-watching-sport .row .wp-block-image:nth-child(4),
    .wrapper-gtr-watching-sport .row .wp-block-image:nth-child(5) {
        width: 100%;
        float: unset;
        margin-left: 0px;
    }

    .custom-product-category-list .item {
        width: 100%;
        float: unset;
    }

    .wrapper-cat .custom-img-cat {
        display: none;
    }

    .wrapper-cat .active-cat {
        display: inline-block;
    }

    .wrapper-content-cart .product-thumbnail {
        width: 100px;
    }

    table.shop_table_responsive tr td[data-title]::before {
        position: absolute;
        left: 50%;

        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0px;
    }

    .wrapper-content-cart .product-name {
        width: 80%;
    }

    .wrapper-content-cart .wc-proceed-to-checkout {
        margin-top: 20px;
    }

    .wrapper-content-cart .product-info-flex {
        margin-top: 15px;
        text-align: left;
    }

    .wrapper-content-cart .product-remove-custom {
        display: none;
    }

    .wrapper-checkout-custom .select2-container {
        width: 100% !important;
    }

    .wrapper-content-gtr .custom-title-3 {
        margin-top: 120px;
        margin-bottom: 20px;
    }

    .wrapper-feature-gtr-bg {
        margin: 0 auto;
        text-align: center;
    }

    .wrapper-feature-gtr-bg .wrapper-feature-gtr .title {
        font-weight: 600;
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0;
        margin-bottom: 0px;
        margin-top: 0;
    }

    .wrapper-feature-gtr-bg {
        background: unset;
    }

    .wrapper-gtr-feature .item:nth-child(1) {
        border: unset;
    }

    .wrapper-gtr-feature .item {
        border: unset;
        padding-bottom: 0px;
    }

    .wrapper-feature-gtr .gtr-item {
        margin: 0 auto;
        padding-bottom: 120px;
        border: unset;
    }

    .wrapper-feature-gtr .gtr-item-1 {
        padding-bottom: 150px;
    }

    .wrapper-feature-gtr .gtr-item-2 {
        padding-bottom: 150px;
    }

    .wrapper-gtr-feature .item {
        padding: 0px;
    }

    .wrapper-feature-gtr-bg .wrapper-feature-gtr .number {
        font-weight: 700;
        font-size: 96px;
        line-height: 72px;
        letter-spacing: -0.02em;
        text-align: right;
        align-items: center;
        justify-content: flex-end;
    }

    .wrapper-gtr-feature .item img {
        margin: 0 auto;
    }

    .wrapper-gtr-feature .title {
        margin-top: 20px;
        font-weight: 700;
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 0;
    }

    .wrapper-gtr-feature {
        margin-bottom: 20px;
        margin-top: 40px;
    }

    .wrapper-gtr-feature .custom-check-list li {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
    }

    .wrapper-diawings-table-custom .align-bottom {
        display: block;
        text-align: center;
    }

    .wrapper-diawings-table-custom .text-color {
        font-weight: 500;
        font-style: italic;
        font-size: 12px;
        line-height: 10px;
        margin-bottom: 10px;
    }


    .wrapper-diawings-section-diawing-golf .title p {
        font-weight: 600;
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0;
        text-align: center;
        vertical-align: middle;
        margin-top: 40px;
    }

    .wrapper-diawings-section-diawing-golf .section-1 {
        margin-top: 0px;
        text-align: left;
        width: 90%;
    }

    .wrapper-diawings-section-diawing-golf .section-2 {
        width: 100%;
    }

    .wrapper-diawings-section-diawing-golf .section-3 {
        width: 100%;
    }

    .wrapper-diawings-section-diawing-golf .section-2 {
        margin-top: 40px;
    }

    .wrapper-diawings-section-diawing-golf img {
        max-width: 280px;
    }

    .wrapper-diawings-section-diawing-golf .section-1 img {
        margin-left: 0;
    }

    .wrapper-diawings-section-diawing-golf .section-3 img {
        margin-right: 0;
    }

    .wrapper-diawings-section-diawing-golf .section-3 {
        margin-top: 40px;
        text-align: right;
        position: relative;
    }

    .wrapper-diawings-section-diawing-golf .section-3 .btn-custom {
        position: absolute;
        right: 20px;
        bottom: 70px;
    }

    .wrapper-diawings-section-diawing-golf {
        padding-bottom: 20px;
    }

    .wrapper-content-sponsor .sponsor-item .post-thumbnail {
        height: 200px;
    }

    .wrapper-content-sponsor .sponsor-item .card-body .card-title {
        font-weight: 600;
        font-size: 12px;
        line-height: 13.91px;
        letter-spacing: 0;
        vertical-align: middle;
    }

    .wrapper-content-sponsor .sponsor-item .card-body {
        padding: 15px;
    }

    .wrapper-content-sponsor .sponsor-item .card-body::after {
        right: 10px;
    }

    .wrapper-content-sponsor .sponsor-item .card-body .card-text {
        font-weight: 400;
        font-size: 12px;
        line-height: 18px;
        letter-spacing: 0;
        vertical-align: middle;
    }

    .custom-product-category-list .title {
        margin-top: 100px;
    }

    .wrapper-homepage .custom-title {
        font-weight: 700;
        font-size: 30px;
        line-height: 44px;
        letter-spacing: 0;
        text-align: center;
        margin-bottom: 10px;
        margin-top: 20px;
    }

    .custom-title::after {
        content: "";
        position: absolute;
        width: 125px;
        height: 20px;
        background-color: #DC411A;
        top: 20px;
        z-index: 0;
        left: 46%;
    }

    .wrapper-section-distance {
        border-bottom: 1px solid #fff;
    }

    .section-new-arrival .left p, .section-new-arrival.section-2 .left p {
        font-weight: 700;
        font-size: 48px;
        line-height: 60px;
        letter-spacing: -0.02em;
        text-align: center;
        align-items: center;
        margin-bottom: 0px;

        text-align: center;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: #EA5823;
        font-size: 48px;
        font-style: normal;
        font-weight: 700;
        line-height: 60px;
        letter-spacing: -0.96px;

        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .section-new-arrival.section-3 {
        margin-top: 30px
    }

    .section-new-arrival.section-2 {
        margin-top: 30px
    }

    #language-switcher-mobile, .nav-login {
        display: none;
    }

    .storefront-primary-navigation .select2-container {
        display: none;
    }

    .wrapper-diawings-table-custom p {
        margin-bottom: 0px;
    }

    .wrapper-diawings-table-custom .title {
        font-weight: 700;
        font-size: 16px;
        line-height: 24px;
        margin-top: 0px;
        letter-spacing: 0;
        text-align: left;
        margin-bottom: 0px;

    }

    .wrapper-content-about-us .title {
        border-bottom: 1px solid #3F0F0B;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }

    .wrapper-content-about-us .storefront-breadcrumb {
        display: none;
    }

    .wrapper-content-about-us .title-2::after {
        width: 50px;
    }

    .map-container iframe {
        height: 91px;
    }

    .wrapper-content-gtr .custom-products-grid .title {
        margin-top: 15px;
    }

    .wrapper-content-gtr .custom-products-grid-2 ul {
        padding-left: 0px;
    }

    .wrapper-content-gtr .custom-products-grid .woocommerce-Price-amount {
        font-weight: 500;
        font-style: italic;
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0%;
    }

    .wrapper-gtr-fun-golf .wp-block-image img {
        width: 100%;
    }

    .wrapper-content-gtr .custom-products-grid p {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
        text-align: justify;
        margin-bottom: 10px;
    }

    .custom-product-category-list .item span p {
        font-weight: 400;
        font-size: 56px;
        line-height: 73.54px;
        letter-spacing: -2%;
        text-align: center; /* căn giữa ngang */
        vertical-align: middle; /* căn giữa dọc nếu áp dụng cho inline hoặc table-cell */


        text-align: center;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: #EA5823;
        font-size: 48px;
        font-style: normal;
        font-weight: 700;
        line-height: 60px;
        letter-spacing: -0.96px;
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .wrapper-content-cart .cart_item {

    }

    .wrapper-content-cart .cart_item td.product-thumbnail {
        width: 100px;
    }

    .wrapper-content-cart .cart_item td.product-name {

    }

    .wrapper-content-cart .product-name a {
        font-weight: 600;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
    }

    .wrapper-content-cart .wrapper-product-subtotal .woocommerce-Price-amount * {
        font-weight: 500;
        font-size: 16px;
        line-height: 18px;
        letter-spacing: 0px;
    }

    .wrapper-content-cart .order-total .woocommerce-Price-amount * {
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0px;
    }

    .wrapper-content-cart .wc-proceed-to-checkout .checkout-button {
        font-weight: 600;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0px;
        padding: 10px 22px;
    }
}


@media screen and (max-width: 767px) {
    .wrapper-diawings-table-custom .title {
        font-weight: 700;
        font-size: 16px;
        line-height: 24px;
        margin-top: 10px;
        letter-spacing: 0;
        text-align: left;
        margin-bottom: 20px;
    }
}

/* Mobile lớn (ví dụ iPhone 11, 12...) */
@media screen and (max-width: 600px) {

    .social-links {
        display: flex;
    }

    .wrapper-content-custom.wrapper-content-homepage p {
        width: 100%;
    }

    .wrapper-diawing-slider-ball .content {
        margin-bottom: 40px;
    }

    .wrapper-diawings-section-img {
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .section-new-arrival .custom-products-grid .card .product-image {
        height: 120px;
    }

    .section-new-arrival .custom-products-grid .card .card-title {
        white-space: nowrap; /* Ngăn text xuống dòng */
        overflow: hidden; /* Ẩn phần vượt quá chiều rộng */
        text-overflow: ellipsis; /* Hiển thị dấu "..." nếu vượt quá */
        display: block; /* Đảm bảo áp dụng được thuộc tính */
    }

    .wrapper-gtr-watching-sport .wp-block-image img {
        height: 100% !important;
    }

    .wrapper-diawings-section-img {
        margin-right: 0;
        margin-left: 0;
    }

    .single-product div.product .variations_button {
        position: relative;
    }

    .single-product div.product form.cart {
        position: relative;
    }

    .custom-product-detail .single_add_to_cart_button {
        display: block;
        margin-top: 20px;
        margin-left: 0px;
        width: 200px;
    }

    .custom-product-detail form.cart .single_add_to_cart_button ~ button {
        position: absolute;
        right: 0;
        bottom: 77px;
    }

    .custom-product-detail form.cart .variations_button .single_add_to_cart_button ~ button {
        position: absolute;
        right: 0;
        bottom: 65px;
    }

    .wrapper-content-gtr .banner-gtr {
        min-height: 177px;
    }

    .banner-gtr .custom-cl-2 {
        width: 100%;
        position: absolute;
        bottom: 0%;
    }

    .banner-gtr {
        height: 100%;
        min-height: 600px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .banner-gtr .row {
        position: unset;
    }

    .banner-gtr .wrapper-thumbs {
        position: unset;
    }

    .homepage-gallery-container .gallery-title {
        margin-left: 15px;
    }

    .homepage-gallery-container .gallery-content {
        left: 15px;
        max-width: 90%;
    }

    .homepage-gallery-container .gallery-thumbs {
        height: 500px;
    }

    .homepage-gallery-container .gallery-thumbs .swiper-wrapper {
        flex-direction: column;
    }

    .wrapper-section-distance .wrapper-gallery-title .gallery-title {
        margin-bottom: 0;
    }
}

/* Mobile nhỏ (điện thoại cũ, nhỏ) */
@media screen and (max-width: 480px) {
    .custom-product-card .wrapper-thumb {
        max-height: 168px;
        height: 100%;
    }

    .custom-product-card .wrapper-thumb .img-product {
        max-height: 168px;
        height: 100%;
    }

    .wrapper-diawings-section-diawing-golf img {
        max-width: 100%;
    }

    .section-new-arrival .custom-products-grid .card .custom-padding {
        padding-left: 20px;
        padding-right: 0px;
    }

    .custom-product-category-list .item span p {
        font-size: 60px;
    }


    .storefront-primary-navigation .container {
        align-items: center;
        gap: 0px;
    }

    .wrapper-content-cart .product-price {
        text-align: left;
    }

    .wrapper-content-cart .product-name .product-info-flex .qty {
        width: 100%;
    }
}

/* Siêu nhỏ (cỡ 375px trở xuống – như iPhone SE) */
@media screen and (max-width: 375px) {
    .wrapper-content-gtr .custom-products-grid .woocommerce-Price-amount {
        font-size: 16px;
    }

    .wrapper-content-gtr .custom-products-grid .btn-custom {
        padding: 10px !important;;
    }

    .section-new-arrival .custom-products-grid .card-text .woocommerce-Price-amount {
        font-size: 16px;
        text-align: left;
        line-height: 24px;
        display: block;
    }

    .section-new-arrival .custom-products-grid .card .card-title {
        text-align: left;
    }

    .section-new-arrival .custom-products-grid .card .card-title a {
        text-align: left;
    }

    .section-new-arrival .custom-products-grid .card .wrapper-img {
        left: 5px;
    }

    .section-new-arrival .col-md-4,
    .section-new-arrival .col-md-8 {

    }

    .section-new-arrival .custom-products-grid .card .btn-custom {
        margin-bottom: 0px;
        margin-top: 10px;
    }

    .section-new-arrival .custom-products-grid .card .product-image {
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .section-new-arrival .custom-products-grid .card {
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .wrapper-section-distance .gallery-item .gallery-title {
        font-size: 50px;
    }

    .custom-product-category-list .item span p {
        font-size: 55px;
    }

    .section-new-arrival .custom-products-grid .card .custom-padding {
        padding-left: 40px;
    }

    table.shop_table_responsive tr td[data-title]::before {
        left: 40%;
    }
}

@media screen and (max-width: 320px) {
    .banner-gtr.banner-gtr2 {
        min-height: 140px;
    }
}