/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

/* ==============================================================
   2. Giao diện trang chủ
============================================================== */
/* Phần 1 */
/* 1. CÀI ĐẶT FONT CHỮ */

/* 3. ẢNH NỀN (BACKGROUND IMAGE) */
.asp-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: aspZoomEffect 20s infinite alternate; /* Hiệu ứng zoom chậm */
}

.banner-layers.container {
    background-color: #01322094;
	    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Chỉnh độ tối sáng tại đây (0.5 là mờ 50%) */
    background: linear-gradient(to bottom, rgba(1, 50, 32, 0.5), rgba(0, 0, 0, 0.85));
    z-index: 2;
}

@keyframes aspZoomEffect {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

/* 4. LỚP PHỦ TỐI (OVERLAY) */
.asp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Chỉnh độ tối sáng tại đây (0.5 là mờ 50%) */
    background: linear-gradient(to bottom, rgba(1, 50, 32, 0.5), rgba(0, 0, 0, 0.85));
    z-index: 2;
}

/* 5. NỘI DUNG CHÍNH (CENTER CONTENT) */
.asp-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* 7. TIÊU ĐỀ CHÍNH */

.asp-hero-content h1 {
    /* 1. FONT CHỮ QUYỀN LỰC */
    font-family: 'Playfair Display', serif; /* Font có chân sang trọng */
    font-weight: 800; /* Độ đậm cực đại (Extra Bold) -> Cảm giác vững như bàn thạch */
    font-style: normal;
    /* 2. KÍCH THƯỚC & BỐ CỤC */
    font-size: 50px; /* Kích thước lớn, áp đảo thị giác */
    line-height: 1.1; /* Khoảng cách dòng khít -> Tạo khối kết đoàn */
    text-transform: uppercase; /* Viết hoa toàn bộ */
    letter-spacing: 1px; /* Giãn chữ nhẹ để thoáng mắt */
    margin-top: 0;
    margin-bottom: 20px;
    
    /* 3. MÀU SẮC & HIỆU ỨNG */
    color: #ffffff; /* Màu trắng tinh khôi (Sang nhất trên nền tối) */
    
    /* Bóng đổ đa tầng: Tạo cảm giác chữ nổi khối 3D trên nền ảnh */
    text-shadow: 
        0 1px 0 #ccc, 
        0 2px 0 #c9c9c9, 
        0 5px 10px rgba(0,0,0,0.4), 
        0 10px 20px rgba(0,0,0,0.2);
        
    /* Căn giữa */
    text-align: center;
    width: 100%;
}
.asp-hero-content h1 span {
    color: #d4af37; /* Vàng Champagne */
    text-shadow: none; /* Bỏ bóng đổ khối để giữ nét thanh thoát */
}

/* 4. RESPONSIVE (DI ĐỘNG) */
@media (max-width: 768px) {
    .asp-hero-content h1 {
        font-size: 36px; /* Giảm size trên mobile nhưng vẫn giữ độ đậm */
        line-height: 1.2;
        letter-spacing: 0.5px;
    }
}




.asp-hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 46px; /* Cỡ chữ tiêu đề */
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.asp-hero-content h2 span {
    font-style: italic;
    color: #d4af37; /* Màu vàng nhấn */
}

/* 8. MÔ TẢ PHỤ */
.asp-hero-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #e2e8f0;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
    max-width: 800px;
}

/* 9. NÚT BẤM (BUTTONS) */
.asp-hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Nút chính (Primary) */
.asp-btn-primary {
    padding: 16px 45px;
    background: linear-gradient(135deg, #d4af37 0%, #b3922d 100%); /* Màu nền nút vàng */
    color: #000000;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    border: none;
    line-height: 1;
    display: inline-block;
}

.asp-btn-primary:hover {
    transform: translateY(-3px);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
    color: #000 !important;
}

/* Nút phụ (Outline) */
.asp-btn-outline {
    padding: 16px 45px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    border-radius: 2px;
    transition: all 0.3s ease;
    line-height: 1;
    display: inline-block;
}

.asp-btn-outline:hover {
    border-color: #d4af37;
    color: #d4af37;
    background: rgba(0,0,0,0.6);
}

/* 10. RESPONSIVE (MOBILE) */
@media (max-width: 768px) {
    .asp-hero-section { margin-top: 0px; min-height: 500px; }
    .asp-hero-content h2 { font-size: 30px; margin-bottom: 20px; }
    .asp-hero-desc { font-size: 15px; margin-bottom: 35px; }
    .asp-hero-btns { flex-direction: column; gap: 15px; width: 100%; }
    .asp-btn-primary, .asp-btn-outline { width: 100%; text-align: center; padding: 15px 0; }
}

/* Phần 2 trang chủ Defining Global Agri-Standards */
.asp-trust-section {
        background-color: #013220;
        background-image: linear-gradient(180deg, #013220 0%, #001a10 100%);
        padding: 100px 20px; /* Tăng padding để tạo khoảng thở */
        font-family: 'Manrope', sans-serif;
        text-align: center;
        position: relative;
        overflow: hidden;
        
        /* QUAN TRỌNG: Fix lỗi lấn lên phần trên */
        clear: both;
        margin-top: 0 ; 
        width: 100vw;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        z-index: 10; /* Đảm bảo nổi lên trên các thành phần trôi nổi khác nếu có */
    }

    /* Lớp nền trang trí mờ */
    .asp-trust-section::before {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background-image: url('https://aspimex.com/wp-content/uploads/2025/11/Vietnam-Coconut-Trees-2.webp');
        opacity: 0.04;
        background-size: cover;
        background-position: center;
        pointer-events: none;
        filter: grayscale(100%);
    }

    /* Tiêu đề Chính */
    .asp-trust-main-title {
        font-family: 'Playfair Display', serif;
        font-size: 2.8rem;
        font-weight: 700;
        color: #d4af37;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }

    /* Mô tả ngắn */
    .asp-trust-subtitle {
        font-size: 1.1rem;
        color: #a8b2bc;
        max-width: 800px;
        margin: 0 auto 70px;
        line-height: 1.6;
        font-weight: 300;
    }

    /* Hệ thống lưới 4 cột CỐ ĐỊNH */
    .asp-trust-grid {
        display: grid;
        /* Ép buộc 4 cột trên máy tính, không xuống dòng lung tung */
        grid-template-columns: repeat(4, 1fr); 
        gap: 30px;
        align-items: stretch; /* Các ô cao bằng nhau */
    }

    /* Style từng ô */
    .asp-trust-box {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(212, 175, 55, 0.15);
        padding: 40px 20px; /* Padding vừa phải để nội dung không bị tràn */
        border-radius: 2px;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        position: relative;
        top: 0;
        display: flex;
        flex-direction: column;
        height: 100%;
        align-items: center; /* Căn giữa icon và tiêu đề */
    }

    .asp-trust-box:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: #d4af37;
        top: -5px;
        box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
    }

    /* Icon Wrapper */
    .asp-icon-wrapper {
        margin-bottom: 25px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 70px; height: 70px;
        border-radius: 50%; /* Giữ tròn theo style bạn thích */
        background: rgba(212, 175, 55, 0.08);
        color: #d4af37;
        font-size: 2.5rem;
        transition: all 0.4s ease;
        box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2) inset;
    }

    .asp-trust-box:hover .asp-icon-wrapper {
        background: #d4af37;
        color: #013220;
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    }

    /* Tiêu đề con H2 */
    .asp-trust-box h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.2rem; /* Giảm nhẹ size để không bị rớt dòng khi zoom */
        color: #ffffff;
        margin-bottom: 15px;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 0.5px;
        width: 100%;
        line-height: 1.3;
    }

    .asp-trust-box p {
        font-size: 14px;
        line-height: 1.6;
        color: #c0c9d4;
				font-weight: 500;
        margin-bottom: 0;
        flex-grow: 1;
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
        /* Tablet ngang và Laptop nhỏ: Vẫn giữ 4 cột nhưng giảm gap */
        .asp-trust-grid { gap: 15px; }
        .asp-trust-box { padding: 30px 15px; }
        .asp-trust-box h2 { font-size: 1.1rem; }
    }

    @media (max-width: 768px) {
        .asp-trust-main-title { font-size: 2rem; }
        .asp-trust-subtitle { margin-bottom: 50px; font-size: 1rem; }
        /* Mobile chuyển về 1 cột */
        .asp-trust-grid { 
            grid-template-columns: 1fr; 
            max-width: 400px; 
            margin: 0 auto; 
        }
    }

.section-title-normal {
    border: none !important;
}

.section-title-normal span {
     border: none !important;
    margin-bottom: -2px;
    margin-right: 15px;
    padding-bottom: 7.5px;
}

