/*
Theme Name: MatBaoWS
Description: This is a child theme for Flatsome Theme
Author: MatBaoWS Team
Template: flatsome
Version: 3.1
*/
/*************** ADD CUSTOM CSS HERE.   ***************/
.section-title-main,
.section-title {
    font-size: 24px;
    font-weight: bold;
    /* margin-bottom: 30px; */
}

/* Header Section */
.header-section {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-logo img {
    max-height: 50px;
    width: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.main-nav ul li a:hover {
    color: var(--primary-color);
}

.search-btn button {
    background: transparent;
    border: 2px solid #000;
    padding: 8px 20px;
    border-radius: 20px;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #89CFF0 0%, #4A90E2 100%);
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* Product Grid Section */
.product-grid-section .section-title {
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    border: 0;
}

.view-all-link {
    position: absolute;
    right: 0;
}

.view-all-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

/* Tùy chỉnh giao diện sản phẩm WooCommerce */
.vinfast-products .product {
    background: #f5f5f5;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
}

.vinfast-products .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.vinfast-products .box-image {
    margin-bottom: 15px;
}

.vinfast-products .box-image img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}

.vinfast-products .product-title {
    font-size: 24px;
    font-weight: 700;
    color: #add8e6;
    margin: 15px 0 5px;
    text-transform: uppercase;
}

.vinfast-products .product-title a {
    color: #add8e6;
    text-decoration: none;
}

.vinfast-products .category {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.vinfast-products .price {
    display: none;
}

.vinfast-products .add-to-cart-button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 99px;
    text-transform: uppercase;
}

.vinfast-products .add-to-cart-button:hover {
    background: #0052cc;
}

/* Product Showcase */
.showcase-section {
    position: relative;
}

.product-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    overflow: hidden;
}

.product-showcase .product-title {
    font-size: 72px;
    color: var(--fs-color-primary);
}

.showcase-image img {
    max-width: 100%;
    height: auto;
}

.specs-row {
    margin-top: 40px;
}

.specs-row h4 {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.specs-row .spec-value {
    font-size: 35px;
    font-weight: 700;
    color: #000;
}

.cta-buttons {
    margin-top: 30px;
}

.cta-buttons button {
    font-weight: 600;
    font-size: 16px;
}

.slider-dots {
    margin-top: 30px;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    display: inline-block;
    transition: background 0.3s;
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* Service Section */
.service-section h2 {
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.service-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.service-section button {
    margin-top: 20px;
    font-weight: 600;
}

/* Brand Statement */
.brand-statement {
    position: relative;
}

.brand-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.brand-statement .row {
    position: relative;
    z-index: 2;
}

.brand-statement h2,
.brand-statement p {
    color: #fff;
}

/* Footer Section */
.footer-section h3,
.footer-section h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-section p,
.footer-section li {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-links li a {
    font-weight: 600;
}

.footer-logo img {
    max-width: 120px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .vinfast-products .product-title {
        font-size: 20px;
    }

    .specs-row .spec-value {
        font-size: 18px;
    }
}

/* ==========================================================================
   XE DIEN VINFAST SECTION CUSTOM STYLING (MATCH MOCKUP DESIGN)
   ========================================================================== */
.product-grid-section {
    padding-top: 60px;
    padding-bottom: 60px;

    .section-title-normal {
        border-bottom: 0px solid #ececec;
    }
}

/* Title row: align header left, view all link right */
.product-grid-section .row:not(.products-row) .col-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.product-grid-section .row:not(.products-row) .section-title {
    margin: 0;
    padding: 0;
}

.product-grid-section .row:not(.products-row) .section-title-main {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    /* font-family: 'Montserrat', sans-serif; */
    letter-spacing: 0.5px;
    border: 0;
}

/* Hide original text in view-all-link and rewrite with custom styling */
.product-grid-section .row:not(.products-row) .view-all-link {
    margin: 0;
}

.product-grid-section .row:not(.products-row) .view-all-link p {
    margin: 0;
}

.product-grid-section .row:not(.products-row) .view-all-link a {
    font-size: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.product-grid-section .row:not(.products-row) .view-all-link a::before {
    content: "Xem tất cả";
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.product-grid-section .row:not(.products-row) .view-all-link a::after {
    content: " \00bb";
    /* double chevron » */
    font-size: 18px;
    font-weight: 400;
    color: #000;
    margin-left: 6px;
    text-decoration: none;
    display: inline-block;
}

/* ==========================================================================
   PRODUCT GRID ITEM CUSTOM STYLING (MATCH MOCKUP DESIGN)
   ========================================================================== */
.products-row .col {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 25px;
}

/* Product Box Container */
.products-row .product-box {
    position: relative;
    background: transparent;
    border: none;
    box-shadow: none;
}

/* Light turquoise background for the image container */
.products-row .box-image {
    background-color: #eff5f4;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* .products-row .box-image img {
    width: auto;
    object-fit: contain;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease;
} */

.products-row .product-box:hover .box-image img {
    transform: scale(1.08);
}

/* Position product name watermark in the top-left corner of the image card */
.products-row .product-box .product-name {
    position: absolute;
    top: 15px;
    left: 15px;
    right: auto;
    text-align: left;
    font-size: 24px;
    font-weight: 900;
    color: #2a8daf;
    /* Steel blue / Teal color matching mockup */
    opacity: 1;
    letter-spacing: 0.5px;
    margin: 0;
    z-index: 1;
    pointer-events: none;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

/* Style the details area below the image with grid layout */
.products-row .box-text {
    padding: 15px 0 0 0;
    background: transparent;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    text-align: left;
}

.product-info .product-category {
    text-align: center;
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Product Title/Name spans the first row */
.products-row .product-box .box-text {
    padding-top: 0;
}

.products-row .product-category,
.products-row .product-title,
.products-row .product-box .name {
    grid-column: 1 / 3;
    grid-row: 1;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 8px;
    text-transform: none;
    display: block;
    text-align: left;
}

/* Append product specific text dynamically */
#text-954580055 .product-category::after {
    content: " Vinfast Vento S";
}

#text-251445073 .product-category::after {
    content: " Vinfast Klara S";
}

#text-4242995482 .product-category::after {
    content: " Vinfast Theon S";
}

#text-3252196530 .product-category::after {
    content: " Vinfast Feliz S";
}

/* Price spans column 1, row 2 */
.products-row .box-text .price,
.products-row .box-text .price-wrapper,
.products-row .box-text span.amount {
    grid-column: 1;
    grid-row: 2;
    font-size: 18px;
    font-weight: 800;
    color: #000000;
    margin: 0;
    display: block;
    text-align: left;
}

/* Button spans column 2, row 2 */
.products-row a.view-detail-btn {
    grid-column: 2;
    grid-row: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 700;
    font-size: 11px;
    padding: 8px 16px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 0;
}

.products-row a.view-detail-btn:hover {
    background-color: #0052cc;
    transform: translateY(-2px);
}

.products-row a.view-detail-btn::after {
    content: " >";
    margin-left: 4px;
    font-weight: bold;
}

/* Mobile responsive overrides for VinFast products block */
@media (max-width: 768px) {
    #row-1235917770 .col-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    #row-1235917770 .section-title-main {
        font-size: 26px;
    }

    #row-1235917770 .view-all-link {
        align-self: flex-end;
    }

    .products-row .product-box .product-name {
        font-size: 18px;
        top: 10px;
        left: 10px;
    }

    .products-row .box-image {
        padding: 15px 10px;
    }

    .products-row .box-image img {
        height: 125px;
    }

    .products-row .product-category {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .products-row .box-text {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .products-row .box-text .product-category,
    .products-row .box-text .product-title,
    .products-row .box-text .product-box .name {
        grid-column: 1;
        grid-row: 1;
        font-size: 14px;
    }

    .products-row .box-text .price,
    .products-row .box-text .price-wrapper,
    .products-row .box-text span.amount {
        grid-column: 1;
        grid-row: 2;
        font-size: 16px;
        margin-bottom: 8px;
    }

    .products-row a.view-detail-btn {
        grid-column: 1;
        grid-row: 3;
        width: 100%;
        padding: 8px 12px;
        font-size: 11px;
    }
}

/* ==========================================================================
   WOOCOMMERCE PRODUCT SPECIFICATIONS BOX STYLING
   ========================================================================== */
.mbws-product-specs-box {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    padding: 15px;
    background-color: #f7f9f9;
    border-radius: 8px;
    border: 1px solid #eef2f2;
}

.mbws-product-specs-box .spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.mbws-product-specs-box .spec-icon {
    font-size: 20px;
    color: var(--primary-color);
    background-color: rgba(0, 102, 255, 0.08);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mbws-product-specs-box .spec-info {
    display: flex;
    flex-direction: column;
}

.mbws-product-specs-box .spec-label {
    font-size: 18px;
    text-transform: uppercase;
    color: #7f8c8d;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.mbws-product-specs-box .spec-value {
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 2px;
    line-height: 1.2;
}

@media (max-width: 576px) {
    .mbws-product-specs-box {
        flex-direction: column;
        gap: 15px;
    }
}

/* ==========================================================================
   PRODUCT SHOWCASE ELEMENT CUSTOM STYLING (MATCH MOCKUP DESIGN)
   ========================================================================== */
.mbws-product-showcase-slider-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
    position: relative;
}

/* Flickity Navigation styling (Mockup arrows) */
.mbws-product-showcase-slider-wrapper .flickity-prev-next-button {
    background: transparent;
    border: none;
    box-shadow: none;
    width: 48px;
    height: 48px;
    position: absolute;
    top: 215px;
    /* Lowered to center relative to the scooter body */
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.mbws-product-showcase-slider-wrapper .flickity-prev-next-button:hover {
    opacity: 1;
}

.mbws-product-showcase-slider-wrapper .flickity-prev-next-button svg {
    display: none;
}

.mbws-product-showcase-slider-wrapper .flickity-prev-next-button::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    border-top: 4px solid #1a1a1a;
    /* Bold arrow chevron */
    border-right: 4px solid #1a1a1a;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: border-color 0.3s ease;
}

.mbws-product-showcase-slider-wrapper .flickity-prev-next-button.previous {
    left: 20px !important;
}

.mbws-product-showcase-slider-wrapper .flickity-prev-next-button.previous::after {
    transform: translate(-30%, -50%) rotate(-135deg);
    /* Left arrow pointing left */
}

.mbws-product-showcase-slider-wrapper .flickity-prev-next-button.next {
    right: 20px !important;
}

.mbws-product-showcase-slider-wrapper .flickity-prev-next-button.next::after {
    transform: translate(-70%, -50%) rotate(45deg);
    /* Right arrow pointing right */
}

.mbws-product-showcase-slider-wrapper .flickity-prev-next-button:hover::after {
    border-color: var(--primary-color);
}

/* Carousel dots */
.mbws-product-showcase-slider-wrapper .slider {
    padding-bottom: 50px;
    /* Space for pagination dots inside slider */
}

.mbws-product-showcase-slider-wrapper .flickity-page-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: auto;
    z-index: 10;
}

/* Single dot */
.mbws-product-showcase-slider-wrapper .flickity-page-dots .dot {
    width: 16px;
    height: 16px;
    background: #e0e0e0;
    /* Inactive grey */
    border-radius: 50%;
    opacity: 1;
    margin: 0;
    padding: 0;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease;
}

/* Active dot */
.mbws-product-showcase-slider-wrapper .flickity-page-dots .dot.is-selected {
    background: var(--primary-color);
    /* Active blue */
}

/* Slide item (Fade transition override for Flickity) */
.mbws-product-showcase-slider-wrapper .flickity-slider {
    transform: none;
    /* Disable horizontal sliding translation */
}

.mbws-showcase-slide {
    width: 100%;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
    pointer-events: none;
}

.mbws-showcase-slide.is-selected {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

.mbws-showcase-container {
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Visual area: Image and Watermark */
.mbws-showcase-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.mbws-showcase-visual .watermark-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    z-index: 1;
    width: 100%;
    pointer-events: none;
}

.mbws-showcase-visual .watermark-main {
    font-size: 80px;
    font-weight: 900;
    color: #7998a6;
    opacity: 0.15;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.mbws-showcase-visual .watermark-sub {
    font-size: 40px;
    font-weight: 500;
    color: #7998a6;
    opacity: 0.15;
    text-transform: capitalize;
    display: block;
    line-height: 1;
    margin-top: -10px;
    font-family: 'Dancing Script', 'Brush Script MT', cursive;
}

.mbws-showcase-visual .showcase-scooter-img {
    z-index: 2;
    position: relative;
    max-width: 100%;
}

.mbws-showcase-visual .showcase-scooter-img img {
    width: auto;
    object-fit: contain;
    margin: 0 auto;
}

/* Specs Row */
.mbws-showcase-specs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #dcdde1;
    padding-top: 25px;
    margin-bottom: 35px;
    gap: 15px;
}

.mbws-showcase-specs .spec-col {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mbws-showcase-specs .spec-title {
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

.mbws-showcase-specs .spec-val {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

/* CTA Buttons */
.mbws-showcase-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.mbws-showcase-cta a {
    display: inline-block;
    width: 220px;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    /* Rounded corners as per mockup */
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    text-align: center;
}

.mbws-showcase-cta .btn-consult {
    background-color: var(--primary-color);
    color: #ffffff;
    border: 1.5px solid var(--primary-color);
}

.mbws-showcase-cta .btn-consult:hover {
    background-color: #0052cc;
    border-color: #0052cc;
    transform: translateY(-2px);
}

.mbws-showcase-cta .btn-detail {
    background-color: #ffffff;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
}

.mbws-showcase-cta .btn-detail:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive showcase */
@media (max-width: 768px) {
    .mbws-showcase-visual {
        height: 280px;
    }

    .mbws-product-showcase-slider-wrapper .flickity-prev-next-button {
        top: 165px;
        /* Adjusted for smaller mobile images */
    }

    .mbws-product-showcase-slider-wrapper .flickity-prev-next-button.previous {
        left: 10px;
    }

    .mbws-product-showcase-slider-wrapper .flickity-prev-next-button.next {
        right: 10px;
    }

    .mbws-showcase-visual .watermark-main {
        font-size: 50px;
    }

    .mbws-showcase-visual .watermark-sub {
        font-size: 26px;
    }

    .mbws-showcase-visual .showcase-scooter-img img {
        max-height: 240px;
    }

    .mbws-showcase-specs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 10px;
    }

    .mbws-showcase-specs .spec-col {
        flex: unset;
        width: 45%;
    }

    .mbws-showcase-specs .spec-title {
        font-size: 12px;
    }

    .mbws-showcase-specs .spec-val {
        font-size: 16px;
    }

    .mbws-showcase-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .mbws-showcase-cta a {
        width: 100%;
        max-width: 280px;
    }
}

/* ==========================================================================
   VINFAST SERVICE WORKSHOP SECTION CUSTOM STYLING (MATCH MOCKUP DESIGN)
   ========================================================================== */
#section_1251421738 {
    background-color: #ffffff;
}

/* Clear overlay dark effect from image container */
#image_1799836120 .img-inner.dark {
    background-color: transparent;
}

#image_1799836120 .img-inner::after {
    background-color: transparent;
    opacity: 0;
    display: none;
}

#image_1799836120 .img-inner {
    border-radius: 8px;
    overflow: hidden;
}

#image_1799836120 img {
    border-radius: 8px;
}

/* Service Title styling - remove horizontal divider lines */
#col-575356057 .section-title-container {
    margin-bottom: 25px;
}

#col-575356057 .section-title {
    border: none;
}

