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

/* ============================================
   LOCAL FONTS — Outfit (self-hosted)
   ============================================ */
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 300; font-display: swap;
    src: url('fonts/outfit/outfit-v15-latin-300.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 400; font-display: swap;
    src: url('fonts/outfit/outfit-v15-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 500; font-display: swap;
    src: url('fonts/outfit/outfit-v15-latin-500.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 600; font-display: swap;
    src: url('fonts/outfit/outfit-v15-latin-600.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 700; font-display: swap;
    src: url('fonts/outfit/outfit-v15-latin-700.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 800; font-display: swap;
    src: url('fonts/outfit/outfit-v15-latin-800.woff2') format('woff2'); }

/* ============================================
   GLOBAL FONT + BASE — Daalmann-inspired
   ============================================ */
body,
.home,
input, textarea, select, button {
    font-family: var(--tc-font) !important;
}

/* ---- SERIF: content text ---- */
/* Product page descriptions */
.tc-sp-bullets li,
.tc-sp-acc-content,
.tc-sp-acc-content p,
.tc-sp-acc-content h2,
.tc-sp-acc-content h3,
.tc-sp-spec-body p,
.tc-sp-specs-table td,
/* Homepage section body text */
.th-hero-sub,
.th-compare-note,
.th-facts-desc,
.th-facts-cta-card p,
.th-about-text,
.th-production-desc,
.th-catalog-desc,
.th-contacts-desc,
.th-exhibition-desc,
.th-exhibition-info p,
/* Benefits / how-it-works descriptions */
.th-benefit-desc,
.th-howto-step p,
.th-testimonial-text,
.th-faq-answer {
    font-family: var(--tc-font-serif) !important;
    line-height: 1.85;
}

/* ============================================
   TRIDENT MOBILE HOMES — HOMEPAGE HERO
   ============================================ */

/* Flatsome reset for front page */
.home #main,
.home #wrapper {
    padding: 0 !important;
    margin: 0 !important;
}
.home .th-hero + * {
    margin-top: 0;
}

.th-hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
}

/* YouTube iframe as hero background */
.th-hero-yt-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    background: #0a1a0f;
}
.th-hero-yt-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 177.78vh;
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw;
    border: none;
    pointer-events: none;
}

/* HTML5 video as hero background (Variant 1) */
.th-hero-video-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    background: #0a1a0f;
}
.th-hero-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 177.78vh;
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw;
    object-fit: cover;
    border: none;
}

/* Hero fullscreen button */
.th-hero-fs-btn {
    position: absolute;
    bottom: 28px;
    right: 28px;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    border: 1.5px solid rgba(255,255,255,0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    backdrop-filter: blur(4px);
}
.th-hero-fs-btn svg { width: 20px; height: 20px; }
.th-hero-fs-btn:hover { background: rgba(0,0,0,0.65); border-color: rgba(255,255,255,0.8); }

.th-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(28, 36, 25, 0.48) 0%,
        rgba(28, 36, 25, 0.35) 55%,
        rgba(28, 36, 25, 0.68) 100%
    );
    z-index: 1;
}

.th-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 24px;
    margin: 0 auto;
}

.th-hero-inner {
    max-width: 700px;
}

.th-hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 300;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 12px rgba(0,0,0,0.2);
}

.th-hero-sub {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
    margin-bottom: 44px;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.th-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.th-btn-primary {
    display: inline-block;
    padding: 15px 38px;
    background: #FAFAF8;
    color: #252E26 !important;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.25s, color 0.25s;
    border: none;
}
.th-btn-primary:hover {
    background: #F0EDE7;
    color: #252E26 !important;
}

.th-btn-outline {
    display: inline-block;
    padding: 14px 38px;
    border: 1.5px solid rgba(255,255,255,0.7);
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s;
}
.th-btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: #ffffff;
    color: #ffffff !important;
}

/* YouTube button */
.th-btn-yt {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 38px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.7);
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s;
}
.th-btn-yt svg { flex-shrink: 0; }
.th-btn-yt:hover {
    background: rgba(255,255,255,0.12);
    border-color: #ffffff;
    color: #ffffff !important;
}

/* Scroll indicator */
.th-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: th-bounce 2s infinite;
}
.th-scroll-hint svg {
    width: 28px;
    height: 28px;
    color: rgba(255,255,255,0.6);
}
@keyframes th-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* Mobile */
@media (max-width: 768px) {
    .th-hero { height: 100svh; }
    .th-hero-content { padding-bottom: 90px; }
    .th-hero-btns { flex-direction: column; }
    .th-btn-primary, .th-btn-outline, .th-btn-yt { text-align: center; justify-content: center; }
}

/* ============================================
   HOMEPAGE — EXHIBITION BLOCK
   ============================================ */
.th-exhibition {
    padding: 96px 0 0;
    background: #FAFAF8;
}

.th-exhibition-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    margin-bottom: 56px;
}

.th-exhibition-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #B8735A;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.th-exhibition-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #1C2419;
    margin-bottom: 16px;
    line-height: 1.2;
}

.th-exhibition-desc {
    font-size: 1.05rem;
    color: #7A887C;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.th-exhibition-grid {
    display: grid;
    grid-template-columns: 55fr 45fr;
    min-height: 480px;
}

/* Map */
.th-exhibition-map {
    position: relative;
    background: #D6D0C8;
    min-height: 480px;
}
.th-exhibition-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* Info panel */
.th-exhibition-info {
    background: #FAFAF8;
    border-left: 1px solid #E2DDD6;
    padding: 60px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.th-exhibition-info h3 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: #1C2419;
    line-height: 1.25;
    margin: 12px 0 20px;
}

.th-ex-address {
    font-size: 0.9rem;
    color: #5A6B5C;
    line-height: 1.7;
    margin-bottom: 16px;
}

.th-ex-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #5A6B5C;
}
.th-ex-row svg { flex-shrink: 0; margin-top: 2px; color: #B8735A; }
.th-ex-row strong { display: block; color: #1C2419; font-weight: 600; margin-bottom: 2px; }

.th-ex-note {
    background: #F7F2EC;
    border-left: 3px solid #B8735A;
    padding: 12px 14px;
    font-size: 0.875rem;
    color: #5A6B5C;
    line-height: 1.6;
    margin-bottom: 28px;
}
.th-ex-note strong { color: #B8735A; }

.th-ex-btns { display: flex; flex-direction: column; gap: 10px; }

.th-ex-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    background: #25D366;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s;
}
.th-ex-wa-btn:hover { background: #1fba57; color: #fff !important; }

.th-ex-btn {
    display: block;
    background: #1C2419;
    color: #ffffff !important;
    text-align: center;
    padding: 14px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.2s;
}
.th-ex-btn:hover { background: #B8735A; color: #ffffff !important; }

/* Responsive */
@media (max-width: 1024px) {
    .th-exhibition-grid { grid-template-columns: 1fr; }
    .th-exhibition-map { min-height: 320px; }
    .th-exhibition-info { border-left: none; border-top: 1px solid #E2DDD6; padding: 40px 24px; }
}
@media (max-width: 600px) {
    .th-exhibition { padding: 48px 0 0; }
    .th-exhibition-info { padding: 32px 20px; }
}

/* ============================================
   TRIDENT MOBILE HOMES — PRODUCT PAGE STYLES
   ============================================ */

:root {
    /* Daalmann-inspired earth palette */
    --tc-primary:      #252E26;   /* near-black forest */
    --tc-secondary:    #4F6651;   /* sage green */
    --tc-accent:       #B8735A;   /* terracotta */
    --tc-accent-hover: #9B5E47;
    --tc-light:        #F0EDE7;   /* warm cream */
    --tc-bg-alt:       #E8E3DB;   /* darker cream */
    --tc-border:       #D6D0C8;
    --tc-text:         #252E26;
    --tc-muted:        #7A887C;   /* sage gray */
    --tc-body:         #3D4E3F;
    --tc-white:        #FAFAF8;   /* warm white */
    --tc-font:         'Outfit', system-ui, -apple-system, sans-serif;
    --tc-font-serif:   Georgia, 'Palatino Linotype', Palatino, 'Book Antiqua', serif;
    --tc-radius:       4px;
    --tc-radius-lg:    8px;
    --tc-shadow:       0 2px 12px rgba(37,46,38,0.07);
    --tc-shadow-hover: 0 6px 28px rgba(37,46,38,0.12);
}

/* --- LAYOUT --- */
.tc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.tc-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--tc-primary);
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}
.tc-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--tc-accent);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* ============================================
   HERO
   ============================================ */
.tc-product-hero {
    padding: 48px 0;
    background: var(--tc-white);
}

.tc-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.tc-main-image {
    border-radius: var(--tc-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--tc-light);
}
.tc-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.tc-main-image:hover img { transform: scale(1.02); }

.tc-thumbnails {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.tc-thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    flex-shrink: 0;
}
.tc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.tc-thumb:hover, .tc-thumb.active { border-color: var(--tc-accent); }

.tc-breadcrumb {
    font-size: 0.85rem;
    color: var(--tc-muted);
    margin-bottom: 16px;
}
.tc-breadcrumb a { color: var(--tc-muted); text-decoration: none; }
.tc-breadcrumb a:hover { color: var(--tc-primary); }
.tc-breadcrumb span { margin: 0 6px; }

.tc-product-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--tc-primary);
    line-height: 1.3;
    margin-bottom: 16px;
}

.tc-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--tc-accent);
    margin-bottom: 20px;
}
.tc-price .woocommerce-Price-amount { font-size: inherit; color: inherit; }

.tc-short-desc {
    font-size: 1rem;
    color: var(--tc-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.tc-quick-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.tc-spec-chip {
    background: var(--tc-light);
    border: 1px solid var(--tc-border);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.85rem;
    color: var(--tc-text);
}
.tc-spec-chip strong { color: var(--tc-primary); }

.tc-add-to-cart { margin-bottom: 24px; }
.tc-add-to-cart .single_add_to_cart_button,
.tc-add-to-cart button[type="submit"] {
    background: var(--tc-accent) !important;
    color: var(--tc-white) !important;
    border: none !important;
    padding: 16px 40px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s, transform 0.1s;
}
.tc-add-to-cart .single_add_to_cart_button:hover { background: #9B5E47 !important; transform: translateY(-1px); }

.tc-mini-trust {
    display: flex;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--tc-border);
}
.tc-mini-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--tc-muted);
}
.tc-mini-trust-item svg { width: 18px; height: 18px; color: var(--tc-accent); flex-shrink: 0; }

