/* ==========================================================================
   1. GLOBAL VARIABLES (:root)
   ========================================================================== */
:root {
    /* Colors */
    --primary: #181512;
    --on-primary: #ffffff;
    --background: #fcf9f5;
    --on-background: #1c1c1a;
    --surface: #fcf9f5;
    --on-surface: #1c1c1a;
    --surface-variant: #e5e2de;
    --on-surface-variant: #4d4540;
    --surface-container: #f0ede9;
    --surface-container-low: #f6f3ef;
    --surface-container-lowest: #ffffff;
    --surface-tint: #635d5a;
    --primary-container: #2d2926;
    --secondary: #735a3a;
    --secondary-fixed-dim: #e2c19b;
    --outline: #7e756f;
    --outline-variant: #cfc4bd;
    --surface-dim: #dcdad6;

    /* Spacing */
    --khoang-cach-cot: 24px;
    --le-mobile: 20px;
    --don-vi-co-ban: 8px;
    --ngan-cach-phan: 120px;
    --le-desktop: 80px;

    /* Typography */
    --font-family: 'Be Vietnam Pro', sans-serif;
    --font-main: 'Be Vietnam Pro', sans-serif;
}

/* ==========================================================================
   2. RESET / BASE & TYPOGRAPHY UTILITIES
   ========================================================================== */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--on-background);
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

::selection {
    background-color: var(--secondary);
    color: var(--on-primary);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--surface);
}

::-webkit-scrollbar-thumb {
    background: var(--outline-variant);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--outline);
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* Typography Base Elements */
h1,
.h1 {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 300;
}

h2,
.h2 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 300;
}

h3,
.h3 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 400;
}

