@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap" rel="stylesheet');
:root {
  --primary-bg: #fdfaf7;
  --nav-bg: #6A8B7D;
  --nav-bg-hover: #58756A;
  --gold-gradient: linear-gradient(135deg, #EAD3A1 0%, #D8B589 45%, #C9A86E 100%);
  --text-dark: #000;
}

body {
  /* 1. Màu nền dự phòng có tông tương đồng với ảnh */
  background-color: #d4af37; 
  
  /* 2. Thiết lập hình ảnh */
  background-image: linear-gradient(
      to bottom, 
      rgba(255, 255, 255, 0.5) 0%,   /* Bắt đầu ở 50% độ mờ */
      rgba(255, 255, 255, 0.55) 50%,  /* Đạt 70% ở giữa (vị trí 50% của trang) */
      rgba(255, 255, 255, 0.5) 100%  /* Kết thúc ở 50% độ mờ */
    ),url('./bg.jpg');
  
  /* 3. Đảm bảo ảnh phủ kín không để lại khoảng trắng */
  background-size: cover; 
  
  /* 4. Giữ ảnh cố định khi cuộn (quan trọng để tránh cảm giác ngắt quãng) */
  background-attachment: fixed;
  
  /* 5. Căn giữa ảnh */
  background-position: center center;
  
  /* 6. Tránh lặp lại ảnh nếu nội dung quá dài */
  background-repeat: no-repeat;

  font-family: "Google Sans Flex", serif;
}

.invisible {
    visibility: hidden;
}
.pointer-none {
    pointer-events: none;
}

/* #_________________________________________HEADER_____________________________________________# */
.top-header {
  text-align: center;
  padding: 20px;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}

.top-header .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    height: 50%;
    width: fit-content;
}

.top-header .logo img{
    width: auto;
    height: 100%;
}

.top-header .icons{
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: center
}

.top-header .icons .icon{
    width: 30px;
    height: 30px;
}

.main-nav {
    background-color: var(--nav-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    /* border-bottom: 2px solid #b39359;  */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);

    border: 2px solid var(--gold-mid);
}

.child-nav {
    display: flex;
    align-items: center;
    height: 30px;
    position: relative;
    transition: all 0.3s ease;
    /* border: 2px solid var(--gold-mid) */
}

.child-nav:first-child {
    border-left: 1px solid var(--gold-light); /* 1px sẽ trông thanh mảnh và sang hơn */
}

.child-nav {
    border-right: 1px solid var(--gold-light); /* 1px sẽ trông thanh mảnh và sang hơn */
}

.main-nav a {
    text-decoration: none;
    color: var(--primary-bg);
    padding: 0 3rem;
    font-family: 'Google Sans Flex', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
}

.child-nav:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.child-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.child-nav:hover::after {
    width: 80%;
}

.child-nav:hover a {
    color: #fff;
    letter-spacing: 2.5px;
}

.top-nav-link {
    text-decoration: none;
    color: #444; /* Màu xám đậm tinh tế */
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.top-nav-link:hover {
    color: #d4af37; /* Màu vàng đồng khi hover */
}

.main-nav .splitter {
    background: #fff;
    width: 1px;
    height: 15px;
    opacity: 0.5;
}

.main-nav {
    position: relative;
    justify-content: center;
}

/* Mega Dropdown parent */
.mega-dropdown {
    position: static !important;
}

/* Nội dung Mega Menu */
.mega-menu-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
    border-top: 1px solid #eee;
    padding-bottom: 20px;
}

/* Hiển thị khi hover */
.mega-dropdown:hover .mega-menu-content {
    display: block;
    animation: fadeInSlide 0.3s ease;
}

/* Chia cột linh hoạt */
.col-mega {
    flex: 1;
    min-width: 150px;
    padding: 0 15px;
}

/* Tiêu đề nhóm (Giống chữ đậm trong ảnh) */
.col-mega h6 {
    font-family: 'Google Sans Flex', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
    text-transform: none;
}

/* Danh sách con */
.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-list li {
    margin-bottom: 8px;
}

.mega-list li a {
    color: #666 !important;
    text-decoration: none;
    font-size: 1rem;
    padding: 0 !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    height: auto !important;
    display: block;
    transition: color 0.2s;
}