#col-575356057 .section-title b {
    display: none;
}

#col-575356057 .section-title-main {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: inherit;
    line-height: 1.2;
}

/* Text paragraph spacing and sizing */
#col-575356057 p {
    font-size: 16px;
    line-height: 1.75;
    color: #4a4a4a;
    margin-bottom: 30px;
    margin-top: 0;
}

/* Booking CTA Button */
#col-575356057 a.button {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 36px;
    text-transform: uppercase;
    box-shadow: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 48px;
}

#col-575356057 a.button:hover {
    background-color: #0052cc;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #col-575356057>.col-inner {
        padding: 20px 10px;
    }

    #col-575356057 .section-title-main {
        font-size: 28px;
    }

    #col-575356057 p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    #col-575356057 a.button {
        width: 100%;
        max-width: 280px;
    }
}

.truonghien-intro-hero .col-inner {
    padding: 0;
}

.truonghien-about-full h2 {
    color: #3D67B1;
    font-weight: 700;
    text-transform: uppercase;
}

.truonghien-about-full h3 {
    color: #3D67B1;
    font-weight: 700;
    text-transform: uppercase;
}

.truonghien-closing {
    position: relative;
}

.truonghien-closing h2 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .truonghien-closing h2 {
        font-size: 24px;
    }
}


