/**
 * Phong Vũ – Custom Stylesheet
 *
 * Premium, mobile-first responsive CSS for the
 * Mành Tre Trúc Cao Cấp Flatsome child theme.
 * Matches the reference layout image exactly.
 *
 * @package PhongVu
 * @version 1.1.0
 */

/* ==========================================================================
   0. CSS Custom Properties & Design Tokens
   ========================================================================== */

:root {
    /* ── Color Palette ─────────────────────────────────────────────────── */
    --color-primary:        #3F4E40; /* Forest Green / Dark Olive */
    --color-primary-rgb:    63, 78, 64;
    --color-primary-light:  #536454;
    --color-primary-dark:   #2A362B;
    --color-secondary:      #8B5E34; /* Bronze / Dark Copper */
    --color-gold:           #C8A165; /* Bamboo Gold */
    --color-cream:          #F6F4EB; /* Soft Cream / Beige */
    --color-cream-light:    #FAF9F6; /* Pure Cream */
    --color-white:          #FFFFFF;
    --color-dark:           #2E231E; /* Deep Charcoal Brown */
    --color-body:           #555555; /* Neutral Dark Grey */
    --color-muted:          #8A9A8B; /* Sage Grey */
    --color-border:         #E5DFD3; /* Warm Beige Border */
    --color-zalo:           #0068FF;

    /* ── Typography ─────────────────────────────────────────────────────── */
    --font-heading:  'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:     'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, sans-serif;

    /* ── Spacing ─────────────────────────────────────────────────────────── */
    --space-xs:   6px;
    --space-sm:   12px;
    --space-md:   20px;
    --space-lg:   30px;
    --space-xl:   45px;
    --space-2xl:  70px;

    /* ── Borders & Radii ─────────────────────────────────────────────────── */
    --radius-sm:    6px;
    --radius-md:    10px;
    --radius-lg:    16px;
    --radius-pill:  50px;

    /* ── Shadows ──────────────────────────────────────────────────────────── */
    --shadow-sm:    0 2px 6px rgba(0, 0, 0, 0.05);
    --shadow-card:  0 8px 24px rgba(46, 35, 30, 0.06);
    --shadow-lg:    0 15px 40px rgba(63, 78, 64, 0.12);
}

/* ==========================================================================
   1. Base / Reset & Typography
   ========================================================================== */

html {
    scroll-behavior: smooth;
    font-size: 15px; /* Base size */
}

body {
    font-family: var(--font-body);
    color: var(--color-body);
    background-color: var(--color-cream-light);
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 15px 0;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.25s ease, background-color 0.25s ease;
}

a:hover {
    color: var(--color-gold);
}

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

.section-padding {
    padding: var(--space-2xl) 0;
}

/* ==========================================================================
   2. Components & Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white) !important;
    border-color: var(--color-secondary);
}

.btn-secondary:hover {
    background-color: #734e2a;
    border-color: #734e2a;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
}

.btn-white-outline {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-white-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary) !important;
}

/* Section Header Separator */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title {
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-divider {
    display: inline-block;
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    margin-top: 10px;
}

/* ==========================================================================
   3. Site Header (Navigation)
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(63, 78, 64, 0.95);
    border-bottom: 1px solid rgba(229, 223, 211, 0.15);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.header-scrolled {
    padding: 10px 0;
    background-color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo-icon {
    width: 32px;
    height: 32px;
}

.site-logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--color-white);
    letter-spacing: 1px;
}

/* Nav Menu */
.main-nav {
    display: none; /* Mobile first */
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a {
    color: var(--color-gold);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item > a::after {
    width: 100%;
}

/* Header CTA */
.header-cta {
    display: none; /* Hide on mobile */
    align-items: center;
    gap: 15px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    background-color: var(--color-secondary);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
}

.header-phone:hover {
    background-color: var(--color-white);
    color: var(--color-secondary) !important;
}

.header-quote-btn {
    padding: 10px 20px !important;
    background-color: transparent !important;
    border: 1px solid var(--color-white) !important;
    color: var(--color-white) !important;
}

.header-quote-btn:hover {
    background-color: var(--color-white) !important;
    color: var(--color-primary) !important;
}

/* Hamburger menu toggle */
.mobile-menu-toggle {
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 5px;
}

/* ==========================================================================
   4. Hero Section
   ========================================================================== */

.section-hero {
    padding-top: 130px; /* Offset header */
    padding-bottom: var(--space-xl);
    background-color: var(--color-cream);
    overflow: hidden;
    position: relative;
}

.section-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--color-muted) 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.15;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(63, 78, 64, 0.08);
    border: 1px solid rgba(63, 78, 64, 0.15);
    color: var(--color-primary);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: var(--space-sm);
}

.hero-title .title-green {
    color: var(--color-primary);
}

.hero-title .title-brown {
    color: var(--color-secondary);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-primary-light);
    margin-bottom: 12px;
}

.hero-description {
    color: var(--color-body);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: var(--space-xl);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Feature Highlights */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-md);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-feature-icon {
    font-size: 1.5rem;
}

.hero-feature-text {
    display: flex;
    flex-direction: column;
}

.hero-feature-text strong {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-primary-dark);
}

.hero-feature-text span {
    font-size: 0.8rem;
    color: var(--color-body);
}

/* Right Balcony Image */
.hero-image-container {
    display: flex;
    justify-content: center;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 100%;
}

.hero-img-display {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 500px;
}

/* ==========================================================================
   5. Products Section (Sản Phẩm Nổi Bật)
   ========================================================================== */

.section-products {
    background-color: var(--color-cream-light);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.product-card {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 1px solid rgba(229, 223, 211, 0.3);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(46, 35, 30, 0.1);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: var(--color-cream);
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.4);
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(63, 78, 64, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-card-overlay {
    opacity: 1;
}

.product-card-icon {
    background-color: var(--color-primary);
    color: var(--color-white);
    width: 55px;
    height: 55px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.product-card-body {
    padding: var(--space-md);
    text-align: center;
}

.product-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
}

.product-card-cta {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-gold);
}

/* ==========================================================================
   6. About Section (Giới Thiệu)
   ========================================================================== */

.section-about {
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: var(--space-lg);
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--color-primary-dark);
}

.about-feature-item-icon {
    color: var(--color-gold);
    font-weight: bold;
}

/* Decorative Bamboo Stem */
.about-bamboo-bg {
    display: none; /* Hide on mobile */
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 800'%3E%3Cpath d='M40 0h5v150h-5zm0 160h5v150h-5zm0 320h5v150h-5zm0 160h5v150h-5z' fill='%23739072' opacity='0.15'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    z-index: 1;
}

/* ==========================================================================
   7. Projects Section (Bộ Sưu Tập Công Trình)
   ========================================================================== */

.section-projects {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.section-projects .section-title {
    color: var(--color-white);
}

.section-projects .section-label {
    color: var(--color-gold);
}

.projects-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: var(--space-xl);
}

.projects-viewall {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.projects-viewall:hover {
    background-color: var(--color-white);
    color: var(--color-primary) !important;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.project-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: scale(1.03);
}

.project-card-image {
    width: 100%;
    height: 100%;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(46, 35, 30, 0.8) 0%, rgba(46, 35, 30, 0) 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 15px;
}

.project-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   8. Benefits Section (Vì Sao Chọn Chúng Tôi?)
   ========================================================================== */

.section-benefits {
    background-color: var(--color-cream);
}

.benefits-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 120px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-item:hover {
    transform: translateY(-6px);
}

/* Circle Icon */
.benefit-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--color-white) 0%, #f5f0e6 100%);
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
    box-shadow: 0 4px 15px rgba(90, 62, 43, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.benefit-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1.5px dashed var(--color-gold);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.6s ease;
    transform: rotate(0deg);
}

.benefit-item:hover .benefit-icon-wrapper {
    background: linear-gradient(145deg, var(--color-gold) 0%, var(--color-primary) 100%);
    border-color: var(--color-gold);
    box-shadow: 0 8px 25px rgba(200, 161, 101, 0.3);
    transform: scale(1.05);
}

.benefit-item:hover .benefit-icon-wrapper::after {
    opacity: 1;
    transform: rotate(45deg);
}

.benefit-icon {
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.4s ease;
}

.benefit-item:hover .benefit-icon {
    color: var(--color-white);
}

/* Title */
.benefit-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin: 0;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* ==========================================================================
   10. Process Section (Quy Trình Làm Việc)
   ========================================================================== */

.section-process {
    background-color: var(--color-cream-light);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.process-step {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
    border: 1px solid var(--color-border);
    position: relative;
}

.process-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background-color: var(--color-gold);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.process-step-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.process-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin: 0;
}

.process-connector {
    display: none; /* Hide on mobile */
    font-size: 1.5rem;
    color: var(--color-gold);
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   11. Testimonials Section (Khách Hàng Nói Gì)
   ========================================================================== */

.section-testimonials {
    background-color: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-cream-light);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    overflow: hidden;
}

.testimonial-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin: 0;
}

.testimonial-info {
    font-size: 0.8rem;
    color: var(--color-muted);
}

.testimonial-stars {
    margin-bottom: var(--space-sm);
}

.testimonial-quote {
    font-family: var(--font-body);
    font-style: italic;
    color: var(--color-body);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.testimonial-card-project-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
}

/* ==========================================================================
   12. CTA Section
   ========================================================================== */

.section-cta {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-xl) 0;
    text-align: center;
}

.cta-title {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 8px;
}

.cta-subtitle {
    font-family: var(--font-body);
    color: var(--color-cream);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.cta-btn-phone,
.cta-btn-zalo {
    background-color: var(--color-white);
    color: var(--color-primary) !important;
    display: inline-flex;
    flex-direction: column;
    padding: 10px 25px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
}

.cta-btn-phone:hover,
.cta-btn-zalo:hover {
    background-color: var(--color-cream);
    transform: translateY(-2px);
}

.cta-btn-phone strong,
.cta-btn-zalo strong {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
}

.cta-btn-phone span,
.cta-btn-zalo span {
    font-size: 0.75rem;
    color: var(--color-muted);
}

/* ==========================================================================
   13. Site Footer
   ========================================================================== */

.site-footer {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-xl) 0 20px 0;
    font-family: var(--font-body);
    font-size: 0.85rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-gold);
}

