/* --- RESET & VARIABLES --- */
:root {
    --color-green: #02432f;
    --color-green-light: #498851;
    --color-gold: #d4a017;
    --color-bg: #f8f9fa;
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Inter', 'Be Vietnam Pro', sans-serif;
    --font-serif: 'Merriweather', serif;



    --card-border: 2px solid var(--color-green);
    --gap-standard: 20px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: #ffffff;
    color: #333;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    width: 100%;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

/* --- GRADIENT TEXT UTILITY --- */
.gradient-text {
    background: linear-gradient(to right, #02432f, #498851, #02432f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- GRADIENT BORDER UTILITIES --- */
.img-gradient-border {
    display: inline-block;
    padding: 8px;
    border-radius: 16px;
    background: linear-gradient(to right, #02432f, #498851, #02432f);
}

.img-gradient-border2 {
    display: inline-block;
    padding: 4px;
    border-radius: 8px;
    background: linear-gradient(to right, #02432f, #498851, #02432f);
}

.img-gradient-border img {
    display: block;
    border-radius: 16px;
    background: #fff;
}

/* --- BLUR BACKGROUND UTILITY --- */
.blur-bg {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
    padding: 10px 20px;
    border-radius: 12px;
    color: #fff;
    font-weight: 400;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* --- TOP NAVBAR --- */
.top-navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 4px 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: "";
    height: 3px;
    width: 0;
    background: linear-gradient(to right, #02432f, #498851);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.nav-menu a:hover {
    color: var(--color-green);
}

.nav-menu a:hover::after {
    width: 100%;

}

.nav-social {
    display: flex;
    gap: 15px;
}

.nav-social a {
    color: #333;
    transition: color 0.3s ease;
}

.nav-social a:hover {
    color: var(--color-green);
    transform: scale(1.2);
    transition: all 0.3s ease;
}

/* --- HAMBURGER MENU --- */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--color-green);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* --- HERO SLIDER --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    position: relative;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: white;
    width: 45px;
    border-radius: 7px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

/* --- MAIN CONTAINER --- */
.main-container {
    max-width: 95%;
    margin: 0 auto;
    background: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
}

/* --- HEADER SECTION --- */
.header-top {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.logo-wrapper {
    flex: 0 0 35%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
}

.logo-symbol {
    width: 120px;
    height: 120px;
    border: 3px solid var(--color-gold);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--color-gold);
    box-shadow: 0 2px 10px rgba(212, 160, 23, 0.2);
}

.sun {
    width: 20px;
    height: 20px;
    background: var(--color-gold);
    border-radius: 50%;
    position: absolute;
    top: 30%;
    box-shadow: 0 0 0 4px white, 0 0 0 6px var(--color-gold);
}

.hands-shape {
    font-size: 3rem;
    margin-top: 20px;
}

.brand-name {
    font-family: var(--font-serif);
    color: var(--color-gold);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-sub {
    font-size: 0.75rem;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--font-body);
}

.header-section .intro-text {
    flex: 1;
}

.header-section .intro-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
    text-align: justify;
    font-family: var(--font-body);
    font-weight: 500;
    color: #444;
}

.signature {
    margin-top: 15px;
    font-style: italic;
    color: var(--color-green);
    font-weight: 500;
}

.header-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
    position: relative;
}

/* Nút điều hướng - ẩn mặc định */
.img-prev,
.img-next {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(2, 67, 47, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.img-prev:hover,
.img-next:hover {
    background: rgba(2, 67, 47, 1);
    transform: translateY(-50%) scale(1.1);
}

.img-prev {
    left: -15px;
}

.img-next {
    right: -15px;
}

.img-frame {
    overflow: hidden;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    padding: 1.8px;
    background: linear-gradient(to right, #02432f, #498851, #02432f);
}

.img-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.img-frame img {
    border: none;
    border-radius: 4px;
}

/* --- GENERAL SECTION STYLES --- */
.section-block {
    /* margin-bottom: 40px; */
}

.section-title {
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--color-green);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(to right, #02432f, #498851, #02432f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- GRID LAYOUTS --- */
.grid-2-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* --- PRODUCT TABS --- */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.product-tab {
    font-family: var(--font-head);
    font-size: 0.95rem;
    padding: 12px 28px;
    background: white;
    border: 2px solid var(--color-green-light);
    color: var(--color-green);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(2, 67, 47, 0.1);
}

.product-tab:hover {
    background: rgba(73, 136, 81, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 67, 47, 0.2);
}

.product-tab.active {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-light) 100%);
    color: white;
    border-color: var(--color-green);
    box-shadow: 0 4px 15px rgba(2, 67, 47, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- CARD STYLE --- */

/* ========================================
   CARD STYLE (DỰ ÁN) - UPDATED DESIGN
   ======================================== */

.card0 {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
    cursor: pointer;
    border: 5px solid transparent;
    box-shadow: 0 4px 15px rgba(2, 67, 47, 0.12);
    border-color: var(--color-green-light);
    position: relative;
}

.card0::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 67, 47, 0) 0%, rgba(73, 136, 81, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.card0:hover::before {
    opacity: 1;
}

.card0:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(2, 67, 47, 0.18);
    border-color: var(--color-green);
}

.card0-img {
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
    height: 280px;
    background: #f8f9fa;
}

.card0-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.card0:hover .card0-img img {
    transform: scale(1.08);
}

/* Project Badge */
.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
}

.project-badge.strategic {
    background: linear-gradient(to right, #02432f, #498851, #02432f);
    color: white;
}

.project-badge.premium {
    background: linear-gradient(to right, #02432f, #498851, #02432f);
    color: white;
}

.project-badge.sustainable {
    background: linear-gradient(to right, #02432f, #498851, #02432f);
    color: white;
}

.project-badge.innovative {
    background: linear-gradient(to right, #02432f, #498851, #02432f);
    color: white;
}

.card0-body {
    border: none;
    border-top: 3px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(to right, #02432f, #498851, #02432f);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.card0-heading {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--color-green);
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.8px;
    background: linear-gradient(to right, #02432f, #498851);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.card0:hover .card0-heading {
    letter-spacing: 1px;
}

.card0-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    font-family: var(--font-body);
    font-weight: 400;
    color: #555;
    margin-bottom: 8px;
}

/* Project Meta Info */
.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 8px 0;
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.meta-item svg {
    color: var(--color-green-light);
    flex-shrink: 0;
}

/* Project Highlights */
.project-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
}

.highlight-tag {
    padding: 6px 16px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-green);
    border: 1px solid #dee2e6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.card0:hover .highlight-tag {
    background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
    color: white;
    border-color: var(--color-green);
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE - DỰ ÁN
   ======================================== */

/* Màn hình < 768px */
@media (max-width: 768px) {
    .card0-img {
        height: 220px;
    }

    .project-meta {
        flex-direction: column;
        gap: 10px;
    }

    .project-highlights {
        gap: 6px;
    }

    .highlight-tag {
        font-size: 0.7rem;
        padding: 5px 14px;
    }
}

/* Màn hình < 480px */
@media (max-width: 480px) {
    .card0-img {
        height: 180px;
    }

    .card0-body {
        padding: 16px 18px;
        gap: 10px;
    }

    .card0-heading {
        font-size: 1.35rem;
    }

    .card0-desc {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .project-badge {
        top: 12px;
        right: 12px;
        padding: 6px 14px;
        font-size: 0.7rem;
    }

    .meta-item {
        font-size: 0.8rem;
    }

    .meta-item svg {
        width: 16px;
        height: 16px;
    }

    .highlight-tag {
        font-size: 0.65rem;
        padding: 4px 12px;
    }
}

/* Màn hình < 360px */
@media (max-width: 360px) {
    .card0-img {
        height: 160px;
    }

    .card0-body {
        padding: 14px 16px;
        gap: 8px;
    }

    .card0-heading {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }

    .card0-desc {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .project-badge {
        top: 10px;
        right: 10px;
        padding: 5px 12px;
        font-size: 0.65rem;
        letter-spacing: 0.8px;
    }

    .project-meta {
        gap: 8px;
        padding-top: 8px;
    }

    .meta-item {
        font-size: 0.75rem;
    }

    .meta-item svg {
        width: 14px;
        height: 14px;
    }

    .project-highlights {
        gap: 5px;
        padding-top: 8px;
    }

    .highlight-tag {
        font-size: 0.6rem;
        padding: 3px 10px;
    }
}

/* .card0 {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
    border: 5px solid transparent;
    box-shadow: 0 25px 70px rgba(2, 67, 47, 0.15);
    border-color: var(--color-green-light);
}

.card0:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(2, 67, 47, 0.15);
}

.card0-img {
    margin-bottom: 0;
    overflow: hidden;
}

.card0-img img {
    transition: transform 0.5s ease;
}

.card0:hover .card0-img img {
    transform: scale(1.1);
}

.card0-body {
    border: none;
    border-top: 3px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(to right, #02432f, #498851, #02432f);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 15px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card0-heading {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--color-green);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.8px;
    background: linear-gradient(to right, #02432f, #498851);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.card0:hover .card0-heading {
    letter-spacing: 0.5px;
}

.card0-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    font-family: var(--font-body);
    font-weight: 400;
    color: #555;
} */

/* --- CARD STYLE --- */
.card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(2, 67, 47, 0.15);
}

.card-img {
    margin-bottom: 0;
    overflow: hidden;
}

.card-img img {
    transition: transform 0.5s ease;
}

.card:hover .card-img img {
    transform: scale(1.1);
}

.card-body {
    border: none;
    border-top: 3px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(to right, #02432f, #498851, #02432f);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 15px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-heading {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--color-green);
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: 0.8px;
    background: linear-gradient(to right, #02432f, #498851);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;


}

.card:hover .card-heading {
    letter-spacing: 0.75px;
}

.card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    font-family: var(--font-body);
    font-weight: 400;
    color: #555;
}

.sm-heading {
    /* letter-spacing: 0.6px; */
}

.dots {
    color: #ccc;
    letter-spacing: 2px;
    margin-top: auto;
}

/* --- FOOTER BUTTON --- */
.footer-action {
    text-align: center;
    margin-top: 36px;
}

.btn-green {
    background: linear-gradient(135deg, #02432f 0%, #498851 100%);
    color: #fff;
    font-family: var(--font-head);
    font-size: 1.1rem;
    padding: 15px 45px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(2, 67, 47, 0.3);
}

.btn-green:hover {
    background: linear-gradient(135deg, #498851 0%, #02432f 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(2, 67, 47, 0.5);
    letter-spacing: 2px;
}

.section-divider {
    border: 0;
    border-top: 2px solid #e0e0e0;
    margin: 50px 0;
    opacity: 0.6;
}

.text-center {
    text-align: center;
}

/* --- MỤC TIÊU CHIẾN LƯỢC --- */
.grid-4-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.strategy-card {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
    border: 2px solid var(--color-green-light);
    border-radius: var(--radius-md);
    aspect-ratio: 1 / 1;
    box-shadow: 0 3px 10px rgba(2, 67, 47, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strategy-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.strategy-icon {
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.strategy-card:hover .strategy-icon {
    transform: scale(1.1) rotate(5deg);
}

.strategy-content h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--color-green);
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.strategy-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
    font-family: var(--font-body);
}

.strategy-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 30px rgba(2, 67, 47, 0.25);
    border-color: var(--color-green);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9f5 100%);
}

/* --- TIN TỨC MỚI --- */
.section-title {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--color-green);
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.title-decoration {
    color: var(--color-green-light);
    font-size: 1.5rem;
    margin: 0 15px;
    opacity: 0.6;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    font-style: italic;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}



/* ========================================
   NEWS CARD STYLES - MATCHING news.css
   ======================================== */
.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(2, 67, 47, 0.12);
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 67, 47, 0) 0%, rgba(73, 136, 81, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.news-card:hover::before {
    opacity: 1;
}

/* Featured News Card - Full Width */
.news-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: fr 1fr;
    gap: 0;
}

/* News Link Wrapper */
.news-link-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.news-card.featured .news-link-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 0;
}

/* News Image */
.news-image {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    height: 250px;
}

.news-card.featured .news-image {
    height: 100%;
    min-height: 400px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.08);
}

/* News Badge */
.news-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.news-badge.hot {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
}

.news-badge.new {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
}

.news-badge.event {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.news-badge.media {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

/* News Content */
.news-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.news-card.featured .news-content {
    padding: 40px;
    justify-content: center;
}

/* News Meta */
.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: #888;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-category {
    padding: 5px 14px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-category.project {
    background: linear-gradient(135deg, #e8f5f0, #d4ebe3);
    color: var(--color-green);
    border: 1px solid var(--color-green-light);
}

.news-category.product {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    color: #e65100;
    border: 1px solid #ffb74d;
}

.news-category.event {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    color: #6a1b9a;
    border: 1px solid #ba68c8;
}

.news-category.media {
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
    color: #c2185b;
    border: 1px solid #f06292;
}

/* News Title */
.news-title {
    font-family: var(--font-head);
    font-size: 1.3rem;
    color: var(--color-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card.featured .news-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.news-card:hover .news-title {
    color: var(--color-green-light);
}

/* News Excerpt */
.news-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    flex: 1;
}

.news-card.featured .news-excerpt {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* News Footer */
.news-footer {
    margin-top: auto;
    padding-top: 15px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-green);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 12px;
    color: var(--color-green-light);
}

.read-more svg {
    transition: transform 0.3s ease;
}

.read-more:hover svg {
    transform: translateX(4px);
}

/* Legacy support cho news-link cũ */
.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-green);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.news-link:hover {
    gap: 12px;
    color: var(--color-green-light);
}

.news-link svg {
    transition: transform 0.3s ease;
}

.news-link:hover svg {
    transform: translateX(4px);
}

.news-footer {
    text-align: center;
    margin-top: 20px;
}

.btn-view {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 67, 47, 0.3);
}

.btn-view-more {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-light) 100%);
    color: white;
    font-family: var(--font-head);
    font-size: 1.05rem;
    padding: 16px 45px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(2, 67, 47, 0.25);
}

.btn-view-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(2, 67, 47, 0.35);
    gap: 15px;
}

.btn-view-more svg {
    transition: transform 0.3s ease;
}

.btn-view-more:hover svg {
    transform: translateX(5px);
}

/* --- TIN TỨC --- */
.news-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-top-row {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 20px;
}

.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-main {
    height: 100%;
}

.news-sub {
    flex: 1;
}

.news-horizontal {
    flex-direction: row;
    align-items: stretch;
}

.news-h-img {
    flex: 0 0 40%;
    overflow: hidden;
}

.news-h-img img {
    height: 100%;
    object-fit: cover;
}

/* --- ĐẶT HÀNG NGAY BÂY GIỜ --- */
.cta-section {
    position: relative;
    /* margin: 60px 0; */
    padding: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #02432f 0%, #1a5d44 50%, #498851 100%);
    box-shadow: 0 15px 50px rgba(2, 67, 47, 0.3);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, .05) 35px, rgba(255, 255, 255, .05) 70px);
}

.cta-content {
    position: relative;
    z-index: 2;
    padding: 60px 40px;
    text-align: center;
    color: white;
}

.cta-icon {
    margin: 0 auto 25px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    }
}

.cta-icon svg {
    color: white;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.cta-title {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: white;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-feature:hover .feature-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta-feature span {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.btn-cta {
    font-family: var(--font-head);
    font-size: 1.15rem;
    padding: 18px 40px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta.primary {
    background: white;
    color: var(--color-green);
}

.btn-cta.primary:hover {
    background: #f0f0f0;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    gap: 16px;
}

.btn-cta.secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    gap: 16px;
}

.cta-trust {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-trust p {
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0.9;
}

.cta-trust strong {
    color: var(--color-gold);
    font-size: 1.2rem;
}

/* --- FOOTER --- */
.footer {
    background-color: #1a2332;
    color: white;
    padding: 50px 20px 20px;
    margin-top: 50px;
}

.footer-container {
    max-width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-contact {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #b8c5d6;
}

.footer-contact svg {
    flex-shrink: 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li:hover {
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.footer-column ul li a {
    color: #b8c5d6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--color-gold);
}

.footer-map {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.footer-map img {
    width: 100%;
    height: auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b8c5d6;
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* --- RESPONSIVE --- */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-social {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 67px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 10px 20px;
        font-size: 1rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .main-container {
        /* padding: 25px; */
    }

    .nav-logo img {
        height: 40px;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }

    .slider-dots {
        bottom: 20px;
        gap: 10px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }

    .dot.active {
        width: 35px;
    }

    .header-top {
        flex-direction: column;
    }

    .grid-2-col,
    .grid-3-col {
        grid-template-columns: 1fr;
    }

    .header-images {
        display: flex;
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    /* Hiển thị nút điều hướng */
    .img-prev,
    .img-next {
        display: flex;
    }

    /* Setup cho carousel */
    .header-images .img-frame {
        min-width: 100%;
        max-width: 100%;
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }

    .header-images .img-frame img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .grid-4-col {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-top-row {
        grid-template-columns: 1fr;
    }

    .news-horizontal {
        flex-direction: column;
    }

    .news-h-img {
        flex: auto;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .product-tabs {
        gap: 10px;
    }

    .product-tab {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    /* Footer 3 rows layout for mobile */
    .footer-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 30px 20px;
    }

    /* Row 1: Logo & Contact spans 2 columns */
    .footer-column:nth-child(1) {
        grid-column: 1 / -1;
    }

    /* Row 2: 2 columns take 1 cell each */
    .footer-column:nth-child(2) {
        grid-column: 1 / 2;
    }

    .footer-column:nth-child(3) {
        grid-column: 2 / 3;
    }

    /* Row 3: Map spans 2 columns */
    .footer-column:nth-child(4) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .grid-4-col {
        grid-template-columns: 1fr;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .read-more {
        font-size: 0.8;
    }

    .slider-arrow.next {
        right: 10px;
    }

    .slider-dots {
        bottom: 15px;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 30px;
    }

    /* Nút điều hướng header-images nhỏ hơn */
    .img-prev,
    .img-next {
        width: 35px;
        height: 35px;
    }

    .img-prev {
        left: -10px;
    }

    .img-next {
        right: -10px;
    }
}

/* --- RESPONSIVE CHO TIN TỨC & ĐẶT HÀNG --- */
@media (max-width: 968px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card.featured {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
    }

    .news-card.featured .news-link-wrapper {
        grid-template-columns: 1fr;
    }

    .news-card.featured .news-image {
        height: 300px;
        min-height: auto;
    }

    .cta-features {
        gap: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .title-decoration {
        font-size: 1.2rem;
        margin: 0 10px;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .news-title {
        font-size: 1.3rem;
    }

    .news-card.featured .news-title {
        font-size: 1.5rem;
    }

    .news-content {
        padding: 20px;
        gap: 12px;
    }

    .news-card.featured .news-content {
        padding: 25px;
    }

    .news-image {
        height: 180px;
    }

    .news-card.featured .news-image {
        height: 250px;
    }

    .cta-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-content {
        padding: 40px 25px;
    }

    .cta-features {
        flex-direction: column;
        gap: 25px;
    }

    .nav-logo img {
        max-width: 140px;
        height: 100%;
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }

    .news-content {
        padding: 18px;
        gap: 10px;
    }

    .news-card.featured .news-content {
        padding: 20px;
    }

    .news-image {
        height: 200px;
    }

    .news-card.featured .news-image {
        height: 220px;
    }

    .news-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .news-excerpt {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .news-card.featured .news-excerpt {
        font-size: 0.9rem;
    }

    .cta-title {
        font-size: 1.6rem;
        letter-spacing: 1.5px;
    }

    .btn-cta {
        font-size: 1rem;
        padding: 15px 30px;
    }

    .nav-logo img {
        max-width: 140px;
        height: 100%;
        transform: scale(1.1);
        transition: all 0.3s ease;
    }
}

/* ==============================================
   RESPONSIVE CSS CHO MỤC TIÊU CHIẾN LƯỢC
   ============================================== */

/* --- RESPONSIVE CHO MÀN HÌNH < 768px --- */
@media (max-width: 768px) {

    /* Giữ layout 2x2 cho mục tiêu chiến lược */
    .grid-4-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Điều chỉnh kích thước cho strategy card */
    .strategy-card {
        padding: 20px 15px;
    }

    .strategy-content h3 {
        font-size: 0.95rem;
    }

    .strategy-content p {
        font-size: 0.8rem;
    }

    .strategy-icon svg {
        width: 50px;
        height: 50px;
    }
}

/* ==============================================
   RESPONSIVE CSS CHO MỤC TIÊU CHIẾN LƯỢC
   ============================================== */

/* --- RESPONSIVE CHO MÀN HÌNH < 768px --- */
@media (max-width: 768px) {

    /* Giữ layout 2x2 cho mục tiêu chiến lược */
    .grid-4-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Điều chỉnh kích thước cho strategy card */
    .strategy-card {
        padding: 20px 15px;
    }

    .strategy-content h3 {
        font-size: 0.95rem;
    }

    .strategy-content p {
        font-size: 0.8rem;
    }

    .strategy-icon svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 412px) {

    /* Product Uses: Condense */
    .product-uses {
        font-size: 0.8rem;
        padding: 8px;
    }

    /* Specs: Allow wrapping and reduce size */
    .product-specs {
        gap: 5px;
    }

    .spec-tag {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
}

/* --- RESPONSIVE CHO MÀN HÌNH < 480px --- */
@media (max-width: 480px) {

    /* Giữ layout 2x2 nhưng thu nhỏ hơn cho màn hình rất nhỏ */
    .grid-4-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    /* Thu nhỏ strategy card cho màn hình nhỏ */
    .strategy-card {
        padding: 12px 8px;
    }

    .strategy-content {
        gap: 6px;
    }

    .strategy-content h3 {
        font-size: 0.7rem;
        letter-spacing: 0.2px;
        line-height: 1.2;
    }

    .strategy-content p {
        font-size: 0.65rem;
        line-height: 1.3;
    }

    .strategy-icon {
        margin-bottom: 3px;
    }

    .strategy-icon svg {
        width: 32px;
        height: 32px;
        stroke-width: 1.8;
    }
}

/* --- RESPONSIVE CHO MÀN HÌNH RẤT NHỎ < 360px --- */
@media (max-width: 360px) {
    .grid-4-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .strategy-card {
        padding: 10px 6px;
    }

    .strategy-content {
        gap: 4px;
    }

    .strategy-content h3 {
        font-size: 0.65rem;
        letter-spacing: 0.1px;
    }

    .strategy-content p {
        font-size: 0.6rem;
        line-height: 1.25;
    }

    .strategy-icon svg {
        width: 28px;
        height: 28px;
        stroke-width: 2;
    }

    /* Nút điều hướng header-images rất nhỏ */
    .img-prev,
    .img-next {
        width: 30px;
        height: 30px;
    }

    .img-prev svg,
    .img-next svg {
        width: 18px;
        height: 18px;
    }
}

/* ==============================================
   RESPONSIVE CSS CHO MỤC TIÊU CHIẾN LƯỢC
   ============================================== */

/* --- RESPONSIVE CHO MÀN HÌNH < 768px --- */
@media (max-width: 768px) {

    /* Giữ layout 2x2 cho mục tiêu chiến lược */
    .grid-4-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Điều chỉnh kích thước cho strategy card */
    .strategy-card {
        padding: 20px 15px;
    }

    .strategy-content h3 {
        font-size: 0.95rem;
    }

    .strategy-content p {
        font-size: 0.8rem;
    }

    .strategy-icon svg {
        width: 50px;
        height: 50px;
    }
}

/* --- RESPONSIVE CHO MÀN HÌNH < 480px --- */
@media (max-width: 480px) {

    /* Giữ layout 2x2 nhưng thu nhỏ hơn cho màn hình rất nhỏ */
    .grid-4-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    /* Thu nhỏ strategy card cho màn hình nhỏ */
    .strategy-card {
        padding: 12px 8px;
    }

    .strategy-content {
        gap: 6px;
    }

    .strategy-content h3 {
        font-size: 0.7rem;
        letter-spacing: 0.2px;
        line-height: 1.2;
    }

    .strategy-content p {
        font-size: 0.65rem;
        line-height: 1.3;
    }

    .strategy-icon {
        margin-bottom: 3px;
    }

    .strategy-icon svg {
        width: 32px;
        height: 32px;
        stroke-width: 1.8;
    }
}

/* --- RESPONSIVE CHO MÀN HÌNH RẤT NHỎ < 360px --- */
@media (max-width: 360px) {
    .grid-4-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .strategy-card {
        padding: 10px 6px;
    }

    .strategy-content {
        gap: 4px;
    }

    .strategy-content h3 {
        font-size: 0.65rem;
        letter-spacing: 0.1px;
    }

    .strategy-content p {
        font-size: 0.6rem;
        line-height: 1.25;
    }

    .strategy-icon svg {
        width: 28px;
        height: 28px;
        stroke-width: 2;
    }
}

/* ==============================================
   RESPONSIVE CSS CHO PHẦN TIN TỨC
   ============================================== */

/* --- RESPONSIVE TIN TỨC CHO MÀN HÌNH < 968px --- */
@media (max-width: 968px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-card.featured {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .news-card.featured .news-img-wrapper {
        height: 250px;
    }

    .news-card.featured .news-content {
        padding: 25px;
    }
}

/* --- RESPONSIVE TIN TỨC CHO MÀN HÌNH < 768px --- */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .title-decoration {
        font-size: 1.2rem;
        margin: 0 10px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* Tin tức layout 2 cột */
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Tin nổi bật vẫn full width */
    .news-card.featured {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
    }

    .news-card.featured .news-img-wrapper {
        height: 200px;
    }

    .news-card.featured .news-content {
        padding: 20px;
    }

    .news-card.featured .news-title {
        font-size: 1.3rem;
    }

    .news-card.featured .news-excerpt {
        font-size: 0.95rem;
    }

    /* Tin thường */
    .news-card:not(.featured) .news-img-wrapper {
        height: 150px;
    }

    .news-content {
        padding: 18px;
        gap: 10px;
    }

    .news-title {
        font-size: 1.15rem;
        line-height: 1.3;
    }

    .news-excerpt {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .news-meta {
        font-size: 0.75rem;
        gap: 10px;
    }

    .news-badge {
        top: 10px;
        right: 10px;
        padding: 5px 12px;
        font-size: 0.7rem;
    }

    .btn-view-more {
        font-size: 0.95rem;
        padding: 14px 35px;
    }
}

/* --- RESPONSIVE TIN TỨC CHO MÀN HÌNH < 480px --- */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .title-decoration {
        font-size: 1rem;
        margin: 0 8px;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    /* Tin tức layout 2 cột nhỏ hơn */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Tin nổi bật */
    .news-card.featured {
        grid-column: 1 / -1;
    }

    .news-card.featured .news-img-wrapper {
        height: 160px;
    }

    .news-card.featured .news-content {
        padding: 16px;
    }


    .news-card.featured .news-excerpt {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Tin thường - thu nhỏ */
    .news-card:not(.featured) .news-img-wrapper {
        height: 120px;
    }

    .news-content {
        padding: 12px;
        gap: 8px;
    }

    .news-title {
        font-size: 1.1rem;
        line-height: 1.25;
        letter-spacing: 0.3px;
    }

    .news-excerpt {
        font-size: 0.9rem;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-meta {
        font-size: 0.7rem;
        gap: 8px;
        flex-wrap: wrap;
    }

    .news-category {
        padding: 3px 10px;
        font-size: 0.65rem;
    }

    .news-badge {
        top: 8px;
        right: 8px;
        padding: 4px 10px;
        font-size: 0.65rem;
    }

    .news-link {
        font-size: 0.8rem;
        gap: 6px;
    }

    .news-link svg {
        width: 16px;
        height: 16px;
    }

    .btn-view-more {
        font-size: 0.85rem;
        padding: 12px 28px;
        letter-spacing: 1px;
    }

    .btn-view-more svg {
        width: 18px;
        height: 18px;
    }
}

/* --- RESPONSIVE TIN TỨC CHO MÀN HÌNH < 360px --- */
@media (max-width: 360px) {
    .section-title {
        font-size: 1.4rem;
    }

    .title-decoration {
        font-size: 0.9rem;
        margin: 0 6px;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    /* Tin tức layout 2 cột rất nhỏ */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Tin nổi bật */
    .news-card.featured .news-img-wrapper {
        height: 140px;
    }

    .news-card.featured .news-content {
        padding: 14px;
    }

    .news-card.featured .news-excerpt {
        font-size: 0.8rem;
    }

    /* Tin thường - rất nhỏ */
    .news-card:not(.featured) .news-img-wrapper {
        height: 100px;
    }

    .news-content {
        padding: 10px;
        gap: 6px;
    }

    .news-title {
        font-size: 1rem;
        line-height: 1.2;
    }

    .news-excerpt {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }

    .news-meta {
        font-size: 0.65rem;
        gap: 6px;
    }

    .news-category {
        padding: 2px 8px;
        font-size: 0.6rem;
    }

    .news-badge {
        padding: 3px 8px;
        font-size: 0.6rem;
    }

    .news-link {
        font-size: 0.75rem;
        gap: 4px;
    }

    .news-link svg {
        width: 14px;
        height: 14px;
    }

    .btn-view-more {
        font-size: 0.8rem;
        padding: 10px 24px;
    }
}

/* ==============================================
   RESPONSIVE CSS CHO MỤC TIÊU CHIẾN LƯỢC
   ============================================== */

/* --- RESPONSIVE CHO MÀN HÌNH < 768px --- */
@media (max-width: 768px) {

    /* Giữ layout 2x2 cho mục tiêu chiến lược */
    .grid-4-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Điều chỉnh kích thước cho strategy card */
    .strategy-card {
        padding: 20px 15px;
    }

    .strategy-content h3 {
        font-size: 0.95rem;
    }

    .strategy-content p {
        font-size: 0.8rem;
    }

    .strategy-icon svg {
        width: 50px;
        height: 50px;
    }
}

/* --- RESPONSIVE CHO MÀN HÌNH < 480px --- */
@media (max-width: 480px) {

    /* Giữ layout 2x2 nhưng thu nhỏ hơn cho màn hình rất nhỏ */
    .grid-4-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    /* Thu nhỏ strategy card cho màn hình nhỏ */
    .strategy-card {
        padding: 12px 8px;
    }

    .strategy-content {
        gap: 6px;
    }

    .strategy-content h3 {
        font-size: 0.7rem;
        letter-spacing: 0.2px;
        line-height: 1.2;
    }

    .strategy-content p {
        font-size: 0.65rem;
        line-height: 1.3;
    }

    .strategy-icon {
        margin-bottom: 3px;
    }

    .strategy-icon svg {
        width: 32px;
        height: 32px;
        stroke-width: 1.8;
    }
}

/* --- RESPONSIVE CHO MÀN HÌNH RẤT NHỎ < 360px --- */
@media (max-width: 360px) {
    .grid-4-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .strategy-card {
        padding: 10px 6px;
    }

    .strategy-content {
        gap: 4px;
    }

    .strategy-content h3 {
        font-size: 0.65rem;
        letter-spacing: 0.1px;
    }

    .strategy-content p {
        font-size: 0.6rem;
        line-height: 1.25;
    }

    .strategy-icon svg {
        width: 28px;
        height: 28px;
        stroke-width: 2;
    }
}

/* ==============================================
   RESPONSIVE CSS CHO PHẦN TIN TỨC
   ============================================== */

/* --- RESPONSIVE TIN TỨC CHO MÀN HÌNH < 968px --- */
@media (max-width: 968px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-card.featured {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
    }

    .news-card.featured .news-link-wrapper {
        grid-template-columns: 1fr;
    }

    .news-card.featured .news-image {
        height: 300px;
        min-height: auto;
    }

    .news-card.featured .news-content {
        padding: 25px;
    }
}

/* --- RESPONSIVE TIN TỨC CHO MÀN HÌNH < 768px --- */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .title-decoration {
        font-size: 1.2rem;
        margin: 0 10px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* Tin tức layout 2 cột */
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Tin nổi bật vẫn full width */
    .news-card.featured {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
    }

    .news-card.featured .news-img-wrapper {
        height: 200px;
    }

    .news-card.featured .news-content {
        padding: 20px;
    }

    .news-card.featured .news-title {
        /* font-size: 1.1rem; */
    }

    .news-card.featured .news-excerpt {
        font-size: 0.95rem;
    }

    /* Tin thường */
    .news-card:not(.featured) .news-img-wrapper {
        height: 150px;
    }

    .news-content {
        padding: 18px;
        gap: 10px;
    }

    .news-title {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .news-excerpt {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .news-meta {
        font-size: 0.75rem;
        gap: 10px;
    }

    .news-badge {
        top: 10px;
        right: 10px;
        padding: 5px 12px;
        font-size: 0.7rem;
    }

    .btn-view-more {
        font-size: 0.95rem;
        padding: 14px 35px;
    }
}

/* --- RESPONSIVE TIN TỨC CHO MÀN HÌNH < 480px --- */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .title-decoration {
        font-size: 1rem;
        margin: 0 8px;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    /* Tin tức layout 2 cột nhỏ hơn */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Tin nổi bật */
    .news-card.featured {
        grid-column: 1 / -1;
    }

    .news-card.featured .news-img-wrapper {
        height: 160px;
    }

    .news-card.featured .news-content {
        padding: 16px;
    }

    .news-card.featured .news-excerpt {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Tin thường - thu nhỏ */
    .news-card:not(.featured) .news-img-wrapper {
        height: 120px;
    }

    .news-content {
        padding: 12px;
        gap: 8px;
    }

    .news-card.featured .news-title {
        font-size: 1.1rem;
    }

    .news-title {
        font-size: 1.1rem;
        line-height: 1.25;
        letter-spacing: 0.3px;
    }

    .news-excerpt {
        font-size: 0.9rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-meta {
        font-size: 0.7rem;
        gap: 8px;
        flex-wrap: wrap;
    }

    .news-category {
        padding: 3px 10px;
        font-size: 0.65rem;
    }

    .news-badge {
        top: 8px;
        right: 8px;
        padding: 4px 10px;
        font-size: 0.65rem;
    }

    .news-link {
        font-size: 0.8rem;
        gap: 6px;
    }

    .news-link svg {
        width: 16px;
        height: 16px;
    }

    .btn-view-more {
        font-size: 0.85rem;
        padding: 12px 28px;
        letter-spacing: 1px;
    }

    .btn-view-more svg {
        width: 18px;
        height: 18px;
    }
}

/* --- RESPONSIVE TIN TỨC CHO MÀN HÌNH < 360px --- */
@media (max-width: 360px) {
    .section-title {
        font-size: 1.4rem;
    }

    .title-decoration {
        font-size: 0.9rem;
        margin: 0 6px;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    /* Tin tức layout 2 cột rất nhỏ */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Tin nổi bật */
    .news-card.featured .news-img-wrapper {
        height: 140px;
    }

    .news-card.featured .news-content {
        padding: 14px;
    }

    .news-card.featured .news-title {
        font-size: 1rem;
    }

    .news-card.featured .news-excerpt {
        font-size: 0.8rem;
    }

    /* Tin thường - rất nhỏ */
    .news-card:not(.featured) .news-img-wrapper {
        height: 100px;
    }

    .news-content {
        padding: 10px;
        gap: 6px;
    }

    .news-title {
        font-size: 1rem;
        line-height: 1.2;
    }

    .news-excerpt {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }

    .news-meta {
        font-size: 0.65rem;
        gap: 6px;
    }

    .news-category {
        padding: 2px 8px;
        font-size: 0.6rem;
    }

    .news-badge {
        padding: 3px 8px;
        font-size: 0.6rem;
    }

    .news-link {
        font-size: 0.75rem;
        gap: 4px;
    }

    .news-link svg {
        width: 14px;
        height: 14px;
    }

    .btn-view-more {
        font-size: 0.8rem;
        padding: 10px 24px;
    }
}

/* ==============================================
   RESPONSIVE CSS CHO PHẦN ĐẶT HÀNG NGAY BÂY GIỜ
   ============================================== */

/* --- RESPONSIVE ĐẶT HÀNG CHO MÀN HÌNH < 968px --- */
@media (max-width: 968px) {
    .cta-features {
        gap: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
}

/* --- RESPONSIVE ĐẶT HÀNG CHO MÀN HÌNH < 768px --- */
@media (max-width: 768px) {
    .cta-section {
        /* margin: 40px 0; */
    }

    .cta-content {
        padding: 40px 25px;
    }

    /* Ẩn icon lớn để tiết kiệm không gian */
    .cta-icon {
        display: none;
    }

    .cta-title {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .cta-subtitle {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }

    /* Features layout 2x2 */
    .cta-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
    }

    .feature-icon svg {
        width: 28px;
        height: 28px;
    }

    .cta-feature span {
        font-size: 0.9rem;
    }

    .btn-cta {
        font-size: 1rem;
        padding: 15px 35px;
        width: 100%;
        max-width: 400px;
    }
}

/* --- RESPONSIVE ĐẶT HÀNG CHO MÀN HÌNH < 480px --- */
@media (max-width: 480px) {
    .cta-section {
        /* margin: 30px 0; */
    }

    .cta-content {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
    }

    .cta-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    /* Features layout 2x2 nhỏ hơn */
    .cta-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 25px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .cta-feature {
        gap: 10px;
    }

    .cta-feature span {
        font-size: 0.85rem;
    }

    .cta-buttons {
        gap: 12px;
        margin-bottom: 25px;
    }

    .btn-cta {
        font-size: 0.9rem;
        padding: 14px 28px;
        letter-spacing: 1px;
        gap: 10px;
    }

    .btn-cta svg {
        width: 20px;
        height: 20px;
    }

    /* Ẩn phần trust để tiết kiệm không gian */
    .cta-trust {
        display: none;
    }
}

/* --- RESPONSIVE ĐẶT HÀNG CHO MÀN HÌNH < 360px --- */
@media (max-width: 360px) {
    .cta-content {
        padding: 25px 15px;
    }

    .cta-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
        margin-bottom: 6px;
    }

    .cta-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    /* Features layout 2x2 rất nhỏ */
    .cta-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 20px;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
    }

    .feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .cta-feature {
        gap: 8px;
    }

    .cta-feature span {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    .cta-buttons {
        gap: 10px;
        margin-bottom: 0;
    }

    .btn-cta {
        font-size: 0.85rem;
        padding: 12px 24px;
        letter-spacing: 0.5px;
        gap: 8px;
    }

    .btn-cta svg {
        width: 18px;
        height: 18px;
    }
}

/* ==============================================
   CSS FIX CHIỀU CAO ẢNH SẢN PHẨM ĐỒNG ĐỀU
   ============================================== */

/* Fix uniform image height for all product cards */
.card-img {
    height: 280px;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

/* Responsive adjustments for product images */
@media (max-width: 768px) {
    .card-img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .card-img {
        height: 180px;
    }
}

@media (max-width: 360px) {
    .card-img {
        height: 160px;
    }
}

/* ========================================
   BUTTON MAIN - COMPACT & OPTIMIZED
   ======================================== */

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-head, 'Oswald', sans-serif);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    background: linear-gradient(135deg, #02432f 0%, #498851 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(2, 67, 47, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    margin-bottom: 8px;
}

.btn-main:hover {
    background: linear-gradient(135deg, #498851 0%, #02432f 100%);
    box-shadow: 0 6px 16px rgba(2, 67, 47, 0.35);
    transform: translateY(-2px);
    letter-spacing: 1.3px;
}

.btn-main:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(2, 67, 47, 0.3);
}

.btn-main:focus-visible {
    outline: 2px solid #d4a017;
    outline-offset: 2px;
}

.btn-main:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
}

/* Icon animation */
.btn-main svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-main:hover svg {
    transform: translateX(3px);
}

/* ========================================
   VARIANTS
   ======================================== */

/* Secondary - Outline */
.btn-main.secondary {
    background: transparent;
    color: #02432f;
    border: 2px solid #02432f;
    box-shadow: none;
}

.btn-main.secondary:hover {
    background: linear-gradient(135deg, #02432f 0%, #498851 100%);
    color: #fff;
    border-color: transparent;
}

/* Gold */
.btn-main.gold {
    background: linear-gradient(135deg, #d4a017 0%, #b87f15 100%);
}

.btn-main.gold:hover {
    background: linear-gradient(135deg, #f5c842 0%, #d4a017 100%);
}

/* Small */
.btn-main.sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* Large */
.btn-main.lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 480px) {
    .btn-main {
        width: 50%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.9rem;
        min-height: 48px;
        margin: 20px auto 8px;
        display: flex;
    }

    .btn-main:hover {
        transform: translateY(-1px);
        letter-spacing: 1.1px;
    }

    .btn-main svg {
        width: 16px;
        height: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .btn-main,
    .btn-main svg {
        transition: none;
    }

    .btn-main:hover {
        transform: none;
    }
}







/* Product Badge */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.product-badge.bestseller {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
}

.product-badge.premium {
    background: linear-gradient(135deg, var(--color-gold), #b87f15);
    color: white;
}

.product-badge.exclusive {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.product-badge.gift {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.product-badge.fresh {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
}

.product-badge.luxury {
    background: linear-gradient(135deg, #fa709a, #fee140);
    color: white;
}

.product-badge.organic {
    background: linear-gradient(135deg, #30cfd0, #330867);
    color: white;
}

.product-badge.new {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    color: #333;
}

/* Product Uses */
.product-uses {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid var(--color-green-light);
    margin-top: 12px;
    margin-bottom: 15px;
}

.product-uses strong {
    color: var(--color-green);
}

/* Product Specs */
.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.spec-tag {
    padding: 5px 14px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-green);
    border: 1px solid #dee2e6;
}

/* Container bên ngoài */
.comingsoon {
    background-color: #f3f4f6;
    /* Màu xám nhẹ */
    border: 2px dashed #d1d5db;
    /* Viền nét đứt tạo cảm giác "đang xây dựng" */
    border-radius: 12px;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 650px;
    /* Chiều cao tối thiểu */
    transition: all 0.3s ease;
}

.comingsoon:hover {
    background-color: #e5e7eb;
    border-color: #9ca3af;
}

/* Tiêu đề */
.comingsoon .card-headingg {
    color: #4b5563;
    font-family: 'Arial', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    /* Khoảng cách chữ rộng hơn */
    margin: 0;
    text-transform: uppercase;
}