.product-grid-custom {
    margin-bottom: 30px;
}

.product-grid-custom .col-inner {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.product-grid-custom .col-inner:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.product-grid-custom .button.primary {
    background: var(--primary-color);
    color: #fff;
    border-radius: 20px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-grid-custom .button.primary:hover {
    background: #0052CC;
}

.custom-form-tuvan {
    max-width: 500px;
    margin: 0 auto;
}

.custom-form-tuvan .form-field {
    margin-bottom: 20px;
}

.custom-form-tuvan input[type="text"],
.custom-form-tuvan input[type="tel"],
.custom-form-tuvan input[type="email"] {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.custom-form-tuvan input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.custom-form-tuvan .form-submit {
    text-align: center;
    margin-top: 25px;
}

.custom-form-tuvan .button.primary {
    background: var(--primary-color);
    color: #fff;
    padding: 15px 60px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-form-tuvan .button.primary:hover {
    background: #0052CC;
    transform: scale(1.05);
}


/* Form đăng ký tư vấn */
#section_1446672849 {
    background-color: #f2f2f2;
}

#section_1446672849 h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: inherit;
    text-align: center;
}

#section_1446672849 p {
    font-size: 16px;
    color: #333333;
    margin-bottom: 35px;
    text-align: center;
}

.cf7-car-form {
    max-width: 600px;
    margin: 0 auto;
}

.cf7-car-form .cf7-field {
    margin-bottom: 20px;
}

.cf7-car-form input[type="text"],
.cf7-car-form input[type="tel"],
.cf7-car-form input[type="email"] {
    width: 100%;
    height: 80px;
    padding: 15px 20px 45px 20px;
    border: none;
    border-radius: 8px;
    background: #ffffff;
    font-size: 16px;
    color: #333333;
    box-sizing: border-box;
    outline: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.cf7-car-form input:focus {
    box-shadow: 0 3px 12px rgba(0, 102, 255, 0.08);
}

/* Style Webkit, Firefox and IE placeholders to align at the top-left and have blue color */
.cf7-car-form input::-webkit-input-placeholder {
    color: var(--primary-color);
    opacity: 1;
    font-weight: 600;
}

.cf7-car-form input::-moz-placeholder {
    color: var(--primary-color);
    opacity: 1;
    font-weight: 600;
}

.cf7-car-form input:-ms-input-placeholder {
    color: var(--primary-color);
    opacity: 1;
    font-weight: 600;
}

.cf7-car-form input::placeholder {
    color: var(--primary-color);
    opacity: 1;
    font-weight: 600;
}

/* Submit button */
.cf7-car-form .wpcf7-submit {
    width: 250px;
    height: 58px;
    border: none;
    border-radius: 12px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 30px auto 0;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.15);
}

.cf7-car-form .wpcf7-submit:hover {
    background-color: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

/* CF7 response outputs */
.wpcf7-response-output {
    margin: 20px auto 0;
    max-width: 600px;
}

/* Bỏ khoảng trắng thừa của CF7 */
.cf7-car-form p {
    margin: 0;
}

/* ==========================================================================
   MEGA MENU TABS CUSTOM STYLING (MATCH MOCKUP DESIGN)
   ========================================================================== */
/* Remove standard Flatsome tab borders and style the container */
.menu-down-mega .row {
    margin: 0 auto;
}

.custom-menu-down-mega ul.nav>li {
    margin: 0 20px;
}

.custom-menu-down-mega ul.nav>li>a {
    color: #1a1a1a;
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 8px 0;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

/* Highlight active tab in blue */
.custom-menu-down-mega ul.nav>li.active>a,
.custom-menu-down-mega ul.nav>li.active>a span {
    color: #3D67B1;
    /* Custom blue color matching mockup */
}

.custom-menu-down-mega ul.nav>li>a:hover {
    color: #3D67B1;
}

/* Remove indicator arrows/lines from nav simple */
.custom-menu-down-mega ul.nav-simple>li>a::after {
    display: none;
}

.custom-menu-down-mega ul.nav::after {
    display: none;
}

/* Tab Panels container styling */
.custom-menu-down-mega .tab-panels {
    border: none;
    padding: 0;
}

/* Flex layout for panels to align items exactly like mockup */
.custom-menu-down-mega .tab-panels .panel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 20px;
    /* padding: 20px 0; */
}

/* Layout for each product box inside the mega menu */
.custom-menu-down-mega .tab-panels .panel .icon-box {
    width: calc(20% - 16px);
    /* Exactly 5 items per row on desktop */
    min-width: 150px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Reset image/scooter wrapper dimensions */
.custom-menu-down-mega .tab-panels .panel .icon-box .icon-box-img {
    width: 120px;
    margin: 0 auto 12px auto;
}

.custom-menu-down-mega .tab-panels .panel .icon-box .icon-box-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Title h3 (scooter name) formatting */
.custom-menu-down-mega .tab-panels .panel .icon-box .icon-box-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.25;
    text-transform: none;
    font-family: inherit;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-menu-down-mega ul.nav {
        max-width: 420px;
        margin-bottom: 20px;
    }

    .custom-menu-down-mega ul.nav>li>a {
        font-size: 14px;
    }

    .custom-menu-down-mega .tab-panels .panel {
        gap: 30px 15px;
    }

    .custom-menu-down-mega .tab-panels .panel .icon-box {
        width: calc(33.33% - 10px);
        /* 3 items per row on tablet */
    }
}

@media (max-width: 576px) {
    .custom-menu-down-mega .tab-panels .panel .icon-box {
        width: calc(50% - 8px);
        /* 2 items per row on mobile */
    }
}

/* ==========================================================================
   CUSTOM PILL SEARCH FORM
   ========================================================================== */
.searchform {
    border: none;
    background: transparent;
    box-shadow: none;
}

.searchform .flex-row {
    border: 2px solid #000000;
    border-radius: 99px;
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 12px 0 20px;
    height: 44px;
    /* Chiều cao thanh tìm kiếm */
    margin: 0 auto;
}

.searchform .flex-col {
    padding: 0;
    margin: 0;
}

.searchform .search-field {
    border: none;
    background-color: transparent;
    box-shadow: none;
    height: 100%;
    padding: 0;
    margin: 0;
    font-size: 15px;
    color: #333333;
}

.searchform .search-field:focus {
    border: none;
    box-shadow: none;
    background-color: transparent;
}

/* Định dạng lại nút tìm kiếm thành dạng icon đơn giản */
.searchform button[type="submit"].ux-search-submit {
    background-color: transparent;
    border: none;
    box-shadow: none;
    text-shadow: none;
    margin: 0;
    padding: 0 8px;
    min-height: 0;
    height: auto;
    line-height: 1;
}

.searchform button[type="submit"].ux-search-submit i.icon-search {
    font-size: 18px;
    color: #000000;
}

.searchform button[type="submit"].ux-search-submit::after {
    display: none;
}

/* ==========================================================================
   PRODUCT ITEM CUSTOM STYLING (MATCH MOCKUP DESIGN)
   ========================================================================== */
/* Set light background and padding for the image container */
.product-small .box-image {
    background-color: #EFF4F0;
    border-radius: 8px;
    padding: 50px 15px 0;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-small .box-image img {
    /* max-height: 220px; */
    width: auto;
    object-fit: contain;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease;
}

.product-small:hover .box-image img {
    transform: scale(1.08);
}

/* Watermark text styling in top-left */
.product-small .box-image .product-watermark {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 24px;
    font-weight: 900;
    color: #2a8daf;
    /* Steel blue / Teal watermark color */
    letter-spacing: 0.5px;
    margin: 0;
    z-index: 1;
    pointer-events: none;
    text-transform: uppercase;
    font-family: inherit;
}

/* Layout details area below image with flex/grid */
.product-small .box-text {
    padding: 15px 0 0 0;
    background: transparent;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    text-align: left;
}

/* Title spans row 1 */
.product-small .box-text .title-wrapper,
.product-small .box-text .name,
.product-small .box-text .product-title {
    grid-column: 1 / 3;
    grid-row: 1;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 0;
    /* margin-bottom: 12px; */
    text-transform: none;
    display: block;
    text-align: left;
    line-height: 1.3;
}

.product-small .box-text .title-wrapper a,
.product-small .box-text .name a,
.product-small .box-text .product-title a {
    color: #1a1a1a;
    font-weight: 700;
}

/* Price spans column 1, row 2 */
.product-small .box-text .price-wrapper,
.product-small .box-text .price {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    padding: 0;
    display: block;
    text-align: left;
}

.product-small .box-text .price-wrapper span.amount,
.product-small .box-text .price span.amount,
.product-small .box-text .price ins {
    font-size: 17px;
    font-weight: 800;
    color: #000000;
    text-decoration: none;
}

/* Hide original add-to-cart or subtexts inside price wrapper if needed */
.product-small .box-text .price del {
    font-size: 13px;
    color: #888;
    display: block;
    margin-bottom: 2px;
}

/* Custom "TÌM HIỂU NGAY" Button spans column 2, row 2 */
.product-small a.view-detail-btn {
    grid-column: 2;
    grid-row: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 700;
    font-size: 11px;
    padding: 8px 16px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 0;
    border: none;
}

.product-small a.view-detail-btn:hover {
    background-color: #0052cc;
    color: #ffffff;
}

/* Mobile responsive layout for product cards to prevent price & button overlap */
@media (max-width: 768px) {
    .product-small .box-text {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        row-gap: 8px;
    }

    .product-small .box-text .title-wrapper,
    .product-small .box-text .name,
    .product-small .box-text .product-title {
        grid-column: 1;
        grid-row: 1;
        font-size: 14px;
    }

    .product-small .box-text .price-wrapper,
    .product-small .box-text .price {
        grid-column: 1;
        grid-row: 2;
        margin-bottom: 4px;
    }

    .product-small a.view-detail-btn {
        grid-column: 1;
        grid-row: 3;
        width: 100%;
        justify-content: center;
        display: inline-flex;
        padding: 8px 12px;
        font-size: 11px;
        border-radius: 99px;
        white-space: nowrap;
    }
}

/* Remove default Flatsome loop add-to-cart buttons if displayed */
.product-small .add-to-cart-button,
.product-small .box-text .add-to-cart-grid {
    display: none;
}

/* ==========================================================================
   PRODUCT GALLERY SLIDER & COLOR SWATCH OVERRIDES (MATCH MOCKUP)
   ========================================================================== */
.mbws-product-slider-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

/* Make space for absolute dots and buttons at the bottom */
.mbws-product-slider-wrapper .mbws-product-main-slider {
    padding-bottom: 55px;
}

/* Customize Flickity dots at the bottom */
.mbws-product-slider-wrapper .flickity-page-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 10;
}

.mbws-product-slider-wrapper .flickity-page-dots .dot {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #e0e0e0;
    opacity: 1;
    border-radius: 50%;
    border: none;
    transition: all 0.3s ease;
}

.mbws-product-slider-wrapper .flickity-page-dots .dot.is-selected {
    background-color: var(--primary-color);
    transform: scale(1.15);
}

/* Align and customize navigation arrows inline with dots */
.mbws-product-slider-wrapper .flickity-prev-next-button {
    position: absolute;
    top: auto;
    bottom: 15px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    box-shadow: none;
    z-index: 11;
    opacity: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
}

.mbws-product-slider-wrapper .flickity-prev-next-button:hover {
    background: transparent;
}

.mbws-product-slider-wrapper .flickity-prev-next-button.previous {
    left: calc(50% - 85px);
    right: auto;
}

.mbws-product-slider-wrapper .flickity-prev-next-button.next {
    left: calc(50% + 55px);
    right: auto;
}

/* Replace default SVG arrows with custom SVG triangles */
.mbws-product-slider-wrapper .flickity-prev-next-button svg {
    display: none;
}

.mbws-product-slider-wrapper .flickity-prev-next-button::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    transition: all 0.3s ease;
}

.mbws-product-slider-wrapper .flickity-prev-next-button.previous::before {
    border-right: 14px solid #a6acbe;
    /* Grey left arrow pointer */
}

.mbws-product-slider-wrapper .flickity-prev-next-button.next::before {
    border-left: 14px solid var(--primary-color);
    /* Blue right arrow pointer */
}

.mbws-product-slider-wrapper .flickity-prev-next-button.previous:hover::before {
    border-right-color: var(--primary-color);
}

/* Styling color swatches */
.vc-sunoo-hero .color-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 25px 0 15px 0;
}