.asp-trust-section .section-content.relative {
          background-color: #013220;
        background-image: linear-gradient(180deg, #013220 0%, #001a10 100%);
        padding: 100px 20px; /* Tăng padding để tạo khoảng thở */
        font-family: 'Manrope', sans-serif;
        text-align: center;
        position: relative;
        overflow: hidden;
        
        /* QUAN TRỌNG: Fix lỗi lấn lên phần trên */
        clear: both;
        margin-top: 0 ; 
        width: 100vw;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        z-index: 10; /* Đảm bảo nổi lên trên các thành phần trôi nổi khác nếu có */
}

/* ===============================
   ASP TRUST – MAIN TITLE (CHA)
================================ */
.asp-trust-main-title {
  position: relative;
  display: inline-block;
  text-align: center;
  margin-bottom: 20px;
}

/* Reset style Flatsome thừa */
.asp-trust-main-title h2.section-title {
  margin: 0;
  padding: 0;
  justify-content: center !important;
}

/* ===============================
   TEXT CHÍNH (CHỌC TỪ CHA)
================================ */
.asp-trust-main-title
h2.section-title
.section-title-main {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
}

/* ===============================
   GẠCH TRANG TRÍ (UNDERLINE)
================================ */
.asp-trust-main-title
h2.section-title
.section-title-main::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #da0114;
}

/* Ẩn <b> decor mặc định của Flatsome */
.asp-trust-main-title h2.section-title > b {
  display: none;
}

/* ===============================
   SUBTITLE
================================ */
.asp-trust-subtitle {
  font-size: 1.1rem;
  color: #a8b2bc;
  max-width: 800px;
  margin: 0 auto 70px;
  line-height: 1.6;
  font-weight: 300;
  text-align: center;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .asp-trust-main-title
  h2.section-title
  .section-title-main {
    font-size: 2rem;
    letter-spacing: 1.5px;
  }

  .asp-trust-subtitle {
    font-size: 1rem;
    margin-bottom: 50px;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .asp-trust-main-title
  h2.section-title
  .section-title-main {
    font-size: 1.7rem;
    letter-spacing: 1px;
  }

  .asp-trust-main-title
  h2.section-title
  .section-title-main::after {
    width: 60px;
  }
}

.asp-trust-section .section-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://aspimex.com/wp-content/uploads/2025/11/Vietnam-Coconut-Trees-2.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.04;
  filter: grayscale(100%);
  pointer-events: none;
  z-index: 0;
}

/* ================================
   BLOCK 2 – ASP MODERN SECTION
================================ */

/* SECTION CHA */
.asp-modern-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    overflow: hidden;
    font-family: 'Manrope', sans-serif;
}

/* CHỈ PHỦ NỀN LÊN CONTENT – KHÔNG ĂN BG FLATSOME */
.asp-modern-section .section-content {
    position: relative;
    z-index: 1;
}

/* LỚP NỀN MỜ ::BEFORE (DỪNG ĐÚNG CHỖ) */
.asp-modern-section .section-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/Vietnam-Coconut-Trees-2.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.04;
    filter: grayscale(100%);
    pointer-events: none;
    z-index: 0;
}

/* GIỮ NỘI DUNG NẰM TRÊN NỀN */
.asp-modern-section .row,
.asp-modern-section .col,
.asp-modern-section .col-inner {
    position: relative;
    z-index: 2;
	max-width: 1300px;
}

/* ================================
   CONTAINER
================================ */
.asp-modern-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

/* ================================
   CỘT TRÁI – NỘI DUNG
================================ */
.asp-modern-text-col {
    flex: 1;
    min-width: 400px;
}

/* LABEL */
.asp-label-tag {
    font-size: 14px;
    font-weight: 700;
    color: #c5a059;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.asp-label-tag::before {
    content: '';
    width: 40px;
    height: 1px;
    background-color: #c5a059;
    margin-right: 15px;
}

/* TIÊU ĐỀ */
.asp-main-h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 700;
}

.asp-main-h2 span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px #c5a059;
}

/* MÔ TẢ */
.asp-modern-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 40px;
    font-weight: 300;
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 30px;
}

/* NÚT */
.asp-modern-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid #c5a059;
    color: #c5a059;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.asp-modern-btn:hover {
    background-color: #c5a059;
    color: #000;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

/* ================================
   CỘT PHẢI – STATS GRID
================================ */
.asp-modern-stats-col {
    flex: 1;
    min-width: 400px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* GLASS CARD */
.asp-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.asp-glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #c5a059;
    transform: translateY(-6px);
}

/* SỐ */
.asp-stat-num {
    font-family: 'Manrope', sans-serif;
    font-size: 42px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1;
}

.asp-stat-num span {
    color: #c5a059;
    font-size: 24px;
    vertical-align: top;
    font-weight: 700;
}

/* LABEL */
.asp-stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
    .asp-modern-container {
        padding: 80px 20px;
        gap: 40px;
    }

    .asp-modern-text-col,
    .asp-modern-stats-col {
        min-width: 100%;
    }

    .asp-main-h2 {
        font-size: 36px;
    }

    .asp-glass-card {
        padding: 30px 20px;
    }
}

/* ==============================================================
   SECTION 4: PRODUCT ECOSYSTEM (CUSTOM FLATSOME STYLE)
   Phong cách: Tạp chí, Sang trọng, Hiệu ứng Slide
   ============================================================== */

/* 1. NỀN TẢNG CHUNG */
.asp-ecosystem-section {
    font-family: 'Manrope', sans-serif;
}

/* Header của Section */
.asp-eco-header { margin-bottom: 50px; }
.asp-sub-label {
    font-size: 28px;
    color: #c5a059; /* Vàng Champagne */
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
}
.asp-pr-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #013220; /* Xanh lục bảo */
    margin-top: 0;
    line-height: 1.2;
}
.asp-separator {
    width: 80px;
    height: 3px;
    background-color: #da0114; /* Đỏ điểm nhấn */
    margin: 20px auto 0;
}

/* 2. TÙY BIẾN Ô SẢN PHẨM (PRODUCT BOX) */
.asp-ecosystem-section .box-image {
    border-radius: 2px ; /* Vuông vức, không bo tròn "trẻ con" */
    overflow: hidden;
}

/* Lớp phủ đen (Overlay) - Làm đậm hơn khi hover */
.asp-ecosystem-section .box-image .overlay {
    background-color: rgba(1, 50, 32, 0.4) !important; /* Xanh đen mờ */
    transition: background-color 0.5s ease;
}
.asp-ecosystem-section .box:hover .box-image .overlay {
    background-color: rgba(1, 50, 32, 0.7) !important; /* Đậm hơn khi hover */
}

/* 3. TÙY BIẾN NỘI DUNG CHỮ (BOX TEXT) */
.asp-ecosystem-section .box-text {
    padding: 30px !important;
    pointer-events: none; /* Để click xuyên qua vào ảnh */
}

/* Tên sản phẩm */
.asp-ecosystem-section .product-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-transform: none !important; /* Chữ thường nhìn sang hơn chữ in hoa toàn bộ ở đây */
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    
    /* Hiệu ứng trượt lên khi hover */
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.asp-ecosystem-section .box:hover .product-title {
    transform: translateY(0); /* Trượt về vị trí cũ */
}

/* 4. TẠO NÚT GIẢ "EXPLORE" (Pseudo-button) */
/* Vì ta đã tắt nút Add to cart, ta dùng CSS tạo nút xem chi tiết nghệ thuật */
.asp-ecosystem-section .product-title::after {
    content: 'Explore Product →';
    display: block;
    margin-top: 15px;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c5a059; /* Màu vàng */
    opacity: 0; /* Ẩn mặc định */
    transform: translateY(10px);
    transition: all 0.5s ease;
}

/* Hiện nút khi di chuột vào ô sản phẩm */
.asp-ecosystem-section .box:hover .product-title::after {
    opacity: 1;
    transform: translateY(0);
}