h4,
.h4 {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Typography Utility Classes & Aliases */
.text-body,
.text-body-main,
.font-noi-dung-chinh,
.text-noi-dung-chinh {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
}

.text-caption,
.font-chu-thich,
.text-chu-thich {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
}

.text-button,
.text-nhan-nut,
.font-nhan-nut {
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: 600;
    text-transform: uppercase;
}

.text-brand {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.2em;
}

.font-tieu-de-lon,
.text-tieu-de-lon {
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 300;
}

.font-tieu-de-lon-mobile,
.text-tieu-de-lon-mobile {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    font-weight: 300;
}

.font-tieu-de-vua,
.text-tieu-de-vua {
    font-size: 28px;
    line-height: 1.4;
    font-weight: 300;
}

.font-tieu-de-nho,
.text-tieu-de-nho {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-weight: 400;
}

/* Custom Colors & Utilities */
.text-primary,
.text-primary-color,
.text-primary-custom {
    color: var(--primary) !important;
}

.text-on-primary,
.text-on-primary-custom {
    color: var(--on-primary) !important;
}

.text-on-surface {
    color: var(--on-surface) !important;
}

.text-on-surface-variant,
.text-on-surface-variant-custom {
    color: var(--on-surface-variant) !important;
}

.text-outline-custom {
    color: var(--outline) !important;
}

.text-secondary-custom {
    color: var(--secondary) !important;
}

.text-surface-tint {
    color: var(--surface-tint) !important;
}

.bg-background {
    background-color: var(--background) !important;
}

.bg-primary,
.bg-primary-color,
.bg-primary-custom {
    background-color: var(--primary) !important;
}

.bg-primary-container {
    background-color: var(--primary-container) !important;
}

.bg-surface-custom {
    background-color: var(--surface) !important;
}

.bg-surface-variant {
    background-color: var(--surface-variant) !important;
}

.bg-surface-container {
    background-color: var(--surface-container) !important;
}

.bg-surface-container-low,
.bg-surface-container-low-custom {
    background-color: var(--surface-container-low) !important;
}

.bg-surface-container-lowest,
.bg-surface-container-lowest-custom {
    background-color: var(--surface-container-lowest) !important;
}

.border-outline-variant {
    border-color: rgba(207, 196, 189, 0.3) !important;
}

.border-primary,
.border-primary-custom {
    border-color: var(--primary) !important;
}

.border-on-primary-custom {
    border-color: var(--on-primary) !important;
}

/* Custom Spacing & Layout Utilities */
.py-160 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.mb-160 {
    margin-bottom: 100px;
}

.py-section {
    padding-top: 120px;
    padding-bottom: 120px;
}

.mb-section {
    margin-bottom: 120px;
}

.gap-grid {
    gap: 24px;
}

.px-le-mobile {
    padding-left: var(--le-mobile);
    padding-right: var(--le-mobile);
}

.py-ngan-cach-phan {
    padding-top: var(--ngan-cach-phan);
    padding-bottom: var(--ngan-cach-phan);
}

.mb-khoang-cach-cot {
    margin-bottom: var(--khoang-cach-cot);
}

.mt-khoang-cach-cot {
    margin-top: var(--khoang-cach-cot);
}

.mb-don-vi-co-ban {
    margin-bottom: var(--don-vi-co-ban);
}

/* Utility aspect ratios */
.aspect-4-5 {
    aspect-ratio: 4 / 5;
}

.aspect-3-4 {
    aspect-ratio: 3 / 4;
}

/* ==========================================================================
   3. COMMON COMPONENTS
   ========================================================================== */
/* Header & Navbar */
.navbar-custom {
    padding: 10px 1.25rem;
    border-bottom: 1px solid rgba(207, 196, 189, 0.3);
    background-color: #fff;
    backdrop-filter: blur(10px);
    z-index: 1030;
    transition: all 0.3s;
}

.navbar-custom .navbar-nav {
    gap: 2.5rem;
}

.navbar-brand {
    font-size: 24px;
    letter-spacing: 0.2em;
    color: var(--primary);
}

.navbar-brand img {
    max-width: 200px;
}

@media screen and (max-width:767px) {
    .navbar-brand img {
        max-width: 120px;
    }
}

.nav-link-custom {
    color: var(--on-surface-variant) !important;
    font-family: var(--font-family);
    font-size: 12px;
    letter-spacing: 0.15em;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    padding-bottom: 0.25rem !important;
    transition: color 0.5s, border-color 0.5s;
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--primary) !important;
    border-bottom-color: var(--primary);
}

.icon-btn {
    color: var(--primary);
    cursor: pointer;
    transition: color 0.5s;
}

.icon-btn:hover {
    color: var(--secondary);
}

/* Footer */
.footer,
.footer-custom {
    background-color: var(--primary);
    color: var(--on-primary);
    padding: 5rem 1.25rem 2rem 1.25rem;
    font-family: var(--font-family);
}