.vc-sunoo-hero .color-row {
    display: flex;
    gap: 12px;
}

.vc-sunoo-hero .color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1);
}

.vc-sunoo-hero .color-swatch:hover {
    transform: scale(1.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(0, 102, 255, 0.4);
}

/* WooCommerce variations container adjustments */
.mbws-dynamic-swatches-wrapper {
    margin-top: 20px;
    margin-bottom: 25px;
}

.mbws-dynamic-swatches-wrapper table.variations {
    margin: 0;
    border: none;
    background: transparent;
}

.mbws-dynamic-swatches-wrapper table.variations tr,
.mbws-dynamic-swatches-wrapper table.variations td {
    border: none;
    background: transparent;
    padding: 0;
}



/* Hero Section */
.vc-sunoo-hero .product-brand {
    color: var(--fs-color-primary);
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.vc-sunoo-hero .product-title {
    color: var(--fs-color-primary);
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 15px 0;
    letter-spacing: -1px;
}

.vc-sunoo-hero .product-price {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.vc-sunoo-hero .product-slogan {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    color: #333;
}

.vc-sunoo-hero .product-specs {
    margin-bottom: 25px;
}

.vc-sunoo-hero .spec-item {
    margin-bottom: 15px;
}

.vc-sunoo-hero .spec-label {
    font-size: 20px;
    color: #000;
    margin-bottom: 5px;
    font-weight: 500;
}

.vc-sunoo-hero .spec-value {
    font-size: 28px;
    font-weight: 700;
    color: #000;
}

.vc-sunoo-hero .color-selector {
    margin: 25px 0;
}

.vc-sunoo-hero .color-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.vc-sunoo-hero .color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.vc-sunoo-hero .color-swatch:hover {
    transform: scale(1.15);
    border-color: var(--fs-color-primary);
    box-shadow: 0 2px 10px rgba(30, 115, 190, 0.4);
}

.vc-sunoo-hero .carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 25px 0;
}

.vc-sunoo-hero .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vc-sunoo-hero .dot.active {
    background: var(--fs-color-primary);
    transform: scale(1.3);
}

.vc-sunoo-hero .dot-nav {
    color: var(--fs-color-primary);
    font-size: 18px;
    cursor: pointer;
    font-weight: 700;
}

.vc-sunoo-hero .cta-buttons {
    margin-top: 30px;
}

.cta-buttons .text {
    display: flex;
    flex-direction: row;
}

.vc-sunoo-hero .btn-contact .button {
    background: #007bff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vc-sunoo-hero .btn-register .button {
    border: 2px solid #007bff;
    color: #007bff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vc-sunoo-hero .main-product-image {
    max-width: 100%;
    height: auto;
}

/* Features Grid 3 Columns */
/* .features-grid-3col {
    background: #ffffff;
    padding: 60px 0;
}

.features-grid-3col .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-grid-3col .col-inner {
    padding: 20px;
}

.features-grid-3col .col-inner .icon-box {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 15px;
    row-gap: 10px;
    margin-bottom: 45px;
}

.features-grid-3col .col-inner .icon-box:last-child {
    margin-bottom: 0;
}

.features-grid-3col .icon-box-img {
    grid-column: 1;
    grid-row: 1;
    width: 28px;
    height: 28px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-grid-3col .icon-box-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.features-grid-3col .icon-box-text {
    display: contents;
}

.features-grid-3col .feature-title-main {
    grid-column: 2;
    grid-row: 1;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #111111;
    margin: 0;
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.features-grid-3col .feature-desc-main {
    grid-column: 1 / span 2;
    grid-row: 2;
    font-size: 15px;
    line-height: 1.62;
    color: #555555;
    margin: 0;
}

.features-grid-3col .feature-center-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
} */

/* Tech Breakthrough Section */
.tech-breakthrough {
    background: transparent;
    overflow: hidden;
}

.tech-breakthrough .row-collapse {
    margin: 0;
}

.tech-breakthrough .tech-heading {
    color: var(--fs-color-primary);
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-breakthrough .tech-feature {
    margin-bottom: 30px;
}

.tech-breakthrough .tech-subtitle {
    color: #000;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-breakthrough .tech-list {
    color: #333;
    line-height: 1.8;
    padding-left: 20px;
    margin: 0;
}

.tech-breakthrough .tech-list li {
    font-size: 14px;
    margin-bottom: 8px;
}

.tech-breakthrough .tech-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Product Showcase Section - NEW */
.product-showcase {
    position: relative;
}

.product-showcase .showcase-title {
    color: #000000;
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-align: center;
}

.product-showcase .slider {
    padding-bottom: 80px;
}

.product-showcase .gallery-col {
    width: 100%;
    text-align: center;
}

.product-showcase .gallery-col img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* Position Flickity navigation buttons at the bottom center */
.product-showcase .flickity-prev-next-button {
    position: absolute;
    top: auto;
    bottom: 25px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    box-shadow: none;
    z-index: 10;
    opacity: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
}

.product-showcase .flickity-prev-next-button:hover {
    background: transparent;
}

.product-showcase .flickity-prev-next-button.previous {
    left: calc(50% - 100px) !important;
    right: auto !important;
}

.product-showcase .flickity-prev-next-button.next {
    left: calc(50% + 80px) !important;
    right: auto !important;
}

/* SVG icons hidden */
.product-showcase .flickity-prev-next-button svg {
    display: none;
}

/* Custom triangles */
.product-showcase .flickity-prev-next-button::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    transition: all 0.3s ease;
}

.product-showcase .flickity-prev-next-button.previous::before {
    border-right: 14px solid var(--primary-color);
    /* Blue left arrow pointer */
}

.product-showcase .flickity-prev-next-button.next::before {
    border-left: 14px solid #7d7d7d;
    /* Grey right arrow pointer */
}

.product-showcase .flickity-prev-next-button.previous:hover::before {
    border-right-color: #0052cc;
}

.product-showcase .flickity-prev-next-button.next:hover::before {
    border-left-color: var(--primary-color);
}

/* Product Specifications Section - NEW */
.product-specifications {
    background: #ffffff;
    padding: 60px 0;
}

.product-specifications .specs-heading {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 35px;
    text-align: left;
    color: #000000;
}

.product-specifications .specs-table-wrapper {
    width: 100%;
    background: #f5f5f7;
    padding: 25px 30px;
    border-radius: 12px;
    box-sizing: border-box;
}

.product-specifications .specs-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    border: none;
}

.product-specifications .specs-table tr {
    border-bottom: 1px solid #e5e5e7;
    height: auto;
}

.product-specifications .specs-table tr:last-child {
    border-bottom: none;
}

.product-specifications .specs-table td {
    padding: 14px 0;
    border: none;
    background: transparent;
    vertical-align: middle;
    color: #000000;
    font-size: 15px;
}

/* First column (Label) */
.product-specifications .specs-table td:first-child {
    text-align: left;
    font-weight: 500;
    width: 55%;
}

/* Second column (Value) */
.product-specifications .specs-table td:last-child {
    text-align: right;
    font-weight: 700;
    width: 45%;
}

/* Hover effect */
.product-specifications .specs-table tr:hover td {
    background: transparent;
}

/* Responsive */
@media (max-width: 768px) {
    .vc-sunoo-hero .product-brand {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .vc-sunoo-hero .product-title {
        font-size: 46px;
        margin-bottom: 10px;
    }

    .vc-sunoo-hero .product-price {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .vc-sunoo-hero .product-slogan {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .vc-sunoo-hero .spec-label {
        font-size: 14px;
        margin-bottom: 3px;
    }

    .vc-sunoo-hero .spec-value {
        font-size: 18px;
    }


    .features-grid-3col .col-inner .icon-box {
        margin-bottom: 30px;
        column-gap: 10px;
        row-gap: 6px;
    }

    .features-grid-3col .icon-box-img {
        width: 24px;
        height: 24px;
    }

    .features-grid-3col .feature-title-main {
        font-size: 18px;
    }

    .features-grid-3col .feature-desc-main {
        font-size: 14px;
        line-height: 1.5;
    }

    .tech-breakthrough .tech-heading {
        font-size: 28px;
    }

    .vc-sunoo-hero .cta-buttons .col-inner {
        margin-bottom: 10px;
    }

    .product-showcase .showcase-title {
        font-size: 36px;
    }

    .product-showcase .slider {
        padding-bottom: 60px;
    }

    .product-showcase .flickity-prev-next-button {
        bottom: 15px;
    }

    .product-specifications .specs-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .product-specifications .specs-table-wrapper {
        padding: 15px 20px;
        margin-bottom: 20px;
    }

    .product-specifications .specs-table td {
        font-size: 13px;
        padding: 10px 0;
    }
}

/* Hide WooCommerce/Flatsome shop default titles on product category pages */
body.tax-product_cat .page-title,
body.tax-product_cat .shop-page-title,
body.tax-product_cat .breadcrumbs {
    display: none;
}



/* ==========================================================================
   RECRUITMENT CUSTOM FIELDS STYLING
   ========================================================================== */
.mbws-recruitment-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666666;
    margin-top: 6px;
    margin-bottom: 12px;
    font-weight: normal;
    text-transform: none;
}

.mbws-recruitment-meta .recruitment-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    font-size: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 6px;
    vertical-align: middle;
}

.mbws-recruitment-meta .recruitment-type .recruitment-icon {
    background-image: url('assets/img/image%20119.png');
}

.mbws-recruitment-meta .recruitment-location .recruitment-icon {
    background-image: url('assets/img/image%20120.png');
}

.mbws-recruitment-meta .divider {
    color: #cccccc;
    margin: 0 4px;
}

/* Align meta text matching parent title alignments */
.text-center .mbws-recruitment-meta {
    justify-content: center;
}

.text-left .mbws-recruitment-meta {
    justify-content: flex-start;
}

.text-right .mbws-recruitment-meta {
    justify-content: flex-end;
}

.absolute-footer {
    display: none;
}

/* ==========================================================================
   WHY CHOOSE US SECTION CUSTOM STYLING (MATCH MOCKUP DESIGN)
   ========================================================================== */
/* #section_712808450 {
    background-color: #ffffff;
    padding-top: 60px;
    padding-bottom: 60px;
}

.why-choose-us #text-1254336941 h2 {
    font-size: 28px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 45px;
    letter-spacing: -0.5px;
}

*/
/* Columns alignment */
@media (min-width: 769px) {
    /* 
    .why-choose-us #col-1088848423,
    .why-choose-us #col-1583588261 {
        padding-left: 0;
        padding-right: 40px;
    }

    .why-choose-us #col-1965732491,
    .why-choose-us #col-122294845 {
        padding-left: 40px;
        padding-right: 0;
    } */
}

@media (max-width: 768px) {
    .why-choose-us .col {
        padding: 15px 0;
    }

    .why-choose-us h2 {
        font-size: 22px;
        margin-bottom: 25px;
    }
}

/* Icon Box Layout */
.why-choose-us .icon-box {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
}

.why-choose-us .icon-box-img {
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    margin: 0;
}

.why-choose-us .icon-box-img img {
    width: 100%;
    height: auto;
    display: block;
    padding: 0;
}

.why-choose-us .icon-box-text {
    padding: 0;
    margin: 0;
}

.why-choose-us .icon-box-text h4 {
    padding-left: 32px;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
    color: #2b6cb0;
    /* Blue color matching the check icon theme */
    min-height: 22px;
    display: flex;
    align-items: center;
    line-height: 1.2;
    text-transform: uppercase;
}

.why-choose-us .icon-box-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #000000;
    /* Bold, high-contrast dark text */
    margin: 0;
    padding-left: 0;
}

/* ==========================================================================
   JOB LISTING SECTION CUSTOM STYLING (MATCH MOCKUP DESIGN)
   ========================================================================== */
#section_1033621911 {
    background-color: #ffffff;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Section Title */
.job-listing #text-687787628 h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1e73be;
    /* Clean primary blue */
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    text-align: center;
}