/* 5. VIỀN TRANG TRÍ (BORDER HOVER) */
/* Tạo một đường viền vàng chạy xung quanh khi hover - Rất cao cấp */
.asp-ecosystem-section .box-image::after {
    content: '';
    position: absolute;
    top: 15px; left: 15px; right: 15px; bottom: 15px;
    border: 1px solid rgba(197, 160, 89, 0.5); /* Viền vàng mờ */
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.asp-ecosystem-section .box:hover .box-image::after {
    opacity: 1;
    transform: scale(1);
}

/* 6. RESPONSIVE */
@media (max-width: 768px) {
    .asp-main-title { font-size: 32px; }
    /* Trên mobile hiển thị luôn nút Explore */
    .asp-ecosystem-section .product-title::after {
        opacity: 1;
        transform: translateY(0);
        content: 'View Detail';
    }
    .asp-ecosystem-section .product-title {
        transform: translateY(0);
    }
} 


/* ===============================
   ASP LOGISTICS MAP – FULL CSS
   Scope: .asp-logistics-section
================================ */

.asp-logistics-section {
    position: relative;
    padding: 60px 0 10px 0 !important;
    background-color: #013220;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    overflow: hidden;

    /* Full width breakout */
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
}

/* ===== GRID BACKGROUND ===== */
.asp-logistics-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* ===== CONTAINER ===== */
.asp-logistics-section .asp-logistics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* ===== HEADER ===== */
.asp-logistics-section .asp-sub-title {
    color: #c5a059;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.asp-logistics-section .asp-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 20px;
    color: #fff;
}

.asp-logistics-section .asp-desc {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    color: #cbd5e1;
}

/* ===== MAP BOX ===== */
.asp-logistics-section .asp-map-box {
    position: relative;
    width: 100%;
    max-width: 1280px;
    aspect-ratio: 2 / 1;
    margin: 40px auto 0;

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    filter: invert(1) opacity(0.6)
            drop-shadow(0 0 5px rgba(255,255,255,0.5));
    transition: 0.3s;
}

.asp-logistics-section .asp-map-box:hover {
    opacity: 0.9;
    filter: invert(1) opacity(0.9)
            drop-shadow(0 0 10px rgba(255,255,255,0.8));
}

/* 2. TIÊU ĐỀ */
.asp-strategic-header { text-align: center; margin-bottom: 60px; }

.asp-strategic-header .sub-label {
    font-size: 13px;
    color: #c5a059;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    margin-bottom: 15px;
    display: inline-block;
    border-bottom: 1px solid #c5a059;
    padding-bottom: 5px;
}

.asp-strategic-header h2.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #013220;
    line-height: 1.2;
    margin: 0;
}