.mega-list li a:hover {
    color: #d4af37 !important; /* Màu vàng kim loại */
    background: transparent !important;
}

/* Hiệu ứng mượt */
@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Căn chỉnh lại độ rộng container cho đẹp */
.mega-menu-content .container {
    max-width: 1200px;
}

.arrow-down {
    border: solid var(--primary-bg);
    border-width: 0 1.5px 1.5px 0;
    display: inline-block;
    padding: 2.5px;
    transform: rotate(45deg);
    margin-left: 10px;
    margin-bottom: 2px;
    opacity: 0.8;
}


/* Responsive Styles */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-icon span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: 0.3s;
}

/* Style cho dropdown người dùng */
.user-dropdown {
    position: relative;
    display: hidden;
}

.user-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1001;
    border-radius: 4px;
    padding: 8px 0;
}

.user-dropdown-content a {
    color: #333;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    transition: 0.3s;
}

.user-dropdown-content a:hover {
    background-color: #f8f1e7; /* Màu kem nhẹ */
    color: #c59d5f; /* Màu vàng kim */
}

.user-dropdown:hover .user-dropdown-content {
    display: block;
}

.icon {
    width: 22px;
    height: 22px;
    fill: #444;
    transition: 0.3s;
}

.icon:hover {
    fill: #c59d5f;
}