.footer-heading {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--on-primary);
    margin-bottom: 1.5rem;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.footer-contact-list li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-contact-list li span.material-symbols-outlined {
    font-size: 18px;
    color: var(--secondary-fixed-dim);
    margin-top: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-newsletter-form {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-newsletter-input {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    width: 100%;
    padding: 0.25rem 0;
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s;
}

.footer-newsletter-btn:hover {
    color: var(--secondary-fixed-dim);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-socials a:hover {
    background-color: var(--on-primary);
    color: var(--primary);
    border-color: var(--on-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 4rem;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #ffffff;
}

.back-to-top-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: none;
    border: none;
    transition: color 0.3s;
}

.back-to-top-btn:hover {
    color: #ffffff;
}

/* Product Cards */
.product-card {
    margin-bottom: 4rem;
    cursor: pointer;
}

.product-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background-color: var(--surface-container);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease-in-out;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(24, 21, 18, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: background-color 0.3s, opacity 0.3s;
}

.product-card:hover .product-overlay {
    background-color: rgba(24, 21, 18, 0.05);
    opacity: 1;
}

.product-img-wrapper {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    background-color: var(--surface-container-low);
}

.product-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.9;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
    opacity: 1;
}

.product-card .img-wrapper {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    background-color: var(--surface-container);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.product-card .img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease-out;
}

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

/* News Component */
.news-card {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-img-wrapper {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.75rem;
    background-color: var(--surface-container-low);
}

.news-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-img-wrapper img {
    transform: scale(1.05);
}

.news-meta {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--on-surface-variant);
    opacity: 0.75;
    margin-bottom: 0.35rem;
}

.news-title {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 0.4rem;
    letter-spacing: 0.05em;
}

.news-title a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.news-title a:hover {
    color: var(--secondary);
    text-decoration: none;
}

.news-excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: var(--on-surface-variant);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.6rem;
}

.news-more {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: auto;
    transition: color 0.3s;
}

.news-more:hover {
    color: var(--secondary);
    text-decoration: none;
}

/* Buttons */
.btn-custom-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--on-primary);
    background-color: var(--primary-container);
    padding: 1rem 2rem;
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 12px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.btn-custom-primary:hover {
    background-color: var(--secondary);
    color: var(--on-secondary, #ffffff);
    text-decoration: none;
}

.btn-custom-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary);
    background-color: transparent;
    border: 1px solid var(--primary);
    padding: 1rem 2rem;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-custom-outline:hover {
    background-color: var(--primary-container);
    color: var(--on-primary);
    text-decoration: none;
}

.btn-outline-custom {
    background: transparent;
    border: 1px solid var(--on-primary);
    color: var(--on-primary);
    padding: 16px 40px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.5s;
    border-radius: 0;
}

.btn-outline-custom:hover {
    background: var(--on-primary);
    color: var(--primary);
}

.explore-btn {
    background-color: var(--background);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(24, 21, 18, 0.2);
}

.btn-load-more {
    background-color: var(--background);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 1rem 2rem;
    transition: background-color 0.3s, color 0.3s;
}

.btn-load-more:hover {
    background-color: #2D2926;
    color: white;
}

.filter-btn {
    background: none;
    border: none;
    padding: 0;
    margin-right: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--on-surface-variant);
    font-size: 12px;
    letter-spacing: 0.15em;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
}

.filter-btn.active {
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
    padding-bottom: 0.25rem;
}

.filter-btn:hover {
    color: var(--primary);
}

/* Pagination Styling */
.navigation.pagination {
    width: 100%;
}

.pagination-custom .nav-links,
.navigation.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.navigation.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid var(--outline-variant);
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.navigation.pagination .page-numbers.current,
.navigation.pagination .page-numbers:hover {
    background-color: var(--primary);
    color: var(--on-primary);
    border-color: var(--primary);
}

/* Animations & Transitions */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.is-visible,
.reveal.visible,
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

/* ==========================================================================
   4. HOME PAGE STYLES (home.php)
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-subtitle::before {
    content: '';
    display: block;
    width: 48px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 auto 24px auto;
}

.lifestyle-section {
    position: relative;
    width: 100%;
    height: 85vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 64px 80px;
    margin-bottom: 100px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.lifestyle-card {
    background-color: rgba(252, 249, 245, 0.95);
    backdrop-filter: blur(10px);
    padding: 48px;
    border: 1px solid rgba(207, 196, 189, 0.3);
    max-width: 400px;
    z-index: 10;
}

.quote-block {
    border-left: 1px solid rgba(24, 21, 18, 0.3);
    padding-left: 32px;
    padding-top: 8px;
    padding-bottom: 8px;
    position: relative;
}

.quote-icon {
    position: absolute;
    left: -16px;
    top: -16px;
    font-size: 36px;
    color: rgba(207, 196, 189, 0.3);
}

.drawing-card {
    background-color: var(--surface);
    padding: 40px;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(207, 196, 189, 0.2);
    transition: background-color 0.5s;
    cursor: pointer;
}

.drawing-card:hover {
    background-color: var(--surface-container-low);
}

.drawing-card img {
    width: 75%;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.5s;
}

.drawing-card:hover img {
    opacity: 1;
}

/* ==========================================================================
   5. ARCHIVE PRODUCT STYLES (archive-san-pham.php)
   ========================================================================== */