/* Tooltip */
.tc-tooltip-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: help;
}
.tc-tooltip {
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    bottom: calc(100% + 10px) !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(4px) !important;
    background: #252E26 !important;
    color: #ffffff !important;
    font-size: 0.78rem !important;
    line-height: 1.5 !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    width: 230px !important;
    text-align: center !important;
    white-space: normal !important;
    z-index: 9999 !important;
    pointer-events: none !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25) !important;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s !important;
    font-weight: 400 !important;
}
.tc-tooltip::after {
    content: '' !important;
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border: 6px solid transparent !important;
    border-top-color: #252E26 !important;
}
.tc-tooltip-wrap:hover .tc-tooltip {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
}

/* ============================================
   KEY FEATURES
   ============================================ */
.tc-features {
    padding: 72px 0;
    background: var(--tc-light);
}
.tc-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tc-feature-card {
    background: var(--tc-white);
    border-radius: var(--tc-radius);
    padding: 32px 24px;
    box-shadow: var(--tc-shadow);
    transition: box-shadow 0.3s, transform 0.3s;
    text-align: center;
}
.tc-feature-card:hover { box-shadow: var(--tc-shadow-hover); transform: translateY(-4px); }
.tc-feature-icon { font-size: 2.5rem; margin-bottom: 16px; }
.tc-feature-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--tc-primary); margin-bottom: 10px; }
.tc-feature-card p { font-size: 0.92rem; color: var(--tc-muted); line-height: 1.6; }

/* ============================================
   GALLERY
   ============================================ */
.tc-gallery {
    padding: 72px 0;
    background: var(--tc-white);
}
.tc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.tc-gallery-grid .tc-gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.tc-gallery-item {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    background: var(--tc-light);
}
.tc-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.tc-gallery-item:first-child { aspect-ratio: auto; }
.tc-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,58,92,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.tc-gallery-overlay svg { width: 36px; height: 36px; color: white; }
.tc-gallery-item:hover img { transform: scale(1.05); }
.tc-gallery-item:hover .tc-gallery-overlay { opacity: 1; }

/* ============================================
   SPECIFICATIONS
   ============================================ */
.tc-specs {
    padding: 72px 0;
    background: var(--tc-light);
}
.tc-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--tc-radius);
    overflow: hidden;
    box-shadow: var(--tc-shadow);
    background: var(--tc-white);
}
.tc-spec-row {
    display: flex;
    padding: 14px 20px;
    border-bottom: 1px solid var(--tc-border);
    align-items: center;
}
.tc-spec-row:nth-child(odd) { background: var(--tc-white); }
.tc-spec-row:nth-child(even) { background: #fafbfc; }
.tc-spec-name { flex: 0 0 48%; font-weight: 600; color: var(--tc-primary); font-size: 0.9rem; padding-right: 16px; }
.tc-spec-value { flex: 1; color: var(--tc-text); font-size: 0.9rem; }

/* ============================================
   DESCRIPTION
   ============================================ */
.tc-description { padding: 72px 0; background: var(--tc-white); }
.tc-description-content { max-width: 800px; margin: 0 auto; font-size: 1.05rem; line-height: 1.85; color: var(--tc-text); }
.tc-description-content div { margin-bottom: 1.2em; }

/* ============================================
   TRUST BLOCKS
   ============================================ */
.tc-trust {
    padding: 72px 0;
    background: var(--tc-primary);
}
.tc-trust .tc-section-title { color: var(--tc-white); }
.tc-trust .tc-section-title::after { background: var(--tc-accent); }
.tc-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tc-trust-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--tc-radius);
    padding: 32px 24px;
    text-align: center;
    transition: background 0.3s, transform 0.3s;
}
.tc-trust-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.tc-trust-icon { font-size: 2.5rem; margin-bottom: 16px; }
.tc-trust-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--tc-white); margin-bottom: 10px; }
.tc-trust-card p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* ============================================
   CTA
   ============================================ */
.tc-cta { padding: 72px 0; background: var(--tc-light); }
.tc-cta-box {
    background: var(--tc-white);
    border-radius: var(--tc-radius);
    padding: 56px 48px;
    text-align: center;
    box-shadow: var(--tc-shadow);
    max-width: 700px;
    margin: 0 auto;
}
.tc-cta-box h2 { font-size: 1.8rem; font-weight: 700; color: var(--tc-primary); margin-bottom: 16px; }
.tc-cta-box p { color: var(--tc-muted); font-size: 1.05rem; line-height: 1.6; margin-bottom: 32px; }
.tc-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; }
.tc-btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid var(--tc-primary);
    color: var(--tc-primary) !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.tc-btn-secondary:hover { background: var(--tc-primary); color: var(--tc-white) !important; }
.tc-cta-buttons .single_add_to_cart_button { padding: 14px 32px !important; font-size: 1rem !important; width: auto !important; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .tc-features-grid { grid-template-columns: repeat(2, 1fr); }
    .tc-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .tc-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .tc-hero-grid { grid-template-columns: 1fr; gap: 24px; }
    .tc-features-grid { grid-template-columns: 1fr; }
    .tc-trust-grid { grid-template-columns: 1fr 1fr; }
    .tc-specs-grid { grid-template-columns: 1fr; }
    .tc-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .tc-gallery-grid .tc-gallery-item:first-child { grid-column: span 2; }
    .tc-section-title { font-size: 1.5rem; }
    .tc-product-title { font-size: 1.4rem; }
    .tc-mini-trust { flex-direction: column; gap: 10px; }
    .tc-cta-box { padding: 32px 24px; }
}
@media (max-width: 480px) {
    .tc-trust-grid { grid-template-columns: 1fr; }
}

/* ============================================
   QUICK LEAD MODAL
   ============================================ */
.tc-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 40, 0.65);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.tc-modal-overlay.tc-modal-active {
    display: flex;
    animation: tcModalFadeIn 0.25s ease;
}
@keyframes tcModalFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.tc-modal {
    background: #ffffff;
    border-radius: 20px;
    padding: 44px 40px 36px;
    width: 100%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,0.25);
    animation: tcModalSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow-y: auto;
}
@keyframes tcModalSlideIn {
    from { transform: translateY(32px) scale(0.96); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
}

.tc-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: #7A887C;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    line-height: 0;
}
.tc-modal-close:hover { color: #252E26; background: #f0f4f8; }
.tc-modal-close svg { width: 20px; height: 20px; }

.tc-modal-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #252E26;
    margin: 0 0 8px;
    line-height: 1.2;
}
.tc-modal-sub {
    font-size: 0.95rem;
    color: #7A887C;
    line-height: 1.5;
    margin: 0 0 28px;
}

/* Form fields */
.tc-modal-form { display: flex; flex-direction: column; gap: 18px; }

.tc-form-group { display: flex; flex-direction: column; gap: 6px; }
.tc-form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.tc-form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #252E26;
}
.tc-required { color: #e53e3e; }
.tc-optional  { color: #a0aec0; font-weight: 400; }

.tc-modal-form input[type="text"],
.tc-modal-form input[type="tel"],
.tc-modal-form input[type="email"],
.tc-modal-form textarea,
.tc-modal-form select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #D6D0C8;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #252E26;
    background: #f8fafc;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}
.tc-modal-form textarea { resize: vertical; min-height: 90px; }
.tc-modal-form input:focus,
.tc-modal-form textarea:focus,
.tc-modal-form select:focus {
    border-color: #252E26;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.12);
}
.tc-modal-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
    appearance: none;
    -webkit-appearance: none;
    height: 52px;
    line-height: 52px;
    padding-top: 0;
    padding-bottom: 0;
}
.tc-modal-form .m-date-select {
    appearance: auto;
    -webkit-appearance: auto;
    background-image: none;
    padding-right: 10px;
}

/* Phone row */
.tc-phone-wrap {
    display: flex;
    gap: 8px;
}
.tc-phone-code {
    flex: 0 0 auto;
    width: 130px !important;
    min-width: 130px;
    height: 54px;
    box-sizing: border-box;
    padding: 0 8px;
}
.tc-phone-wrap input[type="tel"] {
    flex: 1;
    height: 54px;
    box-sizing: border-box;
}

/* Submit */
.tc-modal-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #252E26;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 4px;
    width: 100%;
}
.tc-modal-submit svg { width: 18px; height: 18px; flex-shrink: 0; }
.tc-modal-submit:hover { background: #B8735A; transform: translateY(-1px); }
.tc-modal-submit:disabled { opacity: 0.7; cursor: wait; }

.tc-modal-privacy {
    font-size: 0.78rem;
    color: #a0aec0;
    text-align: center;
    margin: 4px 0 0;
    line-height: 1.5;
}

/* Feedback messages */
.tc-form-message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}
.tc-form-success {
    background: #f0fff4;
    border: 1px solid #9ae6b4;
    color: #276749;
}
.tc-form-error {
    background: #fff5f5;
    border: 1px solid #feb2b2;
    color: #c53030;
}

/* Mobile */
@media (max-width: 520px) {
    .tc-modal { padding: 36px 20px 28px; border-radius: 16px; }
    .tc-form-row { grid-template-columns: 1fr; gap: 18px; }
    .tc-modal-title { font-size: 1.3rem; }
}

/* Exhibition button reset (it's now a <button>) */
.th-ex-btn {
    background: #B8735A;
    border: none;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
}

/* ============================================
   HOMEPAGE — COMPARISON BLOCK
   ============================================ */
.th-compare {
    padding: 96px 0;
    background: #F0EDE7;
}

.th-compare-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.th-compare-header {
    text-align: center;
    margin-bottom: 52px;
}

.th-compare-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #B8735A;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.th-compare-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #1e2b1a;
    margin: 0 0 16px;
    line-height: 1.15;
}

.th-compare-title-line {
    width: 56px;
    height: 3px;
    background: #B8735A;
    border-radius: 2px;
    margin: 0 auto 20px;
}

.th-compare-desc {
    font-size: 1rem;
    color: #6b7280;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Table */
.th-compare-table-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}

.th-compare-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background: #ffffff;
}

/* Column widths */
.th-col-criteria { width: 28%; }
.th-col-apt      { width: 36%; }
.th-col-home     { width: 36%; }

/* Header row */
.th-compare-table thead th {
    padding: 24px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    border-bottom: 2px solid #e5e7eb;
}

.th-col-criteria {
    background: #F0EDE7;
    color: #374151;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.th-col-apt {
    background: #f3f4f6;
}