/* Container Centering */
.job-listing #col-36926897 {
    max-width: 900px;
    margin: 0 auto;
    float: none;
    display: block;
}

/* Job Item Card */
.job-listing .job-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f5f5f7;
    /* Very light grey */
    border-radius: 12px;
    padding: 24px 32px;
    margin-bottom: 18px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
}

.job-listing .job-item:hover {
    background-color: #ececed;
    cursor: pointer;
}

/* Job Content */
.job-listing .job-content {
    flex: 1 1 auto;
    text-align: left;
}

.job-listing .job-title {
    font-size: 20px;
    font-weight: 800;
    color: #000000;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: -0.3px;
}

/* Job Meta */
.job-listing .job-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #777777;
    margin-top: 6px;
    font-weight: 500;
}

.job-listing .job-meta br {
    display: none;
}

/* Meta Items - Hide Emoji Image, Use Text Emoji */
.job-listing .job-type img.emoji,
.job-listing .job-location img.emoji {
    display: none;
}

.job-listing .job-type::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url('assets/img/image%20119.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 6px;
}

.job-listing .job-location::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url('assets/img/image%20120.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 6px;
}

.job-listing .job-type {
    display: inline-flex;
    align-items: center;
}

.job-listing .job-location {
    display: inline-flex;
    align-items: center;
}