.main-content {
    padding-top: 3.5rem;
    padding-bottom: 5rem;
    flex-grow: 1;
}

/* Header Cart Notification Dot */
.header-cart-dot {
    position: absolute;
    top: 2px;
    right: 0px;
    width: 10px;
    height: 10px;
    background-color: #e74c3c;
    border: 2px solid #ffffff;
    border-radius: 50%;
    z-index: 5;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(231, 76, 60, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

.gtranslate_wrapper a {
    margin: 0px 5px;
}

/* ==========================================================================
   6. SINGLE PRODUCT STYLES (single-san-pham.php)
   ========================================================================== */
/* Single Product Gallery Thumbnails & Material Slider */
.product-thumb-box {
    border-color: var(--outline-variant);
    border-radius: 2px;
    transition: all 0.3s;
}

.product-thumb-box.active-thumb,
.product-thumb-box:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 1px var(--primary);
}

.material-slider {
    position: relative;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    padding-bottom: 40px;
}

.material-slider .slick-slide {
    padding: 0 0.5rem;
    height: auto;
}

.material-slider .slick-slide>div {
    height: 100%;
}

.material-slider .slick-prev,
.material-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-100%);
    width: 40px;
    height: 40px;
    z-index: 10;
    background: #ffffff;
    border: 1px solid var(--outline-variant);
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 0 !important;
    line-height: 0 !important;
    color: transparent !important;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.material-slider .slick-prev:hover,
.material-slider .slick-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.material-slider .slick-prev:before,
.material-slider .slick-next:before {
    font-family: 'Material Symbols Outlined' !important;
    font-size: 20px !important;
    color: var(--primary);
    opacity: 1;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

.material-slider .slick-prev:before {
    content: 'chevron_left' !important;
}

.material-slider .slick-next:before {
    content: 'chevron_right' !important;
}

.material-slider .slick-prev:hover:before,
.material-slider .slick-next:hover:before {
    color: #ffffff;
}

.material-slider .slick-prev {
    left: -15px;
}

.material-slider .slick-next {
    right: -15px;
}

.material-slider .slick-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Slick Dots Styling */
.material-slider .slick-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.material-slider .slick-dots li {
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    list-style: none !important;
}

.material-slider .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    background-color: var(--outline-variant);
    border: none;
    font-size: 0 !important;
    line-height: 0 !important;
    color: transparent !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.material-slider .slick-dots li button:before {
    display: none !important;
}

.material-slider .slick-dots li.slick-active button {
    background-color: var(--primary);
    width: 24px;
    border-radius: 10px;
}

.hero-img-container {
    position: relative;
    min-height: 500px;
    height: 100%;
}

.object-cover-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   7. COLLECTION STYLES (bst.php)
   ========================================================================== */
.img-container {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s;
}

.img-container:hover img {
    transform: scale(1.05);
}

.divider {
    border-top: 1px solid var(--outline-variant);
}

.editorial-quote {
    padding: 160px var(--le-mobile);
    border-top: 1px solid var(--outline-variant);
}

/* ==========================================================================
   8. RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 767.98px) {

    h1,
    .h1,
    h2,
    .h2 {
        font-size: 27px;
    }

    .font-tieu-de-lon,
    .text-tieu-de-lon,
    .font-tieu-de-lon-mobile,
    .text-tieu-de-lon-mobile {
        font-size: 31px !important;
    }

    .font-tieu-de-vua,
    .text-tieu-de-vua {
        font-size: 23px !important;
    }

    /* Mobile Navigation Dropdown */
    .navbar-custom {
        flex-wrap: wrap;
    }

    .navbar-custom .navbar-collapse {
        flex-basis: 100%;
        width: 100%;
        display: none;
        background-color: #ffffff;
        padding: 1.25rem 1rem;
        margin-top: 0.75rem;
        border-top: 1px solid rgba(207, 196, 189, 0.3);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .navbar-custom .navbar-collapse.show {
        display: block !important;
    }

    .navbar-custom .navbar-nav {
        gap: 0.75rem !important;
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-custom .nav-link-custom {
        padding: 0.5rem 0 !important;
        font-size: 13px;
        display: block;
        width: 100%;
    }

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

    .lifestyle-section {
        padding: 64px 24px;
        margin-bottom: 60px;
    }

    .hero-section,
    .mb-160 {
        margin-bottom: 60px;
    }

    .py-160 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .img-container-alt {
        aspect-ratio: 3 / 4;
    }

    .footer,
    .footer-custom {
        padding: 20px 0px;
    }

    .material-slider .slick-next {
        right: -5px;
    }

    .material-slider .slick-prev {
        left: -5px;
    }

    .the_content p {
        text-align: justify;
    }
}

@media (min-width: 768px) {
    .navbar-custom {
        padding: 10px 5rem;
    }

    .footer,
    .footer-custom {
        padding-left: 80px;
        padding-right: 80px;
    }

    .gap-grid {
        gap: 80px;
    }

    .px-le-desktop {
        padding-left: var(--le-desktop);
        padding-right: var(--le-desktop);
    }

    .gap-le-desktop {
        gap: var(--le-desktop);
    }

    .mb-le-desktop {
        margin-bottom: var(--le-desktop);
    }

    .img-container-alt {
        aspect-ratio: 4 / 3;
    }

    .main-content {
        padding-top: 5rem;
        padding-bottom: 7.5rem;
    }

    .editorial-quote {
        padding: 160px var(--le-desktop);
    }
}

/* ==========================================================================
   9. STANDARD PAGE CONTENT STYLES (page.php / the_content)
   ========================================================================== */
.page-entry-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--on-surface-variant);
}