.th-col-apt-inner,
.th-col-home-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.th-col-apt-inner svg { width: 28px; height: 28px; color: #9ca3af; }
.th-col-apt-inner span { color: #6b7280; font-weight: 600; }

.th-col-home {
    background: #252E26;
    border-radius: 0;
}
.th-col-home-inner svg { width: 28px; height: 28px; color: rgba(255,255,255,0.85); }
.th-col-home-inner span { color: #ffffff; font-weight: 700; }

/* Body rows */
.th-compare-table tbody tr {
    border-bottom: 1px solid #f0f0ee;
    transition: background 0.15s;
}
.th-compare-table tbody tr:last-child { border-bottom: none; }
.th-compare-table tbody tr:hover td { background: #faf8f4 !important; }
.th-compare-table tbody tr:hover td.th-cell-home { background: #E8E3DB !important; }

.th-compare-table tbody td {
    padding: 18px 20px;
    vertical-align: middle;
    font-size: 0.9rem;
}

.th-cell-criteria {
    background: #F0EDE7;
    color: #374151;
    font-weight: 600;
    font-size: 0.88rem;
    line-height: 1.4;
}

.th-cell-apt {
    background: #ffffff;
    color: #9ca3af;
    display: table-cell;
}
.th-cell-apt .th-cell-text { display: inline; }

.th-cell-home {
    background: #f0f5f1;
    color: #252E26;
    font-weight: 500;
}

/* Cell layout: text + icon */
.th-cell-apt,
.th-cell-home {
    display: table-cell;
}

/* We need flex inside so let's use a wrapper approach via pseudo or inner div */
.th-compare-table tbody td {
    position: relative;
}
.th-cell-apt .th-cell-text,
.th-cell-home .th-cell-text {
    padding-right: 32px;
    display: block;
    line-height: 1.5;
}

.th-cell-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}
.th-cell-icon svg { width: 18px; height: 18px; display: block; }

.th-icon-no svg  { color: #ef4444; }
.th-icon-yes svg { color: #252E26; }

/* Footer */
.th-compare-footer {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.th-compare-result {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #E8E3DB;
    color: #252E26;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
}
.th-compare-result svg { width: 18px; height: 18px; flex-shrink: 0; }

.th-compare-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #B8735A;
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.th-compare-cta svg { width: 18px; height: 18px; }
.th-compare-cta:hover {
    background: #9B5E47;
    transform: translateY(-2px);
    color: #ffffff !important;
}

/* Responsive */
@media (max-width: 768px) {
    .th-compare { padding: 64px 0; }
    .th-compare-table thead th { padding: 16px 12px; }
    .th-compare-table tbody td { padding: 14px 12px; font-size: 0.82rem; }
    .th-col-criteria { width: 30%; }
    .th-col-apt, .th-col-home { width: 35%; }
    .th-cell-apt .th-cell-text,
    .th-cell-home .th-cell-text { padding-right: 24px; }
    .th-cell-icon { right: 8px; }
    .th-cell-icon svg { width: 15px; height: 15px; }
}
@media (max-width: 520px) {
    .th-compare-table { font-size: 0.78rem; }
    .th-col-apt-inner span, .th-col-home-inner span { font-size: 0.78rem; }
    .th-compare-cta { padding: 14px 24px; font-size: 0.9rem; }
}

/* ============================================
   HOMEPAGE — FACTS BLOCK
   ============================================ */
/* ========== FACTS ========== */
.th-facts {
    position: relative;
    padding: 110px 0;
    background: #FAFAF8;
}

.th-facts-overlay { display: none; }

.th-facts-container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.th-facts-header { text-align: center; margin-bottom: 56px; }

.th-facts-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #B8735A;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.th-facts-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 300;
    color: var(--tc-text);
    margin: 0 0 14px;
    line-height: 1.15;
}

.th-facts-line {
    width: 48px;
    height: 3px;
    background: #B8735A;
    border-radius: 2px;
    margin: 0 auto 18px;
}

.th-facts-desc {
    font-size: 1rem;
    color: var(--tc-muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

.th-facts-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 16px;
    border: 1px solid var(--tc-border);
    border-radius: var(--tc-radius-lg);
    overflow: hidden;
    background: var(--tc-white);
}

.th-facts-exhibition-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 48px;
    padding: 14px 20px;
    background: var(--tc-white);
    border: 1px solid var(--tc-border);
    border-radius: var(--tc-radius-lg);
    text-decoration: none;
    color: var(--tc-body);
    font-size: 0.95rem;
    text-align: center;
    transition: background 0.2s, border-color 0.2s;
}
.th-facts-exhibition-banner:hover {
    background: #fff8f5;
    border-color: var(--tc-accent);
    text-decoration: none;
    color: var(--tc-body);
}
.th-facts-exh-pin { width: 18px; height: 18px; flex-shrink: 0; color: var(--tc-accent); }
.th-facts-exh-text strong { color: var(--tc-primary); font-weight: 600; }
.th-facts-exh-addr {
    color: var(--tc-accent);
    font-weight: 500;
    margin-left: 4px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.th-facts-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    border-right: 1px solid var(--tc-border);
    text-align: center;
}
.th-facts-stat:last-child { border-right: none; }
.th-facts-stat-value {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--tc-text);
    line-height: 1.1;
    margin-bottom: 6px;
}
.th-facts-stat-label { font-size: 0.78rem; color: var(--tc-muted); line-height: 1.4; }

.th-facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #E2DDD6;
    border: 1px solid #E2DDD6;
    margin-bottom: 2px;
}

.th-fact-card {
    background: #FAFAF8;
    padding: 44px 40px;
    transition: background 0.2s;
}
.th-fact-card:hover { background: #F0EDE7; }

.th-fact-icon {
    width: 52px; height: 52px;
    background: #F0EDE7;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
}
.th-fact-icon svg { width: 26px; height: 26px; color: #4F6651; }

.th-fact-title { font-size: 1.05rem; font-weight: 600; color: #1C2419; margin: 0 0 12px; line-height: 1.3; }
.th-fact-sub { display: none; }
.th-fact-text { font-size: 0.88rem; color: #6B7A6D; line-height: 1.65; margin: 0; }

.th-facts-cta-card {
    background: #FAFAF8;
    border: 1px solid #E2DDD6;
    border-top: 2px solid #E2DDD6;
    margin-top: 2px;
    padding: 40px 48px;
    text-align: center;
}
.th-facts-cta-card h3 { font-size: 1.4rem; font-weight: 400; color: var(--tc-text); margin: 0 0 12px; }
.th-facts-cta-card p { font-size: 0.95rem; color: var(--tc-muted); line-height: 1.7; margin: 0 0 28px; }

.th-facts-cta-features {
    display: flex; justify-content: center; gap: 32px; margin-bottom: 28px; flex-wrap: wrap;
}
.th-facts-cta-features span { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--tc-body); font-weight: 500; }
.th-facts-cta-features svg { width: 18px; height: 18px; color: #B8735A; flex-shrink: 0; }

.th-facts-cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: #B8735A; color: #ffffff; border: none; border-radius: 10px;
    padding: 15px 32px; font-size: 1rem; font-weight: 700;
    cursor: pointer; font-family: inherit; transition: background 0.2s, transform 0.15s;
}
.th-facts-cta-btn svg { width: 18px; height: 18px; }
.th-facts-cta-btn:hover { background: #9B5E47; transform: translateY(-2px); }

@media (max-width: 900px) { .th-facts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
    .th-facts { padding: 64px 0; }
    .th-facts-grid { grid-template-columns: 1fr; gap: 14px; }
    .th-facts-stats { grid-template-columns: 1fr; }
    .th-facts-stat { border-right: none; border-bottom: 1px solid var(--tc-border); }
    .th-facts-stat:last-child { border-bottom: none; }
    .th-facts-cta-card { padding: 28px 20px; }
    .th-facts-cta-features { gap: 16px; }
}

/* ============================================
   HEADER — FULL RESTYLE
   ============================================ */

/* Hide top bar completely */
#top-bar { display: none !important; }

/* Main header */
#header,
#header .header-main,
.header-main,
#header .header-inner,
.header-inner,
#header .header-bg {
    background: #ffffff !important;
    box-shadow: none !important;
    border: none !important;
}

/* Header wrapper — remove Flatsome side shadows (box-shadow: 1px 1px 10px) */
.header-wrapper,
.header-wrapper.stuck {
    background: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07) !important; /* only bottom, no sides */
    border: none !important;
}

/* Page/body background matches header to hide any edge artifacts */
body,
#wrapper,
.page-wrapper {
    background-color: #ffffff !important;
}

/* Remove all column/section borders inside header */
header .flex-col,
header .flex-row,
.header-wrapper .flex-col,
.header-wrapper .flex-row,
.header-top .flex-col,
.header-main .flex-col {
    border: none !important;
    border-left: none !important;
    border-right: none !important;
    outline: none !important;
}

/* Logo */
#logo {
    width: auto !important;
    min-width: 140px !important;
    flex-shrink: 0 !important;
}
#logo a.tc-logo-link {
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
    text-decoration: none !important;
}
#logo svg,
#logo img.tc-logo-img {
    height: 48px !important;
    width: auto !important;
    display: block !important;
}

/* Nav column — constrained within header flex layout */
.header-nav,
.main-nav,
#header .header-nav {
    min-width: 0 !important;
    flex: 0 1 auto !important;
    overflow: hidden !important;
}

/* Nav — single row, no overflow */
.nav,
.header-nav .nav,
.main-nav .nav,
#header .nav {
    flex-wrap: nowrap !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 0 !important;
}
.nav > li {
    white-space: nowrap !important;
    flex-shrink: 1 !important;
    min-width: 0 !important;
}

/* Nav — elegant serif style */
.nav > li > a {
    font-family: var(--tc-font) !important;
    font-size: 0.62rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.07em !important;
    text-transform: uppercase !important;
    color: #2c3e50 !important;
    padding: 4px 5px !important;
    transition: color 0.2s !important;
    white-space: nowrap !important;
}
.nav > li > a:hover,
.nav > li.active > a {
    color: #B8735A !important;
    background: transparent !important;
}

/* Remove nav-divided separators (vertical lines between items) */
.nav-divided > li + li > a::after,
.nav-divided > li > a::after,
.nav-divided > li + li > a::before,
.nav-divided > li > a::before,
.nav > li > a::after,
.nav > li > a::before {
    display: none !important;
    border: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
}
.nav-divided > li {
    border: none !important;
    margin: 0 !important;
}

/* Dropdown */
.nav .sub-menu {
    background: #F0EDE7 !important;
    border-top: 2px solid #252E26 !important;
    border-radius: 0 0 6px 6px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10) !important;
}
.nav .sub-menu li a {
    font-family: var(--tc-font) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.10em !important;
    text-transform: uppercase !important;
    color: #2c3e50 !important;
    font-weight: 400 !important;
    padding: 10px 20px !important;
    background: transparent !important;
}
.nav .sub-menu li a:hover {
    color: #B8735A !important;
    background: rgba(0,0,0,0.03) !important;
}