.job-listing .job-type::after {
    content: "|";
    margin-left: 14px;
    color: #dddddd;
}

/* Custom Long Arrow with Micro-animation */
.job-listing .job-arrow {
    font-size: 0;
    /* Hide default arrow character */
    position: relative;
    width: 50px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    margin-left: 20px;
}

.job-listing .job-arrow::before {
    content: "";
    position: absolute;
    right: 0;
    width: 45px;
    height: 2px;
    background-color: #000000;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.job-listing .job-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    width: 10px;
    height: 10px;
    border-top: 2px solid #000000;
    border-right: 2px solid #000000;
    transform: rotate(45deg);
    transition: border-color 0.3s ease;
}

/* Arrow hover micro-interaction */
.job-listing .job-item:hover .job-arrow::before {
    width: 55px;
    background-color: #007bff;
}

.job-listing .job-item:hover .job-arrow::after {
    border-color: #007bff;
}

/* Responsive Job Listing */
@media (max-width: 768px) {
    .job-listing .job-item {
        padding: 16px 20px;
    }

    .job-listing .job-title {
        font-size: 16px;
    }

    .job-listing .job-arrow {
        width: 35px;
    }

    .job-listing .job-arrow::before {
        width: 30px;
    }

    .job-listing .job-item:hover .job-arrow::before {
        width: 38px;
    }
}