/*phần 7 */

    /* 2. ẢNH NỀN PARALLAX (HIỆU ỨNG TRƯỢT) */
    .asp-cta-bg {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        /* CHÚ THÍCH: Thay link ảnh container cảng biển hoặc cái bắt tay doanh nghiệp tại đây */
        background-image: url('images/ASPIMEX-Contact.webp');
        background-size: cover;
        background-position: center;
        background-attachment: fixed; /* Tạo hiệu ứng Parallax sang trọng */
        z-index: 0;
    }

    /* 3. LỚP PHỦ TỐI (OVERLAY) */
    .asp-cta-overlay {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        /* Gradient từ xanh rêu đậm sang đen, tạo độ sâu huyền bí */
        background: linear-gradient(135deg, rgba(1, 50, 32, 0.9), rgba(0, 0, 0, 0.85));
        z-index: 1;
    }

    /* 4. NỘI DUNG CHÍNH */
    .asp-cta-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: 0 auto;
        color: #ffffff;
    }

    /* 5. TIÊU ĐỀ PHỤ (H2 - TAGLINE) */
    .asp-cta-content p.sub-title {
        font-family: 'Manrope', sans-serif;
        font-size: 14px;
        font-weight: 800;
        color: #c5a059; /* Vàng Champagne */
        text-transform: uppercase;
        letter-spacing: 4px; /* Giãn chữ rộng */
        margin-bottom: 25px;
        display: inline-block;
        border: 1px solid rgba(197, 160, 89, 0.3);
        padding: 8px 20px;
        background: rgba(0,0,0,0.2);
        backdrop-filter: blur(5px);
    }

    /* 6. TIÊU ĐỀ LỚN (H2 - MAIN HEADING) */
    .asp-cta-content h2.main-title {
        font-family: 'Playfair Display', serif;
        font-size: 52px;
        line-height: 1.2;
        color: #ffffff;
        margin: 0 0 30px 0;
        font-weight: 700;
    }

    /* Chữ nghiêng tạo điểm nhấn */
    .asp-cta-content h2.main-title span {
        font-style: italic;
        color: #c5a059;
        border-bottom: 2px solid #c5a059; /* Gạch chân màu vàng */
    }

    /* 7. ĐOẠN VĂN MÔ TẢ */
    .asp-cta-desc {
        font-family: 'Manrope', sans-serif;
        font-size: 18px;
        line-height: 1.6;
        color: #e2e8f0;
        margin-bottom: 50px;
        font-weight: 300;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    /* 8. NHÓM NÚT BẤM (BUTTONS) */
    .asp-cta-btns {
        display: flex;
        gap: 25px;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Nút Chính (Primary - Solid Gold) */
    .asp-cta-btn-primary {
        display: inline-block;
        padding: 18px 50px;
        background: linear-gradient(135deg, #c5a059 0%, #9a7d46 100%);
        color: #013220; /* Chữ xanh đậm trên nền vàng -> Rất sang */
        font-family: 'Manrope', sans-serif;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 1.5px;
        text-decoration: none;
        border-radius: 2px;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
    }

    .asp-cta-btn-primary:hover {
        transform: translateY(-5px);
        background: #ffffff; /* Hover chuyển trắng */
        box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    }

    /* Nút Phụ (Secondary - Outline) */
    .asp-cta-btn-secondary {
        display: inline-block;
        padding: 18px 50px;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: #ffffff;
        font-family: 'Manrope', sans-serif;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 1.5px;
        text-decoration: none;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .asp-cta-btn-secondary:hover {
        border-color: #c5a059;
        color: #c5a059;
        background: rgba(0,0,0,0.5);
    }

    /* 9. RESPONSIVE (DI ĐỘNG) */
    @media (max-width: 768px) {
        .asp-cta-section { padding: 80px 20px; }
        .asp-cta-content h2.main-title { font-size: 32px; }
        .asp-cta-desc { font-size: 15px; }
        .asp-cta-btns { flex-direction: column; gap: 15px; width: 100%; }
        .asp-cta-btn-primary, .asp-cta-btn-secondary { width: 100%; text-align: center; }
    }


/* LỚP NỀN MỜ PHỦ ẢNH */
.asp-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
        135deg,
        rgba(1, 50, 32, 0.9),
        rgba(0, 0, 0, 0.85)
    );

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

/* ĐẢM BẢO ẢNH NỀN NẰM DƯỚI OVERLAY */
.asp-cta-section .section-bg {
    z-index: 0;
}

/* NỘI DUNG NẰM TRÊN CÙNG */
.asp-cta-section .section-content {
    position: relative;
    z-index: 2;
}

    /* 1. NỀN TẢNG (BACKGROUND) */
    .royal-footer-wrap {
        background-color: #013220; /* Xanh lục bảo đậm */
        color: #f1f5f9;
        font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
        padding-top: 60px;
        padding-bottom: 30px;
        position: relative;
        border-top: 5px solid #c5a059;
    }

    /* 2. HỆ THỐNG LƯỚI (ĐÃ FIX CHO 1280PX) */
    .royal-container {
        max-width: 1280px !important; /* GIỚI HẠN CHUẨN 1280PX */
        margin: 0 auto;
        padding: 0 15px; /* Padding nhỏ lại để tăng diện tích hiển thị */
        display: flex;
        flex-wrap: wrap;
        gap: 20px; /* Giảm khoảng cách để 4 cột không bị chật */
        justify-content: space-between;
    }

    .royal-col {
        flex: 1;
        min-width: 220px; /* Giảm min-width để không bị rớt dòng */
    }
    
    /* Cột đầu tiên rộng hơn các cột khác */
    .royal-col-wide {
        flex: 1.4;
        min-width: 280px; 
    }

    /* 3. LOGO & TÊN THƯƠNG HIỆU */
    .royal-logo-img img {
        max-width: 140px; 
        height: auto;
        margin-bottom: 10px;
        display: block;
        filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.5));
    }
    
    .royal-brand-name {
        font-family: "Playfair Display", serif;
        font-size: 24px; /* Giảm nhẹ size để cân đối */
        color: #ffffff;
        font-weight: 800;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 15px;
        display: block;
        line-height: 1;
    }
    .royal-brand-name span { color: #c5a059; }

    /* 4. MÔ TẢ & CHỨNG CHỈ */
    .royal-desc {
        font-size: 14px; /* Chữ mô tả vừa phải */
        line-height: 1.6;
        color: #e2e8f0;
        margin-bottom: 15px;
        font-weight: 400;
        text-align: justify;
    }
    
    .royal-certs {
        font-size: 12px;
        color: #c5a059;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 20px;
        border: 1px solid rgba(197, 160, 89, 0.5);
        padding: 8px 10px;
        display: inline-block;
        border-radius: 4px;
        background: rgba(0,0,0,0.2);
        white-space: nowrap; /* Giữ chứng chỉ trên 1 dòng */
    }

    /* 5. TIÊU ĐỀ CỘT */
    .royal-heading {
        font-family: "Playfair Display", serif;
        color: #c5a059;
        font-size: 16px; 
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid rgba(197, 160, 89, 0.4);
        display: inline-block;
        margin-top: 5px;
    }

    /* 6. THÔNG TIN LIÊN HỆ */
    .royal-info-item {
        margin-bottom: 18px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }
    .royal-icon {
        color: #c5a059;
        font-size: 18px;
        margin-top: 3px;
        flex-shrink: 0;
    }
    .royal-label {
        color: #ffffff;
        font-weight: 700;
        font-size: 14px;
        text-transform: uppercase;
        display: block;
        margin-bottom: 3px;
    }
    .royal-value {
        color: #f1f5f9;
        font-size: 14px; 
        line-height: 1.5;
        font-weight: 400;
        word-break: break-word; /* Tự xuống dòng nếu địa chỉ quá dài */
    }
    .royal-value a { color: #f1f5f9; text-decoration: none; transition: 0.3s; }
    .royal-value a:hover { color: #c5a059; }

    /* 7. SOCIALS & FACEBOOK */
    .royal-socials {
        display: flex;
        gap: 8px;
        margin-top: 15px;
    }
    .royal-social-link {
        width: 38px;
        height: 38px;
        border: 1px solid rgba(197, 160, 89, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        text-decoration: none;
        background: rgba(0,0,0,0.3);
    }
    .royal-social-link i { font-size: 16px; color: #c5a059; }
    .royal-social-link:hover { background-color: #c5a059; transform: translateY(-3px); }
    .royal-social-link:hover i { color: #013220; }

    .royal-fb-wrap {
        background: #fff;
        padding: 4px;
        border-radius: 4px;
        border: 2px solid #c5a059;
        overflow: hidden; /* Đảm bảo iframe không tràn */
    }

    .royal-bottom {
        margin-top: 30px;
 margin-bottom: -20px;
        padding-top: 10px;
        border-top: 2px solid rgba(255,255,255,0.1);
        text-align: center;
        font-size: 13px;
        color: #94a3b8;
        font-family: "Playfair Display", serif;
        font-style: italic;
    }

.absolute-footer {
	display: none !important;
}

/* ==========================================================
SEARCH BAR CUSTOM – FLATSOME SAFE
========================================================== */

/* ===== WRAPPER CHÍNH ===== */
.header-search-form-wrapper .searchform-wrapper {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 9px;
    height: 38px;
    width: 100%;
    overflow: hidden;
    transition: all .25s ease;
}

/* ===== FIX FLEX NỘI BỘ FLATSOME ===== */
.header-search-form-wrapper .flex-row {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.header-search-form-wrapper .flex-col {
    display: flex;
    padding: 0;
}

/* input wrapper */
.header-search-form-wrapper .flex-col.flex-grow {
    flex: 1;
}

/* ===== FOCUS EFFECT ===== */
.header-search-form-wrapper .searchform-wrapper:focus-within {
    border-color: #B91C1C;
    box-shadow: 0 0 0 1px #B91C1C;
}

/* ===== INPUT ===== */
.header-search-form-wrapper .search-field {
    flex: 1;
    background: transparent;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0 16px;
    height: 100%;
    font-size: 14px;
    font-weight: 500;
    color: #4E342E;
    letter-spacing: 1.2px;
    font-style: italic;
}

.header-search-form-wrapper .search-field:focus {
    outline: none;
}

/* ===== BUTTON ===== */
.header-search-form-wrapper .ux-search-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    min-width: 56px;
    background: #013220;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
    transition: all .3s ease;
}

/* Hover */
.header-search-form-wrapper .ux-search-submit:hover {
    background: #991b1b;
}

/* ===== ẨN ICON FLATSOME ===== */
.header-search-form-wrapper .ux-search-submit i {
    display: none;
}

/* ===== SVG ICON MỚI ===== */
.header-search-form-wrapper .ux-search-submit::after {
    content: '';
    width: 20px;
    height: 20px;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23fff' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* ===== FIX LIVE SEARCH DROPDOWN ===== */
.header-search-form-wrapper .live-search-results {
    top: 100%;
    left: 0;
    width: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 849px) {

    .header-search-form-wrapper .searchform-wrapper {
        height: 36px;
    }

    .header-search-form-wrapper .ux-search-submit {
        width: 50px;
        min-width: 50px;
    }

}

.banner-layer.text-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* ===== Line 1 (Outer) ===== */
.banner-layer.text-box::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    pointer-events: none;
    z-index: 2;
}

/* ===== Line 2 (Inner) ===== */
.banner-layer.text-box::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    border: 1px solid rgba(197, 160, 89, 0.15);
    pointer-events: none;
    z-index: 2;
}

/* HOME: bỏ border line 2 (inner) */
.home .banner-layer.text-box::after {
    border: none;
}

/* HOME: bỏ border line 2 (inner) */
.home .banner-layer.text-box::before {
    border: none;
}

        /* 5. NỘI DUNG CHÍNH (CENTER) */
        .asp-about-content {
            position: relative;
            z-index: 3;
            text-align: center;
            max-width: 900px;
            padding: 0 20px;
            color: #ffffff;
        }

        /* Nhãn phụ (Dùng div - Không dùng H để tránh loãng SEO) */
        .asp-about-label {
            font-family: 'Manrope', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: #c5a059;
            /* Vàng Champagne */
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 20px;
            display: inline-block;
            position: relative;
            padding: 0 15px;
        }

        /* Đường kẻ ngang 2 bên nhãn */
        .asp-about-label::before,
        .asp-about-label::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 30px;
            height: 1px;
            background-color: #c5a059;
        }

        .asp-about-label::before {
            left: -30px;
        }

        .asp-about-label::after {
            right: -30px;
        }

        /* THẺ H1 DUY NHẤT (CHUẨN SEO) */
        .asp-about-h1 {
            font-family: 'Playfair Display', serif;
            font-size: 64px;
            line-height: 1.1;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 30px 0;
            text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        /* Chữ nghiêng nghệ thuật trong H1 */
        .asp-about-h1 span {
            font-style: italic;
            color: #c5a059;
            /* Điểm nhấn Vàng */
            font-weight: 400;
        }

        /* Đoạn văn giới thiệu (Intro Text) */
        .asp-about-intro {
            font-family: 'Manrope', sans-serif;
            font-size: 18px;
            line-height: 1.6;
            font-weight: 300;
            color: #e2e8f0;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Biểu tượng trang trí (Ornament) dưới cùng */
        .asp-about-ornament {
            margin-top: 40px;
            color: #c5a059;
            font-size: 24px;
            opacity: 0.8;
        }

        /* 6. RESPONSIVE MOBILE */
        @media (max-width: 768px) {
            .asp-about-hero {
                height: 70vh;
                min-height: 450px;
            }

            .asp-about-h1 {
                font-size: 36px;
            }

            .asp-about-label {
                font-size: 12px;
                letter-spacing: 2px;
            }

            .asp-about-intro {
                font-size: 15px;
            }

            .asp-about-frame {
                top: 15px;
                left: 15px;
                right: 15px;
                bottom: 15px;
            }
        }

                    .asp-ceo-section {
                        padding: 100px 0;
                        background-color: #fdfbf7;
                        font-family: 'Manrope', sans-serif;
                        overflow: hidden
                    }

                    .asp-ceo-container {
                        max-width: 1200px;
                        margin: 0 auto;
                        padding: 0 20px;
                        display: flex;
                        flex-wrap: wrap;
                        align-items: center;
                        gap: 60px
                    }

                    .asp-ceo-image-col {
                        flex: 1;
                        min-width: 400px;
                        position: relative;
                        padding-left: 20px;
                        padding-bottom: 20px
                    }

                    .asp-ceo-img-wrap {
                        position: relative;
                        z-index: 2;
                        box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.1)
                    }

                    .asp-ceo-img-wrap img {
                        display: block;
                        width: 100%;
                        height: auto;
                        filter: sepia(10%) contrast(1.1)
                    }

                    .asp-ceo-border {
                        position: absolute;
                        top: 30px;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        border: 2px solid #c5a059;
                        z-index: 1;
                        transition: all .5s ease
                    }

                    .asp-ceo-image-col:hover .asp-ceo-border {
                        top: 15px;
                        left: 15px
                    }

                    .asp-ceo-content-col {
                        flex: 1.2;
                        min-width: 400px
                    }

                    .asp-ceo-label {
                        font-size: 12px;
                        font-weight: 700;
                        color: #c5a059;
                        text-transform: uppercase;
                        letter-spacing: 2px;
                        margin-bottom: 20px;
                        display: block
                    }

                    .asp-ceo-h2 {
                        font-family: 'Playfair Display', serif;
                        font-size: 42px;
                        color: #013220;
                        line-height: 1.2;
                        margin-top: 0;
                        margin-bottom: 30px;
                        font-weight: 700
                    }

                    .asp-ceo-quote {
                        font-family: 'Playfair Display', serif;
                        font-size: 24px;
                        font-style: italic;
                        color: #013220;
                        line-height: 1.5;
                        border-left: 4px solid #c5a059;
                        padding-left: 25px;
                        margin: 0 0 30px 0;
                        position: relative
                    }

                    .asp-ceo-desc {
                        font-size: 16px;
                        line-height: 1.8;
                        color: #4a5568;
                        margin-bottom: 40px;
                        text-align: justify;
                        font-weight: 300
                    }

                    .asp-signature-block {
                        margin-top: 30px
                    }

                    .asp-ceo-name {
                        font-family: 'Playfair Display', serif;
                        font-size: 22px;
                        color: #000;
                        margin: 0;
                        font-weight: 700
                    }

                    .asp-ceo-title {
                        font-size: 13px;
                        text-transform: uppercase;
                        letter-spacing: 1px;
                        color: #888;
                        margin-top: 5px;
                        display: block
                    }

                    .asp-fake-sign {
                        font-family: 'Great Vibes', cursive;
                        font-size: 40px;
                        color: #c5a059;
                        margin-top: 15px;
                        opacity: 0.8
                    }

                    @media(max-width:900px) {
                        .asp-ceo-container {
                            flex-direction: column;
                            gap: 40px
                        }

                        .asp-ceo-image-col,
                        .asp-ceo-content-col {
                            min-width: 100%
                        }

                        .asp-ceo-img-wrap {
                            width: 100%
                        }

                        .asp-ceo-border {
                            display: none
                        }
                    }

                    .asp-lux-grid {
                        display: grid;
                        grid-template-columns: repeat(3, 1fr);
                        border: 1px solid rgba(197, 160, 89, 0.3);
                    }

                    .asp-lux-item {
                        padding: 80px 40px;
                        border-right: 1px solid rgba(197, 160, 89, 0.3);
                        position: relative;
                        transition: all 0.5s ease;
                        background: transparent;
                    }

                    .asp-lux-item:last-child {
                        border-right: none;
                    }

                    .asp-lux-icon {
                        font-size: 50px;
                        color: #c5a059;
                        margin-bottom: 30px;
                        transition: all 0.5s ease;
                        display: inline-block;
                    }

                    .asp-lux-h3 {
                        font-family: 'Playfair Display', serif;
                        font-size: 30px;
                        color: #ffffff;
                        margin: 0 0 20px 0;
                        font-weight: 700;
                        transition: color 0.5s ease;
                    }

                    .asp-lux-p {
                        font-size: 15px;
                        line-height: 1.8;
                        color: #94a3b8;
                        margin: 0;
                        transition: color 0.5s ease;
                        font-weight: 300;
                    }

                    /* HOVER EFFECTS */
                    .asp-lux-item:hover {
                        background-color: #0a2e24;
                        box-shadow: inset 0 0 50px rgba(197, 160, 89, 0.1);
                    }

                    .asp-lux-item:hover::after {
                        content: '';
                        position: absolute;
                        bottom: 0;
                        left: 0;
                        width: 100%;
                        height: 3px;
                        background-color: #c5a059;
                    }

                    .asp-lux-item:hover .asp-lux-icon {
                        transform: translateY(-10px);
                        text-shadow: 0 0 20px rgba(197, 160, 89, 0.6);
                    }

                    .asp-lux-item:hover .asp-lux-h3 {
                        color: #c5a059;
                    }

                    .asp-lux-item:hover .asp-lux-p {
                        color: #e2e8f0;
                    }

                    /* RESPONSIVE */
                    @media (max-width: 900px) {
                        .asp-lux-grid {
                            grid-template-columns: 1fr;
                            border: none;
                        }

                        .asp-lux-item {
                            border-right: none;
                            border-bottom: 1px solid rgba(197, 160, 89, 0.3);
                            border-left: 1px solid rgba(197, 160, 89, 0.3);
                            border-right: 1px solid rgba(197, 160, 89, 0.3);
                            margin-bottom: 20px;
                        }

                        .asp-lux-h2 {
                            font-size: 36px;
                        }
                    }
                    .asp-lux-header {
                        text-align: center;
                        margin-bottom: 80px;
                    }

                    .asp-lux-label {
                        font-size: 12px;
                        font-weight: 800;
                        color: #c5a059;
                        text-transform: uppercase;
                        letter-spacing: 4px;
                        display: block;
                        margin-bottom: 20px;
                    }

                    .asp-lux-h2 {
                        font-family: 'Playfair Display', serif;
                        font-size: 48px;
                        line-height: 1.2;
                        color: #ffffff;
                        margin: 0;
                        font-weight: 700;
                        text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
                    }

                    .asp-lux-line {
                        width: 80px;
                        height: 1px;
                        background-color: #c5a059;
                        margin: 30px auto 0;
                    }
.asp-lux-section {
    font-family: 'Manrope', sans-serif;
    color: #e2e8f0;
    position: relative;
    border-top: 3px solid #c5a059;
}

                    .asp-story-visual {
                        flex: 1;
                        min-width: 450px;
                        position: relative;
                        z-index: 1
                    }

                    .asp-story-img {
                        width: 100%;
                        height: auto;
                        display: block;
                        border-radius: 2px;
                        filter: sepia(15%) contrast(1.1);
                        box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
                        transition: transform .5s ease
                    }

                    .asp-story-visual:hover .asp-story-img {
                        transform: scale(1.02)
                    }

                    .asp-story-border {
                        position: absolute;
                        top: -30px;
                        left: -30px;
                        width: 80%;
                        height: 80%;
                        border: 2px solid #c5a059;
                        z-index: -1;
                        opacity: .6
                    }

                    .asp-story-year {
                        position: absolute;
                        bottom: 40px;
                        left: -40px;
                        background: #013220;
                        color: #c5a059;
                        padding: 20px 30px;
                        font-family: 'Playfair Display', serif;
                        z-index: 3;
                        box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2)
                    }

                    .asp-story-year span {
                        display: block;
                        font-size: 12px;
                        letter-spacing: 2px;
                        text-transform: uppercase;
                        color: #fff
                    }

                    .asp-story-year strong {
                        font-size: 42px;
                        line-height: 1;
                        display: block
                    }

                    .asp-story-content {
                        flex: 1;
                        min-width: 450px;
                        background: #fff;
                        padding: 60px 50px 60px 80px;
                        margin-left: -80px;
                        z-index: 2;
                        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
                        position: relative
                    }

                    .asp-story-label {
                        font-size: 13px;
                        font-weight: 700;
                        color: #c5a059;
                        text-transform: uppercase;
                        letter-spacing: 3px;
                        margin-bottom: 20px;
                        display: block
                    }

                    .asp-story-h2 {
                        font-family: 'Playfair Display', serif;
                        font-size: 42px;
                        line-height: 1.2;
                        color: #013220;
                        margin-top: 0;
                        margin-bottom: 30px;
                        font-weight: 700
                    }

                    .asp-story-p {
                        font-size: 16px;
                        line-height: 1.8;
                        color: #4a5568;
                        margin-bottom: 30px;
                        text-align: justify;
                        font-weight: 300
                    }

                    .asp-story-p::first-letter {
                        float: left;
                        font-size: 50px;
                        line-height: 1;
                        font-weight: 700;
                        color: #c5a059;
                        margin-right: 10px;
                        font-family: 'Playfair Display', serif
                    }

                    .asp-story-quote {
                        font-family: 'Playfair Display', serif;
                        font-size: 20px;
                        font-style: italic;
                        color: #1a202c;
                        border-left: 3px solid #c5a059;
                        padding-left: 20px;
                        margin: 30px 0;
                        background: #fdfbf7;
                        padding: 20px
                    }

                    .asp-story-sign {
                        font-family: 'Great Vibes', cursive;
                        font-size: 36px;
                        color: #c5a059;
                        text-align: right;
                        margin-top: 20px
                    }

                    @media(max-width:900px) {
                        .asp-story-container {
                            flex-direction: column
                        }

                        .asp-story-visual,
                        .asp-story-content {
                            min-width: 100%;
                            margin-left: 0
                        }

                        .asp-story-content {
                            padding: 40px 20px;
                            margin-top: -50px;
                            width: 90%
                        }

                        .asp-story-year {
                            left: 0;
                            bottom: 20px
                        }

                        .asp-story-h2 {
                            font-size: 32px
                        }
                    }

                   .asp-his-v2-header {
                        text-align: center;
                        margin-bottom: 100px;
                        position: relative
                    }

                    .asp-his-v2-label {
                        font-size: 12px;
                        font-weight: 800;
                        color: #c5a059;
                        text-transform: uppercase;
                        letter-spacing: 4px;
                        display: inline-block;
                        margin-bottom: 15px;
                        border: 1px solid #c5a059;
                        padding: 8px 20px;
                        border-radius: 50px
                    }

                    .asp-his-v2-title {
                        font-family: 'Playfair Display', serif;
                        font-size: 52px;
                        line-height: 1.1;
                        color: #fff;
                        margin: 0;
                        font-weight: 700;
                        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5)
                    }

                    .asp-his-v2-title span {
                        font-style: italic;
                        color: #c5a059
                    }

                    .asp-timeline-v2 {
                        position: relative;
                        max-width: 1000px;
                        margin: 0 auto
                    }

                    .asp-timeline-line {
                        position: absolute;
                        top: 0;
                        bottom: 0;
                        left: 50%;
                        width: 2px;
                        background: linear-gradient(to bottom, rgba(197, 160, 89, 0), #c5a059, #c5a059, rgba(197, 160, 89, 0));
                        transform: translateX(-50%);
                        box-shadow: 0 0 15px rgba(197, 160, 89, 0.5)
                    }

                    .asp-tl-v2-item {
                        position: relative;
                        margin-bottom: 0;
                        width: 100%;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        min-height: 300px
                    }

                    .asp-tl-v2-content {
                        width: 45%;
                        position: relative;
                        transition: all .5s ease;
                        opacity: 0.8;
                        transform: scale(0.95)
                    }

                    .asp-tl-v2-item:nth-child(odd) .asp-tl-v2-content {
                        margin-right: auto;
                        text-align: right;
                        padding-right: 60px
                    }

                    .asp-tl-v2-item:nth-child(even) .asp-tl-v2-content {
                        margin-left: auto;
                        text-align: left;
                        padding-left: 60px
                    }

                    .asp-tl-v2-dot {
                        position: absolute;
                        left: 50%;
                        width: 20px;
                        height: 20px;
                        background: #001a12;
                        border: 2px solid #c5a059;
                        border-radius: 50%;
                        transform: translateX(-50%);
                        z-index: 10;
                        box-shadow: 0 0 0 5px rgba(197, 160, 89, 0.1);
                        transition: all .4s ease
                    }

                    .asp-tl-v2-item:hover .asp-tl-v2-dot {
                        background: #c5a059;
                        box-shadow: 0 0 0 10px rgba(197, 160, 89, 0.2), 0 0 30px #c5a059
                    }

                    .asp-tl-v2-year {
                        font-family: 'Manrope', sans-serif;
                        font-size: 60px;
                        font-weight: 800;
                        line-height: 1;
                        color: rgba(255, 255, 255, 0.05);
                        position: absolute;
                        top: 50%;
                        transform: translateY(-50%);
                        transition: all .5s ease;
                        z-index: -1
                    }

                    .asp-tl-v2-item:nth-child(odd) .asp-tl-v2-year {
                        right: -30px
                    }

                    .asp-tl-v2-item:nth-child(even) .asp-tl-v2-year {
                        left: -30px
                    }

                    .asp-tl-v2-item:hover .asp-tl-v2-content {
                        opacity: 1;
                        transform: scale(1)
                    }

                    .asp-tl-v2-item:hover .asp-tl-v2-year {
                        color: rgba(197, 160, 89, 0.2);
                        transform: translateY(-50%) scale(1.1)
                    }

                    .asp-tl-v2-box {
                        background: rgba(255, 255, 255, 0.03);
                        border: 1px solid rgba(255, 255, 255, 0.1);
                        padding: 30px;
                        border-radius: 4px;
                        backdrop-filter: blur(10px);
                        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
                        transition: all .4s ease
                    }

                    .asp-tl-v2-item:hover .asp-tl-v2-box {
                        border-color: #c5a059;
                        background: rgba(255, 255, 255, 0.06);
                        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4)
                    }

                    .asp-tl-v2-h3 {
                        font-family: 'Playfair Display', serif;
                        font-size: 24px;
                        color: #fff;
                        margin: 0 0 15px 0;
                        font-weight: 700
                    }

                    .asp-tl-v2-p {
                        font-size: 15px;
                        line-height: 1.7;
                        color: #d1d5db;
                        margin: 0
                    }

                    @media(max-width:900px) {
                        .asp-timeline-line {
                            left: 20px
                        }

                        .asp-tl-v2-item {
                            flex-direction: column;
                            align-items: flex-start;
                            min-height: auto;
                            margin-bottom: 50px;
                            padding-left: 50px
                        }

                        .asp-tl-v2-content {
                            width: 100% !important;
                            text-align: left !important;
                            padding: 0 !important;
                            margin: 0 !important
                        }

                        .asp-tl-v2-dot {
                            left: 20px;
                            top: 0;
                            transform: translateX(-50%)
                        }

                        .asp-tl-v2-year {
                            top: -30px;
                            right: 20px;
                            font-size: 40px;
                            transform: none !important;
                            left: auto !important
                        }
                    }

.asp-history-v2-section {
	border-top: 3px solid #c5a059;
}

                    .asp-cap-header {
                        text-align: center;
                        margin-bottom: 80px
                    }

                    .asp-cap-label {
                        font-size: 12px;
                        font-weight: 800;
                        color: #c5a059;
                        text-transform: uppercase;
                        letter-spacing: 4px;
                        display: inline-block;
                        margin-bottom: 20px;
                        border: 1px solid #c5a059;
                        padding: 8px 20px;
                        background: rgba(0, 0, 0, 0.3)
                    }

                    .asp-cap-h2 {
                        font-family: 'Playfair Display', serif;
                        font-size: 48px;
                        line-height: 1.1;
                        color: #fff;
                        margin: 0;
                        font-weight: 700;
                        text-shadow: 0 0 20px rgba(197, 160, 89, 0.3)
                    }

                    .asp-cap-h2 span {
                        color: #c5a059;
                        font-style: italic
                    }

                    /* STATS ROW */
                    .asp-cap-stats {
                        display: flex;
                        justify-content: space-between;
                        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                        padding-bottom: 60px;
                        margin-bottom: 60px;
                        gap: 30px;
                        text-align: center
                    }

                    .asp-cap-stat-item {
                        flex: 1;
                        position: relative
                    }

                    .asp-cap-stat-num {
                        font-family: 'Manrope', sans-serif;
                        font-size: 56px;
                        font-weight: 800;
                        color: #fff;
                        display: block;
                        line-height: 1;
                        margin-bottom: 10px;
                        text-shadow: 0 0 15px rgba(255, 255, 255, 0.3)
                    }

                    .asp-cap-stat-num span {
                        color: #c5a059;
                        font-size: 30px;
                        vertical-align: top
                    }

                    .asp-cap-stat-desc {
                        font-size: 13px;
                        text-transform: uppercase;
                        letter-spacing: 2px;
                        color: #94a3b8;
                        font-weight: 600
                    }

                    /* PILLARS GRID */
                    .asp-cap-grid {
                        display: grid;
                        grid-template-columns: repeat(3, 1fr);
                        gap: 30px
                    }

                    .asp-cap-card {
                        background: rgba(255, 255, 255, 0.03);
                        border: 1px solid rgba(255, 255, 255, 0.1);
                        padding: 50px 30px;
                        transition: all .4s ease;
                        position: relative;
                        overflow: hidden
                    }

                    .asp-cap-card::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 3px;
                        height: 100%;
                        background: #c5a059;
                        opacity: 0.5;
                        transition: all .4s ease
                    }

                    .asp-cap-card:hover {
                        transform: translateY(-10px);
                        background: rgba(255, 255, 255, 0.06);
                        border-color: rgba(197, 160, 89, 0.3)
                    }

                    .asp-cap-card:hover::before {
                        opacity: 1;
                        width: 5px;
                        box-shadow: 0 0 15px #c5a059
                    }

                    .asp-cap-icon {
                        font-size: 48px;
                        color: #c5a059;
                        margin-bottom: 30px;
                        display: inline-block
                    }

                    .asp-cap-h3 {
                        font-family: 'Playfair Display', serif;
                        font-size: 26px;
                        color: #fff;
                        margin: 0 0 20px 0;
                        font-weight: 700
                    }

                    .asp-cap-p {
                        font-size: 15px;
                        line-height: 1.7;
                        color: #d1d5db;
                        margin: 0;
                        font-weight: 300
                    }

                    /* RESPONSIVE */
                    @media(max-width:900px) {
                        .asp-cap-stats {
                            flex-direction: column;
                            gap: 40px
                        }

                        .asp-cap-grid {
                            grid-template-columns: 1fr
                        }

                        .asp-cap-h2 {
                            font-size: 36px
                        }

                        .asp-cap-card {
                            padding: 40px 20px
                        }
                    }

                    .asp-cert-header {
                        margin-bottom: 60px
                    }

                    .asp-cert-label {
                        font-size: 13px;
                        font-weight: 800;
                        color: #c5a059;
                        text-transform: uppercase;
                        letter-spacing: 3px;
                        display: inline-block;
                        margin-bottom: 15px;
                        border-bottom: 1px solid #c5a059;
                        padding-bottom: 5px
                    }

                    .asp-cert-h2 {
                        font-family: 'Playfair Display', serif;
                        font-size: 42px;
                        color: #fff;
                        margin: 0;
                        font-weight: 700;
                        line-height: 1.2
                    }

                    .asp-cert-slider-wrap {
                        overflow: hidden;
                        white-space: nowrap;
                        position: relative;
                        padding: 50px 0;
                        background: rgba(255, 255, 255, 0.02);
                        border-top: 1px solid rgba(255, 255, 255, 0.05);
                        border-bottom: 1px solid rgba(255, 255, 255, 0.05)
                    }

                    .asp-cert-slider-wrap::before {
                        content: "";
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 150px;
                        height: 100%;
                        z-index: 2;
                        pointer-events: none;
                        background: linear-gradient(to right, #001a12, transparent)
                    }

                    .asp-cert-slider-wrap::after {
                        content: "";
                        position: absolute;
                        top: 0;
                        right: 0;
                        width: 150px;
                        height: 100%;
                        z-index: 2;
                        pointer-events: none;
                        background: linear-gradient(to left, #001a12, transparent)
                    }

                    .asp-cert-track {
                        display: inline-block;
                        animation: aspSlide 40s linear infinite
                    }

                    .asp-cert-track:hover {
                        animation-play-state: paused
                    }

                    .asp-cert-card {
                        display: inline-flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        width: 220px;
                        height: 140px;
                        margin: 0 20px;
                        background: rgba(255, 255, 255, 0.03);
                        border: 1px solid rgba(197, 160, 89, 0.2);
                        border-radius: 4px;
                        transition: all .4s ease;
                        position: relative;
                        vertical-align: middle
                    }

                    .asp-cert-card:hover {
                        background: rgba(197, 160, 89, 0.08);
                        border-color: #c5a059;
                        transform: translateY(-5px);
                        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3)
                    }

                    .asp-cert-icon {
                        font-size: 48px;
                        margin-bottom: 15px;
                        background: linear-gradient(135deg, #fbf5b7 0%, #bf953f 50%, #b38728 100%);
                        -webkit-background-clip: text;
                        -webkit-text-fill-color: transparent;
                        filter: drop-shadow(0 0 5px rgba(197, 160, 89, 0.3));
                        transition: all .4s ease
                    }

                    .asp-cert-card:hover .asp-cert-icon {
                        transform: scale(1.1);
                        filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.6))
                    }

                    .asp-cert-name {
                        font-size: 14px;
                        font-weight: 700;
                        color: #fff;
                        text-transform: uppercase;
                        letter-spacing: 1px;
                        margin: 0
                    }

                    .asp-cert-sub {
                        font-size: 11px;
                        color: #94a3b8;
                        margin-top: 5px;
                        font-weight: 400
                    }

                    @keyframes aspSlide {
                        0% {
                            transform: translateX(0)
                        }

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

                    @media(max-width:768px) {
                        .asp-cert-h2 {
                            font-size: 32px
                        }

                        .asp-cert-card {
                            width: 160px;
                            height: 120px;
                            margin: 0 10px
                        }

                        .asp-cert-icon {
                            font-size: 36px
                        }
                    }

/* Đầu trang tài liệu */
.repo-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 0px auto;
}

/* Nhãn phụ cao cấp */
.repo-badge {
    display: inline-block;
    color: #c5a059;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    border-bottom: 2px solid #c5a059;
    padding-bottom: 5px;
}

/* Tiêu đề H2 */
.repo-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #013220;
    margin-bottom: 25px;
    font-weight: 700;
}

/* Mô tả dẫn dắt SEO */
.repo-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    font-weight: 400;
}

    .asp-topbar-container {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        font-family: 'Manrope', sans-serif;
        font-size: 12px;
        line-height: 1;
        letter-spacing: 0.5px;

    }

    /* 2. Từng mục thông tin (Phone, Email, Giờ) */
    .asp-item {
        display: flex;
        align-items: center;
        padding: 0 5px;
        transition: opacity 0.2s;
    }
    
    .asp-item:hover {
        opacity: 0.85; /* Hiệu ứng mờ nhẹ khi hover */
    }

    /* 3. Chỉnh màu Icon (Vàng Gold - Theo logo) */
    .asp-item i {
        color: #d4af37; /* Màu vàng của chiếc lá trong logo */
        font-size: 14px;
        margin-right: 6px;
        position: relative;
        top: -1px; /* Căn chỉnh icon cho thẳng hàng mắt */
    }

    /* 4. Chữ nhãn (Label: Hotline, Email) */
    .asp-label {
        color: #e2e8f0; /* Màu trắng xám */
        font-weight: 400;
        margin-right: 4px;
        opacity: 0.8;
    }

    /* 5. Nội dung chính (Số điện thoại) */
    .asp-value {
        color: #ffffff; /* Trắng tinh khôi */
        font-weight: 700; /* In đậm số tiền/số điện thoại */
    }
    
    /* Link không gạch chân */
    .asp-value a {
        color: #ffffff !important;
        text-decoration: none;
    }

    /* 6. Vạch ngăn cách dọc (|) */
    .asp-divider {
        color: rgba(255, 255, 255, 0.15); /* Màu mờ */
        margin: 0 12px;
        font-size: 10px;
        height: 12px;
        border-right: 1px solid rgba(255,255,255,0.15);
    }
    
.asp-tb-socials {
        align-items: center;
        gap: 20px;
        padding-left: 20px;
    }

    /* Responsive: Ẩn bớt text trên mobile nếu cần */
    @media (max-width: 600px) {
        .asp-label { display: none; }
        .asp-divider { margin: 0 8px; }
    }

/*===================================
  3.2 Danh mục sản phẩm / Blog Products Sidebar
=================================== */

/* 1. Khung tổng thể của Widget */
.widget_product_categories,
.widget_categories.widget_product_categories {
    background-color: #ffffff;
    border: 1px solid #eef2f5;
    border-top: 3px solid #c5a059;
    padding: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-radius: 2px;
    margin-bottom: 30px;
}

/* 2. Tiêu đề Widget */
.widget_product_categories .widget-title {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    color: #013220;
    font-weight: 800;
    padding: 0 20px 15px 25px;
    margin-bottom: 10px;
    border-bottom: 1px solid #f1f1f1;
    position: relative;
}

/* 3. Gạch nhấn dưới tiêu đề */
.widget_product_categories .widget-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #c5a059;
	text-transform: none !important;
}

/* 4. Reset list */
.widget_product_categories ul.product-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 5. Item */
.widget_product_categories ul.product-categories li {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 6. Link */
.widget_product_categories ul.product-categories li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 18px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-left: 3px solid transparent;
}

/* 7. Hover */
.widget_product_categories ul.product-categories li a:hover {
    color: #013220;
    background-color: #f9fbfd;
    padding-left: 32px;
    border-left-color: rgba(1, 50, 32, 0.3);
}

/* 8. Active / Current */
.widget_product_categories ul.product-categories li.current-cat > a,
.widget_product_categories ul.product-categories li.active > a {
    color: #013220;
    font-weight: 700;
    background: linear-gradient(
        90deg,
        rgba(197, 160, 89, 0.1) 0%,
        transparent 100%
    );
    border-left-color: #c5a059;
    padding-left: 32px;
}

/* 9. Count (nếu dùng sau này) */
.widget_product_categories .count {
    font-size: 11px;
    color: #999;
    background-color: #f0f2f5;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

/* 10. Count hover / active */
.widget_product_categories li a:hover .count,
.widget_product_categories li.current-cat > a .count {
    background-color: #c5a059;
    color: #fff;
}

/* 11. Cate con */
.widget_product_categories ul.children {
    background-color: #fcfcfc;
    display: none;
}

/* 12. Hiện cate con khi active */
.widget_product_categories li.current-cat ul.children,
.widget_product_categories li.current-cat-parent ul.children {
    display: block;
    padding-bottom: 10px;
}

/* 13. Cate con link */
.widget_product_categories ul.children li a {
    padding-left: 40px;
    font-size: 13px;
    color: #777;
    border-left: none;
}

.widget_product_categories ul.children li a:hover {
    padding-left: 45px;
    color: #c5a059;
}



/* BLOG CATEGORY GRID */
.aspimex-blog-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.aspimex-blog-cat-item {
    text-decoration: none;
    color: inherit;
}

.aspimex-blog-cat-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* --- BOX COUNT: STYLE "THE EMERALD TICKET" (TẤM VÉ NGỌC LỤC BẢO) --- */

.box-normal .count {
    border-radius: 3px; 
    min-width: 40px; /* Đảm bảo độ rộng tối thiểu sang trọng */
    height: auto !important;
    padding: 2px 12px; /* Padding thoáng đãng */
    
    /* 2. Chất liệu & Màu sắc: Ngọc Lục Bảo & Vàng ròng */
    background-color: #013220; /* Nền Xanh Rêu Đậm tối thượng */
    border: 1px solid #c5a059;
    color: #F3D070; /* Số màu Vàng Kim */
    font-weight: 500;
    font-size: 15px; /* Kích thước lớn hơn để khẳng định vị thế */
    box-shadow: 0 10px 20px rgba(0,0,0,0.4); 
    
    /* Reset các thuộc tính mặc định của theme */
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- HIỆU ỨNG KÉP (DOUBLE LINE) --- */
/* Tạo thêm 1 đường viền phụ mờ bên trong để tăng độ tinh xảo */
.box-normal .count::after {
    content: '';
    position: absolute;
    top: 2px; left: 2px; right: 2px; bottom: 2px;
    border: 1px solid rgba(1, 50, 32, 0.6); /* Viền vàng mờ bên trong */
    border-radius: 2px;
}

/* --- HIỆU ỨNG HOVER: ĐẢO CHIỀU SANG TRỌNG --- */
.box-normal:hover .count {
    background-color: #c5a059; /* Nền chuyển sang Vàng Kim */
    color: #013220; /* Số chuyển sang Xanh Rêu */
    border-color: #fff; /* Viền chuyển trắng sáng */
    transform: translateY(-5px); /* Nổi lên cao hơn */
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.4); /* Bóng đổ vàng rực rỡ */
}

/* Xử lý viền phụ khi hover */
.box-normal:hover .count::after {
    border-color: rgba(1, 50, 32, 0.2);
}

/* MOBILE: logo trái – menu phải */
@media (max-width: 849px) {

    .header-inner {
        justify-content: space-between;
    }

    /* Logo sang trái */
    .header-inner #logo {
        order: 1;
        margin-left: 0;
    }

    /* Icon menu sang phải */
    .header-inner .show-for-medium.flex-right {
        order: 3;
    }

    /* Ẩn block flex-left rỗng (nếu có) */
    .header-inner .show-for-medium.flex-left {
        display: none;
    }
	
	img.header_logo.header-logo {
		margin: 0;
	}
}

/* MOBILE: menu sidebar trượt từ PHẢI */
@media (max-width: 849px) {

    /* Container popup */
/*     .mfp-inline-holder .mfp-content {
        display: flex;
        justify-content: flex-end;
    } */

    /* Sidebar menu */
    #main-menu.mobile-sidebar {
        left: auto !important;
        right: 0;
        transform: translateX(100%);
    }

    /* Khi popup mở */
    .mfp-ready #main-menu.mobile-sidebar {
        transform: translateX(0);
    }
	
	.mfp-content {
		left: auto !important;
		right: 0;
		transform: translateX(var(--drawer-width));
	}
}