/* Cart button */
.header-cart .cart-count,
.header-cart-link .cart-count {
    background: #B8735A !important;
    color: #ffffff !important;
}
.header-cart-link {
    color: #252E26 !important;
}

/* Account link */
.header-account-link,
.account-icon a {
    color: #252E26 !important;
}

/* Search icon */
.search-icon a,
.search-toggle a {
    color: #252E26 !important;
}

/* Divider — hide all header dividers */
.header-divider,
.header-divider-left,
.header-divider-right,
[class*="header-divider"] {
    display: none !important;
}

/* Mobile menu icon */
.nav-icon .lines,
.nav-icon .lines::before,
.nav-icon .lines::after {
    background: #252E26 !important;
}

/* ========== BENEFITS SECTION ========== */
.th-benefits {
    background: #FAFAF8;
    padding: 96px 0 104px;
}
.th-benefits-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}
.th-benefits-head {
    text-align: center;
    margin-bottom: 64px;
}
.th-benefits-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: #B8735A;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.th-benefits-head h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #1C2419;
    line-height: 1.2;
    margin: 0;
}
.th-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #E2DDD6;
    border: 1px solid #E2DDD6;
}
.th-benefit-item {
    background: #FAFAF8;
    padding: 44px 40px;
    transition: background 0.2s;
}
.th-benefit-item:hover {
    background: #F0EDE7;
}
.th-benefit-icon {
    width: 52px;
    height: 52px;
    background: #F0EDE7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #4F6651;
}
.th-benefit-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1C2419;
    margin: 0 0 12px;
    line-height: 1.3;
}
.th-benefit-item p {
    font-size: 0.88rem;
    color: #6B7A6D;
    line-height: 1.65;
    margin: 0;
}
@media (max-width: 900px) {
    .th-benefits-inner { padding: 0 24px; }
    .th-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
    .th-benefits { padding: 64px 0; }
    .th-benefits-grid { grid-template-columns: 1fr; }
    .th-benefit-item { padding: 32px 24px; }
}

/* ========== ABOUT SECTION ========== */
/* ========== ABOUT — VIDEO BACKGROUND ========== */
.th-about {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 20px;
}
.th-about-video-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    background: #1a2418;
}
.th-about-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    /* wider+taller than container to clip YouTube black bars */
    width: 200%;
    height: calc(100% + 160px);
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
}
.th-about-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.th-about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 36, 25, 0.65);
    z-index: 1;
}
.th-about-container {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}
.th-about-label {
    display: inline-block;
    font-family: var(--tc-font);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e8a882;
    margin-bottom: 18px;
}
.th-about-title {
    font-family: var(--tc-font);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    color: #ffffff;
    line-height: 1.25;
    margin: 0 0 16px;
    letter-spacing: 0.01em;
}
.th-about-line {
    width: 48px;
    height: 2px;
    background: #B8735A;
    margin: 0 auto 28px;
}
.th-about-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
    margin: 0 auto 52px;
    max-width: 620px;
}
.th-about-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    border-top: 1px solid rgba(255,255,255,0.18);
    padding-top: 48px;
}
.th-about-pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.88);
    font-size: 0.88rem;
    line-height: 1.5;
    text-align: center;
}
.th-about-pillar svg {
    width: 32px;
    height: 32px;
    stroke: #e8a882;
    flex-shrink: 0;
}
@media (max-width: 700px) {
    .th-about-pillars { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ========== PRODUCTION SECTION ========== */
/* ========== PRODUCTION — VIDEO BACKGROUND ========== */
.th-production {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}
.th-production-video-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    background: #0f1a10;
}
.th-production-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 177.78vh;
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw;
    border: none;
    pointer-events: none;
}
.th-production-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 36, 25, 0.60);
    z-index: 1;
}
.th-production-container {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}
.th-production-label {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e8a882;
    margin-bottom: 18px;
}
.th-production-title {
    font-family: var(--tc-font);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.25;
}
.th-production-line {
    width: 48px;
    height: 2px;
    background: #B8735A;
    margin: 0 auto 28px;
}
.th-production-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto 48px;
}
.th-production-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 40px;
    border-top: 1px solid rgba(255,255,255,0.18);
    padding-top: 40px;
    margin-bottom: 44px;
    text-align: left;
}
.th-production-pillar {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.88);
    font-size: 0.95rem;
    line-height: 1.5;
}
.th-production-pillar svg {
    width: 18px;
    height: 18px;
    stroke: #e8a882;
    flex-shrink: 0;
    margin-top: 2px;
}
@media (max-width: 600px) {
    .th-production-pillars { grid-template-columns: 1fr; }
}
/* production btn kept below */
.th-production-text {
    font-size: 0.95rem;
    color: #3D4E3F;
    line-height: 1.7;
    margin: 0;
}
.th-production-list {
    list-style: none;
    padding: 0;
    margin: 4px 0 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.th-production-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #252E26;
    font-weight: 500;
}
.th-production-list li::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23B8735A' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E") center/contain no-repeat;
}
/* Production — two buttons row */
.th-production-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.th-production-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff !important;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 38px;
    border: 1.5px solid rgba(255,255,255,0.7);
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s;
}
.th-production-btn svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
}
.th-production-btn:hover {
    background: rgba(255,255,255,0.12);
    border-color: #ffffff;
    color: #fff !important;
}
.th-production-btn--outline {
    background: rgba(255,255,255,0.08);
}

/* Production play button (Variant 2 — YouTube lightbox) */
.th-prod-play-btn {
    position: absolute;
    bottom: 32px;
    right: 32px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.45);
    border: 1.5px solid rgba(255,255,255,0.5);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 10px 20px 10px 14px;
    border-radius: 40px;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.2s, border-color 0.2s;
}
.th-prod-play-btn svg { flex-shrink: 0; }
.th-prod-play-btn:hover { background: rgba(0,0,0,0.65); border-color: #fff; color: #fff; }

/* YouTube Lightbox Modal */
.th-yt-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.th-yt-modal--open { display: flex; }
.th-yt-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    cursor: pointer;
}
.th-yt-modal-inner {
    position: relative;
    z-index: 1;
    width: min(90vw, 1100px);
    aspect-ratio: 16/9;
}
.th-yt-modal-frame {
    width: 100%;
    height: 100%;
}
.th-yt-modal-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 4px;
}
.th-yt-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.th-yt-modal-close:hover { opacity: 1; }

/* ========== CONTACTS SECTION ========== */
.th-contacts {
    background: #FAFAF8;
    padding: 80px 20px 80px;
}
.th-contacts-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}
@media (max-width: 860px) {
    .th-contacts-container { grid-template-columns: 1fr; gap: 40px; }
}

/* Left column */
.th-contacts-label {
    display: inline-block;
    font-family: var(--tc-font);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #B8735A;
    margin-bottom: 14px;
}
.th-contacts-title {
    font-family: var(--tc-font);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #252E26;
    margin: 0 0 14px;
    line-height: 1.25;
}
.th-contacts-line {
    width: 48px;
    height: 3px;
    background: #B8735A;
    margin-bottom: 20px;
    border-radius: 2px;
}
.th-contacts-desc {
    font-size: 0.97rem;
    color: #3D4E3F;
    line-height: 1.7;
    margin: 0 0 32px;
}

/* Left column stretch */
.th-contacts-info {
    display: flex;
    flex-direction: column;
}
.th-contacts-list {
    flex: 1;
}

/* Contact items */
.th-contacts-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.th-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: #f7f5f2;
    border-radius: 8px;
}
a.th-contact-item--link {
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}
a.th-contact-item--link:hover { background: #ede9e3; }
.th-contact-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.th-contact-icon svg {
    width: 18px;
    height: 18px;
    stroke: #252E26;
}
.th-contact-body { min-width: 0; }
.th-contact-name {
    font-size: 0.82rem;
    color: #7A887C;
    margin-bottom: 2px;
}
.th-contact-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #B8735A;
    text-decoration: none;
}
.th-contact-value:hover { text-decoration: underline; }
.th-contact-note {
    font-size: 0.85rem;
    font-weight: 400;
    color: #3D4E3F;
}

/* Right column — form card */
.th-contacts-form-col {
    display: flex;
    flex-direction: column;
}
.th-contacts-form-card {
    background: #fff;
    border: 1px solid #e8e0d0;
    border-radius: 12px;
    padding: 36px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    flex: 1;
    display: flex;
    flex-direction: column;
}
.th-contacts-form-title {
    font-family: var(--tc-font);
    font-size: 1.25rem;
    font-weight: 700;
    color: #252E26;
    margin: 0 0 24px;
}
.th-cform-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.th-cform-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #252E26;
}
.th-req { color: #B8735A; }
.th-cform-group input,
.th-cform-group select,
.th-cform-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1c9ba;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #252E26;
    background: #fafaf8;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    font-family: inherit;
}
.th-cform-group input:focus,
.th-cform-group select:focus,
.th-cform-group textarea:focus {
    outline: none;
    border-color: #B8735A;
    box-shadow: 0 0 0 3px rgba(200,151,42,0.12);
}
.th-cform-group textarea { resize: vertical; min-height: 90px; }
.th-cform-phone {
    display: flex;
    gap: 8px;
}
.th-cform-code {
    width: 130px !important;
    min-width: 130px;
    flex-shrink: 0;
    height: 54px;
    box-sizing: border-box;
    padding: 0 8px;
}
.th-cform-phone input[type="tel"] {
    flex: 1;
    height: 54px;
    box-sizing: border-box;
}
.th-cform-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.th-cform-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: #B8735A;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 4px;
    transition: background 0.2s;
}
.th-cform-submit svg { width: 18px; height: 18px; stroke: #fff; }
.th-cform-submit:hover { background: #9B5E47; }
.th-cform-privacy {
    font-size: 0.75rem;
    color: #a0aec0;
    text-align: center;
    margin: 10px 0 0;
}
.th-cform-success {
    padding: 10px 14px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 6px;
    color: #166534;
    font-size: 0.9rem;
    margin-bottom: 12px;
}
.th-cform-error {
    padding: 10px 14px;
    background: #fff1f2;
    border: 1px solid #fca5a5;
    border-radius: 6px;
    color: #991b1b;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

/* ========== PROJECTS SECTION ========== */
.th-projects {
    background: #FAFAF8;
    padding: 60px 20px 72px;
}
.th-projects-container {
    max-width: 680px;
    margin: 0 auto;
}

/* Divider */
.th-projects-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    color: #a0aec0;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
}
.th-projects-divider::before,
.th-projects-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #d1c9ba;
}

/* Header */
.th-projects-header { text-align: center; margin-bottom: 28px; }
.th-projects-title {
    font-family: var(--tc-font);
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    color: #252E26;
    margin: 0 0 18px;
}
.th-projects-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
}
.th-projects-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #3D4E3F;
}
.th-projects-features svg {
    width: 16px; height: 16px;
    stroke: #B8735A;
    flex-shrink: 0;
}