/* ==========================================================================
   SHOWROOM & DỊCH VỤ SECTION CUSTOM STYLING (MATCH MOCKUP DESIGN)
   ========================================================================== */
#section_1999145141 {
    background-color: #ffffff;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Section Title */
.showroom-list-section .section-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
    text-align: center;
    display: block;
}

/* Showroom Row Item */
.showroom-item {
    margin-bottom: 30px;
    align-items: flex-start;
    /* Align content to the top */
}

/* Reset default Flatsome column inner paddings to align perfectly */
.showroom-item .col-inner {
    padding: 0;
}

/* Image Container */
.showroom-item .img {
    overflow: hidden;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    /* Remove border-radius as per mockup */
}

.showroom-item .img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Showroom Description Details */
.showroom-item h3 {
    font-size: 24px;
    font-weight: 800;
    color: #000000;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    position: relative;
}

/* Thick horizontal line above title */
.showroom-item h3::before {
    content: "";
    display: block;
    width: 180px;
    height: 5px;
    background-color: #000000;
    margin-bottom: 25px;
}

.showroom-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    /* Dark black text as per mockup */
    margin: 0 0 15px 0;
    display: flex;
    align-items: flex-start;
    font-weight: 500;
}

/* Show Map Pin, Phone and Clock Icons using custom images as per mockup */
.showroom-item .icon-map-pin,
.showroom-item .icon-phone,
.showroom-item .icon-clock {
    display: inline-block;
    width: 20px;
    height: 20px;
    font-size: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 12px;
    flex: 0 0 auto;
    margin-top: 3px;
}