.footer-desc {
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background-color: var(--color-gold);
    color: var(--color-dark) !important;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-item svg {
    color: var(--color-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-phone {
    background-color: var(--color-secondary);
}

.floating-zalo {
    background-color: var(--color-zalo);
}

.back-to-top {
    background-color: var(--color-primary-dark);
    display: none;
}

/* ==========================================================================
   14. Media Queries (Responsiveness)
   ========================================================================== */

/* Tablet and larger screen widths */
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }

    .section-padding {
        padding: var(--space-xl) 0;
    }

    .site-header {
        padding: 20px 0;
    }

    .main-nav {
        display: block;
    }

    .header-cta {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

    /* Hero */
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: var(--space-xl);
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-features {
        flex-direction: row;
        justify-content: space-between;
    }

    /* Product Grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About */
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-bamboo-bg {
        display: block;
    }

    /* Projects Grid */
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Benefits */
    .benefits-grid {
        gap: var(--space-lg);
    }



    /* Process */
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop and larger screens */
@media (min-width: 992px) {
    .section-padding {
        padding: var(--space-2xl) 0;
    }

    /* Product Grid */
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Projects Grid */
    .projects-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    /* Benefits Grid */
    .benefits-grid {
        gap: var(--space-xl);
    }



    /* Process Grid */
    .process-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================================================== 
   15. Reference artwork alignment (homepage.png)
   ========================================================================== */

:root {
    --radius-full: 999px;
    --art-green: #244d31;
    --art-green-dark: #173c27;
    --art-brown: #6b3015;
    --art-gold: #b9792d;
    --art-cream: #fbf7ec;
}

body {
    overflow-x: hidden;
    background: var(--art-cream);
    color: #3d352d;
}

.container { max-width: 1160px; }
.section-padding { padding: 34px 0; }
.section-header { margin-bottom: 22px; }
.section-label { display: none; }
.section-title {
    color: #274a32;
    font-size: 25px;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: .2px;
    margin-bottom: 4px;
}
.section-divider {
    width: 105px;
    height: 1px;
    background: #c79650;
    position: relative;
    margin-top: 7px;
}
.section-divider::after {
    content: '❧';
    position: absolute;
    left: 50%;
    top: 50%;
    padding: 0 7px;
    transform: translate(-50%, -52%);
    color: #7a934f;
    background: inherit;
    font-size: 15px;
}
.btn {
    border-radius: 7px;
    padding: 10px 19px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .2px;
}

/* Header */
.site-header {
    position: fixed;
    padding: 0;
    min-height: 72px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #315d39, #173f28);
    border: 0;
}
.site-header.header-scrolled { padding: 0; }
.header-inner { min-height: 72px; }
.site-logo-icon { width: 41px; height: 41px; }
.site-logo-text { font-size: 18px; letter-spacing: 1.2px; }
.nav-menu { gap: 34px; }
.nav-menu a { font-size: 11px; letter-spacing: .2px; }
.header-phone {
    padding: 11px 17px;
    border-radius: 7px;
    background: #b9782d;
    font-size: 12px;
}
.header-quote-btn { display: none !important; }

/* Hero */
.section-hero {
    padding: 72px 0 0;
    min-height: 614px;
    background: #f8f4e9;
}
.section-hero::before {
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 15% 32%, rgba(133,153,90,.14), transparent 38%);
    opacity: 1;
}
.section-hero .container { max-width: none; padding: 0; }
.hero-grid {
    min-height: 542px;
    grid-template-columns: 50% 50%;
    gap: 0;
}
.hero-content {
    width: 510px;
    max-width: calc(100% - 40px);
    justify-self: end;
    padding: 78px 34px 30px 20px;
}
.hero-badge { margin-bottom: 17px; padding: 6px 13px; font-size: 11px; }
.hero-title { font-size: 43px; line-height: 1.03; margin-bottom: 14px; }
.hero-subtitle { font-size: 15px; color: #4d3023; margin-bottom: 10px; }
.hero-description { max-width: 420px; font-size: 13px; line-height: 1.65; margin-bottom: 20px; }
.hero-buttons { margin-bottom: 32px; }
.hero-features {
    flex-direction: row;
    gap: 12px;
    justify-content: space-between;
    padding: 13px 15px;
    border: 1px solid #eee4d1;
    border-radius: 8px;
    background: rgba(255,255,255,.55);
}
.hero-feature { gap: 8px; }
.hero-feature-icon { font-size: 19px; }
.hero-feature-text strong { font-size: 10px; }
.hero-feature-text span { font-size: 9px; }
.hero-image-container, .hero-image-frame { width: 100%; height: 542px; border-radius: 0; box-shadow: none; }
.hero-img-display { width: 100%; height: 100%; max-height: none; object-fit: cover; object-position: center; }

/* Product cards */
.section-products { background: #fbf8ef; }
.product-grid { gap: 18px; }
.product-card { border: 1px solid #c69b60; border-radius: 9px; box-shadow: 0 4px 12px rgba(67,45,26,.07); }
.product-card-image { aspect-ratio: 1.12/1; }
.product-card-img-2 { object-position: 35% center; }
.product-card-img-3 { object-position: 75% center; }
.product-card-img-4 { object-position: right center; }
.product-card-overlay { opacity: 1; background: transparent; align-items: flex-end; }
.product-card-icon {
    transform: translateY(50%);
    width: 52px;
    height: 52px;
    border: 2px solid #e7dcc3;
    background: #315b38;
}
.product-card-icon svg { width: 30px; height: 30px; }
.product-card-body { min-height: 126px; padding: 38px 15px 17px; }
.product-card-title { font-size: 15px; text-transform: uppercase; min-height: 38px; }
.product-card-cta { font-size: 10px; color: #7e481f; }

/* About */
.section-about { background: #fbf8ef; padding-top: 0; }
.about-grid { grid-template-columns: 1.03fr .97fr; gap: 54px; }
.about-image { height: 330px; border-radius: 8px; box-shadow: none; }
.about-image-wrapper, .about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-label { display: block; color: #376444; font-size: 11px; margin-bottom: 8px; }
.about-content .section-title { font-size: 25px; text-transform: none; color: #542917; }
.about-text { font-size: 12px; line-height: 1.65; margin-bottom: 12px; }
.about-features { gap: 5px; margin-bottom: 14px; }
.about-feature-item { font-size: 11px; }
.about-check-icon { width: 14px; height: 14px; }
.about-content .btn { background: #315b38; border-color: #315b38; color: white; }

/* Project strip */
.section-projects { background: linear-gradient(135deg, #214d30, #123922); padding: 25px 0 28px; }
.projects-header { flex-direction: row; align-items: center; margin-bottom: 16px; }
.projects-header .section-label { display: none; }
.section-projects .section-title { font-size: 23px; }
.projects-viewall { border: 0; padding: 6px 10px; text-transform: none; }
.projects-grid { gap: 6px; }
.project-card { aspect-ratio: .92/1; border-radius: 7px; }
.project-card-image img { width: 100%; height: 100%; object-fit: cover; }
.project-card-img-2, .project-card-img-5 { object-position: 70% center; }
.project-card-img-3, .project-card-img-6 { object-position: 30% center; }
.project-card-overlay { padding: 10px; }
.project-card-title { font-family: var(--font-body); font-size: 12px; }



/* Video strip */
.section-videos { background: linear-gradient(120deg, #6f3218, #57220e); padding: 19px 0 24px; }
.section-videos .section-header { margin-bottom: 12px; }
.section-videos .section-title { font-size: 20px; }
.section-videos .section-divider { display: none; }
.video-grid { gap: 14px; }
.video-card { border: 1px solid #d4a64b; border-radius: 8px; background: #301b10; position: relative; }
.video-thumbnail-container { aspect-ratio: 1.75/1; }
.video-thumbnail { opacity: .78; }
.video-thumbnail-2, .video-thumbnail-4 { object-position: 70% center; }
.video-play-btn { width: 38px; height: 38px; background: rgba(43,62,34,.75); color: white; border: 2px solid rgba(255,255,255,.8); }
.video-title { position: absolute; left: 0; right: 0; bottom: 0; text-align: left; font-size: 11px; padding: 21px 10px 7px; background: linear-gradient(transparent, rgba(0,0,0,.75)); }

/* Process */
.section-process { padding: 24px 0 20px; background: #fbf8ef; }
.section-process .section-header { margin-bottom: 15px; }
.section-process .section-title { font-size: 20px; }
.section-process .section-divider { display: none; }
.process-timeline { display: flex; align-items: center; justify-content: center; }
.process-step { width: 126px; min-height: 89px; padding: 11px 8px; border: 1px solid #dfd1bb; background: rgba(255,255,255,.55); }
.process-step-number { display: none; }
.process-step-icon { height: 38px; margin-bottom: 4px; color: #704125; }
.process-step-icon svg { width: 31px; height: 31px; }
.process-step-title { font-family: var(--font-body); font-size: 10px; }
.process-arrow { width: 45px; color: #315b38; text-align: center; }

/* Testimonials */
.section-testimonials { padding: 22px 0 25px; background: #f8f2e4; }
.section-testimonials .section-header { margin-bottom: 14px; }
.section-testimonials .section-title { font-size: 20px; }
.testimonials-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { padding: 14px; min-width: 0; background: rgba(255,255,255,.65); }
.testimonial-header { margin-bottom: 4px; }
.testimonial-avatar { width: 38px; height: 38px; }
.testimonial-name { font-family: var(--font-body); font-size: 11px; }
.testimonial-info { font-size: 9px; }
.testimonial-stars { position: absolute; margin-left: 185px; margin-top: 3px; white-space: nowrap; }
.testimonial-stars svg { width: 12px; height: 12px; }
.testimonial-quote { font-style: normal; font-size: 10px; line-height: 1.55; margin: 7px 0 10px; }
.testimonial-quote p { margin: 0; }
.testimonial-card-project-img { height: 82px; }
.testimonial-nav { display: none; }

/* CTA */
.section-cta { padding: 27px 0; background: linear-gradient(90deg, #17462c, #285a35); }
.cta-content { display: flex; align-items: center; justify-content: space-between; text-align: left; }
.cta-title { font-size: 19px; text-transform: uppercase; margin-bottom: 3px; }
.cta-subtitle { font-size: 12px; margin: 0; }
.cta-buttons { flex-wrap: nowrap; }
.cta-btn-phone, .cta-btn-zalo { flex-direction: row; gap: 10px; min-width: 165px; border-radius: 7px; padding: 9px 15px; }
.cta-btn-content { display: flex; flex-direction: column; }
.cta-btn-number { font-size: 12px !important; }
.cta-btn-label { font-size: 8px; }

/* Footer */
.site-footer { padding: 28px 0 0; background: linear-gradient(120deg, #54250f, #6a3218); font-size: 10px; }
.footer-grid { grid-template-columns: 1.35fr .8fr .8fr 1fr 1.35fr; gap: 28px; margin-bottom: 22px; }
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.footer-logo-text { color: white; font-family: var(--font-heading); font-size: 17px; }
.footer-description { line-height: 1.55; margin-bottom: 12px; }
.footer-title { font-family: var(--font-body); font-size: 11px; text-transform: uppercase; margin-bottom: 11px; padding: 0; }
.footer-title::after { display: none; }
.footer-links { gap: 4px; }
.footer-social-link { width: 25px; height: 25px; }
.footer-social-link svg { width: 12px; height: 12px; }
.footer-col-contact-qr { gap: 10px !important; }
.footer-qrcode-container { align-items: center !important; padding: 0 !important; }
.footer-qrcode { width: 66px; height: 66px; background: white; padding: 4px; border-radius: 4px; }
.footer-bottom { padding: 9px 0; }
.footer-copyright { margin: 0; }
.floating-actions { display: none; }

/* Mobile navigation */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 1200;
    padding: 20px;
    background: #173f28;
    transform: translateX(100%);
    visibility: hidden;
    transition: .25s ease;
}
.mobile-nav.open { transform: translateX(0); visibility: visible; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
.mobile-nav-close { background: none; border: 0; color: white; }
.mobile-menu-list { list-style: none; margin: 0; padding: 0; }
.mobile-menu-list a { display: block; padding: 11px 0; color: white; border-bottom: 1px solid rgba(255,255,255,.12); }
.mobile-menu-list .sub-menu { list-style: none; padding-left: 18px; }
.mobile-nav-cta { display: flex; gap: 10px; margin-top: 25px; }

@media (max-width: 991px) {
    .main-nav, .header-cta { display: none; }
    .mobile-menu-toggle { display: block; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-content { width: auto; justify-self: stretch; padding: 38px 24px 28px; }
    .hero-image-container, .hero-image-frame { height: 360px; }
    .section-hero { min-height: 0; }
    .about-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: repeat(3, 1fr); }
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
    .process-timeline { flex-wrap: wrap; gap: 12px; }
    .process-arrow { display: none; }
    .testimonials-track { grid-template-columns: 1fr; }
    .testimonial-stars { position: static; margin: 0 0 5px; }
    .cta-content { flex-direction: column; gap: 14px; text-align: center; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Hero artwork details */
.section-hero::after {
    content: '';
    position: absolute;
    z-index: 0;
    inset: 72px auto 0 0;
    width: 190px;
    pointer-events: none;
    opacity: .58;
    background: no-repeat left top / 190px 100% url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 190 542'%3E%3Cg fill='none' stroke='%23758d43' stroke-width='2' opacity='.72'%3E%3Cpath d='M32 0C43 116 30 221 52 334M15 50c37 20 52 56 45 103M25 270c25 40 31 84 30 151M4 520c35-53 65-95 104-126'/%3E%3C/g%3E%3Cg fill='%237e974e' opacity='.42'%3E%3Cpath d='M35 44C4 35 2 18 2 18s26 2 33 26ZM40 84C70 69 78 82 78 82S57 102 40 84ZM44 151C13 139 10 121 10 121s27 4 34 30ZM46 223c31-18 40-5 40-5s-22 23-40 5ZM33 331C4 315 3 298 3 298s26 7 30 33ZM51 392c31-13 37 2 37 2s-25 19-37-2ZM34 476C12 451 18 438 18 438s23 15 16 38ZM83 416c21-27 36-20 36-20s-10 28-36 20Z'/%3E%3C/g%3E%3C/svg%3E");
}
.section-hero .hero-grid { position: relative; z-index: 1; }
.hero-content { position: relative; }
.hero-badge {
    min-height: 31px;
    border-color: #b7c39d;
    background: rgba(248,247,232,.82);
    color: #47633c;
    letter-spacing: .2px;
    box-shadow: 0 1px 2px rgba(57,72,35,.05);
}
.hero-badge-icon { flex: 0 0 16px; }
.hero-title {
    letter-spacing: -.7px;
    text-shadow: 0 1px 0 rgba(255,255,255,.75);
}
.hero-title .title-green { color: #244c31; }
.hero-title .title-brown { color: #642b17; }
.hero-subtitle {
    position: relative;
    padding-top: 9px;
    color: #4b2e21;
}
.hero-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 1px;
    background: #bd965d;
}
.hero-buttons { gap: 14px; }
.hero-buttons .btn {
    min-height: 42px;
    padding: 0 20px;
    border: 0;
    box-shadow: 0 4px 10px rgba(55,42,23,.12);
}
.hero-buttons .btn-primary { background: #274e31; }
.hero-buttons .btn-secondary { background: linear-gradient(135deg, #b7792f, #9a5f22); }
.hero-buttons .btn svg { flex: 0 0 16px; }
.hero-features {
    width: 100%;
    min-height: 67px;
    padding: 11px 10px;
    gap: 0;
    border-color: #e5dcc8;
    background: rgba(255,255,255,.62);
    box-shadow: 0 5px 18px rgba(64,50,28,.04);
}
.hero-feature {
    position: relative;
    flex: 1 1 0;
    justify-content: center;
    padding: 0 10px;
}
.hero-feature + .hero-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 1px;
    background: #ded3bd;
}
.hero-feature-icon {
    display: grid;
    place-items: center;
    flex: 0 0 31px;
    width: 31px;
    height: 31px;
    border: 1px solid #78905c;
    border-radius: 50%;
    color: #365b3b;
}
.hero-feature-icon svg { width: 19px; height: 19px; }
.hero-feature-text strong { color: #2e4933; font-size: 9.5px; }
.hero-feature-text span { color: #665c50; font-size: 8px; line-height: 1.25; white-space: nowrap; }
.hero-image-frame { position: relative; }
.hero-image-frame::before {
    content: '';
    position: absolute;
    z-index: 2;
    inset: 0 auto 0 0;
    width: 125px;
    pointer-events: none;
    background: linear-gradient(90deg, #f8f4e9 0%, rgba(248,244,233,.62) 28%, transparent 100%);
}
.hero-img-display { filter: saturate(.92) contrast(.98) brightness(1.03); }

@media (max-width: 991px) {
    .section-hero::after { inset: 72px auto auto 0; height: 360px; opacity: .35; }
    .hero-content { width: 100%; max-width: none; }
    .hero-image-frame::before { display: none; }
}

@media (max-width: 575px) {
    .section-hero::after { width: 115px; background-size: 115px 100%; }
    .hero-content { padding-top: 48px; }
    .hero-features { width: max-content; min-width: 100%; }
}

/* Featured products + About artwork */
.section-products,
.section-about {
    background-color: #fbf7eb;
    background-image:
        radial-gradient(circle at 8% 14%, rgba(171,144,87,.055) 0 1px, transparent 1.4px),
        radial-gradient(circle at 84% 72%, rgba(111,136,72,.04) 0 1px, transparent 1.5px);
    background-size: 21px 21px, 29px 29px;
}
.section-products {
    position: relative;
    z-index: 1;
    padding: 31px 0 30px;
}
.section-products .section-header { margin-bottom: 21px; }
.section-products .section-title {
    color: #294b33;
    font-size: 24px;
    line-height: 1;
    letter-spacing: .15px;
}
.section-products .section-divider {
    width: 112px;
    margin-top: 10px;
    background: #c9a268;
}
.section-products .section-divider::after {
    width: 25px;
    background: #fbf7eb;
    color: #768c4b;
    text-align: center;
}
.section-products .product-grid { gap: 18px; }
.section-products .product-card {
    min-width: 0;
    height: 386px;
    border: 1px solid #cfa96f;
    border-radius: 9px;
    background: rgba(255,253,247,.78);
    box-shadow: 0 5px 14px rgba(88,61,29,.08);
}
.section-products .product-card:hover {
    transform: translateY(-4px);
    border-color: #b88745;
    box-shadow: 0 11px 24px rgba(80,52,24,.13);
}
.section-products .product-card-image {
    height: 250px;
    aspect-ratio: auto;
    overflow: visible;
}
.section-products .product-card-img {
    display: block;
    width: 100%;
    height: 250px;
    border-radius: 8px 8px 0 0;
    object-fit: cover;
}
.section-products .product-card-overlay {
    overflow: visible;
    pointer-events: none;
}
.section-products .product-card-icon {
    width: 56px;
    height: 56px;
    transform: translateY(50%);
    border: 2px solid #eee3cb;
    background: #315d3a;
    box-shadow: 0 3px 8px rgba(39,72,44,.25);
}
.section-products .product-card-icon svg { width: 29px; height: 29px; stroke-width: 1.35; }
.section-products .product-card-body {
    display: flex;
    min-height: 135px;
    padding: 38px 15px 15px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.section-products .product-card-title {
    display: flex;
    min-height: 44px;
    margin: 0;
    align-items: center;
    justify-content: center;
    color: #3e352b;
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: .1px;
}
.section-products .product-card-cta {
    color: #87501f;
    font-size: 9px;
    line-height: 1;
}

.section-about {
    position: relative;
    min-height: 355px;
    padding: 0 0 25px;
    overflow: hidden;
    border-top: 1px solid rgba(211,195,163,.18);
}
.section-about::after {
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    right: -2px;
    bottom: 0;
    width: 230px;
    pointer-events: none;
    background: no-repeat right bottom / 225px 350px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 225 350'%3E%3Cg fill='none' stroke='%23a98b47' stroke-width='3' opacity='.7'%3E%3Cpath d='M167 350V24M193 350V71M137 350V106M167 78h14M167 145h14M167 219h14M167 290h14M193 126h12M193 204h12M193 282h12M137 158h12M137 240h12'/%3E%3C/g%3E%3Cg fill='%237c984b' opacity='.34'%3E%3Cpath d='M166 70c-34-20-51-7-51-7s25 25 51 7ZM176 112c34-21 49-8 49-8s-23 25-49 8ZM166 173c-37-20-52-5-52-5s25 24 52 5ZM194 192c-27-19-43-8-43-8s20 24 43 8ZM142 221c-35-20-51-5-51-5s25 25 51 5ZM176 265c35-21 49-7 49-7s-23 25-49 7ZM139 302c-31-18-47-5-47-5s22 23 47 5Z'/%3E%3C/g%3E%3C/svg%3E");
}
.section-about .container { position: relative; z-index: 1; }
.section-about .about-grid {
    display: grid;
    grid-template-columns: 526px minmax(0, 1fr);
    min-height: 330px;
    gap: 64px;
    align-items: center;
}
.section-about .about-image {
    width: 526px;
    height: 330px;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(59,43,26,.08);
}
.section-about .about-image-wrapper,
.section-about .about-img-display {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}
.section-about .about-content {
    max-width: 455px;
    padding: 7px 0 0;
}
.section-about .about-content .section-label {
    margin-bottom: 8px;
    color: #416c45;
    font-size: 10px;
    line-height: 1;
    letter-spacing: .5px;
}
.section-about .about-content .section-title {
    margin-bottom: 12px;
    color: #562d1d;
    font-size: 25px;
    line-height: 1.08;
    letter-spacing: -.2px;
}
.section-about .about-text {
    max-width: 430px;
    margin-bottom: 10px;
    color: #544a40;
    font-size: 10.5px;
    line-height: 1.55;
}
.section-about .about-features { gap: 5px; margin-bottom: 13px; }
.section-about .about-feature-item {
    gap: 7px;
    color: #51483e;
    font-size: 9.5px;
    line-height: 1.25;
}
.section-about .about-check-icon {
    width: 12px;
    height: 12px;
    padding: 1px;
    border-radius: 50%;
    background: #8ba052;
    stroke: white;
}
.section-about .about-content .btn {
    min-height: 34px;
    padding: 0 17px;
    border-radius: 5px;
    font-size: 9px;
    box-shadow: 0 3px 8px rgba(39,75,45,.12);
}

@media (max-width: 991px) {
    .section-products .product-card { height: 366px; }
    .section-products .product-card-image,
    .section-products .product-card-img { height: 230px; }
    .section-about::after { opacity: .35; }
    .section-about .about-grid { grid-template-columns: 1fr; gap: 25px; padding-top: 25px; }
    .section-about .about-image { width: 100%; }
    .section-about .about-content { max-width: 620px; padding-bottom: 25px; }
}

@media (max-width: 575px) {
    .section-products { padding: 27px 0; }
    .section-products .product-card { height: 318px; }
    .section-products .product-card-image,
    .section-products .product-card-img { height: 190px; }
    .section-products .product-card-body { min-height: 127px; padding-top: 34px; }
    .section-products .product-card-icon { width: 49px; height: 49px; }
    .section-about::after { display: none; }
    .section-about .about-image { height: 270px; }
    .section-about .about-content .section-title { font-size: 23px; }
}

@media (max-width: 575px) {
    .container { padding: 0 16px; }
    .section-padding { padding: 28px 0; }
    .hero-title { font-size: 34px; }
    .hero-features { overflow-x: auto; }
    .hero-feature { min-width: 120px; }
    .hero-image-container, .hero-image-frame { height: 260px; }
    .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .product-card-body { min-height: 112px; padding-left: 8px; padding-right: 8px; }
    .product-card-title { font-size: 12px; }
    .about-image { height: 260px; }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .video-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
    .process-step { width: calc(50% - 6px); }
    .cta-buttons { flex-direction: column; width: 100%; }
    .cta-btn-phone, .cta-btn-zalo { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* Header hardening: keep Flatsome and WordPress menu styles from changing the artwork. */
body .site-header {
    height: 72px;
    min-height: 72px;
    line-height: 1;
}
body .site-header .header-inner {
    height: 72px;
    min-height: 72px;
    max-width: 1115px;
    padding: 0 18px;
    margin: 0 auto;
    flex-wrap: nowrap;
}
body .site-header .site-logo {
    display: inline-flex;
    flex: 0 0 150px;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    line-height: 1;
}
body .site-header .site-logo-icon {
    display: block;
    flex: 0 0 38px;
    width: 38px;
    height: 42px;
}
.site-logo-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    white-space: nowrap;
}
body .site-header .site-logo-text {
    display: block;
    color: #fff8e9;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .7px;
}
.site-logo-copy small {
    display: block;
    margin-top: 4px;
    color: #e0c894;
    font-family: var(--font-body);
    font-size: 6.6px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .05px;
}
body .site-header .main-nav {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    margin: 0 18px;
}
body .site-header .nav-menu {
    display: flex;
    align-items: stretch;
    justify-content: center;
    height: 72px;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}
body .site-header .nav-menu > li {
    display: flex;
    align-items: stretch;
    height: 72px;
    margin: 0;
    padding: 0 18px;
    border: 0;
}
body .site-header .nav-menu > li > a {
    display: flex;
    align-items: center;
    height: 72px;
    margin: 0;
    padding: 2px 0 0;
    border: 0;
    color: rgba(255,255,255,.93);
    font-size: 10.5px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .15px;
    white-space: nowrap;
}
body .site-header .nav-menu > li > a::before { display: none; }
body .site-header .nav-menu > li > a::after {
    bottom: 0;
    height: 2px;
    background: #d6a24e;
}
body .site-header .nav-menu > li:not(:first-child).current-menu-item > a {
    color: rgba(255,255,255,.93);
}
body .site-header .nav-menu > li:not(:first-child).current-menu-item > a::after {
    width: 0;
}
body .site-header .nav-menu > li:first-child > a {
    color: #dda849;
}
body .site-header .nav-menu > li:first-child > a::after {
    width: 100%;
}
body .site-header #menu-item-30 > a::before {
    content: '';
    display: block;
    order: 2;
    width: 5px;
    height: 5px;
    margin: -3px 0 0 7px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
}
body .site-header #menu-item-32,
body .site-header #menu-item-33 { display: none; }
body .site-header .header-cta {
    display: flex;
    flex: 0 0 auto;
    margin: 0;
}
body .site-header .header-phone {
    height: 42px;
    margin: 0;
    padding: 0 17px;
    border: 0;
    border-radius: 7px;
    color: white;
    font-size: 11px;
    line-height: 1;
    box-shadow: none;
}
body .site-header .header-phone-icon { width: 16px; height: 16px; }
body .site-header .mobile-menu-toggle { display: none; }

@media (max-width: 991px) {
    body .site-header .header-inner { padding: 0 16px; }
    body .site-header .site-logo { flex-basis: auto; }
    body .site-header .main-nav,
    body .site-header .header-cta { display: none; }
    body .site-header .mobile-menu-toggle { display: block; margin-left: auto; }
}

/* Projects, benefits and videos artwork */
.section-projects {
    position: relative;
    min-height: 300px;
    padding: 24px 0 27px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 35%, rgba(255,255,255,.025) 0 1px, transparent 1.5px) 0 0 / 24px 24px,
        linear-gradient(120deg, #214d30 0%, #123922 100%);
}
.section-projects::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .18;
    background: linear-gradient(115deg, transparent 0 70%, rgba(131,161,91,.17) 100%);
}
.section-projects .container { position: relative; z-index: 1; }
.section-projects .projects-header {
    display: flex;
    min-height: 34px;
    margin: 0 0 14px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.section-projects .section-title {
    margin: 0;
    color: #fff9eb;
    font-size: 22px;
    line-height: 1;
    letter-spacing: .2px;
}
.section-projects .projects-viewall {
    min-height: 30px;
    margin: 0;
    padding: 0 13px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 18px;
    background: rgba(255,255,255,.035);
    color: #fff;
    font-size: 10px;
    line-height: 1;
}
.section-projects .projects-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px;
}
.section-projects .project-card {
    height: 202px;
    aspect-ratio: auto;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 7px;
    box-shadow: 0 4px 12px rgba(0,0,0,.16);
}
.section-projects .project-card:hover { transform: translateY(-3px); }
.section-projects .project-card-image,
.section-projects .project-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-projects .project-card-overlay {
    padding: 30px 9px 9px;
    background: linear-gradient(to top, rgba(18,25,17,.88) 0%, rgba(18,25,17,.18) 47%, transparent 72%);
}
.section-projects .project-card-title {
    color: white;
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0,0,0,.8);
}

.section-benefits {
    position: relative;
    min-height: 600px;
    padding: 60px 0;
    background-color: #fbf8ef;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(170,143,88,.04) 0 1px, transparent 1.5px),
        radial-gradient(circle at 83% 70%, rgba(112,138,76,.03) 0 1px, transparent 1.5px);
    background-size: 25px 25px, 31px 31px;
}
.section-benefits .section-header { margin-bottom: 40px; }
.section-benefits .section-title {
    margin: 0;
    color: #2d5037;
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: .1px;
}
.section-benefits .section-divider { display: none; }

/* Wrapper for the orbit system */
.benefits-orbit-wrapper {
    position: relative;
    width: 480px;
    height: 480px;
    margin: 0 auto;
}

/* Central logo styles */
.benefits-orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3f4e40 0%, #2a362b 100%);
    border: 3px double #dda849;
    box-shadow: 0 8px 30px rgba(63, 78, 64, 0.25), inset 0 2px 4px rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    padding: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefits-orbit-center:hover {
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow: 0 12px 35px rgba(221, 168, 73, 0.35);
    border-color: #f3e5bf;
}

.benefits-center-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    pointer-events: none;
}

.orbit-logo-img {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
}

.orbit-logo-icon {
    margin-bottom: 4px;
}

.orbit-logo-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.orbit-logo-text {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #dda849;
    letter-spacing: 1px;
    line-height: 1.1;
}

.orbit-logo-sub {
    font-family: var(--font-body);
    font-size: 6.5px;
    font-weight: 600;
    color: #f3e5bf;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Orbit track path */
.section-benefits .benefits-grid {
    position: relative;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.section-benefits .benefits-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px; /* Radius of 180px -> Diameter of 360px */
    height: 360px;
    border: 2px dashed rgba(221, 168, 73, 0.25);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: spin-clockwise 60s linear infinite;
}

@keyframes spin-clockwise {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Orbiting items positioning */
.section-benefits .benefit-item {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 110px !important;
    height: 110px !important;
    min-height: 110px !important;
    margin-top: -55px !important; /* -1/2 height */
    margin-left: -55px !important; /* -1/2 width */
    border-radius: 50% !important;
    background: #ffffff !important;
    border: 2px solid #e3d7c2 !important;
    padding: 10px !important;
    box-shadow: 0 4px 15px rgba(90, 62, 43, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    cursor: pointer;
    z-index: 5;
}

/* Absolute positions around the circle (radius R = 180px) */
/* Item 1: Top (0 deg) -> y = -180px, x = 0 */
#benefit-item-1 {
    transform: translate(0, -180px) !important;
}
/* Item 2: 60 deg -> y = -90px, x = 156px */
#benefit-item-2 {
    transform: translate(156px, -90px) !important;
}
/* Item 3: 120 deg -> y = 90px, x = 156px */
#benefit-item-3 {
    transform: translate(156px, 90px) !important;
}
/* Item 4: Bottom (180 deg) -> y = 180px, x = 0 */
#benefit-item-4 {
    transform: translate(0, 180px) !important;
}
/* Item 5: 240 deg -> y = 90px, x = -156px */
#benefit-item-5 {
    transform: translate(-156px, 90px) !important;
}
/* Item 6: 300 deg -> y = -90px, x = -156px */
#benefit-item-6 {
    transform: translate(-156px, -90px) !important;
}

/* Hover effects for orbiting items */
.section-benefits .benefit-item:hover {
    border-color: #c8a165 !important;
    background: #faf8f4 !important;
    box-shadow: 0 10px 24px rgba(200, 161, 101, 0.22) !important;
    z-index: 12;
}

/* Hover scales individual item while preserving position */
#benefit-item-1:hover { transform: translate(0, -180px) scale(1.08) !important; }
#benefit-item-2:hover { transform: translate(156px, -90px) scale(1.08) !important; }
#benefit-item-3:hover { transform: translate(156px, 90px) scale(1.08) !important; }
#benefit-item-4:hover { transform: translate(0, 180px) scale(1.08) !important; }
#benefit-item-5:hover { transform: translate(-156px, 90px) scale(1.08) !important; }
#benefit-item-6:hover { transform: translate(-156px, -90px) scale(1.08) !important; }

/* Rotating compass ring decoration */
.section-benefits .benefit-item::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1.5px dashed #c8a165;
    opacity: 0;
    transform: rotate(0deg);
    transition: opacity 0.4s ease, transform 0.8s ease;
    pointer-events: none;
}

.section-benefits .benefit-item:hover::before {
    opacity: 0.8;
    transform: rotate(180deg);
}

.section-benefits .benefit-icon-wrapper {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #faf8f5;
    border-radius: 50%;
    margin-bottom: 4px;
    border: 1px solid #eee5d8;
    transition: all 0.4s ease;
}

.section-benefits .benefit-item:hover .benefit-icon-wrapper {
    background: #315b3a;
    border-color: #315b3a;
    transform: scale(1.05);
}

.section-benefits .benefit-icon {
    color: #315b3a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.4s ease;
}

.section-benefits .benefit-icon svg {
    width: 22px;
    height: 22px;
}

.section-benefits .benefit-item:hover .benefit-icon {
    color: #ffffff;
}

.section-benefits .benefit-title {
    margin: 0;
    color: #3e382f !important;
    font-family: var(--font-body);
    font-size: 8px !important;
    font-weight: 700 !important;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    transition: color 0.4s ease;
}

.section-benefits .benefit-item:hover .benefit-title {
    color: #b9792d !important;
}

/* Micro gold star icon under title */
.section-benefits .benefit-title::after {
    content: '★';
    display: block;
    margin: 2px auto 0;
    font-size: 6px;
    color: #c8a165;
    opacity: 0.5;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.section-benefits .benefit-item:hover .benefit-title::after {
    transform: scale(1.25) rotate(144deg);
    opacity: 1;
}

/* ==========================================================================
   Responsive Overrides for Orbiting Layout
   ========================================================================== */
@media (max-width: 767px) {
    .section-benefits {
        min-height: auto;
        padding: 40px 0;
    }
    
    .benefits-orbit-wrapper {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .benefits-orbit-center {
        position: static !important;
        transform: none !important;
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .benefits-orbit-center:hover {
        transform: scale(1.05) !important;
    }
    
    .section-benefits .benefits-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .section-benefits .benefits-grid::before {
        display: none !important; /* Hide track circle on mobile */
    }
    
    .section-benefits .benefit-item {
        position: static !important;
        transform: none !important;
        margin: 0 auto !important;
        width: 120px !important;
        height: 120px !important;
        min-height: 120px !important;
    }
    
    #benefit-item-1, #benefit-item-2, #benefit-item-3, 
    #benefit-item-4, #benefit-item-5, #benefit-item-6 {
        transform: none !important;
    }
    
    #benefit-item-1:hover, #benefit-item-2:hover, #benefit-item-3:hover, 
    #benefit-item-4:hover, #benefit-item-5:hover, #benefit-item-6:hover {
        transform: translateY(-5px) !important;
    }
    
    .section-benefits .benefit-icon-wrapper {
        width: 44px;
        height: 44px;
    }
    
    .section-benefits .benefit-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .section-benefits .benefit-title {
        font-size: 9px !important;
    }
}

.section-videos {
    position: relative;
    min-height: 222px;
    padding: 17px 0 23px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 30%, rgba(255,255,255,.025) 0 1px, transparent 1.4px) 0 0 / 20px 20px,
        linear-gradient(115deg, #6d3117 0%, #4f1d0b 100%);
}
.section-videos::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 90% 110%, rgba(166,95,38,.2), transparent 36%);
}
.section-videos .container { position: relative; z-index: 1; }
.section-videos .section-header { margin-bottom: 11px; }
.section-videos .section-title {
    margin: 0;
    color: #fff5e4;
    font-size: 19px;
    line-height: 1;
    letter-spacing: .1px;
}
.section-videos .section-divider { display: none; }
.section-videos .video-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.section-videos .video-card {
    position: relative;
    height: 165px;
    border: 1px solid #cf9840;
    border-radius: 7px;
    background: #31170e;
    box-shadow: 0 4px 12px rgba(27,9,2,.23);
}
.section-videos .video-card:hover { transform: translateY(-3px); }
.section-videos .video-thumbnail-container { height: 163px; aspect-ratio: auto; }
.section-videos .video-thumbnail {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    object-fit: cover;
    opacity: .82;
    filter: saturate(.84) contrast(1.04);
}
.section-videos .video-play-btn {
    width: 38px;
    height: 38px;
    border: 2px solid rgba(255,255,255,.8);
    background: rgba(45,72,40,.72);
    color: white;
}
.section-videos .video-play-btn svg { width: 15px; height: 15px; margin-left: 2px; }
.section-videos .video-title {
    z-index: 3;
    padding: 26px 10px 8px;
    background: linear-gradient(transparent, rgba(23,10,5,.86));
    color: white;
    font-size: 9.5px;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0,0,0,.8);
}

@media (max-width: 991px) {
    .section-projects .projects-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .section-projects .project-card { height: 200px; }
    .section-videos .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .section-projects .projects-header { align-items: flex-start; }
    .section-projects .section-title { font-size: 19px; }
    .section-projects .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .section-projects .project-card { height: 175px; }
    .section-videos .video-grid { gap: 9px; }
    .section-videos .video-card,
    .section-videos .video-thumbnail-container { height: 130px; }
}

/* Process, testimonials and CTA artwork */
.section-process {
    position: relative;
    min-height: 160px;
    padding: 22px 0 19px;
    overflow: hidden;
    background-color: #fbf8ef;
    background-image: radial-gradient(circle at 50% 50%, rgba(161,135,80,.035) 0 1px, transparent 1.4px);
    background-size: 24px 24px;
}
.section-process::before,
.section-process::after {
    content: '';
    position: absolute;
    z-index: 0;
    top: 8px;
    bottom: 0;
    width: 145px;
    pointer-events: none;
    opacity: .56;
    background: no-repeat center bottom / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 145 150'%3E%3Cg fill='none' stroke='%237e984d' stroke-width='2'%3E%3Cpath d='M0 150c38-57 72-85 139-113M22 119c7-35 0-61-10-83M50 91C41 58 51 33 67 4'/%3E%3C/g%3E%3Cg fill='%237e984d' opacity='.55'%3E%3Cpath d='M22 117C2 104 0 91 0 91s18 4 22 26ZM38 101c26-3 29 10 29 10s-22 10-29-10ZM70 72c-25-10-26-23-26-23s22 2 26 23ZM93 60c24-10 31 1 31 1s-16 17-31-1ZM117 47c17-16 28-9 28-9s-9 20-28 9Z'/%3E%3C/g%3E%3C/svg%3E");
}
.section-process::before { left: 0; }
.section-process::after { right: 0; transform: scaleX(-1); }
.section-process .container { position: relative; z-index: 1; }
.section-process .section-header { margin-bottom: 14px; }
.section-process .section-title {
    margin: 0;
    color: #2c5036;
    font-size: 20px;
    line-height: 1;
    letter-spacing: .1px;
}
.section-process .section-divider { display: none; }
.section-process .process-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.section-process .process-step {
    position: relative;
    display: flex;
    flex: 0 0 126px;
    width: 126px;
    min-height: 84px;
    padding: 9px 8px 7px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #decfb7;
    border-radius: 8px;
    background: rgba(255,255,255,.45);
    box-shadow: 0 3px 8px rgba(77,57,30,.035);
}
.section-process .process-step-number {
    position: absolute;
    top: 39px;
    left: 0;
    right: 0;
    display: block;
    width: auto;
    height: auto;
    margin: 0;
    border: 0;
    background: transparent;
    color: #a17746;
    font-family: var(--font-body);
    font-size: 6px;
    line-height: 1;
}
.section-process .process-step-icon {
    display: grid;
    width: 40px;
    height: 40px;
    margin: 0 0 5px;
    place-items: center;
    color: #70442c;
}
.section-process .process-step-icon svg { width: 31px; height: 31px; stroke-width: 1.35; }
.section-process .process-step-title {
    margin: 0;
    color: #463d32;
    font-family: var(--font-body);
    font-size: 9.5px;
    font-weight: 600;
    line-height: 1;
}
.section-process .process-arrow {
    display: grid;
    flex: 0 0 44px;
    width: 44px;
    place-items: center;
    color: #426844;
}
.section-process .process-arrow svg { width: 22px; height: 22px; stroke-width: 1.5; }

.section-testimonials {
    position: relative;
    min-height: 292px;
    padding: 21px 0 25px;
    overflow: hidden;
    background-color: #f8f2e4;
    background-image:
        radial-gradient(circle at 10% 25%, rgba(132,157,92,.045), transparent 23%),
        radial-gradient(circle at 90% 68%, rgba(173,139,77,.045), transparent 24%);
}
.section-testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .16;
    background: center / 420px 210px repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 420 210'%3E%3Cg fill='none' stroke='%23b69d69' stroke-width='1'%3E%3Cpath d='M20 150c45-80 95-96 157-102M65 102c-12-30-3-59 18-82M271 188c29-57 70-83 127-95'/%3E%3C/g%3E%3C/svg%3E");
}
.section-testimonials .container { position: relative; z-index: 1; }
.section-testimonials .section-header { margin-bottom: 14px; }
.section-testimonials .section-title {
    margin: 0;
    color: #2d5037;
    font-size: 20px;
    line-height: 1;
}
.section-testimonials .section-divider {
    width: 105px;
    margin-top: 9px;
    background: #c9a268;
}
.section-testimonials .section-divider::after { background: #f8f2e4; }
.section-testimonials .testimonials-slider { position: relative; overflow: visible; }
.section-testimonials .testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.section-testimonials .testimonial-card {
    position: relative;
    display: flex;
    min-width: 0;
    height: 202px;
    padding: 12px 13px 11px;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid #dfd2bc;
    border-radius: 8px;
    background: rgba(255,255,255,.64);
    box-shadow: 0 4px 12px rgba(80,59,31,.065);
    transform: none !important;
}
.section-testimonials .testimonial-card:nth-child(n+4) { display: none; }
.section-testimonials .testimonial-header {
    display: flex;
    min-height: 38px;
    margin: 0 0 5px;
    align-items: center;
    gap: 9px;
}
.section-testimonials .testimonial-avatar {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border: 2px solid #e2d4b9;
    background: #315b3a;
}
.section-testimonials .testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.section-testimonials .testimonial-name {
    margin: 0 0 2px;
    color: #3b342c;
    font-family: var(--font-body);
    font-size: 9.5px;
    line-height: 1;
}
.section-testimonials .testimonial-info { color: #7c6b59; font-size: 7.5px; line-height: 1.2; }
.section-testimonials .testimonial-stars {
    position: absolute;
    top: 14px;
    right: 13px;
    display: flex;
    margin: 0;
    gap: 1px;
}
.section-testimonials .testimonial-stars svg { width: 11px; height: 11px; }
.section-testimonials .testimonial-quote {
    min-height: 43px;
    margin: 2px 0 8px;
    color: #494139;
    font-size: 9.5px;
    font-style: normal;
    line-height: 1.45;
}
.section-testimonials .testimonial-quote p { margin: 0; }
.section-testimonials .testimonial-card-project-img {
    display: block;
    width: 100%;
    height: 84px;
    margin-top: auto;
    border: 0;
    border-radius: 5px;
    object-fit: cover;
}
.section-testimonials .testimonial-nav { display: block; }
.section-testimonials .testimonial-nav-btn {
    position: absolute;
    z-index: 5;
    top: 50%;
    display: grid;
    width: 34px;
    height: 34px;
    padding: 0;
    place-items: center;
    transform: translateY(-50%);
    border: 0;
    border-radius: 50%;
    background: #ac6d22;
    color: white;
    box-shadow: 0 3px 8px rgba(94,55,17,.2);
    cursor: pointer;
}
.section-testimonials .testimonial-prev { left: -54px; }
.section-testimonials .testimonial-next { right: -54px; }
.section-testimonials .testimonial-nav-btn svg { width: 15px; height: 15px; }

.section-cta {
    position: relative;
    min-height: 112px;
    padding: 25px 0;
    overflow: hidden;
    background: linear-gradient(90deg, #17452c 0%, #285c36 54%, #17472c 100%);
}
.section-cta::before,
.section-cta::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 195px;
    pointer-events: none;
    opacity: .62;
    background: no-repeat center / cover url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 195 112'%3E%3Cg fill='none' stroke='%2389a34f' stroke-width='2'%3E%3Cpath d='M0 105C58 63 100 45 194 34M34 86C28 56 14 37 2 26M88 56C80 30 90 14 107 0'/%3E%3C/g%3E%3Cg fill='%237e9847' opacity='.72'%3E%3Cpath d='M28 88C5 75 4 61 4 61s21 5 24 27ZM56 73c26-4 31 8 31 8s-22 13-31-8ZM91 53C66 42 66 28 66 28s23 2 25 25ZM132 43c25-11 32 1 32 1s-18 17-32-1Z'/%3E%3C/g%3E%3C/svg%3E");
}
.section-cta::before { left: 0; }
.section-cta::after { right: 0; transform: scaleX(-1); }
.section-cta .container { position: relative; z-index: 1; }
.section-cta .cta-content {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    text-align: left;
}
.section-cta .cta-text { flex: 1 1 auto; }
.section-cta .cta-title {
    margin: 0 0 6px;
    color: white;
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: .1px;
}
.section-cta .cta-subtitle { margin: 0; color: rgba(255,255,255,.9); font-size: 10.5px; line-height: 1.2; }
.section-cta .cta-buttons { display: flex; flex: 0 0 auto; gap: 14px; }
.section-cta .cta-btn-phone,
.section-cta .cta-btn-zalo {
    display: flex;
    min-width: 168px;
    min-height: 56px;
    padding: 8px 14px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid #d9d4be;
    border-radius: 7px;
    background: #fffdf4;
    box-shadow: 0 4px 10px rgba(11,41,20,.12);
}
.section-cta .cta-btn-icon { display: grid; place-items: center; color: #4c713f; }
.section-cta .cta-btn-icon svg { width: 22px; height: 22px; }
.section-cta .cta-btn-content { display: flex; flex-direction: column; text-align: left; }
.section-cta .cta-btn-number { color: #3f4938; font-size: 11px !important; font-weight: 700; line-height: 1.1; text-transform: none; }
.section-cta .cta-btn-label { margin-top: 3px; color: #6c6a5c; font-size: 7.5px; line-height: 1; }

@media (max-width: 991px) {
    .section-process::before,
    .section-process::after { opacity: .25; }
    .section-process .process-timeline { flex-wrap: wrap; gap: 10px; }
    .section-process .process-arrow { display: none; }
    .section-testimonials .testimonials-track { grid-template-columns: 1fr; }
    .section-testimonials .testimonial-card { height: 220px; }
    .section-testimonials .testimonial-nav { display: none; }
    .section-cta .cta-content { flex-direction: column; text-align: center; }
}

@media (max-width: 575px) {
    .section-process::before,
    .section-process::after { display: none; }
    .section-process .process-step { flex-basis: calc(50% - 5px); width: calc(50% - 5px); }
    .section-testimonials .testimonial-card { height: 215px; }
    .section-cta::before,
    .section-cta::after { opacity: .28; }
    .section-cta .cta-buttons { width: 100%; flex-direction: column; }
    .section-cta .cta-btn-phone,
    .section-cta .cta-btn-zalo { width: 100%; }
}

/* Balanced footer artwork */
body .site-footer {
    position: relative;
    min-height: 205px;
    padding: 0;
    overflow: hidden;
    border-top: 1px solid rgba(216,175,105,.18);
    background:
        radial-gradient(circle at 18% 30%, rgba(255,255,255,.025), transparent 24%),
        linear-gradient(110deg, #52250f 0%, #683018 48%, #4b200d 100%);
    color: rgba(255,250,239,.82);
    font-family: var(--font-body);
    font-size: 9px;
    line-height: 1.45;
}
.site-footer .footer-main { padding: 27px 0 18px; }
.site-footer .container { max-width: 1115px; }
.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.42fr .72fr .72fr 1.08fr 1.42fr;
    gap: 35px;
    margin: 0;
    align-items: start;
}
.site-footer .footer-col {
    display: flex;
    min-width: 0;
    margin: 0;
    padding: 0;
    flex-direction: column;
}
.site-footer .footer-logo {
    display: inline-flex;
    width: fit-content;
    margin: -3px 0 8px;
    padding: 0;
    align-items: center;
    gap: 8px;
    line-height: 1;
}
.site-footer .footer-logo-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 42px;
}
.footer-logo-copy {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}
.site-footer .footer-logo-text {
    display: block;
    color: #fff8e9;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .5px;
}
.footer-logo-copy small {
    display: block;
    margin-top: 4px;
    color: #dfc48e;
    font-size: 6px;
    font-weight: 400;
    line-height: 1;
}
.site-footer .footer-description {
    max-width: 225px;
    margin: 0 0 10px;
    color: rgba(255,250,239,.82);
    font-size: 8.5px;
    line-height: 1.55;
}
.site-footer .footer-title {
    margin: 0 0 11px;
    padding: 0;
    color: #fff7e7;
    font-family: var(--font-body);
    font-size: 9.5px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .15px;
    text-transform: uppercase;
}
.site-footer .footer-title::after { display: none; }
.site-footer .footer-links,
.site-footer .footer-contact-items {
    display: flex;
    margin: 0;
    padding: 0;
    flex-direction: column;
    gap: 4px;
    list-style: none;
}
.site-footer .footer-links li,
.site-footer .footer-contact-item { margin: 0 !important; padding: 0; }
.site-footer .footer-links a,
.site-footer .footer-contact-item,
.site-footer .footer-contact-item a {
    color: rgba(255,250,239,.78);
    font-size: 8.2px;
    line-height: 1.35;
}
.site-footer .footer-links a:hover,
.site-footer .footer-contact-item a:hover { color: #e9bd6e; padding-left: 0; }
.site-footer .footer-socials { display: flex; gap: 8px; margin: 0; }
.site-footer .footer-social-link {
    display: grid;
    width: 25px;
    height: 25px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff7e9;
}
.site-footer .footer-social-link svg { width: 12px; height: 12px; }
.site-footer .footer-col-contact-qr {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 12px !important;
}
.site-footer .footer-contact-details { flex: 1 1 auto !important; min-width: 0; }
.site-footer .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
.site-footer .footer-contact-item svg {
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    margin-top: 1px;
    color: #d4ad67;
}
.site-footer .footer-qrcode-container {
    display: flex !important;
    flex: 0 0 70px;
    width: 70px;
    padding: 28px 0 0 !important;
    align-items: flex-start !important;
    justify-content: flex-end !important;
}
.site-footer .footer-qrcode {
    display: block;
    width: 68px;
    height: 68px;
    padding: 5px;
    border: 1px solid #e7d8bb;
    border-radius: 5px;
    background: #fffdf4;
    color: #2f241d !important;
}
.site-footer .footer-bottom {
    min-height: 31px;
    padding: 9px 0 8px;
    border: 0;
    background: rgba(48,19,7,.28);
    text-align: center;
}
.site-footer .footer-copyright {
    margin: 0;
    color: rgba(255,249,238,.68);
    font-size: 7.5px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .site-footer .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 30px; }
    .site-footer .footer-col-about { grid-column: 1 / -1; }
    .site-footer .footer-description { max-width: 420px; }
}

@media (max-width: 575px) {
    .site-footer .footer-main { padding: 28px 0 22px; }
    .site-footer .footer-grid { grid-template-columns: 1fr; gap: 25px; }
    .site-footer .footer-col-about { grid-column: auto; }
    .site-footer .footer-col-contact-qr { max-width: 330px; }
}

/* Readability pass: minimum practical typography for the whole site. */
body {
    font-size: 15px;
}
body .site-header .nav-menu > li > a {
    font-size: 12px;
}
body .site-header .header-phone {
    font-size: 12px;
}
.site-logo-copy small,
.footer-logo-copy small {
    font-size: 8px;
}
.hero-badge {
    font-size: 12px;
}
.hero-subtitle {
    font-size: 16px;
}
.hero-description {
    font-size: 14px;
}
.hero-buttons .btn {
    font-size: 12px;
}
.hero-feature-text strong {
    font-size: 11px;
}
.hero-feature-text span {
    font-size: 9.5px;
}
.section-products .product-card-cta {
    font-size: 11px;
}
.section-about .about-content .section-label {
    font-size: 12px;
}
.section-about .about-text {
    font-size: 13px;
}
.section-about .about-feature-item {
    font-size: 12px;
}
.section-about .about-content .btn {
    font-size: 11px;
}
.section-projects .projects-viewall {
    font-size: 11px;
}
.section-projects .project-card-title {
    font-size: 12px;
}
.section-benefits .benefit-title {
    font-size: 10.5px;
}
.section-benefits .benefit-description {
    font-size: 9.5px;
    line-height: 1.35;
}
.section-videos .video-title {
    font-size: 11px;
}
.section-process .process-step-title {
    font-size: 11px;
}
.section-process .process-step-number {
    font-size: 7px;
}
.section-testimonials .testimonial-name {
    font-size: 11px;
}
.section-testimonials .testimonial-info {
    font-size: 9px;
}
.section-testimonials .testimonial-quote {
    font-size: 11px;
}
.section-cta .cta-subtitle {
    font-size: 12px;
}
.section-cta .cta-btn-number {
    font-size: 12px !important;
}
.section-cta .cta-btn-label {
    font-size: 9px;
}
body .site-footer {
    font-size: 11px;
}
.site-footer .footer-description {
    font-size: 10.5px;
}
.site-footer .footer-title {
    font-size: 11px;
}
.site-footer .footer-links a,
.site-footer .footer-contact-item,
.site-footer .footer-contact-item a {
    font-size: 10px;
    line-height: 1.45;
}
.site-footer .footer-copyright {
    font-size: 9px;
}

@media (max-width: 575px) {
    body {
        font-size: 15px;
    }
    .hero-description,
    .section-about .about-text {
        font-size: 13px;
    }
    .section-products .product-card-title {
        font-size: 13px;
    }
    .site-footer .footer-description,
    .site-footer .footer-links a,
    .site-footer .footer-contact-item,
    .site-footer .footer-contact-item a {
        font-size: 11px;
    }
}

/* Typography family override: use Times New Roman everywhere. */
:root {
    --font-heading: "Times New Roman", Times, serif;
    --font-body: "Times New Roman", Times, serif;
}

body,
body :where(h1, h2, h3, h4, h5, h6, p, a, li, span, small, strong, em, blockquote, button, input, textarea, select, label, time) {
    font-family: "Times New Roman", Times, serif !important;
}

body p,
.hero-description,
.about-text,

.testimonial-quote,
.cta-subtitle,
.footer-description {
    font-size: 16px;
    line-height: 1.62;
}

.section-products .product-card-cta,
.section-projects .project-card-title,
.section-videos .video-title,
.section-process .process-step-title,
.section-testimonials .testimonial-info,
.site-footer .footer-links a,
.site-footer .footer-contact-item,
.site-footer .footer-contact-item a {
    font-size: 12px;
}

@media (max-width: 575px) {
    body p,
    .hero-description,
    .about-text,

    .testimonial-quote,
    .cta-subtitle,
    .footer-description {
        font-size: 15px;
        line-height: 1.62;
    }
}

/* Homepage testimonial repair + professional editorial news section. */
.section-testimonials {
    padding: 34px 0 36px !important;
    background:
        radial-gradient(circle at 12% 8%, rgba(199, 161, 101, .12), transparent 28%),
        linear-gradient(180deg, #fff8e9 0%, #f7efd9 100%) !important;
    overflow: hidden;
}

.section-testimonials .section-header {
    margin-bottom: 22px !important;
}

.section-testimonials .testimonials-slider {
    position: relative;
    overflow: visible !important;
}

.section-testimonials .testimonials-track {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 26px !important;
    transform: none !important;
    transition: none !important;
    align-items: stretch;
}

.section-testimonials .testimonial-card {
    position: relative;
    display: flex !important;
    flex-direction: column;
    min-width: 0 !important;
    height: auto !important;
    min-height: 236px;
    padding: 18px 18px 16px !important;
    border: 1px solid rgba(178, 135, 77, .36) !important;
    border-radius: 10px !important;
    background: rgba(255, 252, 244, .92) !important;
    box-shadow: 0 10px 26px rgba(72, 48, 25, .10) !important;
    overflow: hidden !important;
}

.section-testimonials .testimonial-card:nth-child(n+4) {
    display: none !important;
}

.section-testimonials .testimonial-header {
    display: grid !important;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 11px;
    align-items: center;
    margin-bottom: 10px !important;
}

.section-testimonials .testimonial-avatar {
    width: 44px !important;
    height: 44px !important;
    border: 2px solid #d9bd82 !important;
    box-shadow: 0 4px 10px rgba(34, 81, 47, .14);
}

.section-testimonials .testimonial-meta {
    min-width: 0;
}

.section-testimonials .testimonial-name {
    margin: 0 0 2px !important;
    color: #1e4728 !important;
    font-size: 15px !important;
    line-height: 1.18 !important;
    font-weight: 700 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.section-testimonials .testimonial-info {
    display: block;
    color: #7b6652 !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.section-testimonials .testimonial-stars {
    position: static !important;
    display: flex !important;
    gap: 2px;
    align-items: center;
    margin: 0 !important;
    white-space: nowrap;
}

.section-testimonials .testimonial-stars svg {
    width: 13px !important;
    height: 13px !important;
}

.section-testimonials .testimonial-quote {
    flex: 1 1 auto;
    margin: 0 0 12px !important;
    padding: 0 0 0 12px !important;
    border-left: 2px solid #b9823f;
    color: #3e3025 !important;
    font-style: normal !important;
    font-size: 14px !important;
    line-height: 1.48 !important;
}

.section-testimonials .testimonial-quote p {
    display: -webkit-box;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.48 !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-testimonials .testimonial-card-project-img {
    display: block;
    width: 100% !important;
    height: 92px !important;
    margin-top: auto;
    border-radius: 7px !important;
    object-fit: cover !important;
}

.section-testimonials .testimonial-nav-btn {
    top: 54% !important;
    width: 39px !important;
    height: 39px !important;
    border-color: rgba(178, 120, 45, .45) !important;
    background: #b97722 !important;
    color: #fff8ea !important;
    box-shadow: 0 9px 22px rgba(84, 48, 18, .22);
}

.section-testimonials .testimonial-prev {
    left: -20px !important;
}

.section-testimonials .testimonial-next {
    right: -20px !important;
}

.section-news {
    position: relative;
    padding: 46px 0 50px !important;
    background:
        linear-gradient(90deg, rgba(34, 81, 47, .05) 1px, transparent 1px),
        linear-gradient(180deg, #fffaf0 0%, #f4ecd7 100%) !important;
    background-size: 42px 42px, auto;
    border-top: 1px solid rgba(178, 135, 77, .18);
}

.section-news::before,
.section-news::after {
    content: "";
    position: absolute;
    pointer-events: none;
    opacity: .16;
    background-repeat: no-repeat;
    background-size: contain;
}

.section-news::before {
    left: 0;
    top: 18px;
    width: 160px;
    height: 210px;
    background-image: linear-gradient(120deg, transparent 40%, rgba(34, 81, 47, .32) 41%, transparent 42%);
}

.section-news::after {
    right: 0;
    bottom: 0;
    width: 190px;
    height: 220px;
    background-image: radial-gradient(circle at 50% 50%, rgba(34, 81, 47, .18) 0 2px, transparent 3px);
}

.section-news .container {
    position: relative;
    z-index: 1;
}

.news-section-header {
    display: flex !important;
    align-items: flex-end;
    justify-content: space-between;
    gap: 26px;
    margin-bottom: 24px !important;
    text-align: left !important;
}

.news-section-header .section-label {
    color: #a46b24;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.news-section-header .section-title {
    margin: 4px 0 8px !important;
    color: #1e4728 !important;
    font-size: 30px !important;
    line-height: 1.1 !important;
}

.news-section-lead {
    max-width: 620px;
    margin: 0 !important;
    color: #5d4f40;
    font-size: 16px !important;
    line-height: 1.55 !important;
}

.news-viewall-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex: 0 0 auto;
    min-height: 38px;
    padding: 9px 16px;
    border: 1px solid rgba(34, 81, 47, .28);
    border-radius: 999px;
    background: rgba(255, 252, 244, .82);
    color: #1f4b2c !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
}

.news-viewall-link:hover {
    background: #1f4b2c;
    color: #fff8e9 !important;
    transform: translateY(-1px);
}

.news-editorial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    grid-template-rows: repeat(3, minmax(142px, auto));
    gap: 18px;
}

.news-card {
    min-width: 0;
}

.news-card-link {
    position: relative;
    display: grid;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(178, 135, 77, .28);
    border-radius: 13px;
    background: rgba(255, 252, 244, .94);
    box-shadow: 0 14px 32px rgba(72, 48, 25, .10);
    color: inherit !important;
    text-decoration: none !important;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.news-card-link:hover {
    transform: translateY(-3px);
    border-color: rgba(178, 120, 45, .55);
    box-shadow: 0 18px 38px rgba(72, 48, 25, .16);
}

.news-card-thumbnail {
    position: relative;
    min-height: 0;
    overflow: hidden;
    background: #d8c49f;
}

.news-card-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.news-card-link:hover .news-card-img {
    transform: scale(1.045);
}

.news-card-category {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    max-width: calc(100% - 24px);
    padding: 5px 10px;
    border: 1px solid rgba(255, 248, 233, .52);
    border-radius: 999px;
    background: rgba(31, 75, 44, .9);
    color: #fff8e9;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-card-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.news-card-date {
    display: inline-flex;
    margin-bottom: 7px;
    color: #9a6b34 !important;
    font-size: 13px;
    font-weight: 700;
}

.news-card-title {
    display: -webkit-box;
    margin: 0 0 8px !important;
    color: #203f27 !important;
    font-weight: 700 !important;
    letter-spacing: -.01em;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-excerpt {
    display: -webkit-box;
    margin: 0 0 12px !important;
    color: #58483a !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-read-more {
    margin-top: auto;
    color: #a56d25;
    font-size: 14px;
    font-weight: 700;
}

.news-card-featured {
    grid-row: 1 / span 3;
}

.news-card-featured .news-card-link {
    grid-template-rows: 300px 1fr;
}

.news-card-featured .news-card-body {
    padding: 22px 24px 24px;
}

.news-card-featured .news-card-title {
    font-size: 27px !important;
    line-height: 1.14 !important;
    -webkit-line-clamp: 2;
}

.news-card-featured .news-card-excerpt {
    -webkit-line-clamp: 3;
}

.news-card-compact .news-card-link {
    grid-template-columns: 178px minmax(0, 1fr);
}

.news-card-compact .news-card-body {
    padding: 16px 17px;
}

.news-card-compact .news-card-title {
    font-size: 19px !important;
    line-height: 1.18 !important;
    -webkit-line-clamp: 2;
}

.news-card-compact .news-card-excerpt {
    font-size: 14px !important;
    line-height: 1.45 !important;
    -webkit-line-clamp: 2;
}

@media (max-width: 991px) {
    .section-testimonials .testimonials-track {
        grid-template-columns: 1fr !important;
        max-width: 520px;
        margin: 0 auto;
    }

    .section-testimonials .testimonial-nav {
        display: none !important;
    }

    .section-news {
        padding: 38px 0 42px !important;
    }

    .news-section-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .news-editorial-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .news-card-featured {
        grid-row: auto;
    }

    .news-card-featured .news-card-link {
        grid-template-rows: 260px 1fr;
    }
}

@media (max-width: 575px) {
    .section-testimonials .testimonial-card {
        min-height: 0;
        padding: 16px !important;
    }

    .section-testimonials .testimonial-header {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .section-testimonials .testimonial-stars {
        grid-column: 2;
        justify-self: start;
    }

    .section-testimonials .testimonial-quote,
    .section-testimonials .testimonial-quote p {
        font-size: 14px !important;
    }

    .section-news {
        padding: 32px 0 36px !important;
    }

    .news-section-header .section-title {
        font-size: 25px !important;
    }

    .news-section-lead {
        font-size: 15px !important;
    }

    .news-card-featured .news-card-link,
    .news-card-compact .news-card-link {
        grid-template-columns: 1fr;
        grid-template-rows: 205px auto;
    }

    .news-card-featured .news-card-body,
    .news-card-compact .news-card-body {
        padding: 16px;
    }

    .news-card-featured .news-card-title,
    .news-card-compact .news-card-title {
        font-size: 20px !important;
        line-height: 1.2 !important;
    }
}

/* Complete child-theme pages: blog, product archive, product category, single product. */
.tv-page-hero {
    padding: 54px 0 42px;
    background:
        radial-gradient(circle at 10% 12%, rgba(199, 161, 101, .18), transparent 28%),
        linear-gradient(135deg, #fff9ec 0%, #f3ead5 100%);
    border-bottom: 1px solid rgba(178, 135, 77, .22);
}

.tv-page-hero .breadcrumb .container {
    padding-left: 0;
    padding-right: 0;
}

.tv-page-title {
    max-width: 760px;
    margin: 8px 0 10px;
    color: #183f24;
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: -.02em;
}

.tv-page-description,
.tv-term-description {
    max-width: 760px;
    color: #584638;
    font-size: 17px !important;
    line-height: 1.62 !important;
}

.tv-content-sidebar-grid,
.tv-shop-layout,
.tv-product-description-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 34px;
    align-items: start;
}

.tv-blog-editorial {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.blog-card-featured {
    grid-column: 1 / -1;
}

.blog-card-link {
    display: grid;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(178, 135, 77, .28);
    border-radius: 16px;
    background: rgba(255, 252, 244, .95);
    box-shadow: 0 14px 34px rgba(68, 43, 23, .10);
    color: inherit !important;
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease;
}

.blog-card-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(68, 43, 23, .16);
}

.blog-card-featured .blog-card-link {
    grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
}

.blog-card-media {
    position: relative;
    min-height: 230px;
    overflow: hidden;
    background: #d5bf96;
}

.blog-card-featured .blog-card-media {
    min-height: 340px;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.blog-card-link:hover .blog-card-image {
    transform: scale(1.045);
}

.blog-card-category,
.tv-product-card-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    z-index: 2;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(31, 75, 44, .92);
    color: #fff8e9;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.blog-card-featured .blog-card-content {
    justify-content: center;
    padding: 30px;
}

.blog-card-meta {
    display: flex;
    gap: 7px;
    align-items: center;
    margin-bottom: 9px;
    color: #9a6b34;
    font-size: 13px;
    font-weight: 700;
}

.blog-card-title {
    display: -webkit-box;
    margin: 0 0 10px !important;
    color: #183f24;
    font-size: 23px !important;
    line-height: 1.18 !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-featured .blog-card-title {
    font-size: 34px !important;
    line-height: 1.12 !important;
}

.blog-card-excerpt {
    display: -webkit-box;
    margin: 0 0 14px !important;
    color: #59483a;
    font-size: 16px !important;
    line-height: 1.55 !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-more,
.tv-product-card-more {
    margin-top: auto;
    color: #a56d25;
    font-size: 14px;
    font-weight: 700;
}

.blog-sidebar,
.tv-shop-sidebar {
    position: sticky;
    top: 96px;
}

.sidebar-widget,
.shop-filter-widget {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid rgba(178, 135, 77, .28);
    border-radius: 14px;
    background: rgba(255, 252, 244, .92);
    box-shadow: 0 10px 26px rgba(68, 43, 23, .08);
}

.sidebar-widget-title,
.shop-filter-title,
.shop-cta-widget h3 {
    margin: 0 0 14px;
    color: #183f24;
    font-size: 19px;
    line-height: 1.2;
}

.sidebar-search-form {
    display: flex;
    gap: 8px;
}

.sidebar-search-input {
    width: 100%;
    min-height: 40px;
    padding: 9px 11px;
    border: 1px solid rgba(31, 75, 44, .22);
    border-radius: 9px;
    background: #fffaf0;
}

.sidebar-search-btn {
    min-width: 62px;
    border: 0;
    border-radius: 9px;
    background: #1f4b2c;
    color: #fff8e9;
    font-weight: 700;
}

.sidebar-category-list,
.sidebar-post-list,
.shop-category-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-category-list a,
.shop-category-list a,
.sidebar-post-list a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(178, 135, 77, .16);
    color: #3e3025 !important;
    font-size: 15px;
    text-decoration: none !important;
}

.sidebar-post-list a {
    display: grid;
}

.sidebar-post-list time {
    margin-top: 3px;
    color: #9a6b34;
    font-size: 12px;
}

.sidebar-cta,
.shop-cta-widget {
    background: linear-gradient(135deg, #214f2e, #12381e);
    color: #fff8e9;
}

.sidebar-cta h3,
.sidebar-cta p,
.shop-cta-widget h3,
.shop-cta-widget p {
    color: #fff8e9;
}

.tv-product-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
    padding: 14px 16px;
    border: 1px solid rgba(178, 135, 77, .25);
    border-radius: 14px;
    background: rgba(255, 252, 244, .86);
}

.tv-product-filter-label {
    color: #183f24;
    font-size: 16px;
    font-weight: 700;
}

.tv-product-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tv-product-filter-chip {
    padding: 8px 13px;
    border: 1px solid rgba(31, 75, 44, .22);
    border-radius: 999px;
    background: #fffaf0;
    color: #1f4b2c !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
}

.tv-product-filter-chip.is-active,
.tv-product-filter-chip:hover {
    background: #1f4b2c;
    color: #fff8e9 !important;
}

.tv-shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    color: #5a493b;
}

.tv-shop-ordering select {
    min-height: 38px;
    border: 1px solid rgba(31, 75, 44, .22);
    border-radius: 9px;
    background: #fffaf0;
}

.tv-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.tv-product-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(178, 135, 77, .30);
    border-radius: 16px;
    background: rgba(255, 252, 244, .95);
    box-shadow: 0 12px 30px rgba(68, 43, 23, .10);
    color: inherit !important;
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease;
}

.tv-product-card-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(68, 43, 23, .16);
}

.tv-product-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #d5bf96;
}

.tv-product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.tv-product-card-link:hover .tv-product-card-image {
    transform: scale(1.045);
}

.tv-product-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px;
}

.tv-product-card-title {
    margin: 0 0 8px !important;
    color: #183f24;
    font-size: 21px !important;
    line-height: 1.18 !important;
}

.tv-product-card-excerpt {
    margin: 0 0 14px !important;
    color: #5a493b;
    font-size: 15px !important;
    line-height: 1.5 !important;
}

.tv-product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(178, 135, 77, .18);
}

.tv-product-card-price {
    color: #8a541d;
    font-size: 15px;
    font-weight: 700;
}

.tv-product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
    gap: 38px;
    align-items: start;
}

.tv-product-main-image {
    overflow: hidden;
    border: 1px solid rgba(178, 135, 77, .28);
    border-radius: 18px;
    background: #d5bf96;
    box-shadow: 0 16px 38px rgba(68, 43, 23, .12);
}

.tv-product-main-image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.tv-product-thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.tv-product-thumb {
    overflow: hidden;
    border: 1px solid rgba(178, 135, 77, .32);
    border-radius: 10px;
}

.tv-product-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.tv-product-title {
    margin: 8px 0 12px;
    color: #183f24;
    font-size: 42px;
    line-height: 1.08;
}

.tv-product-price {
    margin-bottom: 16px;
    color: #8a541d;
    font-size: 22px;
    font-weight: 700;
}

.tv-product-short-description {
    color: #59483a;
    font-size: 16px;
    line-height: 1.62;
}

.tv-product-specs {
    margin-top: 22px;
    padding: 18px;
    border: 1px solid rgba(178, 135, 77, .25);
    border-radius: 14px;
    background: rgba(255, 252, 244, .88);
}

.tv-product-specs h2,
.tv-product-content h2,
.tv-product-advice h2,
.tv-product-faq h2,
.tv-related-products .section-title,
.tv-category-faq h2 {
    margin: 0 0 16px;
    color: #183f24;
    font-size: 26px;
    line-height: 1.18;
}

.tv-product-specs ul,
.tv-product-advice ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tv-product-specs li {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(178, 135, 77, .16);
    color: #4d3c30;
}

.tv-product-specs li:last-child {
    border-bottom: 0;
}

.tv-product-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.tv-product-content,
.tv-product-advice,
.tv-category-faq,
.tv-product-faq {
    padding: 26px;
    border: 1px solid rgba(178, 135, 77, .22);
    border-radius: 16px;
    background: rgba(255, 252, 244, .92);
}

.tv-product-advice li {
    position: relative;
    padding: 9px 0 9px 24px;
    color: #4d3c30;
}

.tv-product-advice li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1f4b2c;
    font-weight: 700;
}

.tv-faq-grid {
    display: grid;
    gap: 12px;
}

.tv-faq-grid details {
    padding: 14px 16px;
    border: 1px solid rgba(178, 135, 77, .22);
    border-radius: 12px;
    background: #fffaf0;
}

.tv-faq-grid summary {
    cursor: pointer;
    color: #183f24;
    font-size: 16px;
    font-weight: 700;
}

.tv-faq-grid p {
    margin: 9px 0 0 !important;
    color: #59483a;
    font-size: 15px !important;
}

.tv-404-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.tv-404-page .search-form,
.tv-search-page .search-form {
    display: flex;
    gap: 10px;
    max-width: 620px;
}

.tv-404-page .search-field,
.tv-search-page .search-field {
    width: 100%;
    min-height: 44px;
    padding: 10px 13px;
    border: 1px solid rgba(31, 75, 44, .24);
    border-radius: 10px;
    background: #fffaf0;
}

.tv-404-page .search-submit,
.tv-search-page .search-submit {
    min-height: 44px;
    padding: 10px 18px;
    border: 0;
    border-radius: 10px;
    background: #1f4b2c;
    color: #fff8e9;
    font-weight: 700;
}

@media (max-width: 991px) {
    .tv-content-sidebar-grid,
    .tv-shop-layout,
    .tv-product-detail-grid,
    .tv-product-description-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar,
    .tv-shop-sidebar {
        position: static;
    }

    .blog-card-featured .blog-card-link {
        grid-template-columns: 1fr;
    }

    .tv-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tv-product-filters,
    .tv-shop-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .tv-page-hero {
        padding: 38px 0 30px;
    }

    .tv-page-title,
    .tv-product-title {
        font-size: 31px;
    }

    .tv-blog-editorial,
    .tv-products-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-featured .blog-card-media,
    .blog-card-media {
        min-height: 210px;
    }

    .blog-card-featured .blog-card-title,
    .blog-card-title,
    .tv-product-card-title {
        font-size: 21px !important;
    }

    .tv-product-specs li {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .tv-product-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Final two-column layout lock for blog and product category/shop pages. */
.tv-blog-layout .container,
.tv-shop-content .container,
.archive-content .container {
    max-width: 1180px !important;
}

.tv-content-sidebar-grid,
.tv-shop-layout,
.archive-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 310px !important;
    gap: 32px !important;
    align-items: start !important;
}

.tv-blog-main,
.tv-shop-main,
.archive-posts {
    grid-column: 1 !important;
    min-width: 0 !important;
    width: 100% !important;
}

.blog-sidebar,
.tv-shop-sidebar,
.archive-sidebar {
    grid-column: 2 !important;
    width: 100% !important;
    max-width: 310px !important;
    min-width: 0 !important;
    position: sticky !important;
    top: 94px !important;
    align-self: start !important;
}

.blog-sidebar .sidebar-widget,
.archive-sidebar .sidebar-widget,
.tv-shop-sidebar .shop-filter-widget {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.tv-shop-sidebar .shop-filter-widget,
.blog-sidebar .sidebar-widget,
.archive-sidebar .sidebar-widget {
    padding: 18px !important;
}

.tv-shop-main .tv-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.tv-blog-main .tv-blog-editorial {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.tv-blog-main .blog-card-featured {
    grid-column: 1 / -1 !important;
}

.archive-posts .posts-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px !important;
}

@media (max-width: 1099px) {
    .tv-content-sidebar-grid,
    .tv-shop-layout,
    .archive-grid {
        grid-template-columns: minmax(0, 1fr) 280px !important;
        gap: 24px !important;
    }

    .blog-sidebar,
    .tv-shop-sidebar,
    .archive-sidebar {
        max-width: 280px !important;
    }

    .tv-shop-main .tv-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 849px) {
    .tv-content-sidebar-grid,
    .tv-shop-layout,
    .archive-grid {
        grid-template-columns: 1fr !important;
    }

    .tv-blog-main,
    .tv-shop-main,
    .archive-posts,
    .blog-sidebar,
    .tv-shop-sidebar,
    .archive-sidebar {
        grid-column: 1 !important;
    }

    .blog-sidebar,
    .tv-shop-sidebar,
    .archive-sidebar {
        position: static !important;
        max-width: none !important;
    }
}

@media (max-width: 575px) {
    .tv-shop-main .tv-products-grid,
    .tv-blog-main .tv-blog-editorial,
    .archive-posts .posts-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Blog and single-post hard reset: professional newspaper layout. */
.blog-index-page,
.tv-search-page,
.archive.category,
.single-post,
.tv-single-post-page {
    background: #f7efdc;
}

.blog-index-page .tv-page-hero,
.tv-search-page .tv-page-hero,
.archive-header,
.tv-single-post-hero {
    padding: 46px 0 40px !important;
    background:
        radial-gradient(circle at 12% 12%, rgba(199, 161, 101, .18), transparent 28%),
        linear-gradient(135deg, #fff9ec 0%, #f1e6cc 100%) !important;
    border-bottom: 1px solid rgba(178, 135, 77, .22) !important;
}

.blog-index-page .tv-page-title,
.tv-search-page .tv-page-title,
.archive-header .archive-title,
.tv-single-post-page .single-post-title {
    max-width: 840px !important;
    margin: 8px 0 12px !important;
    color: #183f24 !important;
    font-size: clamp(34px, 4vw, 52px) !important;
    line-height: 1.06 !important;
    letter-spacing: -.025em !important;
}

.blog-index-page .tv-page-description,
.tv-search-page .tv-page-description,
.archive-description,
.tv-single-post-lead {
    max-width: 760px !important;
    color: #59483a !important;
    font-size: 17px !important;
    line-height: 1.65 !important;
}

.tv-blog-layout,
.archive-content,
.tv-single-post-layout {
    padding: 42px 0 48px !important;
    background: #f7efdc !important;
}

.tv-blog-main,
.archive-posts,
.single-post-content {
    min-width: 0 !important;
}

.tv-blog-editorial,
.archive-posts .posts-grid,
.tv-related-posts-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px !important;
}

.tv-related-posts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.blog-card,
.post-card {
    min-width: 0 !important;
}

.blog-card-link,
.post-card-link {
    display: grid !important;
    height: 100% !important;
    overflow: hidden !important;
    border: 1px solid rgba(178, 135, 77, .30) !important;
    border-radius: 16px !important;
    background: rgba(255, 252, 244, .96) !important;
    box-shadow: 0 12px 28px rgba(68, 43, 23, .10) !important;
    color: inherit !important;
    text-decoration: none !important;
}

.blog-card-featured .blog-card-link {
    grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr) !important;
}

.blog-card-media,
.post-card-thumbnail {
    position: relative !important;
    min-height: 230px !important;
    overflow: hidden !important;
    background: #d2bb91 !important;
}

.blog-card-featured .blog-card-media {
    min-height: 330px !important;
}

.blog-card-image,
.post-card-img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.post-card-placeholder {
    background-image: url("/wp-content/themes/flatsome-child/assets/images/about/about-main.png") !important;
    background-size: cover !important;
    background-position: center !important;
}

.post-card-placeholder svg {
    display: none !important;
}

.blog-card-content,
.post-card-body {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    padding: 20px !important;
}

.blog-card-title,
.post-card-title {
    display: -webkit-box !important;
    margin: 0 0 10px !important;
    color: #183f24 !important;
    font-size: 22px !important;
    line-height: 1.18 !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden !important;
}

.blog-card-featured .blog-card-title {
    font-size: 34px !important;
    line-height: 1.1 !important;
}

.blog-card-excerpt,
.post-card-excerpt {
    display: -webkit-box !important;
    margin: 0 0 14px !important;
    color: #59483a !important;
    font-size: 16px !important;
    line-height: 1.55 !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden !important;
}

.post-card-date,
.blog-card-meta {
    color: #9a6b34 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.blog-sidebar,
.archive-sidebar,
.single-post-sidebar {
    width: 100% !important;
    max-width: 310px !important;
}

.blog-sidebar .sidebar-widget,
.archive-sidebar .sidebar-widget,
.single-post-sidebar .sidebar-widget {
    overflow: hidden !important;
    border: 1px solid rgba(178, 135, 77, .30) !important;
    border-radius: 15px !important;
    background: rgba(255, 252, 244, .96) !important;
    box-shadow: 0 10px 24px rgba(68, 43, 23, .08) !important;
}

.blog-sidebar .sidebar-cta,
.archive-sidebar .sidebar-cta,
.single-post-sidebar .sidebar-cta {
    background: linear-gradient(135deg, #214f2e, #12381e) !important;
}

.tv-single-post-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
    gap: 34px;
    align-items: center;
}

.tv-single-post-hero-content {
    min-width: 0;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: #1f4b2c;
    color: #fff8e9 !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
}

.single-post-meta {
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 0 0 14px !important;
    color: #8d6333 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.tv-single-post-hero-image {
    overflow: hidden;
    border: 1px solid rgba(178, 135, 77, .30);
    border-radius: 18px;
    background: #d2bb91;
    box-shadow: 0 16px 36px rgba(68, 43, 23, .14);
}

.tv-single-post-hero-image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.tv-article-card {
    padding: 34px !important;
    border: 1px solid rgba(178, 135, 77, .26);
    border-radius: 18px;
    background: rgba(255, 252, 244, .96);
    box-shadow: 0 14px 34px rgba(68, 43, 23, .10);
}

.single-post-body {
    max-width: none !important;
    color: #382d25 !important;
    font-size: 18px !important;
    line-height: 1.78 !important;
}

.single-post-body p,
.single-post-body li {
    color: #382d25 !important;
    font-size: 18px !important;
    line-height: 1.78 !important;
}

.single-post-body h2,
.single-post-body h3,
.single-post-body h4 {
    margin: 1.6em 0 .55em !important;
    color: #183f24 !important;
    line-height: 1.18 !important;
}

.single-post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.single-post-tags,
.author-box {
    margin-top: 28px !important;
    padding-top: 22px !important;
    border-top: 1px solid rgba(178, 135, 77, .22) !important;
}

.single-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-link {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f1e2c4;
    color: #1f4b2c !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
}

.author-box {
    display: grid !important;
    grid-template-columns: 72px minmax(0, 1fr) !important;
    gap: 16px !important;
    align-items: start !important;
}

.author-avatar-img {
    border-radius: 50%;
}

.author-label {
    color: #9a6b34;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.author-name {
    margin: 3px 0 6px !important;
    color: #183f24 !important;
    font-size: 22px !important;
}

.author-description {
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
}

.tv-related-posts {
    background: #fff8e9 !important;
}

@media (max-width: 991px) {
    .tv-single-post-hero-grid {
        grid-template-columns: 1fr;
    }

    .tv-single-post-hero-image {
        max-width: 620px;
    }

    .tv-related-posts-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 849px) {
    .blog-card-featured .blog-card-link {
        grid-template-columns: 1fr !important;
    }

    .blog-sidebar,
    .archive-sidebar,
    .single-post-sidebar {
        max-width: none !important;
    }
}

@media (max-width: 575px) {
    .tv-blog-editorial,
    .archive-posts .posts-grid,
    .tv-related-posts-grid {
        grid-template-columns: 1fr !important;
    }

    .tv-article-card {
        padding: 20px !important;
    }

    .single-post-body,
    .single-post-body p,
    .single-post-body li {
        font-size: 16px !important;
        line-height: 1.7 !important;
    }

    .author-box {
        grid-template-columns: 1fr !important;
    }
}

/* Global pagination: horizontal, polished, no list bullets. */
.archive-pagination,
.woocommerce-pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 34px 0 8px !important;
    padding: 0 !important;
    clear: both !important;
}

.archive-pagination .pagination-list,
.woocommerce-pagination ul.page-numbers,
ul.page-numbers,
.pagination-list {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 9px !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.archive-pagination .pagination-list > li,
.woocommerce-pagination ul.page-numbers > li,
ul.page-numbers > li,
.pagination-item {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    line-height: 1 !important;
}

.archive-pagination .pagination-list > li::marker,
.woocommerce-pagination ul.page-numbers > li::marker,
ul.page-numbers > li::marker,
.pagination-item::marker {
    content: "" !important;
}

.archive-pagination a,
.archive-pagination span,
.woocommerce-pagination .page-numbers,
.pagination-list .page-numbers,
.pagination-list a,
.pagination-list span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 42px !important;
    height: 42px !important;
    padding: 0 14px !important;
    border: 1px solid rgba(178, 135, 77, .34) !important;
    border-radius: 999px !important;
    background: rgba(255, 252, 244, .96) !important;
    color: #214f2e !important;
    box-shadow: 0 8px 20px rgba(68, 43, 23, .08) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease !important;
}

.archive-pagination a:hover,
.woocommerce-pagination a.page-numbers:hover,
.pagination-list a:hover {
    transform: translateY(-2px) !important;
    border-color: #1f4b2c !important;
    background: #1f4b2c !important;
    color: #fff8e9 !important;
    box-shadow: 0 12px 24px rgba(31, 75, 44, .18) !important;
}

.archive-pagination .current,
.woocommerce-pagination .page-numbers.current,
.pagination-list .page-numbers.current,
.pagination-list span.current {
    border-color: #1f4b2c !important;
    background: #1f4b2c !important;
    color: #fff8e9 !important;
    box-shadow: 0 10px 22px rgba(31, 75, 44, .18) !important;
}

.archive-pagination .prev,
.archive-pagination .next,
.woocommerce-pagination .prev,
.woocommerce-pagination .next,
.pagination-list .prev,
.pagination-list .next {
    min-width: auto !important;
    padding: 0 17px !important;
    gap: 6px !important;
}

.archive-pagination svg {
    width: 15px !important;
    height: 15px !important;
}

@media (max-width: 575px) {
    .archive-pagination,
    .woocommerce-pagination {
        margin-top: 26px !important;
    }

    .archive-pagination .pagination-list,
    .woocommerce-pagination ul.page-numbers,
    ul.page-numbers,
    .pagination-list {
        gap: 7px !important;
    }

    .archive-pagination a,
    .archive-pagination span,
    .woocommerce-pagination .page-numbers,
    .pagination-list .page-numbers,
    .pagination-list a,
    .pagination-list span {
        min-width: 38px !important;
        height: 38px !important;
        padding: 0 12px !important;
        font-size: 14px !important;
    }
}

/* ==========================================================================
   GLOBAL TYPOGRAPHY SYNCHRONIZATION
   ──────────────────────────────────────────────────────────────────────────
   Ensures all pages (Homepage, Giới thiệu, Liên hệ) share the same
   base typography scale. Reference: Liên hệ page (rem-based sizes).
   ========================================================================== */

/* ── Base text size reset ────────────────────────────────────────────────── */
html {
    font-size: 16px !important;
}

body {
    font-size: 1rem !important;
    line-height: 1.75 !important;
}

/* ── Global heading scale ────────────────────────────────────────────────── */
h1 { font-size: 2.8rem !important; }
h2 { font-size: 2.2rem !important; }
h3 { font-size: 1.6rem !important; }
h4 { font-size: 1.3rem !important; }

p {
    font-size: 1.05rem !important;
    line-height: 1.75 !important;
}

/* ── Section titles (homepage sections) ──────────────────────────────────── */
.section-title {
    font-size: 2rem !important;
}

.section-label {
    font-size: 0.85rem !important;
}

/* ── Hero section ────────────────────────────────────────────────────────── */
.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem) !important;
}

.hero-subtitle {
    font-size: 1.1rem !important;
}

.hero-description {
    font-size: 1.05rem !important;
    line-height: 1.75 !important;
}

.hero-badge {
    font-size: 0.8rem !important;
}

.hero-feature-text strong {
    font-size: 0.85rem !important;
}

.hero-feature-text span {
    font-size: 0.78rem !important;
}

/* ── Product cards ───────────────────────────────────────────────────────── */
.product-card-title,
.section-products .product-card-title {
    font-size: 1.05rem !important;
}

.product-card-cta,
.section-products .product-card-cta {
    font-size: 0.82rem !important;
}

/* ── About section (homepage) ────────────────────────────────────────────── */
.section-about .about-content .section-title {
    font-size: 2rem !important;
}

.section-about .about-text {
    font-size: 1rem !important;
    line-height: 1.75 !important;
}

.section-about .about-feature-item {
    font-size: 0.95rem !important;
}

.section-about .about-content .section-label {
    font-size: 0.85rem !important;
}

.section-about .about-content .btn {
    font-size: 0.85rem !important;
}

/* ── Projects section ────────────────────────────────────────────────────── */
.section-projects .section-title {
    font-size: 1.8rem !important;
}

.project-card-title {
    font-size: 0.9rem !important;
}

/* ── Benefits section ────────────────────────────────────────────────────── */
.section-benefits .section-title {
    font-size: 1.8rem !important;
}

.benefit-title {
    font-size: 0.95rem !important;
}



/* ── Video section ───────────────────────────────────────────────────────── */
.section-videos .section-title {
    font-size: 1.8rem !important;
}

.video-title {
    font-size: 0.9rem !important;
}

/* ── Process section ─────────────────────────────────────────────────────── */
.section-process .section-title {
    font-size: 1.8rem !important;
}

.process-step-title {
    font-size: 0.9rem !important;
}

/* ── Testimonials section ────────────────────────────────────────────────── */
.section-testimonials .section-title {
    font-size: 1.8rem !important;
}

.testimonial-name {
    font-size: 1rem !important;
}

.testimonial-info {
    font-size: 0.8rem !important;
}

.testimonial-quote {
    font-size: 0.92rem !important;
    line-height: 1.7 !important;
}

/* ── CTA section ─────────────────────────────────────────────────────────── */
.cta-title {
    font-size: 1.8rem !important;
}

.cta-subtitle {
    font-size: 1.05rem !important;
}

.cta-btn-phone strong,
.cta-btn-zalo strong,
.cta-btn-number {
    font-size: 1.05rem !important;
}

.cta-btn-label {
    font-size: 0.78rem !important;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
    font-size: 0.9rem !important;
}

.footer-title {
    font-size: 1.1rem !important;
}

.footer-links a,
.footer-desc,
.footer-description {
    font-size: 0.9rem !important;
}

.footer-bottom {
    font-size: 0.82rem !important;
}

/* ── Navigation ──────────────────────────────────────────────────────────── */
.nav-menu a {
    font-size: 0.82rem !important;
}

.header-phone {
    font-size: 0.9rem !important;
}

/* ── Buttons global ──────────────────────────────────────────────────────── */
.btn {
    font-size: 0.88rem !important;
}

/* ── Mobile responsive adjustments ───────────────────────────────────────── */
@media (max-width: 991px) {
    h1 { font-size: 2.2rem !important; }
    h2 { font-size: 1.8rem !important; }
    h3 { font-size: 1.4rem !important; }

    .hero-title {
        font-size: 2.2rem !important;
    }

    .section-title {
        font-size: 1.6rem !important;
    }
}

@media (max-width: 575px) {
    h1 { font-size: 1.8rem !important; }
    h2 { font-size: 1.5rem !important; }
    h3 { font-size: 1.2rem !important; }

    .hero-title {
        font-size: 1.8rem !important;
    }

    .hero-description,
    .hero-subtitle {
        font-size: 0.95rem !important;
    }

    p {
        font-size: 0.95rem !important;
    }

    .section-title {
        font-size: 1.4rem !important;
    }
}

/* ==========================================================================
   Category Products Section (Homepage)
   ========================================================================== */

.section-cat-products {
    padding: var(--space-2xl) 0;
}

.section-cat-products.section-bg-alt {
    background-color: var(--color-cream);
}

.section-cat-products .section-subtitle {
    max-width: 650px;
    margin: var(--space-xs) auto 0;
    color: var(--color-body);
    font-size: 1rem;
    line-height: 1.6;
}

/* Products Grid: 4 columns */
.cat-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

/* Single Product Item */
.cat-product-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cat-product-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Product Image */
.cat-product-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.cat-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cat-product-item:hover .cat-product-image img {
    transform: scale(1.08);
}

/* Overlay on hover */
.cat-product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(46, 35, 30, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: var(--space-md);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.cat-product-item:hover .cat-product-overlay {
    opacity: 1;
}

.cat-product-view {
    background: var(--color-gold);
    color: var(--color-dark);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    transform: translateY(10px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cat-product-item:hover .cat-product-view {
    transform: translateY(0);
}

/* Product Info */
.cat-product-info {
    padding: var(--space-sm) var(--space-md) var(--space-md);
}

.cat-product-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}

.cat-product-item:hover .cat-product-name {
    color: var(--color-primary);
}

.cat-product-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.cat-product-price del {
    color: var(--color-body);
    font-weight: 400;
    font-size: 0.8rem;
}

.cat-product-price ins {
    text-decoration: none;
    color: var(--color-secondary);
}

/* Product link */
.cat-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* View All Button */
.cat-products-viewall {
    text-align: center;
    margin-top: var(--space-xl);
}

/* Responsive */
@media (max-width: 1024px) {
    .cat-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    .cat-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .cat-product-name {
        font-size: 0.85rem;
    }

    .cat-product-price {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .cat-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .cat-product-info {
        padding: var(--space-xs) var(--space-sm) var(--space-sm);
    }

    .cat-product-name {
        font-size: 0.8rem;
    }
}