/* Main photo */
.th-projects-main-photo {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
    background: #252E26;
    min-height: 320px;
}
.th-projects-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}
.th-projects-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}
.th-projects-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #252E26;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}
.th-projects-badge svg {
    width: 14px; height: 14px;
    stroke: #B8735A;
    flex-shrink: 0;
}

/* Videos row */
.th-projects-videos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 32px;
}
.th-projects-video-wrap {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}
.th-projects-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
}

/* Customer voices sub-block */
.th-projects-voices {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 36px;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}
.th-voices-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    color: var(--sp-dark);
    letter-spacing: 0.04em;
}
.th-voices-label svg { stroke: var(--sp-accent); flex-shrink: 0; }
.th-voices-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.th-voice-link {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--sp-cream) !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(240,237,231,0.25);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}
.th-voice-link:hover {
    color: var(--sp-accent) !important;
    border-color: var(--sp-accent);
}
.th-voice-link svg { fill: #1877f2; flex-shrink: 0; }

/* CTA */
.th-projects-cta { text-align: center; }
.th-projects-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #B8735A;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.th-projects-btn svg { width: 18px; height: 18px; stroke: #fff; }
.th-projects-btn:hover { background: #9B5E47; transform: translateY(-1px); color: #fff; }

@media (max-width: 600px) {
    .th-projects-videos { grid-template-columns: 1fr; }
}

/* ========== SOCIAL LINKS — CONTACTS ========== */
.th-contacts-social {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}
.th-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
}
.th-social-link:hover { opacity: 0.85; transform: translateY(-1px); }
.th-social-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.th-social-fb { background: #1877f2; color: #fff; }
.th-social-fb svg { fill: #fff; }
.th-social-yt { background: #ff0000; color: #fff; }
.th-social-yt svg { fill: #ff0000; }
.th-social-yt svg polygon { fill: #fff; }

/* ========== SOCIAL LINKS — FOOTER ========== */
.tc-footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 0;
}
.tc-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
}
.tc-footer-social a:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.tc-footer-social svg { fill: #fff; }

/* ========== FOOTER BOTTOM BAR ========== */
.tc-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 32px;
    padding: 14px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 0;
    background: #222;
}

.tc-footer-links {
    margin-bottom: 0 !important;
}

/* Hide Flatsome's absolute-footer (duplicate legal links) */
.absolute-footer {
    display: none !important;
}

/* Legal links */
.tc-footer-legal-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.tc-footer-legal-list li a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}
.tc-footer-legal-list li a:hover {
    color: #B8735A;
}

/* Social icons in footer */
.tc-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}
.tc-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
}
.tc-footer-social a:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}
.tc-footer-social svg { fill: #fff; display: block; }

/* Remove space between last section and footer */
.home #content,
.home #main,
.home article,
.home .entry-content,
.home .post-content,
.home .type-page,
.page #content,
.page #main,
.page article,
.page .entry-content,
.page .post-content,
.page .type-page {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Remove empty footer widget area space */
#footer .footer-2,
#footer .footer-widgets,
.footer-2:empty,
.footer-widgets:empty {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
#footer { margin: 0 !important; padding: 0 !important; }
.footer-wrapper { background: #2a2a2a; }

/* ============================================
   TRUST BAR
   ============================================ */
.th-trustbar {
    background: var(--tc-bg-alt);
    border-bottom: 1px solid var(--tc-border);
    padding: 20px 24px;
}
.th-trustbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.th-trustbar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 28px;
    border-right: 1px solid var(--tc-border);
    flex: 1 1 180px;
    justify-content: center;
}
.th-trustbar-item:last-child { border-right: none; }
.th-trustbar-icon {
    width: 36px;
    height: 36px;
    background: rgba(184,115,90,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.th-trustbar-icon svg {
    width: 18px;
    height: 18px;
    color: #B8735A;
}
.th-trustbar-text { display: flex; flex-direction: column; }
.th-trustbar-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--tc-text);
    line-height: 1.2;
}
.th-trustbar-label {
    font-size: 0.72rem;
    color: var(--tc-muted);
    line-height: 1.3;
}
@media (max-width: 600px) {
    .th-trustbar-item { border-right: none; border-bottom: 1px solid var(--tc-border); padding: 12px 16px; flex: 1 1 45%; }
    .th-trustbar-item:nth-child(2n) { border-right: none; }
    .th-trustbar-item:last-child { border-bottom: none; }
}

/* ============================================
   CATALOG PREVIEW
   ============================================ */
.th-catalog {
    padding: 96px 0;
    background: var(--tc-light);
}
.th-catalog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.th-catalog-header {
    text-align: center;
    margin-bottom: 56px;
}
.th-catalog-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #B8735A;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.th-catalog-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #252E26;
    margin-bottom: 16px;
    line-height: 1.2;
}
.th-catalog-line {
    width: 56px;
    height: 3px;
    background: #B8735A;
    border-radius: 2px;
    margin: 0 auto 20px;
}
.th-catalog-desc {
    font-size: 1.05rem;
    color: #7A887C;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}
/* Carousel layout */
.th-catalog-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}
.th-catalog-viewport {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}
.th-catalog-track {
    display: flex;
    gap: 24px;
    will-change: transform;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.th-catalog-prev,
.th-catalog-next {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 80px;
    border: none;
    background: #fff;
    color: #252E26;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    border-radius: 4px;
}
.th-catalog-prev:hover,
.th-catalog-next:hover {
    background: #B8735A;
    color: #fff;
}
.th-catalog-card {
    background: #fff;
    border: 1px solid #D6D0C8;
    border-radius: 0;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    /* width is set by JS */
}
.th-catalog-card:hover {
    box-shadow: 0 12px 48px rgba(28,69,50,0.14);
    transform: translateY(-4px);
    color: inherit;
}
.th-catalog-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #F0EDE7;
}
.th-catalog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.th-catalog-card:hover .th-catalog-img-wrap img { transform: scale(1.04); }
.th-catalog-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #252E26;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
}
.th-catalog-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.th-catalog-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #252E26;
    margin: 0 0 8px;
    line-height: 1.35;
}
.th-catalog-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}
.th-catalog-spec-chip {
    background: #F0EDE7;
    color: #3D4E3F;
    font-size: 0.78rem;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
}
.th-catalog-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #252E26;
    margin-top: auto;
    margin-bottom: 14px;
}
.th-catalog-price-sub {
    font-size: 0.8rem;
    font-weight: 400;
    color: #7A887C;
    display: block;
}
.th-catalog-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F0EDE7;
    color: #252E26;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}
.th-catalog-btn:hover { background: #E8E3DB; color: #252E26; }
.th-catalog-btn svg { width: 16px; height: 16px; stroke: #252E26; }
.th-catalog-cta {
    text-align: center;
    margin-top: 40px;
}
.th-catalog-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #B8735A;
    color: #ffffff !important;
    padding: 16px 40px;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 20px rgba(184,115,90,0.3);
}
.th-catalog-all-btn:hover { background: #9B5E47; transform: translateY(-2px); color: #fff !important; }
.th-catalog-all-btn svg { width: 18px; height: 18px; }
@media (max-width: 560px) {
    .th-catalog { padding: 64px 0; }
    .th-catalog-img-wrap { height: 260px; }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.th-howto {
    position: relative;
    padding: 96px 0;
    background: #F0EDE7;
    overflow: hidden;
}
.th-howto-bg {
    position: absolute;
    inset: 0;
    background-image: url('');
    background-size: cover;
    background-position: center;
    opacity: 0.06;
}
.th-howto-container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.th-howto-header {
    text-align: center;
    margin-bottom: 64px;
}
.th-howto-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #B8735A;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.th-howto-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #252E26;
    margin-bottom: 16px;
    line-height: 1.2;
}
.th-howto-line {
    width: 56px;
    height: 3px;
    background: #B8735A;
    border-radius: 2px;
    margin: 0 auto 20px;
}
.th-howto-desc {
    font-size: 1.05rem;
    color: #7A887C;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}
.th-howto-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    position: relative;
}
.th-howto-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(10% + 36px);
    right: calc(10% + 36px);
    height: 2px;
    background: repeating-linear-gradient(90deg, #B8735A 0, #B8735A 8px, transparent 8px, transparent 16px);
}
.th-howto-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}
.th-howto-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #252E26;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(28,69,50,0.3);
    position: relative;
}
.th-howto-num-icon {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 26px;
    height: 26px;
    background: #B8735A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.th-howto-num-icon svg { width: 14px; height: 14px; color: #fff; }
.th-howto-step-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #252E26;
    margin: 0 0 8px;
    line-height: 1.35;
}
.th-howto-step-text {
    font-size: 0.82rem;
    color: #7A887C;
    line-height: 1.55;
    margin: 0;
}
.th-howto-step-duration {
    display: inline-block;
    background: #E8E3DB;
    color: #252E26;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 10px;
}
@media (max-width: 900px) {
    .th-howto-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .th-howto-steps::before { display: none; }
}
@media (max-width: 560px) {
    .th-howto-steps { grid-template-columns: 1fr 1fr; }
    .th-howto { padding: 64px 0; }
}

.th-howto-cta {
    text-align: center;
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid var(--tc-border);
}
.th-howto-cta-text {
    font-size: 1.05rem;
    color: var(--tc-muted);
    margin: 0 0 24px;
    line-height: 1.6;
}
.th-howto-cta-headline {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--tc-primary);
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.th-howto-cta-headline:last-of-type {
    font-weight: 400;
    margin-bottom: 24px;
}
.th-howto-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    background: #B8735A;
    color: var(--tc-white) !important;
    font-family: var(--tc-font);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--tc-radius);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.th-howto-cta-btn svg { width: 16px; height: 16px; }
.th-howto-cta-btn:hover {
    background: #9B5E47;
    transform: translateY(-2px);
}

/* ============================================
   CUSTOMER BLOGS
   ============================================ */