.showroom-item .icon-map-pin::before,
.showroom-item .icon-phone::before,
.showroom-item .icon-clock::before {
    display: none;
    /* Hide original icon glyph */
}

.showroom-item .icon-map-pin {
    background-image: url('assets/img/image%2096.png');
}

.showroom-item .icon-phone {
    background-image: url('assets/img/image%2098.png');
}

.showroom-item .icon-clock {
    background-image: url('assets/img/image%20100.png');
}

/* Showroom Button styling ("Xem Trên Bản Đồ") */
.showroom-item .button.primary {
    background-color: var(--primary-color);
    /* Vibrant bright blue background */
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    /* Capitalize each word */
    letter-spacing: normal;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: auto;
    line-height: 1;
    margin: 15px 0 0 0;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.showroom-item .button.primary:hover {
    background-color: #0052cc;
    color: #ffffff;
}

/* Replace default icon-angle-right with diagonal arrow icon */
.showroom-item .button.primary .icon-angle-right {
    display: none;
}

.showroom-item .button.primary span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.showroom-item .button.primary span::after {
    content: "\2197";
    /* White diagonal arrow */
    font-size: 18px;
    font-weight: 700;
    margin-left: 8px;
    display: inline-block;
    line-height: 1;
}

/* Thin horizontal rule divider between showrooms */
.showroom-list-section hr {
    border: none;
    border-top: 1px solid #e2e8f0;
    /* Subtle gray line */
    margin: 40px 0;
}


@media (max-width: 768px) {
    .showroom-item {
        margin-bottom: 25px;
    }

    .showroom-item .col {
        padding-bottom: 15px;
    }

    .showroom-item h3 {
        font-size: 20px;
    }

    .showroom-item h3::before {
        width: 140px;
        margin-bottom: 15px;
    }

    .showroom-item .button.primary {
        margin-top: 5px;
    }

    .showroom-list-section hr {
        margin: 20px 0;
    }
}

.header-nav {
    gap: 50px
}

/* Hide Search Field Placeholder */
.searchform .search-field::placeholder {
    color: transparent;
    opacity: 0;
}

.searchform .search-field::-webkit-input-placeholder {
    color: transparent;
    opacity: 0;
}

.searchform .search-field::-moz-placeholder {
    color: transparent;
    opacity: 0;
}

.searchform .search-field:-ms-input-placeholder {
    color: transparent;
    opacity: 0;
}

.entry-title {
    color: var(--fs-color-primary);
    font-size: 40px;
    margin-bottom: 30px;
}

.npb {
    padding-bottom: 0 !important
}

@media (max-width: 420px) {
    #footer .img-logo-footer .icon-box-img {
        width: 60px;
    }

    #footer .img-logo-footer .icon-box-text h3 {
        font-size: 16px;
    }

    #footer .company-name-text p {
        font-size: 16px;
        /* line-height: 24px; */
        color: #000000;
        margin: 0;
    }


    #footer .certification-badge {
        max-width: 160px;
    }

    #footer .col {
        padding-bottom: 0;
    }

    #footer .icon-box-left .icon-box-img+.icon-box-text {
        padding-left: 0em;
    }

    .img-logo-footer {
        margin-bottom: 16px;
    }

    .mbws-showcase-container {
        padding: 0;
    }

    .mbws-showcase-cta a {
        display: inline-block;
        width: 200px;
        padding: 9px 13px;
    }

    .brand-statement .col-inner {
        padding: 0 15px;
    }

    .section-title-main,
    .section-title {
        font-size: 18px;

        /* margin-bottom: 14px; */
    }

    .product-grid-section .row:not(.products-row) .section-title-main {
        font-size: 20px;
    }

    .showroom-list-section .section-title h2,
    .job-listing .section-title,
    .recruitment-hero .section-title {
        text-align: center;
        margin: 0 auto;
        display: block;
        font-size: 24px;
        margin-bottom: 16px;
    }

    .why-choose-us {
        padding: 0 16px;

        .section-title {
            margin-bottom: 0;
        }
    }

    .showroom-list-section .section-title h2 {
        text-align: center;
        margin: 0 auto;
        display: block;
        font-size: 24px;
        margin-bottom: 16px;
    }

    #section_1941873412.showroom-list-section {
        padding: 30px auto;
    }

    .entry-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
}

.recruitment-hero .section-title {
    text-align: center;
    margin: 0 auto;
    display: block;
    margin-bottom: 16px;
}

.menu-down-mega-2 .row {
    margin: 0 auto;

    .col-inner {
        display: flex;
        justify-content: center;
        gap: 40px;
        align-items: center;
        /* flex-direction: column; */
    }
}