@media (max-width: 991px) {
    .top-header {
        height: 80px;
        padding: 10px 20px;
    }

    .menu-icon {
        display: flex; /* Hiện nút hamburger trên mobile */
    }

    .main-nav {
        display: none; /* Ẩn menu chính mặc định */
        flex-direction: column;
        height: auto;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        z-index: 1001;
        background-color: var(--nav-bg);
    }

    /* Hiển thị menu khi click vào hamburger (qua checkbox) */
    #menu-toggle:checked ~ .main-nav {
        display: flex;
    }

    .child-nav {
        width: 100%;
        justify-content: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .main-nav .splitter {
        display: none; /* Ẩn vạch chia trên mobile */
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background-color: rgba(0,0,0,0.05);
        text-align: center;
    }

    .dropdown-submenu {
        position: static;
        width: 100%;
        box-shadow: none;
        background-color: rgba(0,0,0,0.05);
    }

    .top-header .icons .icon {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 576px) {
    .top-header .logo img {
        height: 40px; /* Thu nhỏ logo hơn nữa trên màn hình cực nhỏ */
    }
    .user-dropdown {
        display: none;
    }
}

/* Tùy chỉnh Offcanvas Mobile */
.mobile-nav-container {
    background-color: var(--primary-bg) !important;
    width: 300px !important;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-menu-list li a, .mobile-collapse-header {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Google Sans Flex', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mobile-collapse-header {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-submenu {
    list-style: none;
    background-color: rgba(140, 150, 136, 0.1); /* Màu nav-bg nhạt */
    padding: 0;
}

.mobile-submenu li a {
    font-size: 12px;
    font-weight: 600;
    color: #666;
}

.offcanvas-header .btn-close:focus {
    box-shadow: none;
}

/* Điều chỉnh lại icon trên Mobile */
@media (max-width: 991px) {
    .top-header {
        height: 70px;
        letter-spacing: 2px;
        
        /* Các thuộc tính để tạo hiệu ứng Sticky */
        position: -webkit-sticky; /* Hỗ trợ trình duyệt Safari */
        position: sticky;         /* Cố định phần tử */
        top: 0;                   /* Vị trí dính là sát mép trên cùng */
        z-index: 1000;            /* Đảm bảo header nằm trên các thành phần khác khi cuộn */
        background-color: rgb(248, 242, 232);   /* Thêm nền để không bị nhìn xuyên thấu nội dung bên dưới */
        box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Đổ bóng nhẹ để tách biệt với nội dung */
    }
    .top-header .logo img {
        height: 40px;
    }
}

/* #_____________________________________________________________________________________# */

:root {
    --gold-primary: #b88e4f;
    --gold-dark: #8e6d3a;
    --bg-light: #fdfbf7;
    --text-dark: #333;
}

.hero-section {
    width: 100%;
    overflow: hidden;
}

.hero-container {
    display: flex;
    height: 600px; /* Chiều cao cố định cho desktop */
    width: 100%;
}

/* Bên trái: Ảnh */
.hero-image-side {
    flex: 0 0 55%;
    position: relative;
    overflow: hidden;
}

.hero-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bên phải: Nội dung */
.hero-content-side {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    padding: 0 5%;
    text-align: center;
}

.content-inner {
    width: 100%;
}

.hero-title {
    font-size: 3rem;
    font-weight: 300;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: capitalize;
}

.divider {
    width: 60px;
    height: 2px;
    background: var(--gold-primary);
    margin: 20px auto;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Style Button giống ảnh mẫu */
.btn-custom-gold {
    display: inline-block;
    padding: 15px 45px;
    background: linear-gradient(to bottom, #c59d5f 0%, #a87f42 100%);
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #967238;
}

.btn-custom-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    filter: brightness(1.1);
}

/* Custom Swiper Buttons */
.swiper-button-next, .swiper-button-prev {
    color: var(--gold-primary) !important;
    transform: scale(1);
}

/* Responsive cho Mobile */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        height: auto;
    }
    .hero-image-side, .hero-content-side {
        flex: 0 0 100%;
    }
    .hero-content-side {
        padding: 50px 20px;
    }
    .hero-title {
        font-size: 2rem;
    }
}

/* Animation khi chuyển slide */
.swiper-slide-active .hero-title {
    animation: fadeInUp 0.8s both 0.3s;
}
.swiper-slide-active .hero-subtitle {
    animation: fadeInUp 0.8s both 0.5s;
}
.swiper-slide-active .btn-custom-gold {
    animation: fadeInUp 0.8s both 0.7s;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Container của thanh Tab */
.tabs-luxury-container {
    background-color: var(--nav-bg);
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Style cơ bản cho các nút Tab */
.tabs-luxury-container .nav-pills .nav-link {
    color: var(--primary-bg);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    padding: 12px 25px;
    margin: 0 5px;
    border-radius: 0; /* Để vuông vức hoặc bo tròn nhẹ tuỳ ý */
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    background: transparent;
}

/* Hiệu ứng Hover: Chữ sáng lên và viền mờ */
.tabs-luxury-container .nav-pills .nav-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* Hiệu ứng Active (Tab được chọn) */
.tabs-luxury-container .nav-pills .nav-link.active {
    background: transparent !important;
    color: #f4e0a1 !important; /* Màu vàng từ gradient */
}

/* Dòng kẻ Gold chạy dưới chân tab khi Active */
.tabs-luxury-container .nav-pills .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: var(--gold-gradient);
    animation: lineGrow 0.5s forwards;
}

/* Keyframes cho dòng kẻ Gold */
@keyframes lineGrow {
    from { width: 0; left: 50%; right: 50%; }
    to { width: 60%; left: 20%; right: 20%; }
}

/* Animation cho nội dung sản phẩm khi chuyển Tab */
.animated-pane {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Nút View All phong cách mới */
.btn-gold {
    background: var(--gold-gradient);
    border: none;
    color: #333;
    font-weight: 600;
    padding: 12px 40px;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: #000;
}

/* --- TABS DESIGN --- */
.nav-tabs {
    gap: 2px;
    border-bottom: 2px solid var(--gold-dark);
}

.nav-tabs .nav-link {
    color: var(--primary-bg) !important;
    border: none;
    font-family: 'Google Sans Flex', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 2px;
    padding: 10px 25px;
    position: relative;
    transition: 0.3s;
    border: 1px solid var(--gold-mid);
    background: var(--nav-bg);
}

.nav-tabs .nav-link:hover {
    font-weight: bold;
    border: 1px solid var(--gold-light)
}

.nav-tabs .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    /* background: var(--primary-bg); */
    transition: 0.3s;
    transform: translateX(-50%);
}

.nav-tabs .nav-link.active {
    color: #666 !important;
    font-weight: 700;
    background: none;
    border: 2px solid var(--gold-mid) !important;
}

.nav-tabs .nav-link.active::after {
    width: 50%;
}

.tab-pane.fade {
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(15px);
}

.tab-pane.fade.show {
    transform: translateY(0);
}

/* --- PRODUCT ITEM DESIGN --- */
.products-list {
    display: grid;
    /* Tự động chia cột: tối thiểu 300px, tối đa là 1 phần bằng nhau */
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px; /* Khoảng cách giữa các card */
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto; /* Căn giữa toàn bộ danh sách */
    align-items: start;
}

/* Product Card Style - 25Custom Aesthetic */
.product-card {
    width: 100%;
    max-width: 320px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    font-family: 'Google Sans Flex', serif;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* FIX: pointer-events: none giúp click xuyên qua các lớp trang trí này */
.product-card::before,
.product-card::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 2px solid transparent;
    box-sizing: border-box;
    pointer-events: none; /* QUAN TRỌNG: Giúp click xuyên qua lớp này */
    z-index: 10;
}

.product-card::before { top: 0; left: 0; }
.product-card::after { bottom: 0; right: 0; }

.product-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(179, 147, 89, 0.15);
}

.product-card:hover::before {
    width: 100%;
    height: 100%;
    border-top-color: #d4b07d;
    border-right-color: #d4b07d;
    transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.product-card:hover::after {
    width: 100%;
    height: 100%;
    border-bottom-color: #d4b07d;
    border-left-color: #d4b07d;
    transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
    aspect-ratio: 1 / 1;
    margin-bottom: 15px;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #d4b07d;
    color: white;
    padding: 4px 12px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 11; /* Nằm trên cả viền */
}

.product-info { padding: 10px 0; }

.product-category {
    font-family: 'Google Sans Flex', serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 5px;
}

.product-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    min-height: 50px; /* Giữ các card đều nhau */
}

.product-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.product-price {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.product-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    position: relative;
    z-index: 12; /* Đảm bảo nút nằm trên cùng để click */
}

.btn-custom {
    padding: 10px 5px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #d4b07d;
    background: transparent;
    color: #d4b07d;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    flex: 1;
    display: inline-block;
}

.btn-custom.btn-primary {
    background: #d4b07d;
    color: white;
}

.btn-custom:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: white;
}