.th-blogs {
    padding: 110px 0;
    background: var(--sp-bg);
}
.th-blogs-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.th-blogs-header {
    text-align: center;
    margin-bottom: 64px;
}
.th-blogs-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--sp-accent);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.th-blogs-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 600;
    color: var(--sp-dark);
    line-height: 1.25;
    margin-bottom: 20px;
}
.th-blogs-subtitle {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}
.th-blogs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}
.th-blog-card {
    background: #fff;
    border: 1px solid var(--sp-border);
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.th-blog-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
}
.th-blog-avatar {
    width: 52px;
    height: 52px;
    background: var(--sp-dark);
    color: var(--sp-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}
.th-blog-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sp-dark);
    line-height: 1.3;
}
.th-blog-meta {
    font-size: 0.8rem;
    color: #9CA3AF;
    margin-top: 3px;
}
.th-blog-quote {
    font-size: 0.97rem;
    color: #374151;
    line-height: 1.75;
    border-left: 3px solid var(--sp-accent);
    padding-left: 20px;
    margin: 0;
    font-style: italic;
    flex: 1;
}
.th-blog-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    background: var(--sp-accent) !important;
    color: #fff !important;
    text-decoration: none !important;
    padding: 14px 24px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.2s;
    align-self: flex-start;
    border: none;
    margin-top: auto;
}
.th-blog-btn:hover { background: #a3614a !important; color: #fff !important; }
.th-blogs-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--sp-sage);
    font-weight: 500;
}
.th-blogs-trust svg { flex-shrink: 0; stroke: var(--sp-sage); }
@media (max-width: 700px) {
    .th-blogs-grid { grid-template-columns: 1fr; }
    .th-blogs { padding: 64px 0; }
    .th-blog-card { padding: 32px 24px; }
}

/* ============================================
   FAQ
   ============================================ */
.th-faq {
    padding: 96px 0;
    background: #FAFAF8;
}
.th-faq-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
}
.th-faq-header {
    text-align: center;
    margin-bottom: 56px;
}
.th-faq-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #B8735A;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.th-faq-title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #252E26;
    margin-bottom: 16px;
    line-height: 1.2;
}
.th-faq-line {
    width: 48px;
    height: 3px;
    background: #B8735A;
    border-radius: 2px;
    margin: 0 auto;
}
.th-faq-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.th-faq-item {
    border: 1px solid #D6D0C8;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.th-faq-item.open { border-color: #252E26; }
.th-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: #252E26;
    line-height: 1.4;
    transition: background 0.2s;
}
.th-faq-question:hover { background: #F0EDE7; }
.th-faq-item.open .th-faq-question { background: #F0EDE7; color: #252E26; }
.th-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #F0EDE7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.3s;
}
.th-faq-icon svg { width: 14px; height: 14px; color: #252E26; transition: transform 0.3s; }
.th-faq-item.open .th-faq-icon { background: #252E26; }
.th-faq-item.open .th-faq-icon svg { color: #fff; transform: rotate(45deg); }
.th-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
}
.th-faq-item.open .th-faq-answer { max-height: 600px; }
.th-faq-answer-inner {
    padding: 0 22px 20px;
    font-size: 0.95rem;
    color: #3D4E3F;
    line-height: 1.75;
}
.th-faq-cta {
    text-align: center;
    margin-top: 48px;
    padding: 36px 32px;
    background: #F0EDE7;
    border-radius: 16px;
}
.th-faq-cta p {
    font-size: 1.05rem;
    color: #3D4E3F;
    margin: 0 0 20px;
    line-height: 1.6;
}
.th-faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #B8735A;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 13px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.th-faq-cta-btn:hover { background: #9B5E47; transform: translateY(-1px); color: #fff; }
.th-faq-cta-btn svg { width: 18px; height: 18px; }
@media (max-width: 600px) {
    .th-faq { padding: 64px 0; }
    .th-faq-question { font-size: 0.92rem; padding: 16px 16px; }
    .th-faq-answer-inner { padding: 0 16px 16px; }
}


/* ============================================
   WHATSAPP STICKY BUTTON
   ============================================ */
.th-whatsapp-btn {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 9998;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: th-wa-pulse 2.5s infinite;
}
.th-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.18);
    color: #fff;
}
.th-whatsapp-btn svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}
.th-whatsapp-tooltip {
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%);
    background: #252E26;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.th-whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #252E26;
}
.th-whatsapp-btn:hover .th-whatsapp-tooltip { opacity: 1; }
@keyframes th-wa-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.15); }
    50% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 8px rgba(37,211,102,0.12), 0 2px 8px rgba(0,0,0,0.15); }
}
@media (max-width: 600px) {
    .th-whatsapp-btn { bottom: 20px; left: 20px; right: auto; width: 50px; height: 50px; }
    .th-whatsapp-btn svg { width: 26px; height: 26px; }
    .th-whatsapp-tooltip { display: none; }
}

/* ========== SHOP — NO SIDEBAR, FULL WIDTH ========== */
.woocommerce .woocommerce-notices-wrapper + .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count { margin-left: 0; }

/* Hide sidebar on shop pages */
.woocommerce-page .col-main,
.woocommerce-page .site-main { width: 100% !important; max-width: 100% !important; float: none !important; }
.woocommerce-page .sidebar,
.woocommerce-page .col-sidebar,
.woocommerce-page #sidebar,
.woocommerce-page .widget-area,
.shop-sidebar { display: none !important; }

/* 3 columns grid */
.woocommerce ul.products { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 28px !important; }
.woocommerce ul.products li.product { width: 100% !important; margin: 0 !important; float: none !important; }

@media (max-width: 768px) {
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
}
@media (max-width: 480px) {
    .woocommerce ul.products { grid-template-columns: 1fr !important; }
}

/* Shop — wider container + larger cards */
.woocommerce-page .container,
.woocommerce-page .row,
body.woocommerce .container {
    max-width: 1400px !important;
    padding-left: 32px !important;
    padding-right: 32px !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1rem !important;
}

.woocommerce ul.products li.product img {
    border-radius: 6px;
}


/* ========== CATALOG v2 ========== */
.tc2-catalog {
    padding: 80px 0 60px;
    background: var(--tc-light);
}
.tc2-catalog-header {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
    padding: 0 24px;
}
.tc2-catalog-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--tc-accent);
    margin-bottom: 12px;
}
.tc2-catalog-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--tc-dark);
    margin: 0 0 14px;
}
.tc2-catalog-line {
    width: 40px;
    height: 3px;
    background: var(--tc-accent);
    margin: 0 auto 18px;
    border-radius: 2px;
}
.tc2-catalog-desc {
    font-size: 1rem;
    color: var(--tc-muted);
    line-height: 1.6;
    margin: 0;
}

/* Slider layout */
.tc2-slider {
    display: flex;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
    gap: 12px;
}
.tc2-track-wrap {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
.tc2-track {
    display: flex;
    gap: 24px;
    will-change: transform;
}

/* Nav buttons */
.tc2-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 80px;
    background: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    color: var(--tc-dark);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
}
.tc2-btn:hover { background: #B8735A; color: #fff; }

/* Card */
.tc2-card {
    flex-shrink: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: var(--tc-dark);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}
.tc2-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.12); transform: translateY(-2px); }
.tc2-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #F7F4EE;
}
.tc2-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.tc2-card:hover .tc2-card-img img { transform: scale(1.04); }
.tc2-card-noimg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.tc2-card-noimg svg { width: 48px; height: 48px; color: #7A8B7C; }
.tc2-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(28,40,26,0.88);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 20px;
}
.tc2-card-body { padding: 20px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.tc2-card-name { font-size: 0.95rem; font-weight: 700; color: var(--tc-dark); margin-bottom: 12px; line-height: 1.4; }
.tc2-card-price { font-size: 1.15rem; font-weight: 800; color: var(--tc-dark); margin-bottom: 16px; margin-top: auto; }
.tc2-card-price .woocommerce-Price-amount { color: var(--tc-dark); }
.tc2-card-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #F0EDE7;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--tc-dark);
    transition: background 0.2s;
}
.tc2-card-btn svg { width: 16px; height: 16px; }
.tc2-card:hover .tc2-card-btn { background: #E4DDD4; }

/* CTA */
.tc2-cta { text-align: center; margin-top: 40px; }
.tc2-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #B8735A;
    color: #fff;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.tc2-cta-btn:hover { background: #9B5E47; transform: translateY(-2px); color: #fff; }
.tc2-cta-btn svg { width: 18px; height: 18px; }

/* ========== FOOTER LINKS ========== */
.tc-footer-links {
    background: #2a2a2a;
    padding: 48px 24px 40px;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    box-sizing: border-box;
    width: 100%;
}
.tc-footer-col {
    min-width: 0;
    flex: 1 1 120px;
    max-width: 220px;
}
.tc-footer-col-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin: 0 0 16px;
}
.tc-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.tc-footer-col ul li {
    margin-bottom: 10px;
}
.tc-footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
}
.tc-footer-col ul li a:hover {
    color: #ffffff;
    text-decoration: none;
}

/* ============================================================
   SINGLE PRODUCT PAGE — PowerSheds style (Trident brand)
   ============================================================ */

/* --- Variables --- */
.tc-sp-page {
    --sp-bg:      #FAFAF8;
    --sp-dark:    #1C2419;
    --sp-accent:  #B8735A;
    --sp-sage:    #4F6651;
    --sp-cream:   #F0EDE7;
    --sp-border:  #E2DDD6;
    --sp-text:    #2C3529;
    --sp-muted:   #7A8B7C;
    --sp-radius:  3px;
    font-family: 'Lato', system-ui, sans-serif;
    background: var(--sp-bg);
    color: var(--sp-text);
}

/* Hide default Flatsome page title on product pages */
body.single-product .page-title,
body.single-product .shop-page-title,
body.single-product .woocommerce-notices-wrapper:empty { display: none; }

/* Reset Flatsome wrappers on product page */
body.single-product #main,
body.single-product .main-content { padding: 0 !important; }
body.single-product #main .container,
body.single-product .main-content .container { max-width: none !important; padding: 0 !important; }

/* ---- HERO LAYOUT ---- */
.tc-sp-layout {
    display: grid;
    grid-template-columns: 62fr 38fr;
    min-height: 100vh;
    align-items: start;
}

/* ---- PHOTO GRID ---- */
.tc-sp-gallery { display: flex; flex-direction: column; gap: 6px; }
.tc-sp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.tc-sp-photo {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
}
.tc-sp-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.tc-sp-photo:hover img { transform: scale(1.03); }
.tc-sp-photo--empty { background: transparent; cursor: default; }

/* ---- INFO PANEL ---- */
.tc-sp-info {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    background: var(--sp-bg);
    border-left: 1px solid var(--sp-border);
    scrollbar-width: thin;
    scrollbar-color: var(--sp-border) transparent;
}
.tc-sp-info::-webkit-scrollbar { width: 4px; }
.tc-sp-info::-webkit-scrollbar-thumb { background: var(--sp-border); border-radius: 2px; }

.tc-sp-info-inner { padding: 40px 36px 60px; }