/* 3. MENU ĐIỀU HƯỚNG (NAVIGATION) */
.header-nav .nav-top-link {
		font-family: 'Manrope', sans-serif ;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1e293b;
    padding: 0 10px;
    transition: all 0.3s ease;
}

/* 5. MENU CON (DROPDOWN)*/
.header-nav .nav-dropdown {
    border-radius: 0;
    border-top: 3px solid #B91C1C;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.header-nav .nav-dropdown li a {
    color: #4E342E; /* Màu nâu */
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    border-bottom: 1px solid #f1f1f1;
}

.header-nav .nav-dropdown li a:hover {
    color: #B91C1C;
    background-color: #f9f9f9;
}
/* ==============================================================
   REPLACE MOBILE MENU ICON
============================================================== */

/* BƯỚC 1: XÓA SỔ ICON CŨ */
.mobile-nav .nav-icon .icon-menu::before,
.mobile-nav .nav-icon i::before {
    display: none;
    content: "";
}

/* BƯỚC 2: CHÈN ICON MỚI (SVG)*/
.mobile-nav .nav-icon .icon-menu{
    display: block;
    width: 20px ;
    height: 30px;
    opacity: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6H20M4 12H20M4 18H20' stroke='%23451a03' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.2s ease;
}

/* BƯỚC 3: HIỆU ỨNG KHI CHẠM VÀO */
.mobile-nav .nav-icon:hover .icon-menu,
.mobile-nav .nav-icon.active .icon-menu,
.mobile-nav .nav-icon[aria-expanded="true"] .icon-menu {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6H20M4 12H20M4 18H20' stroke='%23991b1b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    transform: scale(1.1);
}