/* Sửa lỗi layout mobile */
@media (max-width: 768px) {
    .product-title { font-size: 1rem; }
    .btn-custom { padding: 6px 10px; font-size: 11px; }
}





.about-premium {
  background-color: var(--bg-white);
  padding: 20px 0;
}

.about-logo {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.about-container {
    padding: 1rem
}

.about-wrapper {
  display: flex;
  flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-text-side {
    padding: 0px 3rem 0rem 3rem;
    max-width: 1200px;
}

.about-text-side .upper-title {
    font-size: 2.5rem;
}

@media (max-width: 992px) {
    .about-text-side {
        padding: 1rem;
        max-width: 1200px;
    }

    .about-text-side .upper-title {
        font-size: 2rem;
    }
    .nav-tabs .nav-link {
        font-size: 14px;
        padding: 5px;
    }
}

/* Ảnh style tối giản */
.about-image-side .image-wrapper {
  position: relative;
  overflow: hidden;
}

.about-image-side img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  display: block;
}

.est-tag {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255,255,255,0.9);
  padding: 12px 20px;
  font-family: "Google Sans Flex";
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-dark);
}

/* Typography nội dung */
.upper-title {
  display: block;
  font-family: "Google Sans Flex";
  font-size: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 30px;
  margin-top: 30px;
  text-align: center;
}

.display-title {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 30px;
}

.display-title span {
  display: block;
  color: var(--text-light);
}

.main-description p {
  font-family: "Google Sans Flex";
  font-size: 1.5rem;
  line-height: 1.8;
  color: #555;
  text-align: center;
}

/* Danh sách sản phẩm tối giản */
.product-services {
  margin-bottom: 50px;
}

.list-label {
  font-family: "Google Sans Flex";
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: var(--primary-dark);
  border-bottom: 1px solid var(--primary-dark);
  padding-bottom: 5px;
    display: flex;
  justify-content: center;
  text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5rem;
}

.service-item {
  display: flex;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-color);
  transition: all 0.3s ease;
  text-align: justify;
}

.service-item:hover {
  border-bottom-color: var(--primary-dark);
}