/* Breadcrumb */
.tc-sp-breadcrumb {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    color: var(--sp-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.tc-sp-breadcrumb a { color: var(--sp-muted); text-decoration: none; }
.tc-sp-breadcrumb a:hover { color: var(--sp-text); }

/* Title */
.tc-sp-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--sp-dark);
    line-height: 1.25;
    margin: 0 0 16px;
}

/* Price */
.tc-sp-price-top {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}
.tc-sp-from {
    font-size: 0.8rem;
    color: var(--sp-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.tc-sp-price-top .price,
.tc-sp-price-top .woocommerce-Price-amount {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: var(--sp-dark) !important;
}

/* Bullets */
.tc-sp-bullets {
    list-style: none;
    padding: 0; margin: 0 0 24px;
    display: flex; flex-direction: column; gap: 8px;
}
.tc-sp-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--sp-text);
    line-height: 1.5;
}
.tc-sp-bullets li::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--sp-sage);
    flex-shrink: 0;
    margin-top: 6px;
}

/* Trust */
.tc-sp-trust {
    display: flex; flex-direction: column; gap: 9px;
    padding: 20px 0;
    border-top: 1px solid var(--sp-border);
    border-bottom: 1px solid var(--sp-border);
    margin-bottom: 20px;
}
.tc-sp-trust-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.85rem; color: var(--sp-text);
}
.tc-sp-trust-item svg { color: var(--sp-sage); flex-shrink: 0; }

/* Delivery */
.tc-sp-delivery {
    display: flex; flex-direction: column; gap: 9px;
    margin-bottom: 24px;
}
.tc-sp-delivery-item {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.82rem; color: var(--sp-muted); line-height: 1.4;
}
.tc-sp-delivery-item svg { flex-shrink: 0; margin-top: 1px; }
.tc-sp-instock { color: #2A7A3B; font-size: 0.86rem; }
.tc-sp-instock svg { color: #2A7A3B; }
.tc-sp-instock strong { font-weight: 600; }
.tc-sp-socials { align-items: center; gap: 12px; }
.tc-sp-socials span { font-size: 0.82rem; color: var(--sp-muted); }
.tc-sp-socials a { color: var(--sp-muted); transition: color 0.2s; }
.tc-sp-socials a:hover { color: var(--sp-text); }
.tc-sp-socials svg { display: block; }

/* Cart wrap */
.tc-sp-cart-wrap { margin-bottom: 8px; }
.tc-sp-price-bottom {
    display: flex; align-items: baseline; gap: 8px;
    margin-bottom: 12px;
}
.tc-sp-price-bottom .price,
.tc-sp-price-bottom .woocommerce-Price-amount {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--sp-dark) !important;
}

/* WooCommerce button override */
.tc-sp-page .single_add_to_cart_button,
.tc-sp-page button[name="add-to-cart"] {
    background: var(--sp-dark) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--sp-radius) !important;
    padding: 15px 28px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.03em !important;
    width: 100% !important;
    cursor: pointer;
    transition: background 0.2s !important;
}
.tc-sp-page .single_add_to_cart_button:hover { background: var(--sp-accent) !important; }
.tc-sp-page .quantity { display: none !important; } /* hide qty for inquiry-based products */

/* WhatsApp button below cart */
.tc-sp-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    margin-top: 10px;
    background: #25D366;
    color: #fff !important;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none !important;
    transition: background 0.2s;
}
.tc-sp-wa-btn:hover { background: #1ebe5d; color: #fff !important; }

/* Accordion */
.tc-sp-accordion { margin-top: 8px; }
.tc-sp-acc-item { border-top: 1px solid var(--sp-border); }
.tc-sp-acc-item:last-child { border-bottom: 1px solid var(--sp-border); }
.tc-sp-acc-trigger {
    display: flex; justify-content: space-between; align-items: center;
    width: 100%; padding: 16px 0;
    background: none; border: none; cursor: pointer;
    font-size: 0.88rem; font-weight: 600;
    color: var(--sp-dark); text-align: left;
    letter-spacing: 0.03em; text-transform: uppercase;
}
.tc-sp-acc-icon { transition: transform 0.25s; flex-shrink: 0; }
.tc-sp-acc-trigger[aria-expanded="true"] .tc-sp-acc-icon { transform: rotate(180deg); }
.tc-sp-acc-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.tc-sp-acc-content {
    padding: 20px 0 24px;
    font-size: 0.95rem;
    color: var(--sp-dark);
    line-height: 1.8;
    font-family: inherit;
}
.tc-sp-acc-content p {
    margin: 0 0 16px;
    color: #4A5568;
}
.tc-sp-acc-content p:last-child { margin: 0; }

/* Lead paragraph (first p after h1/h2) */
.tc-sp-acc-content > p:first-child {
    font-size: 1rem;
    color: #3D4A3E;
    line-height: 1.85;
}

/* H2 inside description */
.tc-sp-acc-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sp-dark);
    margin: 28px 0 6px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--sp-accent);
    display: inline-block;
    line-height: 1.3;
}

/* H3 — feature blocks with em-dash style */
.tc-sp-acc-content h3 {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--sp-accent);
    margin: 28px 0 6px;
    line-height: 1.4;
    font-family: var(--tc-font) !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.tc-sp-acc-content h3 + p {
    margin-top: 0;
    color: #3D4040;
    font-size: 0.95rem;
}

/* Horizontal rule */
.tc-sp-acc-content hr {
    border: none;
    border-top: 1px solid var(--sp-border);
    margin: 24px 0;
}

/* Specs table */
.tc-sp-specs-table { width: 100%; border-collapse: collapse; }
.tc-sp-specs-table tr { border-bottom: 1px solid var(--sp-border); }
.tc-sp-specs-table td {
    padding: 9px 0; font-size: 0.85rem; vertical-align: top;
}
.tc-sp-specs-table td:first-child { color: var(--sp-muted); width: 50%; padding-right: 12px; }
.tc-sp-specs-table td:last-child { color: var(--sp-text); font-weight: 500; }

/* ---- TAGLINE SECTION ---- */
.tc-sp-tagline {
    text-align: center;
    padding: 80px 24px;
    background: var(--sp-bg);
}
.tc-sp-section-label {
    display: block;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--sp-muted);
    margin-bottom: 16px;
}
.tc-sp-tagline h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700; color: var(--sp-dark);
    line-height: 1.2; margin: 0 0 32px;
}
.tc-sp-tagline-btn {
    display: inline-block;
    padding: 13px 28px;
    border: 1.5px solid var(--sp-dark);
    border-radius: 40px;
    font-size: 0.88rem; font-weight: 600;
    color: var(--sp-dark); text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.tc-sp-tagline-btn:hover { background: var(--sp-accent); border-color: var(--sp-accent); color: #fff; }

/* ---- PANORAMIC PHOTO ---- */
.tc-sp-panorama {
    height: 55vw; max-height: 680px;
    background-size: cover; background-position: center;
    background-attachment: fixed;
}

/* ---- FEATURES ---- */
.tc-sp-features {
    padding: 72px 0;
    background: var(--sp-bg);
    overflow: hidden;
}
.tc-sp-features-head {
    padding: 0 60px 40px;
    text-align: center;
}
.tc-sp-features-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 700; color: var(--sp-dark);
    line-height: 1.25; margin: 0;
}
.tc-sp-features-viewport {
    overflow: hidden;
    padding: 0 60px;
}
.tc-sp-features-track {
    display: flex; gap: 6px;
    will-change: transform;
}
.tc-sp-features-track::-webkit-scrollbar { display: none; }
.tc-sp-feat-card {
    flex: 0 0 auto; /* width set by JS */
    background: var(--sp-cream);
}
.tc-sp-feat-img {
    height: 320px;
    background: var(--sp-cream);
}
.tc-sp-feat-body { padding: 20px 20px 24px; }
.tc-sp-feat-body h3 {
    font-size: 1rem; font-weight: 700;
    color: var(--sp-dark); margin: 0 0 8px;
}
.tc-sp-feat-body p { font-size: 0.85rem; color: var(--sp-muted); line-height: 1.6; margin: 0; }
.tc-sp-features-nav {
    display: flex; gap: 8px;
    padding: 20px 60px 0;
}
.tc-sp-feat-prev,
.tc-sp-feat-next {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--sp-border);
    background: none; cursor: pointer;
    font-size: 1.1rem; color: var(--sp-dark);
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.2s, background 0.2s;
}
.tc-sp-feat-prev:hover,
.tc-sp-feat-next:hover { background: var(--sp-dark); color: #fff; border-color: var(--sp-dark); }

/* ---- SPEC TABLE ---- */
.tc-sp-specgrid {
    padding: 80px 60px;
    background: #fff;
}
.tc-sp-specgrid-head {
    margin-bottom: 48px;
    text-align: center;
}
.tc-sp-specgrid-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 700; color: var(--sp-dark);
    line-height: 1.25; margin: 12px 0 0;
}
/* Two-column table: icon+name | value */
.tc-sp-specs-rows {
    max-width: 760px;
    margin: 0 auto;
}
.tc-sp-specs-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #ebebeb;
    transition: opacity 0.25s;
}
.tc-sp-specs-row:first-child { border-top: 1px solid #ebebeb; }
.tc-sp-specs-label {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}
.tc-sp-spec-icon-wrap {
    flex-shrink: 0;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    opacity: 0.28;
}
.tc-sp-spec-icon-wrap svg { width: 32px; height: 32px; }
.tc-sp-specs-name {
    font-size: 0.95rem;
    font-weight: 400;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tc-sp-specs-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--sp-dark);
    text-align: right;
    flex-shrink: 0;
    max-width: 55%;
}
/* Hidden rows */
.tc-spec-hidden { display: none; }
/* Show-more button */
.tc-specs-more-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding-top: 16px;
    text-align: center;
}
.tc-specs-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid #D6D0C8;
    border-radius: 20px;
    padding: 7px 18px;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--sp-dark);
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s;
    text-transform: none;
    letter-spacing: 0;
}
.tc-specs-more-btn:hover {
    border-color: var(--sp-dark);
    background: #f5f3ef;
}
.tc-specs-more-btn svg { transition: transform 0.2s; }
.tc-specs-more-btn:hover svg { transform: translateY(2px); }

@media (max-width: 900px) {
    .tc-sp-specgrid { padding: 48px 20px; }
}
@media (max-width: 560px) {
    .tc-sp-specs-name { font-size: 0.875rem; }
    .tc-sp-specs-value { font-size: 0.875rem; max-width: 50%; }
    .tc-sp-spec-icon-wrap { width: 24px; height: 24px; }
    .tc-sp-spec-icon-wrap svg { width: 24px; height: 24px; }
}