/* Căn chỉnh lại vị trí cho icon nằm giữa ô */
.mobile-nav .nav-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 1. KHUNG CHÍNH */
.header-wrapper .header-main {
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border-bottom: 3px solid #013220;
    z-index: 999;
}

.flickity-viewport {
	height: 100vh !important;
}

/* ===============================
   TERM DESCRIPTION – CLEAN STYLE
   =============================== */

.term-description {
    max-width: 100%;
    margin-bottom: 30px;
    color: #222;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

/* reset inline span */
.term-description span {
    color: inherit !important;
    font-size: inherit !important;
    font-family: inherit !important;
    line-height: inherit;
}

/* đoạn văn */
.term-description p {
    margin: 0 0 16px;
    text-align: justify;
}

/* heading */
.term-description h3 {
    margin: 26px 0 12px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    text-transform: none;
}

/* list */
.term-description ul {
    margin: 0 0 20px 18px;
    padding: 0;
}

.term-description li {
    margin-bottom: 10px;
}

/* strong */
.term-description strong,
.term-description b {
    font-weight: 700;
}

/* remove editor trash attributes effect */
.term-description [data-path-to-node],
.term-description [data-index-in-node] {
    all: unset;
    display: inline;
}

.logo-left .logo {
    margin: 0 !important;
}

/*===================================
   3.1 BREADCRUMB   ==================================== */
/* 1. KHUNG CHỨA (WRAPPER) - TẠO NỀN TẢNG SANG TRỌNG */
.page-title-inner {
    background: linear-gradient(to bottom, #ffffff 0%, #f4f7f6 100%);
    border-bottom: 2px solid #c5a059;
    padding-top: 18px;
    padding-bottom: 18px;
    margin-bottom: 40px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

/* 2. ĐỊNH DẠNG CHỮ (TYPOGRAPHY) */
.page-title-inner .woocommerce-breadcrumb {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: #5d6d7e;
    margin: 0;    
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* 3. CÁC LIÊN KẾT (LINK CHA) */
.page-title-inner .woocommerce-breadcrumb a {
    color: #013220;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

/* Hiệu ứng khi di chuột vào link */
.page-title-inner .woocommerce-breadcrumb a:hover {
    color: #c5a059;             /* Chuyển sang màu Vàng Kim */
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.4); /* Phát sáng nhẹ */
}

/* 6. TÙY CHỈNH CHO ĐIỆN THOẠI (MOBILE) */
@media (max-width: 768px) {
    .page-title-inner {
        padding: 12px 10px !important; /* Thu gọn padding */
    }
    .page-title-inner .woocommerce-breadcrumb {
        font-size: 11px;
        letter-spacing: 1px;
    }
    /* Ẩn bớt hiệu ứng nền phụ trên mobile nếu sợ chật */
    .page-title-inner .woocommerce-breadcrumb .current,
    .page-title-inner .woocommerce-breadcrumb span:last-child {
        background: transparent;
        border: none;
        padding: 0;
    }
}

.content-area {
	padding:0 !important;
}

/* Card blog shadow */
.post-item .box {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

/* Hover nổi lên */
.post-item .box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.nav li:first-child {
    border-top: 1px solid #ececec;
}