.service-item .num {
    /* 1. Đảm bảo kích thước cố định và bằng nhau */
    width: 2.4rem;
    height: 2.4rem;
    
    /* 2. Giữ hình tròn không bị méo khi nằm trong flex container */
    flex-shrink: 0; 
    
    /* 3. Bo tròn tuyệt đối */
    border-radius: 50%; 
    
    /* 4. Căn giữa nội dung hoàn hảo */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* 5. Màu sắc và font */
    font-family: 'Google Sans Flex', serif;
    font-size: 1.2rem;
    color: var(--accent-gold);
    background: var(--gold-gradient);
    
    /* 6. Loại bỏ padding-top (vì đã có flex center rồi) */
    margin-right: 40px;
}

.service-info h4 {
  font-family: 'Google Sans Flex', serif;
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--primary-dark);
}

.service-info p {
  font-family: "Google Sans Flex";
  font-size: 1.5rem;
  color: var(--text-light);
  margin: 0;
  margin-top: 1rem;
}

/* Button */
.btn-minimal {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: var(--text-dark);
  font-family: "Google Sans Flex";
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 3px;
  transition: 0.3s;
  border: 2px solid var(--text-dark);
  padding: 15px;
}

.btn-minimal:hover {
  gap: 25px;
}

.btn-minimal:hover span {
    color: var(--accent-gold);
}

.btn-minimal span {
  position: relative;
}

/* Tạo đường gạch chân */
.btn-minimal span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
  .about-wrapper { grid-template-columns: 1fr; }
  .about-image-side img { height: 450px; }
  .display-title { font-size: 2.8rem; }
  .about-text-side .upper-title {
        font-size: 2rem;
    }
    .list-label {
        font-size: 2rem;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
    .main-description p {
        font-size: 1.25rem;
    }
}

.action-area {
    display: flex;
    justify-content: center;
}

/* FORM LIÊN HỆ */