/* ---- BENEFITS ON PRODUCT PAGE ---- */
.tc-sp-benefits { margin: 0; }
.tc-sp-benefits .th-benefits-inner { padding: 0; }

@media (max-width: 600px) {
    .tc-sp-benefits .th-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        background: #ebebeb;
    }
    .tc-sp-benefits .th-benefit-item {
        padding: 20px 16px;
        background: #fff;
        border-radius: 0;
    }
    .tc-sp-benefits .th-benefit-icon {
        width: 36px; height: 36px;
        margin-bottom: 8px;
    }
    .tc-sp-benefits .th-benefit-icon svg { width: 22px; height: 22px; }
    .tc-sp-benefits .th-benefit-item h3 {
        font-size: 0.85rem;
        margin: 0;
        line-height: 1.3;
    }
    .tc-sp-benefits .th-benefit-item p { display: none; }
}

/* ---- QUALITY SECTION ---- */
.tc-sp-quality {
    display: grid;
    grid-template-columns: 50fr 50fr;
    min-height: 520px;
    margin-bottom: 60px;
}
.tc-sp-quality-photo {
    background-color: var(--sp-cream);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tc-sp-quality-photo img {
    width: 100%;
    height: auto;
    display: block;
}
.tc-sp-quality-text {
    background: var(--sp-dark);
    display: flex; align-items: center;
    padding: 60px;
}
.tc-sp-quality-inner { max-width: 420px; }
.tc-sp-section-label-light {
    display: block;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
}
.tc-sp-quality-inner h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700; color: #fff;
    line-height: 1.2; margin: 0 0 20px;
}
.tc-sp-quality-inner p {
    font-size: 0.95rem; color: rgba(255,255,255,0.72);
    line-height: 1.7; margin: 0 0 32px;
}
.tc-sp-quality-btn {
    display: inline-block;
    padding: 13px 28px;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 40px;
    font-size: 0.88rem; font-weight: 600;
    color: #fff; text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.tc-sp-quality-btn:hover { border-color: var(--sp-accent); background: var(--sp-accent); }

/* ---- EXHIBITION SECTION ---- */
.tc-sp-exhibition {
    display: grid;
    grid-template-columns: 55fr 45fr;
    min-height: 480px;
    margin-bottom: 180px;
}
.tc-sp-exh-map { position: relative; }
.tc-sp-exh-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.tc-sp-exh-info {
    background: var(--sp-bg);
    padding: 60px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--sp-border);
}
.tc-sp-exh-info h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700; color: var(--sp-dark);
    line-height: 1.25; margin: 12px 0 20px;
}
.tc-sp-exh-address {
    font-size: 0.9rem; color: var(--sp-text);
    line-height: 1.7; margin: 0 0 16px;
}
.tc-sp-exh-note {
    font-size: 0.82rem; color: var(--sp-muted);
    line-height: 1.6;
    padding: 14px 16px;
    background: var(--sp-cream);
    border-left: 3px solid var(--sp-accent);
    margin-bottom: 28px;
}
.tc-sp-exh-btns { display: flex; flex-direction: column; gap: 10px; }
.tc-sp-exh-wa { margin-top: 0; }
.tc-sp-exh-form-btn {
    display: flex; align-items: center; justify-content: center;
    width: 100%; padding: 14px 20px;
    background: var(--sp-dark);
    color: #fff;
    font-size: 0.95rem; font-weight: 600;
    border: none; border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}
.tc-sp-exh-form-btn:hover { background: var(--sp-accent); }

@media (max-width: 900px) {
    .tc-sp-exhibition { grid-template-columns: 1fr; }
    .tc-sp-exh-map { height: 300px; }
    .tc-sp-exh-info { padding: 40px 20px; border-left: none; border-top: 1px solid var(--sp-border); }
}

/* ---- STICKY BAR ---- */
.tc-sp-sticky-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    background: var(--sp-bg);
    border-top: 1px solid var(--sp-border);
    padding: 14px 40px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
    pointer-events: none;
}
.tc-sp-sticky-bar.is-visible { transform: translateY(0); pointer-events: auto; }
.tc-sp-sticky-title {
    font-size: 1rem; font-weight: 700; color: var(--sp-dark);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.tc-sp-sticky-actions { display: flex; align-items: center; gap: 12px; }
.tc-sp-sticky-wa {
    display: flex; align-items: center; gap: 7px;
    padding: 10px 20px;
    border: 1.5px solid var(--sp-border); border-radius: 40px;
    font-size: 0.85rem; font-weight: 600; color: var(--sp-text);
    text-decoration: none; transition: border-color 0.2s;
}
.tc-sp-sticky-wa:hover { border-color: #25D366; color: #25D366; }
.tc-sp-sticky-cta {
    padding: 11px 28px;
    background: var(--sp-dark); color: #fff;
    border: none; border-radius: 40px;
    font-size: 0.88rem; font-weight: 600;
    cursor: pointer; transition: background 0.2s;
    white-space: nowrap;
}
.tc-sp-sticky-cta:hover { background: var(--sp-accent); }

/* ---- LIGHTBOX ---- */
.tc-sp-lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.95);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.tc-sp-lightbox.is-open { opacity: 1; pointer-events: all; }
.tc-sp-lb-wrap { max-width: 90vw; max-height: 90vh; }
.tc-sp-lb-img { max-width: 90vw; max-height: 88vh; object-fit: contain; display: block; }
.tc-sp-lb-close,
.tc-sp-lb-prev,
.tc-sp-lb-next {
    position: absolute; background: none; border: none;
    color: rgba(255,255,255,0.8); cursor: pointer; font-size: 1.5rem;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; transition: color 0.2s, background 0.2s;
}
.tc-sp-lb-close:hover,
.tc-sp-lb-prev:hover,
.tc-sp-lb-next:hover { color: #fff; background: rgba(255,255,255,0.1); }
.tc-sp-lb-close { top: 20px; right: 20px; font-size: 1.8rem; }
.tc-sp-lb-prev  { left: 20px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; }
.tc-sp-lb-next  { right: 20px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; }
.tc-sp-lb-counter {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.5); font-size: 0.8rem; letter-spacing: 0.1em;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .tc-sp-layout { grid-template-columns: 1fr; }
    .tc-sp-info { position: static; height: auto; border-left: none; border-top: 1px solid var(--sp-border); }
    .tc-sp-info-inner { padding: 28px 20px 40px; }
    .tc-sp-quality { grid-template-columns: 1fr; }
    .tc-sp-quality-photo { height: 50vw; }
    .tc-sp-features-head { padding: 0 20px 32px; }
    .tc-sp-features-viewport { padding: 0 20px; }
    .tc-sp-features-nav { padding: 16px 20px 0; }
    .tc-sp-tagline { padding: 48px 20px; }
    .tc-sp-quality-text { padding: 40px 24px; }
    .tc-sp-sticky-bar { padding: 12px 20px; }
    .tc-sp-sticky-title { display: none; }
}

/* ========== SHOP BREADCRUMBS — match product page style ========== */
.woocommerce-breadcrumb {
    font-size: 0.72rem !important;
    letter-spacing: 0.06em !important;
    color: #888 !important;
    background: none !important;
    padding: 0 !important;
    margin: 0 0 24px !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    font-family: inherit !important;
    text-transform: none !important;
    font-weight: 400 !important;
}
.woocommerce-breadcrumb a {
    color: #888 !important;
    text-decoration: none !important;
}
.woocommerce-breadcrumb a:hover {
    color: #252E26 !important;
}
.woocommerce-breadcrumb .delimiter,
.woocommerce-breadcrumb > span > span {
    color: #bbb !important;
}

/* ========== SHOP RESULT COUNT + ORDERING — match breadcrumb style ========== */
.woocommerce-result-count {
    font-size: 0.72rem !important;
    letter-spacing: 0.06em !important;
    color: #888 !important;
    font-family: inherit !important;
    font-weight: 400 !important;
    margin: 0 !important;
}
.woocommerce-ordering .orderby {
    font-size: 0.72rem !important;
    letter-spacing: 0.06em !important;
    color: #888 !important;
    font-family: inherit !important;
    font-weight: 400 !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    padding: 4px 10px !important;
    background: #fff !important;
    cursor: pointer !important;
}
.woocommerce-ordering .orderby:focus {
    outline: none !important;
    border-color: #aaa !important;
}

/* ========== CATEGORY ARCHIVE — HERO ========== */
.tc-arch-hero {
    background: #252E26;
    padding: 56px 40px 48px;
    position: relative;
    overflow: hidden;
}
.tc-arch-hero--has-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--tc-arch-bg) center/cover no-repeat;
    opacity: 0.18;
}
.tc-arch-hero-inner {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
}
.tc-arch-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 18px;
}
.tc-arch-breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.tc-arch-breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.tc-arch-breadcrumb span { color: rgba(255,255,255,0.3); }
.tc-arch-breadcrumb span:last-child { color: rgba(255,255,255,0.7); }
.tc-arch-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.15;
}
.tc-arch-count {
    display: inline-block;
    background: #B8735A;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.tc-arch-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
    margin: 0;
    max-width: 640px;
}

/* ========== CATEGORY ARCHIVE — BODY ========== */
.tc-arch-body {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 30px 60px;
}

/* toolbar: result count + ordering */
.tc-arch-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 24px;
    border-bottom: 1px solid #EBEBEB;
    margin-bottom: 32px;
}
.tc-arch-toolbar .woocommerce-result-count {
    font-size: 0.78rem !important;
    color: #888 !important;
    letter-spacing: 0.04em !important;
    margin: 0 !important;
}
.tc-arch-toolbar .woocommerce-ordering {
    margin: 0 !important;
}
.tc-arch-toolbar .woocommerce-ordering .orderby {
    font-size: 0.78rem !important;
    color: #444 !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    padding: 6px 32px 6px 12px !important;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    cursor: pointer !important;
    min-width: 180px !important;
}
.tc-arch-toolbar .woocommerce-ordering .orderby:focus {
    outline: none !important;
    border-color: #B8735A !important;
}

/* product grid inside archive body */
.tc-arch-body .products.columns-3 {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 28px !important;
    margin: 0 !important;
    padding: 0 !important;
}
.tc-arch-body .products.columns-3 > li {
    margin: 0 !important;
    width: 100% !important;
    float: none !important;
}
@media (max-width: 860px) {
    .tc-arch-hero { padding: 40px 20px 36px; }
    .tc-arch-body { padding: 28px 16px 48px; }
    .tc-arch-body .products.columns-3 { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
}
@media (max-width: 540px) {
    .tc-arch-body .products.columns-3 { grid-template-columns: 1fr !important; }
}