.page-entry-content p {
    margin-bottom: 1.5rem;
}

.page-entry-content h2 {
    font-size: 24px;
    line-height: 1.4;
    color: var(--primary);
    margin-top: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.page-entry-content h3 {
    font-size: 20px;
    line-height: 1.4;
    color: var(--primary);
    margin-top: 1.75rem;
    margin-bottom: 0.85rem;
    font-weight: 500;
}

.page-entry-content h4,
.page-entry-content h5,
.page-entry-content h6 {
    font-size: 17px;
    line-height: 1.4;
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.page-entry-content ul,
.page-entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.page-entry-content ul li,
.page-entry-content ol li {
    margin-bottom: 0.5rem;
}

.page-entry-content blockquote {
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    background-color: var(--surface-container-low);
    border-left: 4px solid var(--primary);
    font-style: italic;
    color: var(--primary);
    border-radius: 0 4px 4px 0;
}

.page-entry-content blockquote p:last-child {
    margin-bottom: 0;
}

.page-entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.page-entry-content table {
    width: 100%;
    margin-bottom: 1.75rem;
    border-collapse: collapse;
}

.page-entry-content table th,
.page-entry-content table td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--outline-variant);
    font-size: 14px;
}

.page-entry-content table th {
    background-color: var(--surface-container-low);
    color: var(--primary);
    font-weight: 600;
}

.page-entry-content a {
    color: var(--primary);
    text-decoration: underline;
    transition: opacity 0.3s;
}

.page-entry-content a:hover {
    opacity: 0.8;
}

/* ==========================================================================
   10. CONTACT INFO CARD LUXURY STYLES (contact.php)
   ========================================================================== */
.contact-info-card {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.contact-info-card .card-top-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #d4af37 100%);
}

.contact-info-item {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    border-color: var(--primary) !important;
}

.contact-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--surface-container-low);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--outline-variant);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.contact-info-item:hover .contact-icon-box {
    background-color: var(--primary);
    color: #ffffff;
    transform: scale(1.05);
}