/* Contact Section Style */
.contact-section {
    padding: 80px 0 !important;
    font-family: 'Google Sans Flex', serif;
      max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header {
 margin-bottom: 70px;
}

.contact-header h2 {
    font-family: 'Google Sans Flex', serif;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
    margin-bottom: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin: 0 auto;
    text-align: center;
}

.separator {
        width: 40px;
    height: 1px;
    background: #d4b07d;
    margin: 10px auto;
    margin-bottom: 30px;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    padding: 20px;
    border: 1px solid transparent;
  background-image: linear-gradient(var(--primary-bg), var(--primary-bg)), 
                    linear-gradient(to right, #bf953f, #fcf6ba, #aa771c);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: 15px;
}

/* Bên trái: Thông tin */
.contact-info {
    background: var(--gold-gradient);
    padding: 30px
}

.contact-info h2 {
    font-family: 'Google Sans Flex', serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item .icon {
    color: white; /* Màu vàng đồng chủ đạo */
    margin-right: 15px;
    font-size: 20px;
    margin-top: 5px;
}

.info-text h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.info-text p {
    margin-bottom: 0;
    font-size: 15px;
}

/* Bên phải: Form */
.contact-form-wrapper {
    background: #fdfdfd;
    padding: 40px;
    border: 1px solid #f0f0f0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    outline: none;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-control:focus {
    border-bottom-color: #d4b07d;
    padding-left: 10px; /* Nhích nhẹ vào trong khi focus */
    transition: all 0.3s ease;
}

textarea.form-control {
    height: 100px;
    resize: none;
}

.btn-send {
    background: var(--gold-gradient);
    color: #fff;
    padding: 15px 40px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* border: 1px solid #1a1a1a; */
}

.btn-send:hover {
    background-color: transparent;
    color: #1a1a1a;
    /* letter-spacing: 4px;  */
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-info { text-align: center; }
    .info-item { justify-content: center; }
    .info-item .icon { display: none;}
}

/* COMMITMENT */
/* Section Cam Kết - Phong cách Luxury Medallion */
.commitment-centered {
    padding: 30px 0;
    /* background-color: var(--primary-bg); */
    text-align: center; /* Căn giữa toàn bộ nội dung */
}

.commitment-container {
    max-width: 1500px;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 0px;
    padding: 0 20px;
}

/* Tiêu đề chính */
.com-header {
    margin-bottom: 30px;
}

.com-header h2 {
    font-family: 'Google Sans Flex', serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.com-header .separator {
    width: 40px;
    height: 1px;
    background: #d4b07d; /* Màu vàng đồng */
    margin: 0 auto;
}

/* Grid Layout */
.com-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Item Card */
.com-item {
    padding: 30px 15px;
    transition: all 0.4s ease;
    position: relative;
}

/* Trang trí Icon */
.com-icon-box {
    width: 70px;
    height: 70px;
    border: 1px solid #d4b07d; /* Viền vàng mảnh */
    border-radius: 50%; /* Hình tròn */
    margin: 0 auto 25px; /* Căn giữa icon */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4b07d;
    font-size: 24px;
    position: relative;
    background-color: transparent;
    transition: all 0.4s ease;
}

/* Tô điểm thêm vòng tròn nhỏ bên trong khi hover */
.com-item:hover .com-icon-box {
    background-color: #d4b07d;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 176, 125, 0.2);
}

/* Nội dung chữ */
.com-item h4 {
    font-family: 'Google Sans Flex', serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.com-item .mini-line {
    width: 20px;
    height: 1px;
    background: #eee;
    margin: 0 auto 15px;
    transition: width 0.3s ease;
}

.com-item:hover .mini-line {
    width: 50px;
    background: #d4b07d;
}

.com-item p {
    font-family: 'Google Sans Flex', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .com-grid { grid-template-columns: repeat(2, 1fr); }
    .com-grid .com-item:last-child { 
        grid-column: span 2;
    max-width: 600px;   /* Giới hạn độ rộng để dòng chữ không quá dài khó đọc */
    margin: 0 auto;
    }
}
@media (max-width: 576px) {
    .com-grid { 
        grid-template-columns: 1fr; /* Danh sách các item vẫn xếp chồng 1 cột */
        gap: 15px;
    }

    .com-item {
        display: grid;
        /* Cột 1: rộng theo icon (max-content), Cột 2: chiếm hết phần còn lại (1fr) */
        grid-template-columns: max-content 1fr;
        /* Hàng 1 cho h4, Hàng 2 cho p */
        grid-template-rows: auto auto; 
        column-gap: 15px; /* Khoảng cách giữa icon và nội dung */
        row-gap: 4px;    /* Khoảng cách giữa h4 và p */
        align-items: center;
        padding: 15px;
        text-align: left;
    }

    .com-grid .com-item:last-child { 
        grid-column: span 1; 
    }

    /* Icon chiếm 2 hàng */
    .com-icon-box {
        grid-row: span 2; 
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0; /* Bỏ margin vì đã có gap của grid quản lý */
    }

    /* Tiêu đề ở hàng 1 cột 2 */
    .com-item h4 {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
        align-self: end; /* Căn h4 xuống sát đáy hàng 1 để gần p hơn */
        font-size: 1.2rem;
    }

    /* Nội dung ở hàng 2 cột 2 */
    .com-item p {
        grid-column: 2;
        grid-row: 2;
        font-size: 13px;
        line-height: 1.5;
        margin: 0;
        align-self: start; /* Căn p lên đỉnh hàng 2 */
    }

    .btn-minimal {
        font-size: 1rem;
    }

    /* Ẩn mini-line */
    .com-item .mini-line {
        display: none !important;
    }

    .service-info h4 {
        font-size: 1.2rem
    }

    .service-info p {
        font-size: 1rem;
    }
}









/* Chi tiết sản phẩm */
/* Product Detail Page Styling */
/* Product Detail Page Styling */
.product-detail-section {
    padding: 120px 0 80px;
    font-family: 'Google Sans Flex', serif;
}

.detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

.product-gallery { position: sticky; top: 100px; }
.main-image-wrapper { background-color: #f9f9f9; border: 1px solid #f0f0f0; overflow: hidden; }
.main-image-wrapper img { width: 100%; display: block; transition: transform 0.8s ease; }

.product-summary { text-align: left; }
.breadcrumb-custom { font-size: 1rem; text-transform: uppercase; color: #999; margin-bottom: 20px; }
.breadcrumb-custom a { color: #999; text-decoration: none; }
.detail-category { color: #d4b07d; font-size: 1rem; font-weight: bold; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 10px; display: block; }
.detail-title { font-family: 'Google Sans Flex', serif; font-size: 38px; color: #1a1a1a; margin-bottom: 20px; line-height: 1.2; }
.detail-price { font-size: 2rem; color: #1a1a1a; margin-bottom: 30px; font-weight: 500; }
.detail-description { font-size: 15px; color: #666; line-height: 1.8; margin-bottom: 40px; }

/* PILLS STYLING */
.variant-selection { margin-bottom: 30px; }
.variant-label { font-size: 11px; font-weight: 700; text-transform: uppercase; margin-bottom: 15px; display: block; }
.variant-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-item {
    border: 1px solid #ddd;
    padding: 10px 15px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
    background: #fff;
}
.pill-item:hover:not(.disabled) { border-color: #1a1a1a; }
.pill-item.active { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.pill-item.disabled { opacity: 0.4; background: #f9f9f9; cursor: not-allowed; text-decoration: line-through; }
.pill-item small { display: block; font-size: 9px; }

/* ACTION ROW */
.action-row { display: flex; gap: 15px; margin-top: 20px; }
.quantity-wrapper { display: flex; border: 1px solid #ddd; height: 55px; }
.qty-btn { width: 40px; background: none; border: none; cursor: pointer; font-size: 18px; }
.qty-input { width: 45px; border: none; text-align: center; font-weight: 600; }

.btn-add-cart {
    flex: 1;
    background: #1a1a1a;
    color: #fff;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s;
}
.btn-add-cart:hover:not(:disabled) { background: #d4b07d; }
.btn-add-cart:disabled { background: #ccc; cursor: not-allowed; }

.product-meta-info { margin-top: 50px; border-top: 1px solid #eee; padding-top: 30px; }
.meta-item { font-size: 13px; margin-bottom: 10px; color: #444; }
.meta-item strong { color: #1a1a1a; text-transform: uppercase; font-size: 11px; margin-right: 10px; }

@media (max-width: 992px) {
    .detail-grid { grid-template-columns: 1fr; }
    .product-gallery { position: static; }
}



















@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

:root {
  --gold-light: #f5e0a8;
  --gold-mid: #c5a059;
  --gold-dark: #8a6d3b;
  --gold-shadow: #5e4a28;
}

.btn-jewelry-3d {
  position: relative;
  padding: 8px 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
  /* 1. NỀN GRADIENT ĐA LỚP */
  background: linear-gradient(180deg, 
      var(--gold-light) 0%, 
      var(--gold-mid) 45%, 
      var(--gold-dark) 100%);
  
  /* 2. VIỀN KIM LOẠI */
  border: 1px solid #7d5d28;
  border-radius: 6px;
  
  /* 3. ĐỔ BÓNG CỰC ĐẬM VÀ SÂU */
  box-shadow: 
    /* Bóng đổ bên dưới nền (Tạo độ cao) */
    0 10px 20px rgba(0, 0, 0, 0.3), 
    0 6px 6px rgba(0, 0, 0, 0.2),
    
    /* Bóng bên trong để tạo độ vát (Bevel) */
    inset 0 2px 0 rgba(255, 255, 255, 0.6),  /* Cạnh trên sáng rực */
    inset 0 -3px 5px rgba(0, 0, 0, 0.3),     /* Cạnh dưới tối sâu */
    inset 0 0 10px rgba(0, 0, 0, 0.1);       /* Độ bóng nhẹ bề mặt */

  /* 4. CHỮ SANG TRỌNG */
  font-family: 'Google Sans Flex', serif;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);

  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* HIỆU ỨNG KHI DI CHUỘT VÀO */
.btn-jewelry-3d:hover {
  transform: translateY(-2px); /* Nhích lên trên */
  filter: brightness(1.1);
  box-shadow: 
    0 15px 30px rgba(0, 0, 0, 0.4), /* Bóng giãn ra xa hơn */
    0 8px 8px rgba(0, 0, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.7);
}

/* HIỆU ỨNG KHI NHẤN NÚT */
.btn-jewelry-3d:active {
  transform: translateY(2px); /* Ấn xuống */
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.3),
    inset 0 4px 6px rgba(0, 0, 0, 0.4); /* Bóng trong đậm hơn tạo cảm giác nút bị lõm xuống */
}

/* 2. HIỆU ỨNG HẠT VÀNG LẤP LÁNH (BLINK BLINK) */
.sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sparkles::before, .sparkles::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Tạo các hạt trắng/vàng ở vị trí ngẫu nhiên bằng radial-gradient */
  background-image: 
    radial-gradient(circle, #fff 1.5px, transparent 1.5px),
    radial-gradient(circle, #f5e0a8 1px, transparent 1px),
    radial-gradient(circle, #fff 1.2px, transparent 1.2px),
    radial-gradient(circle, #f5e0a8 1.5px, transparent 1.5px),
    radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 40% 40%, 30% 60%, 50% 30%, 25% 45%, 60% 50%;
  background-position: 10% 20%, 80% 30%, 40% 80%, 90% 90%, 20% 70%;
  background-repeat: repeat;
  animation: blink-random 3s infinite alternate ease-in-out;
}

.sparkles::after {
  /* Lớp thứ 2 lệch thời gian và vị trí để trông tự nhiên hơn */
  background-position: 35% 15%, 65% 45%, 15% 85%, 75% 10%, 50% 50%;
  animation-delay: 1.5s;
  opacity: 0.5;
}

@keyframes blink-random {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

/* 3. CHỮ SANG TRỌNG */
.text {
  position: relative;
  z-index: 2;
  color: white;
  font-family: 'Google Sans Flex', serif;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 5px; /* Giãn chữ rất rộng theo ảnh mẫu */
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 4. HIỆU ỨNG NHẤN NÚT */
.btn-jewelry-3d:active {
  transform: translateY(2px);
  box-shadow: 
    0 2px 5px rgba(0, 0, 0, 0.2),
    inset 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Lớp phủ nhám nhẹ để giống kim loại thật */
.btn-jewelry-3d::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
  opacity: 0.2;
  mix-blend-mode: overlay;
  z-index: 1;
}











/* Định dạng nút chính */
.zalo-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    z-index: 9999;
}

.zalo-icon {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #0084FF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    animation: ring-vibrate 2s infinite ease-in-out;
}

.zalo-icon img {
    width: 25px;
    height: 25px;
}

/* Hiệu ứng sóng (Wave) */
.ring-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #0084FF;
    border-radius: 50%;
    opacity: 0;
    animation: wave-expand 2s infinite linear;
}

.ring-wave.delay {
    animation-delay: 1s;
}

/* Animation rung (Ring) */
@keyframes ring-vibrate {
    0% { transform: scale(1); }
    10% { transform: scale(1.1) rotate(5deg); }
    20% { transform: scale(1.1) rotate(-5deg); }
    30% { transform: scale(1.1) rotate(5deg); }
    40% { transform: scale(1); }
    100% { transform: scale(1); }
}

/* Animation tỏa sóng (Wave) */
@keyframes wave-expand {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* Tự động ẩn trên màn hình quá nhỏ nếu cần, hoặc chỉnh lại kích thước */
@media (max-width: 768px) {
    .zalo-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}


/* Styling cho trang Chính sách */
.policy-container {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    min-height: 60vh;
}

.policy-card {
    background: rgba(255, 255, 255, 0.8); /* Nền trắng trong suốt để thấy bg đẹp phía sau */
    max-width: 800px;
    width: 100%;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.policy-title {
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.policy-content {
    line-height: 1.8;
    color: #333;
}

.policy-section {
    margin-top: 30px;
}

.policy-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    border-left: 4px solid #000;
    padding-left: 15px;
    text-transform: uppercase;
}

.policy-section ul {
    list-style: none;
    padding-left: 20px;
}

.policy-section ul li {
    position: relative;
    margin-bottom: 8px;
}

/* Thêm icon dấu chấm tùy chỉnh cho sang */
.policy-section ul li::before {
    content: "•";
    color: #000;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}

.separator {
    border: none;
    border-top: 1px solid var(--gold-mid);
    margin: auto;
}

.note-text {
    font-style: italic;
    text-align: center;
    font-size: 0.95em;
}

.note-text a {
    color: var(--nav-bg);
    text-decoration: none;
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .policy-card {
        padding: 25px;
    }
    .policy-title {
        font-size: 22px;
    }
}