/* ═══════════════════════════════════════════
   TTJewelry Main CSS — Deferred
   Below-fold + component styles
   Loaded via preload/onload pattern
   ═══════════════════════════════════════════ */

/* ═══ GLOBAL POLISH (Dead Zones) ═══ */

/* Text selection — gold luxury instead of browser blue
   (scrollbar rules are in critical.css — not duplicated here) */
::selection {
    background: rgba(201,169,110,0.25);
    color: var(--text-primary);
    text-shadow: none;
}
/* ::-moz-selection removed — deprecated since Firefox 62, standard ::selection above is sufficient */

/* Focus outline — gold ring for keyboard navigation */
*:focus-visible {
    outline: 2px solid rgba(201,169,110,0.6);
    outline-offset: 2px;
    border-radius: 2px;
}
/* Remove default outline */
*:focus:not(:focus-visible) {
    outline: none;
}
/* Exceptions — buttons already have hover/active states */
button:focus-visible,
a:focus-visible {
    outline: 2px solid rgba(201,169,110,0.5);
    outline-offset: 3px;
}

/* Native form validation — dark luxury */
input:user-invalid,
textarea:user-invalid,
select:user-invalid {
    border-color: rgba(201,169,110,0.45) !important;
    box-shadow: 0 0 0 3px rgba(201,169,110,0.06);
}
input:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown),
select:invalid:not(:placeholder-shown) {
    border-color: rgba(201,169,110,0.45);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.06);
}
input:required:not(:placeholder-shown):valid,
textarea:required:not(:placeholder-shown):valid,
select:required:valid {
    border-color: rgba(74,190,122,0.3);
}

/* Global select option dark theme */
select option {
    background-color: var(--bg-surface, #1A1A1A);
    color: var(--text-body, #D4D4D4);
}
select option:checked {
    background: linear-gradient(0deg, #2a2520 0%, #2a2520 100%);
    color: var(--gold, #C9A96E);
}

/* ═══ HERO SECTION ═══ */
.tt-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.tt-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    will-change: transform;
}
.tt-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, var(--bg-void) 0%, rgba(5,5,5,0.4) 30%, rgba(5,5,5,0.15) 60%, rgba(5,5,5,0.35) 100%),
        linear-gradient(135deg, rgba(0,0,0,0.3) 0%, transparent 50%);
}
.tt-hero__content {
    position: relative;
    z-index: 2;
    padding: var(--space-10) var(--container-pad);
    max-width: 800px;
}
/* Eyebrow with decorative lines */
.tt-hero__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}
.tt-hero__eyebrow-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold-dim);
}
.tt-hero__eyebrow-text {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}
.tt-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: var(--space-5);
}
.tt-hero__desc {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-muted);
    line-height: var(--leading-loose);
    max-width: 500px;
    margin: 0 auto var(--space-6);
}
.tt-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--gold);
    background: transparent;
    border: 1px solid rgba(201,169,110,0.35);
    border-radius: var(--radius-full);
    transition: all var(--duration-normal) var(--ease-out);
}
.tt-hero__cta:hover {
    color: var(--bg-void);
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(201,169,110,0.2);
    transform: translateY(-2px);
}
.tt-hero__cta svg {
    transition: transform 0.3s var(--ease-out);
}
.tt-hero__cta:hover svg {
    transform: translateX(4px);
}
/* Scroll indicator */
.tt-hero__scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.tt-hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold-dim), transparent);
    animation: scroll-pulse 2.5s ease-in-out infinite;
}
@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
    50% { opacity: 0.8; transform: scaleY(1); transform-origin: top; }
}

/* ═══ HERO NO-IMAGE ═══ */
.tt-hero--no-image {
    background: var(--bg-void);
    min-height: 0;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-12) var(--space-6) var(--space-8);
    gap: 0;
}
/* Warm gold aura — visible, breathing */
.tt-hero--no-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 55% at 50% 40%, rgba(201,169,110,0.06) 0%, transparent 55%),
        radial-gradient(ellipse 40% 35% at 50% 45%, rgba(232,232,232,0.04) 0%, transparent 50%);
    pointer-events: none;
    animation: aura-breathe 10s ease-in-out infinite;
}
/* Dot grid — more visible, gold-tinted */
.tt-hero--no-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(201,169,110,0.045) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 45%, black 15%, transparent 60%);
    mask-image: radial-gradient(ellipse 70% 65% at 50% 45%, black 15%, transparent 60%);
}
@keyframes aura-breathe {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Corner decorations — gold L-frames */
.tt-hero__corner {
    position: absolute;
    width: 50px;
    height: 50px;
    pointer-events: none;
    z-index: 2;
}
.tt-hero__corner::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.6;
}
.tt-hero__corner--tl {
    top: 20px; left: 20px;
    border-top: 1px solid rgba(201,169,110,0.4);
    border-left: 1px solid rgba(201,169,110,0.4);
}
.tt-hero__corner--tl::before { top: -3px; left: -3px; }
.tt-hero__corner--tr {
    top: 20px; right: 20px;
    border-top: 1px solid rgba(201,169,110,0.4);
    border-right: 1px solid rgba(201,169,110,0.4);
}
.tt-hero__corner--tr::before { top: -3px; right: -3px; }
.tt-hero__corner--bl {
    bottom: 20px; left: 20px;
    border-bottom: 1px solid rgba(201,169,110,0.4);
    border-left: 1px solid rgba(201,169,110,0.4);
}
.tt-hero__corner--bl::before { bottom: -3px; left: -3px; }
.tt-hero__corner--br {
    bottom: 20px; right: 20px;
    border-bottom: 1px solid rgba(201,169,110,0.4);
    border-right: 1px solid rgba(201,169,110,0.4);
}
.tt-hero__corner--br::before { bottom: -3px; right: -3px; }

/* Tagline — gold uppercase top */
.tt-hero__tagline {
    font-family: var(--font-display);
    font-size: var(--text-xs);
    color: var(--gold);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: var(--space-8);
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
}
/* Decorative lines flanking tagline */
.tt-hero__tagline::before,
.tt-hero__tagline::after {
    content: '';
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,169,110,0.4), transparent);
    flex-shrink: 0;
}

/* Banner layout — circle + text side by side */
.tt-hero__banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 5vw, 64px);
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
}

/* Circle image frame — blended with dark theme */
.tt-hero__circle {
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid rgba(201,169,110,0.4);
    overflow: hidden;
    position: relative;
    box-shadow:
        0 0 0 4px var(--bg-void),
        0 0 0 5px rgba(201,169,110,0.2),
        0 0 30px rgba(201,169,110,0.1),
        0 0 60px rgba(201,169,110,0.04);
    animation: circle-glow 6s ease-in-out infinite;
}
.tt-hero__circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.75) contrast(1.2) saturate(0.8);
    transition: filter 0.5s ease;
}
/* Vignette — edges fade into dark bg */
.tt-hero__circle::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, transparent 35%, rgba(5,5,5,0.6) 100%);
    pointer-events: none;
}
.tt-hero__circle:hover img {
    filter: brightness(0.85) contrast(1.1) saturate(0.85);
}
@keyframes circle-glow {
    0%, 100% {
        box-shadow:
            0 0 0 4px var(--bg-void),
            0 0 0 5px rgba(201,169,110,0.15),
            0 0 20px rgba(201,169,110,0.06);
    }
    50% {
        box-shadow:
            0 0 0 4px var(--bg-void),
            0 0 0 5px rgba(201,169,110,0.35),
            0 0 40px rgba(201,169,110,0.15),
            0 0 80px rgba(201,169,110,0.05);
    }
}

/* Text block */
.tt-hero__text-block {
    position: relative;
}

/* Heading — serif line */
.tt-hero__heading {
    margin: 0;
    padding: 0;
}
.tt-hero__heading-serif {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 400;
    color: var(--gold);
    line-height: 1.1;
    letter-spacing: 0.02em;
}

/* Heading — script line */
.tt-hero__heading-script {
    display: block;
    font-family: 'Great Vibes', cursive;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-top: -0.05em;
}

/* Subtitle */
.tt-hero__subtitle {
    font-family: var(--font-display);
    font-size: var(--text-xs);
    color: var(--text-secondary);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-top: var(--space-4);
    font-weight: var(--weight-medium);
}

/* ═══ HERO EFFECTS — base ═══ */
.tt-hero__sparkle {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

/* ── FX: Ánh sao kim cương (sparkle) ── */
.tt-hero--fx-sparkle .tt-hero__sparkle {
    width: 50px;
    height: 50px;
    opacity: 0;
    animation: fx-sparkle 6s ease-in-out infinite;
    background:
        linear-gradient(0deg, transparent 42%, rgba(201,169,110,0.3) 48%, rgba(201,169,110,0.8) 50%, rgba(201,169,110,0.3) 52%, transparent 58%),
        linear-gradient(90deg, transparent 42%, rgba(201,169,110,0.3) 48%, rgba(201,169,110,0.8) 50%, rgba(201,169,110,0.3) 52%, transparent 58%);
}
.tt-hero--fx-sparkle .tt-hero__sparkle:nth-of-type(1) { top: 18%; left: 8%; }
.tt-hero--fx-sparkle .tt-hero__sparkle:nth-of-type(2) { top: 48%; right: 10%; left: auto; animation-delay: 2.2s; }
.tt-hero--fx-sparkle .tt-hero__sparkle:nth-of-type(3) { top: 72%; left: 25%; animation-delay: 4s; }
.tt-hero--fx-sparkle .tt-hero__sparkle::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 4px; height: 4px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold);
    box-shadow: 0 0 6px 2px rgba(201,169,110,0.7), 0 0 18px 6px rgba(201,169,110,0.25);
}
.tt-hero--fx-sparkle .tt-hero__sparkle::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 22px; height: 22px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
}
@keyframes fx-sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    6% { opacity: 1; transform: scale(1.3) rotate(10deg); }
    12% { opacity: 0.85; transform: scale(1) rotate(20deg); }
    22% { opacity: 0; transform: scale(0.4) rotate(30deg); }
}

/* ── FX: Sóng nước (ripple) ── */
.tt-hero--fx-ripple .tt-hero__sparkle {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(201,169,110,0.3);
    box-shadow: 0 0 6px rgba(201,169,110,0.15);
}
.tt-hero--fx-ripple .tt-hero__sparkle:nth-of-type(1) { top: 25%; left: 10%; }
.tt-hero--fx-ripple .tt-hero__sparkle:nth-of-type(2) { top: 55%; right: 12%; left: auto; }
.tt-hero--fx-ripple .tt-hero__sparkle:nth-of-type(3) { top: 78%; left: 35%; }
.tt-hero--fx-ripple .tt-hero__sparkle::before,
.tt-hero--fx-ripple .tt-hero__sparkle::after {
    content: '';
    position: absolute;
    width: 100px; height: 100px;
    top: 50%; left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(201,169,110,0.2);
    transform: translate(-50%, -50%) scale(0);
    animation: fx-ripple 7s ease-out infinite;
}
.tt-hero--fx-ripple .tt-hero__sparkle::after {
    width: 160px; height: 160px;
    animation-delay: 1.2s;
    border-color: rgba(201,169,110,0.12);
}
.tt-hero--fx-ripple .tt-hero__sparkle:nth-of-type(2)::before { animation-delay: 2.5s; }
.tt-hero--fx-ripple .tt-hero__sparkle:nth-of-type(2)::after { animation-delay: 3.7s; }
.tt-hero--fx-ripple .tt-hero__sparkle:nth-of-type(3)::before { animation-delay: 4.5s; }
.tt-hero--fx-ripple .tt-hero__sparkle:nth-of-type(3)::after { animation-delay: 5.7s; }
@keyframes fx-ripple {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    40% { opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

/* ── FX: Lá rơi (leaves) ── */
.tt-hero--fx-leaves .tt-hero__sparkle {
    width: 10px; height: 14px;
    background: rgba(201,169,110,0.25);
    border-radius: 2px 50% 50% 2px;
    top: -20px;
    opacity: 0;
    animation: fx-leaves 13s ease-in infinite;
}
.tt-hero--fx-leaves .tt-hero__sparkle:nth-of-type(1) { left: 15%; animation-delay: 0s; }
.tt-hero--fx-leaves .tt-hero__sparkle:nth-of-type(2) { left: 55%; right: auto; animation-delay: 4.5s; }
.tt-hero--fx-leaves .tt-hero__sparkle:nth-of-type(3) { left: 82%; animation-delay: 8.5s; }
.tt-hero--fx-leaves .tt-hero__sparkle::before {
    content: '';
    position: absolute;
    width: 7px; height: 10px;
    background: rgba(201,169,110,0.18);
    border-radius: 1px 6px 6px 1px;
    top: -8px; left: 20px;
    transform: rotate(15deg);
}
.tt-hero--fx-leaves .tt-hero__sparkle::after {
    content: '';
    position: absolute;
    width: 6px; height: 9px;
    background: rgba(201,169,110,0.15);
    border-radius: 1px 5px 5px 1px;
    top: 5px; left: -18px;
    transform: rotate(-20deg);
}
@keyframes fx-leaves {
    0% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
    5% { opacity: 0.6; }
    25% { transform: translateY(175px) translateX(25px) rotate(90deg); }
    50% { transform: translateY(350px) translateX(-15px) rotate(180deg); opacity: 0.5; }
    75% { transform: translateY(525px) translateX(20px) rotate(270deg); }
    95% { opacity: 0.3; }
    100% { transform: translateY(700px) translateX(-10px) rotate(360deg); opacity: 0; }
}

/* ── FX: Hoa rơi (petals) ── */
.tt-hero--fx-petals .tt-hero__sparkle {
    width: 8px; height: 10px;
    background: rgba(201,169,110,0.22);
    border-radius: 50% 0 50% 50%;
    top: -15px;
    opacity: 0;
    animation: fx-petals 16s ease-in-out infinite;
}
.tt-hero--fx-petals .tt-hero__sparkle:nth-of-type(1) { left: 20%; animation-delay: 0s; }
.tt-hero--fx-petals .tt-hero__sparkle:nth-of-type(2) { left: 60%; right: auto; animation-delay: 5.5s; }
.tt-hero--fx-petals .tt-hero__sparkle:nth-of-type(3) { left: 85%; animation-delay: 10.5s; }
.tt-hero--fx-petals .tt-hero__sparkle::before {
    content: '';
    position: absolute;
    width: 6px; height: 8px;
    background: rgba(201,169,110,0.16);
    border-radius: 50% 0 50% 50%;
    top: -5px; left: 16px;
    transform: rotate(30deg);
}
.tt-hero--fx-petals .tt-hero__sparkle::after {
    content: '';
    position: absolute;
    width: 5px; height: 7px;
    background: rgba(201,169,110,0.12);
    border-radius: 0 50% 50% 50%;
    top: 3px; left: -14px;
    transform: rotate(-25deg);
}
@keyframes fx-petals {
    0% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
    4% { opacity: 0.5; }
    20% { transform: translateY(140px) translateX(20px) rotate(60deg); }
    40% { transform: translateY(280px) translateX(-25px) rotate(140deg); opacity: 0.45; }
    60% { transform: translateY(420px) translateX(15px) rotate(220deg); }
    80% { transform: translateY(560px) translateX(-20px) rotate(300deg); opacity: 0.3; }
    100% { transform: translateY(700px) translateX(10px) rotate(380deg); opacity: 0; }
}

/* ── FX: Tuyết rơi (snow) ── */
.tt-hero--fx-snow .tt-hero__sparkle {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: rgba(232,232,232,0.5);
    top: -10px;
    opacity: 0;
    animation: fx-snow 12s linear infinite;
    box-shadow:
        18px 4px 0 rgba(232,232,232,0.3),
        -12px -8px 0 rgba(232,232,232,0.25),
        30px -15px 0 rgba(232,232,232,0.2),
        -25px 10px 0 rgba(232,232,232,0.35);
}
.tt-hero--fx-snow .tt-hero__sparkle:nth-of-type(1) { left: 12%; animation-delay: 0s; }
.tt-hero--fx-snow .tt-hero__sparkle:nth-of-type(2) { left: 48%; right: auto; animation-delay: 4s; }
.tt-hero--fx-snow .tt-hero__sparkle:nth-of-type(3) { left: 78%; animation-delay: 8s; }
.tt-hero--fx-snow .tt-hero__sparkle::before {
    content: '';
    position: absolute;
    width: 2px; height: 2px;
    border-radius: 50%;
    background: rgba(232,232,232,0.4);
    top: -20px; left: 40px;
    box-shadow:
        12px 5px 0 rgba(232,232,232,0.25),
        -8px -12px 0 rgba(232,232,232,0.3);
}
.tt-hero--fx-snow .tt-hero__sparkle::after {
    content: '';
    position: absolute;
    width: 2px; height: 2px;
    border-radius: 50%;
    background: rgba(232,232,232,0.3);
    top: 10px; left: -30px;
    box-shadow:
        10px 8px 0 rgba(232,232,232,0.2),
        -15px -5px 0 rgba(232,232,232,0.35);
}
@keyframes fx-snow {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    5% { opacity: 0.7; }
    50% { transform: translateY(350px) translateX(15px); opacity: 0.5; }
    100% { transform: translateY(700px) translateX(-10px); opacity: 0; }
}

/* ── FX: Đom đóm (firefly) ── */
.tt-hero--fx-firefly .tt-hero__sparkle {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(201,169,110,0.8);
    box-shadow: 0 0 8px 3px rgba(201,169,110,0.4), 0 0 20px 8px rgba(201,169,110,0.12);
    animation: fx-firefly 8s ease-in-out infinite;
}
.tt-hero--fx-firefly .tt-hero__sparkle:nth-of-type(1) { top: 22%; left: 10%; }
.tt-hero--fx-firefly .tt-hero__sparkle:nth-of-type(2) { top: 55%; right: 15%; left: auto; animation-delay: 3s; }
.tt-hero--fx-firefly .tt-hero__sparkle:nth-of-type(3) { top: 75%; left: 30%; animation-delay: 5.5s; }
.tt-hero--fx-firefly .tt-hero__sparkle::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 16px; height: 16px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(201,169,110,0.15) 0%, transparent 70%);
}
.tt-hero--fx-firefly .tt-hero__sparkle::after { content: none; }
@keyframes fx-firefly {
    0% { transform: translate(0, 0); opacity: 0.2; }
    15% { opacity: 0.9; }
    25% { transform: translate(15px, -20px); }
    40% { opacity: 0.3; }
    50% { transform: translate(-10px, -35px); }
    65% { opacity: 0.8; }
    75% { transform: translate(20px, -15px); }
    90% { opacity: 0.2; }
    100% { transform: translate(0, 0); opacity: 0.2; }
}

/* Bottom text */
.tt-hero__bottom-text {
    text-align: center;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin-top: var(--space-8);
    position: relative;
    z-index: 2;
}

/* Categories — merged into hero */
.tt-hero--no-image + .tt-section.tt-featured-cats {
    margin-top: -24px;
    padding-top: 0;
    position: relative;
    z-index: 3;
}

/* Front-page: hero overlaps transparent header */
.home .tt-site-main {
    margin-top: calc(-1 * var(--header-h));
}
.home .tt-hero {
    padding-top: var(--header-h);
}
/* No-image hero: push content further below header for breathing room */
.home .tt-hero.tt-hero--no-image {
    padding-top: calc(var(--header-h) + var(--space-10));
}

@media (max-width: 768px) {
    .tt-hero {
        min-height: 85vh;
        min-height: 85dvh;
    }
    .tt-hero--no-image {
        min-height: 0;
        padding: var(--space-6) var(--space-4) var(--space-3);
    }
    .home .tt-hero.tt-hero--no-image {
        padding-top: calc(var(--header-h) + var(--space-6));
    }
    .tt-hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    .tt-hero__desc {
        font-size: var(--text-sm);
    }
    /* Banner: compact vertical stack */
    .tt-hero__tagline {
        font-size: 0.65rem;
        letter-spacing: 0.1em;
        margin-bottom: var(--space-3);
        gap: var(--space-2);
    }
    .tt-hero__tagline::before,
    .tt-hero__tagline::after {
        width: 32px;
    }
    .tt-hero__banner {
        flex-direction: column;
        gap: var(--space-3);
    }
    .tt-hero__text-block {
        text-align: center;
    }
    .tt-hero__circle {
        width: 180px !important;
        height: 180px !important;
        transform: none !important;
    }
    .tt-hero__heading-serif {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }
    .tt-hero__heading-script {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }
    .tt-hero__subtitle {
        font-size: 0.65rem;
        letter-spacing: 0.18em;
        margin-top: var(--space-2);
    }
    .tt-hero__bottom-text {
        font-size: clamp(0.8rem, 2.8vw, 0.95rem);
        margin-top: var(--space-3);
        line-height: 1.5;
    }
    .tt-hero__corner { width: 30px; height: 30px; }
    .tt-hero__corner--tl { top: 8px; left: 8px; }
    .tt-hero__corner--tr { top: 8px; right: 8px; }
    .tt-hero__corner--bl { bottom: 8px; left: 8px; }
    .tt-hero__corner--br { bottom: 8px; right: 8px; }
    .tt-hero--fx-sparkle .tt-hero__sparkle { width: 35px; height: 35px; }
    .tt-hero--fx-ripple .tt-hero__sparkle::before { width: 60px; height: 60px; }
    .tt-hero--fx-ripple .tt-hero__sparkle::after { width: 90px; height: 90px; }
    /* Categories: compact on mobile */
    .tt-hero--no-image + .tt-section.tt-featured-cats {
        margin-top: -8px;
    }
    .tt-featured-cats {
        padding-bottom: var(--space-3);
    }
    .tt-featured-cats__grid {
        gap: var(--space-3);
    }
    .tt-cat-pill {
        padding: 10px 24px;
        font-size: 0.8rem;
        letter-spacing: 0.14em;
    }
}
@media (max-width: 480px) {
    .tt-hero--no-image {
        min-height: 0;
        padding: var(--space-4) var(--space-2) var(--space-2);
    }
    .home .tt-hero.tt-hero--no-image {
        padding-top: calc(var(--header-h) + var(--space-4));
    }
    .tt-hero__tagline {
        font-size: 0.55rem;
        letter-spacing: 0.08em;
        margin-bottom: var(--space-2);
        gap: var(--space-1);
    }
    .tt-hero__tagline::before,
    .tt-hero__tagline::after {
        width: 20px;
    }
    .tt-hero__banner {
        gap: var(--space-2);
    }
    .tt-hero__circle {
        width: 140px !important;
        height: 140px !important;
    }
    .tt-hero__heading-serif {
        font-size: clamp(1.3rem, 7vw, 1.8rem);
    }
    .tt-hero__heading-script {
        font-size: clamp(1.5rem, 9vw, 2.5rem);
    }
    .tt-hero__subtitle {
        font-size: 0.55rem;
        letter-spacing: 0.12em;
    }
    .tt-hero__bottom-text {
        font-size: clamp(0.75rem, 3.5vw, 0.85rem);
        margin-top: var(--space-2);
    }
    .tt-hero__corner { width: 22px; height: 22px; }
    .tt-hero__corner::before { width: 4px; height: 4px; }
    .tt-hero__corner--tl { top: 5px; left: 5px; }
    .tt-hero__corner--tr { top: 5px; right: 5px; }
    .tt-hero__corner--bl { bottom: 5px; left: 5px; }
    .tt-hero__corner--br { bottom: 5px; right: 5px; }
    .tt-hero--no-image + .tt-section.tt-featured-cats {
        margin-top: 0;
    }
    .tt-featured-cats__grid {
        gap: var(--space-2);
    }
    .tt-cat-pill {
        padding: 8px 18px;
        font-size: 0.72rem;
        letter-spacing: 0.1em;
    }
}

/* ═══════════════════════════════════════════
   HERO STYLE VARIANTS (10 layouts)
   Same HTML content — CSS-only layout changes.
   Class pattern: .tt-hero--style-{name}
   DNA: Circle = atmospheric layer (low opacity, behind text).
        Text = hero (z-index 2, text-shadow for depth).
   Style 1 "default" uses no extra class.
   ═══════════════════════════════════════════ */

/* ── Shared ghost-circle base (used by styles 1-7, 10) ── */
.tt-hero--style-centered .tt-hero__banner,
.tt-hero--style-grand .tt-hero__banner,
.tt-hero--style-editorial .tt-hero__banner,
.tt-hero--style-reversed .tt-hero__banner,
.tt-hero--style-floating .tt-hero__banner,
.tt-hero--style-framed .tt-hero__banner,
.tt-hero--style-theater .tt-hero__banner {
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}
.tt-hero--style-centered .tt-hero__circle,
.tt-hero--style-grand .tt-hero__circle,
.tt-hero--style-editorial .tt-hero__circle,
.tt-hero--style-reversed .tt-hero__circle,
.tt-hero--style-floating .tt-hero__circle,
.tt-hero--style-framed .tt-hero__circle,
.tt-hero--style-theater .tt-hero__circle {
    position: absolute;
    z-index: 0;
    border-color: rgba(201,169,110,0.15);
}
.tt-hero--style-centered .tt-hero__circle img,
.tt-hero--style-grand .tt-hero__circle img,
.tt-hero--style-editorial .tt-hero__circle img,
.tt-hero--style-reversed .tt-hero__circle img,
.tt-hero--style-floating .tt-hero__circle img,
.tt-hero--style-framed .tt-hero__circle img,
.tt-hero--style-theater .tt-hero__circle img {
    filter: brightness(0.5) contrast(1.3) saturate(0.6);
}
.tt-hero--style-centered .tt-hero__text-block,
.tt-hero--style-grand .tt-hero__text-block,
.tt-hero--style-editorial .tt-hero__text-block,
.tt-hero--style-reversed .tt-hero__text-block,
.tt-hero--style-floating .tt-hero__text-block,
.tt-hero--style-framed .tt-hero__text-block,
.tt-hero--style-theater .tt-hero__text-block {
    position: relative;
    z-index: 2;
}
.tt-hero--style-centered .tt-hero__heading-serif,
.tt-hero--style-grand .tt-hero__heading-serif,
.tt-hero--style-editorial .tt-hero__heading-serif,
.tt-hero--style-reversed .tt-hero__heading-serif,
.tt-hero--style-floating .tt-hero__heading-serif,
.tt-hero--style-framed .tt-hero__heading-serif,
.tt-hero--style-theater .tt-hero__heading-serif {
    text-shadow: 0 2px 20px rgba(5,5,5,0.8);
}
.tt-hero--style-centered .tt-hero__heading-script,
.tt-hero--style-grand .tt-hero__heading-script,
.tt-hero--style-editorial .tt-hero__heading-script,
.tt-hero--style-reversed .tt-hero__heading-script,
.tt-hero--style-floating .tt-hero__heading-script,
.tt-hero--style-framed .tt-hero__heading-script,
.tt-hero--style-theater .tt-hero__heading-script {
    text-shadow: 0 2px 20px rgba(5,5,5,0.8);
}
.tt-hero--style-centered .tt-hero__subtitle,
.tt-hero--style-grand .tt-hero__subtitle,
.tt-hero--style-editorial .tt-hero__subtitle,
.tt-hero--style-reversed .tt-hero__subtitle,
.tt-hero--style-floating .tt-hero__subtitle,
.tt-hero--style-framed .tt-hero__subtitle,
.tt-hero--style-theater .tt-hero__subtitle {
    text-shadow: 0 1px 10px rgba(5,5,5,0.8);
}

/* ── Style 1: Mặc Định (default) ──
   Circle + text side by side (original — no changes needed,
   uses base hero__banner flex row) */

/* ── Style 2: Trung Tâm — Floating Haze ──
   Circle mờ phía trên text, tạo lớp sương */
.tt-hero--style-centered .tt-hero__circle {
    top: 5%;
    left: 50%;
    transform: translateX(-50%) !important;
    opacity: 0.2;
    width: var(--tt-circle-size, 320px) !important;
    height: var(--tt-circle-size, 320px) !important;
}
.tt-hero--style-centered .tt-hero__text-block {
    text-align: center;
    padding-top: 120px;
}
.tt-hero--style-centered .tt-hero__heading-serif {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
}
.tt-hero--style-centered .tt-hero__heading-script {
    font-size: clamp(3.2rem, 7vw, 5.5rem);
}

/* ── Style 3: Hoành Tráng — Epic Scale ──
   Circle KHỔNG LỒ mờ nền, text centered */
.tt-hero--style-grand .tt-hero__circle {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    opacity: 0.15;
    width: var(--tt-circle-size, 500px) !important;
    height: var(--tt-circle-size, 500px) !important;
    border-width: 3px;
    border-color: rgba(201,169,110,0.1);
}
.tt-hero--style-grand .tt-hero__text-block {
    text-align: center;
}
.tt-hero--style-grand .tt-hero__heading-serif {
    font-size: clamp(3rem, 7vw, 5.5rem);
}
.tt-hero--style-grand .tt-hero__heading-script {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
}
.tt-hero--style-grand .tt-hero__tagline {
    margin-bottom: var(--space-6);
}

/* ── Style 4: Tạp Chí — Editorial Ghost ──
   Circle mờ bên phải, text trái có gold accent */
.tt-hero--style-editorial .tt-hero__circle {
    top: 50%;
    right: 5%;
    left: auto;
    transform: translateY(-50%) !important;
    opacity: 0.3;
    width: var(--tt-circle-size, 340px) !important;
    height: var(--tt-circle-size, 340px) !important;
}
.tt-hero--style-editorial .tt-hero__text-block {
    text-align: left;
    align-self: flex-start;
    padding-left: var(--space-2);
    border-left: 2px solid rgba(201,169,110,0.3);
}
.tt-hero--style-editorial .tt-hero__heading-serif {
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    line-height: 1;
}
.tt-hero--style-editorial .tt-hero__heading-script {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-top: 0.1em;
}
.tt-hero--style-editorial .tt-hero__tagline {
    justify-content: flex-start;
}
.tt-hero--style-editorial .tt-hero__tagline::before { display: none; }
.tt-hero--style-editorial .tt-hero__bottom-text {
    text-align: left;
    max-width: 500px;
}

/* ── Style 5: Đảo Chiều — Mirror Ghost ──
   Circle mờ bên trái, text phải */
.tt-hero--style-reversed .tt-hero__circle {
    top: 50%;
    left: 5%;
    right: auto;
    transform: translateY(-50%) !important;
    opacity: 0.3;
    width: var(--tt-circle-size, 340px) !important;
    height: var(--tt-circle-size, 340px) !important;
}
.tt-hero--style-reversed .tt-hero__text-block {
    text-align: right;
    align-self: flex-end;
    padding-right: var(--space-2);
    border-right: 2px solid rgba(201,169,110,0.3);
}
.tt-hero--style-reversed .tt-hero__heading-serif {
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    line-height: 1;
}
.tt-hero--style-reversed .tt-hero__heading-script {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-top: 0.1em;
}
.tt-hero--style-reversed .tt-hero__tagline {
    justify-content: flex-end;
}
.tt-hero--style-reversed .tt-hero__tagline::after { display: none; }
.tt-hero--style-reversed .tt-hero__bottom-text {
    text-align: right;
    margin-left: auto;
    max-width: 500px;
}

/* ── Style 6: Lơ Lửng — Diagonal Mist ──
   Circle mờ góc trên-phải, text dưới-trái */
.tt-hero--style-floating .tt-hero__banner {
    min-height: 380px;
}
.tt-hero--style-floating .tt-hero__circle {
    top: -10%;
    right: 8%;
    left: auto;
    transform: none !important;
    opacity: 0.22;
    width: var(--tt-circle-size, 300px) !important;
    height: var(--tt-circle-size, 300px) !important;
}
.tt-hero--style-floating .tt-hero__text-block {
    text-align: left;
    align-self: flex-start;
    margin-top: auto;
    padding-top: 60px;
}
.tt-hero--style-floating .tt-hero__heading-serif {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1;
}
.tt-hero--style-floating .tt-hero__heading-script {
    font-size: clamp(3.2rem, 7.5vw, 6rem);
}
.tt-hero--style-floating .tt-hero__tagline {
    justify-content: flex-start;
}
.tt-hero--style-floating .tt-hero__tagline::before { display: none; }
.tt-hero--style-floating .tt-hero__bottom-text {
    text-align: left;
    max-width: 480px;
}

/* ── Style 7: Khung Vàng — Frame of Light ──
   Corner L-marks lớn hơn, circle mờ center */
.tt-hero--style-framed .tt-hero__circle {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    opacity: 0.2;
    width: var(--tt-circle-size, 320px) !important;
    height: var(--tt-circle-size, 320px) !important;
}
.tt-hero--style-framed .tt-hero__text-block {
    text-align: center;
}
/* Larger corner L-marks for frame effect */
.tt-hero--style-framed .tt-hero__corner {
    width: 70px;
    height: 70px;
}
.tt-hero--style-framed .tt-hero__corner::after {
    width: 8px;
    height: 8px;
}

/* ── Style 8: Tối Giản — Giant Typography + Ghost Image ──
   Circle as subtle watermark behind giant text.
   Compact layout — no forced viewport height. */
.tt-hero.tt-hero--style-minimal {
    min-height: auto;
    justify-content: flex-start;
    padding-bottom: var(--space-6);
}
.tt-hero--style-minimal .tt-hero__banner {
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 0;
    max-width: 1100px;
    margin-top: var(--space-4);
}
.tt-hero--style-minimal .tt-hero__circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    z-index: 0;
    opacity: 0.3;
    width: var(--tt-circle-size, 420px) !important;
    height: var(--tt-circle-size, 420px) !important;
    border-color: rgba(201,169,110,0.12);
}
.tt-hero--style-minimal .tt-hero__circle img {
    filter: brightness(0.55) contrast(1.2) saturate(0.5);
}
.tt-hero--style-minimal .tt-hero__text-block {
    text-align: center;
    position: relative;
    z-index: 2;
}
.tt-hero--style-minimal .tt-hero__heading-serif {
    font-size: clamp(3.5rem, 9vw, 7rem);
    line-height: 1;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 30px rgba(5,5,5,0.8);
}
.tt-hero--style-minimal .tt-hero__heading-script {
    font-size: clamp(4rem, 11vw, 8.5rem);
    margin-top: -0.1em;
    text-shadow: 0 2px 30px rgba(5,5,5,0.8);
}
.tt-hero--style-minimal .tt-hero__subtitle {
    font-size: var(--text-sm);
    letter-spacing: 0.35em;
    margin-top: var(--space-4);
    text-shadow: 0 1px 10px rgba(5,5,5,0.8);
}
.tt-hero--style-minimal .tt-hero__tagline {
    margin-bottom: var(--space-6);
}

/* ── Style 9: Chồng Lớp (overlap) ──
   Circle behind/overlapping text — creates depth */
.tt-hero--style-overlap .tt-hero__banner {
    position: relative;
    flex-direction: column;
    align-items: center;
    min-height: 360px;
    justify-content: center;
}
.tt-hero--style-overlap .tt-hero__circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    opacity: 0.35;
    width: var(--tt-circle-size, 380px) !important;
    height: var(--tt-circle-size, 380px) !important;
    z-index: 0;
    border-color: rgba(201,169,110,0.2);
}
.tt-hero--style-overlap .tt-hero__circle img {
    filter: brightness(0.5) contrast(1.3) saturate(0.6);
}
.tt-hero--style-overlap .tt-hero__text-block {
    position: relative;
    z-index: 2;
    text-align: center;
}
.tt-hero--style-overlap .tt-hero__heading-serif {
    font-size: clamp(3rem, 7vw, 5.5rem);
    text-shadow: 0 2px 20px rgba(5,5,5,0.8);
}
.tt-hero--style-overlap .tt-hero__heading-script {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    text-shadow: 0 2px 20px rgba(5,5,5,0.8);
}
.tt-hero--style-overlap .tt-hero__subtitle {
    text-shadow: 0 1px 10px rgba(5,5,5,0.8);
}

/* ── Style 10: Sân Khấu — Stage Spotlight ──
   Circle phía trên text, spotlight beam effect */
.tt-hero--style-theater .tt-hero__circle {
    top: 0;
    left: 50%;
    transform: translateX(-50%) !important;
    opacity: 0.4;
    width: var(--tt-circle-size, 300px) !important;
    height: var(--tt-circle-size, 300px) !important;
}
/* Spotlight beam from above */
.tt-hero--style-theater .tt-hero__circle::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 60px;
    background: linear-gradient(180deg, rgba(201,169,110,0.12) 0%, transparent 100%);
    pointer-events: none;
    z-index: -1;
    clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
}
.tt-hero--style-theater .tt-hero__text-block {
    text-align: center;
    padding-top: 180px;
    border-top: 1px solid rgba(201,169,110,0.12);
    margin-top: 140px;
    max-width: 600px;
}
.tt-hero--style-theater .tt-hero__heading-serif {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    letter-spacing: 0.08em;
}
.tt-hero--style-theater .tt-hero__heading-script {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
}
.tt-hero--style-theater .tt-hero__subtitle {
    letter-spacing: 0.3em;
}

/* ═══ HERO STYLES — Responsive 768px ═══ */
@media (max-width: 768px) {
    /* Shared: reduce min-height on tablet */
    .tt-hero--style-centered .tt-hero__banner,
    .tt-hero--style-grand .tt-hero__banner,
    .tt-hero--style-editorial .tt-hero__banner,
    .tt-hero--style-reversed .tt-hero__banner,
    .tt-hero--style-floating .tt-hero__banner,
    .tt-hero--style-framed .tt-hero__banner,
    .tt-hero--style-theater .tt-hero__banner {
        min-height: 280px;
    }
    /* Shared: keep ghost circles absolute (override base transform:none) */
    .tt-hero--style-centered .tt-hero__circle,
    .tt-hero--style-grand .tt-hero__circle,
    .tt-hero--style-editorial .tt-hero__circle,
    .tt-hero--style-reversed .tt-hero__circle,
    .tt-hero--style-floating .tt-hero__circle,
    .tt-hero--style-framed .tt-hero__circle,
    .tt-hero--style-overlap .tt-hero__circle,
    .tt-hero--style-theater .tt-hero__circle {
        position: absolute !important;
    }

    /* Style 2: centered — smaller circle, less top padding */
    .tt-hero--style-centered .tt-hero__circle {
        width: min(var(--tt-circle-size, 320px), 220px) !important;
        height: min(var(--tt-circle-size, 320px), 220px) !important;
        transform: translateX(-50%) !important;
    }
    .tt-hero--style-centered .tt-hero__text-block {
        padding-top: 80px;
    }

    /* Style 3: grand — smaller circle on tablet */
    .tt-hero--style-grand .tt-hero__circle {
        width: min(var(--tt-circle-size, 500px), 300px) !important;
        height: min(var(--tt-circle-size, 500px), 300px) !important;
        transform: translate(-50%, -50%) !important;
    }
    .tt-hero--style-grand .tt-hero__heading-serif {
        font-size: clamp(2rem, 5.5vw, 3.5rem);
    }
    .tt-hero--style-grand .tt-hero__heading-script {
        font-size: clamp(2.5rem, 6.5vw, 4rem);
    }

    /* Style 4: editorial — center text, center circle */
    .tt-hero--style-editorial .tt-hero__circle {
        right: auto;
        left: 50%;
        transform: translate(-50%, -50%) !important;
        width: min(var(--tt-circle-size, 340px), 260px) !important;
        height: min(var(--tt-circle-size, 340px), 260px) !important;
        opacity: 0.18;
    }
    .tt-hero--style-editorial .tt-hero__text-block {
        text-align: center;
        align-self: center;
        border-left: none;
        padding-left: 0;
    }
    .tt-hero--style-editorial .tt-hero__tagline {
        justify-content: center;
    }
    .tt-hero--style-editorial .tt-hero__heading-serif {
        font-size: clamp(2rem, 6vw, 3.2rem);
    }
    .tt-hero--style-editorial .tt-hero__heading-script {
        font-size: clamp(2rem, 6.5vw, 3rem);
    }
    .tt-hero--style-editorial .tt-hero__bottom-text {
        text-align: center;
        max-width: none;
    }

    /* Style 5: reversed — center text, center circle */
    .tt-hero--style-reversed .tt-hero__circle {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%) !important;
        width: min(var(--tt-circle-size, 340px), 260px) !important;
        height: min(var(--tt-circle-size, 340px), 260px) !important;
        opacity: 0.18;
    }
    .tt-hero--style-reversed .tt-hero__text-block {
        text-align: center;
        align-self: center;
        border-right: none;
        padding-right: 0;
    }
    .tt-hero--style-reversed .tt-hero__tagline {
        justify-content: center;
    }
    .tt-hero--style-reversed .tt-hero__heading-serif {
        font-size: clamp(2rem, 6vw, 3.2rem);
    }
    .tt-hero--style-reversed .tt-hero__heading-script {
        font-size: clamp(2rem, 6.5vw, 3rem);
    }
    .tt-hero--style-reversed .tt-hero__bottom-text {
        text-align: center;
        margin-left: 0;
        max-width: none;
    }

    /* Style 6: floating — center circle + text */
    .tt-hero--style-floating .tt-hero__circle {
        top: 5%;
        right: auto;
        left: 50%;
        transform: translateX(-50%) !important;
        width: min(var(--tt-circle-size, 300px), 220px) !important;
        height: min(var(--tt-circle-size, 300px), 220px) !important;
        opacity: 0.18;
    }
    .tt-hero--style-floating .tt-hero__text-block {
        text-align: center;
        align-self: center;
        padding-top: 40px;
    }
    .tt-hero--style-floating .tt-hero__tagline {
        justify-content: center;
    }
    .tt-hero--style-floating .tt-hero__heading-serif {
        font-size: clamp(2rem, 6vw, 3.2rem);
    }
    .tt-hero--style-floating .tt-hero__heading-script {
        font-size: clamp(2.4rem, 7vw, 3.5rem);
    }
    .tt-hero--style-floating .tt-hero__bottom-text {
        text-align: center;
        max-width: none;
    }

    /* Style 7: framed — smaller padding + circle */
    .tt-hero--style-framed {
        padding: var(--space-6) var(--space-4) var(--space-3);
    }
    .tt-hero--style-framed .tt-hero__banner {
        padding: var(--space-5) var(--space-3);
    }
    .tt-hero--style-framed .tt-hero__circle {
        width: min(var(--tt-circle-size, 320px), 180px) !important;
        height: min(var(--tt-circle-size, 320px), 180px) !important;
        transform: translate(-50%, -50%) !important;
    }
    .tt-hero--style-framed .tt-hero__corner {
        width: 50px;
        height: 50px;
    }

    /* Style 8: minimal — smaller circle on tablet */
    .tt-hero--style-minimal .tt-hero__circle {
        width: min(var(--tt-circle-size, 420px), 280px) !important;
        height: min(var(--tt-circle-size, 420px), 280px) !important;
        transform: translate(-50%, -50%) !important;
        position: absolute !important;
    }
    .tt-hero--style-minimal .tt-hero__heading-serif {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }
    .tt-hero--style-minimal .tt-hero__heading-script {
        font-size: clamp(2.5rem, 10vw, 4.5rem);
    }
    .tt-hero--style-minimal .tt-hero__tagline {
        margin-bottom: var(--space-4);
    }

    /* Style 9: overlap — smaller circle */
    .tt-hero--style-overlap .tt-hero__banner {
        min-height: 260px;
    }
    .tt-hero--style-overlap .tt-hero__circle {
        width: min(var(--tt-circle-size, 380px), 260px) !important;
        height: min(var(--tt-circle-size, 380px), 260px) !important;
        transform: translate(-50%, -50%) !important;
    }
    .tt-hero--style-overlap .tt-hero__heading-serif {
        font-size: clamp(2rem, 6.5vw, 3rem);
    }
    .tt-hero--style-overlap .tt-hero__heading-script {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    /* Style 10: theater — smaller circle + less spacing */
    .tt-hero--style-theater .tt-hero__circle {
        width: min(var(--tt-circle-size, 300px), 200px) !important;
        height: min(var(--tt-circle-size, 300px), 200px) !important;
        transform: translateX(-50%) !important;
    }
    .tt-hero--style-theater .tt-hero__text-block {
        max-width: none;
        padding-top: 120px;
        margin-top: 80px;
    }
}

/* ═══ HERO STYLES — Responsive 480px ═══ */
@media (max-width: 480px) {
    /* Shared: compact min-height on small phones */
    .tt-hero--style-centered .tt-hero__banner,
    .tt-hero--style-grand .tt-hero__banner,
    .tt-hero--style-editorial .tt-hero__banner,
    .tt-hero--style-reversed .tt-hero__banner,
    .tt-hero--style-floating .tt-hero__banner,
    .tt-hero--style-framed .tt-hero__banner,
    .tt-hero--style-theater .tt-hero__banner {
        min-height: 220px;
    }
    /* Shared: keep ghost circles absolute */
    .tt-hero--style-centered .tt-hero__circle,
    .tt-hero--style-grand .tt-hero__circle,
    .tt-hero--style-editorial .tt-hero__circle,
    .tt-hero--style-reversed .tt-hero__circle,
    .tt-hero--style-floating .tt-hero__circle,
    .tt-hero--style-framed .tt-hero__circle,
    .tt-hero--style-overlap .tt-hero__circle,
    .tt-hero--style-theater .tt-hero__circle {
        position: absolute !important;
    }

    /* Style 2: centered */
    .tt-hero--style-centered .tt-hero__circle {
        width: min(var(--tt-circle-size, 320px), 160px) !important;
        height: min(var(--tt-circle-size, 320px), 160px) !important;
    }
    .tt-hero--style-centered .tt-hero__text-block {
        padding-top: 50px;
    }

    /* Style 3: grand */
    .tt-hero--style-grand .tt-hero__circle {
        width: min(var(--tt-circle-size, 500px), 200px) !important;
        height: min(var(--tt-circle-size, 500px), 200px) !important;
    }
    .tt-hero--style-grand .tt-hero__heading-serif {
        font-size: clamp(1.6rem, 7vw, 2.4rem);
    }
    .tt-hero--style-grand .tt-hero__heading-script {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    /* Style 4: editorial */
    .tt-hero--style-editorial .tt-hero__circle {
        width: min(var(--tt-circle-size, 340px), 180px) !important;
        height: min(var(--tt-circle-size, 340px), 180px) !important;
    }
    .tt-hero--style-editorial .tt-hero__heading-serif {
        font-size: clamp(1.6rem, 7vw, 2.4rem);
    }
    .tt-hero--style-editorial .tt-hero__heading-script {
        font-size: clamp(1.6rem, 8vw, 2.4rem);
    }

    /* Style 5: reversed */
    .tt-hero--style-reversed .tt-hero__circle {
        width: min(var(--tt-circle-size, 340px), 180px) !important;
        height: min(var(--tt-circle-size, 340px), 180px) !important;
    }
    .tt-hero--style-reversed .tt-hero__heading-serif {
        font-size: clamp(1.6rem, 7vw, 2.4rem);
    }
    .tt-hero--style-reversed .tt-hero__heading-script {
        font-size: clamp(1.6rem, 8vw, 2.4rem);
    }

    /* Style 6: floating */
    .tt-hero--style-floating .tt-hero__circle {
        width: min(var(--tt-circle-size, 300px), 160px) !important;
        height: min(var(--tt-circle-size, 300px), 160px) !important;
    }
    .tt-hero--style-floating .tt-hero__text-block {
        padding-top: 20px;
    }
    .tt-hero--style-floating .tt-hero__heading-serif {
        font-size: clamp(1.6rem, 7vw, 2.4rem);
    }
    .tt-hero--style-floating .tt-hero__heading-script {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    /* Style 7: framed — even tighter */
    .tt-hero--style-framed {
        padding: var(--space-4) var(--space-2) var(--space-2);
    }
    .tt-hero--style-framed .tt-hero__banner {
        padding: var(--space-3) var(--space-2);
    }
    .tt-hero--style-framed .tt-hero__banner::before {
        inset: 4px;
    }
    .tt-hero--style-framed .tt-hero__circle {
        width: min(var(--tt-circle-size, 320px), 130px) !important;
        height: min(var(--tt-circle-size, 320px), 130px) !important;
    }
    .tt-hero--style-framed .tt-hero__corner {
        width: 36px;
        height: 36px;
    }

    /* Style 8: minimal — smaller circle on phone */
    .tt-hero--style-minimal .tt-hero__circle {
        width: min(var(--tt-circle-size, 420px), 200px) !important;
        height: min(var(--tt-circle-size, 420px), 200px) !important;
        transform: translate(-50%, -50%) !important;
        position: absolute !important;
    }
    .tt-hero--style-minimal .tt-hero__banner {
        margin-top: var(--space-2);
    }
    .tt-hero--style-minimal .tt-hero__heading-serif {
        font-size: clamp(1.8rem, 10vw, 2.8rem);
    }
    .tt-hero--style-minimal .tt-hero__heading-script {
        font-size: clamp(2rem, 12vw, 3.5rem);
    }
    .tt-hero--style-minimal .tt-hero__subtitle {
        font-size: var(--text-xs);
        letter-spacing: 0.2em;
    }

    /* Style 9: overlap — compact */
    .tt-hero--style-overlap .tt-hero__banner {
        min-height: 200px;
    }
    .tt-hero--style-overlap .tt-hero__circle {
        width: min(var(--tt-circle-size, 380px), 200px) !important;
        height: min(var(--tt-circle-size, 380px), 200px) !important;
        opacity: 0.25;
    }
    .tt-hero--style-overlap .tt-hero__heading-serif {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
    }
    .tt-hero--style-overlap .tt-hero__heading-script {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    /* Style 10: theater */
    .tt-hero--style-theater .tt-hero__circle {
        width: min(var(--tt-circle-size, 300px), 140px) !important;
        height: min(var(--tt-circle-size, 300px), 140px) !important;
    }
    .tt-hero--style-theater .tt-hero__text-block {
        padding-top: 80px;
        margin-top: 60px;
    }
    .tt-hero--style-theater .tt-hero__heading-serif {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }
    .tt-hero--style-theater .tt-hero__heading-script {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }
}

/* ═══ HERO STYLES — prefers-reduced-motion ═══ */
@media (prefers-reduced-motion: reduce) {
    .tt-hero--style-theater .tt-hero__circle,
    .tt-hero--style-grand .tt-hero__circle {
        animation: none;
    }
}

/* ═══ SECTIONS (generic) ═══ */
.tt-section {
    padding: var(--space-10) 0;
    position: relative;
}
.tt-section__header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}
.tt-section__title {
    flex-basis: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: var(--weight-medium);
    color: rgba(201,169,110,0.7);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    white-space: nowrap;
    padding-bottom: 0;
    position: relative;
}
/* Section label (centered with decorative lines) */
.tt-section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}
.tt-section-label__line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}
.tt-section-label__text {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
}
.tt-section__viewall {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    margin-left: auto;
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: var(--radius-full);
    padding: 6px 14px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: var(--weight-medium);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
    text-decoration: none;
    transition: border-color 0.25s, color 0.25s, background-color 0.25s;
}
.tt-section__viewall svg {
    transition: transform 0.3s var(--ease-out);
}
.tt-section__viewall:hover {
    border-color: rgba(201,169,110,0.5);
    color: var(--gold-light);
    background-color: rgba(201,169,110,0.06);
}
.tt-section__viewall:hover svg { transform: translateX(4px); }

/* Sort dropdown — gold pill */
.tt-section__sort-wrap {
    position: relative;
    flex-shrink: 0;
}
.tt-section__sort {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: var(--radius-full);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: var(--weight-medium);
    letter-spacing: 0.04em;
    padding: 6px 30px 6px 14px;
    cursor: pointer;
    outline: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23C9A96E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
    transition: border-color 0.25s, color 0.25s, background-color 0.25s;
    white-space: nowrap;
}
.tt-section__sort:hover,
.tt-section__sort:focus {
    border-color: rgba(201,169,110,0.5);
    color: var(--gold);
    background-color: rgba(201,169,110,0.06);
}
.tt-section__sort option {
    background: var(--bg-elevated);
    color: var(--text-body);
    padding: 8px;
}
/* Loading state — grid fade while AJAX loads */
.tt-product-grid.is-loading {
    opacity: 0.3;
    pointer-events: none;
    transition: opacity 0.2s;
}
.tt-product-grid {
    transition: opacity 0.3s var(--ease-out);
}

/* ═══ FEATURED CATEGORIES ═══ */
.tt-featured-cats {
    border-bottom: none;
    padding-top: 0;
    padding-bottom: var(--space-6);
    position: relative;
}
.tt-featured-cats .tt-section-label { display: none; }
/* Tighter transition from categories to first product section */
.tt-featured-cats + .tt-product-section {
    padding-top: var(--space-6);
}
.tt-featured-cats__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}
/* Category — iconic capsule, primary CTA */
.tt-cat-pill {
    position: relative;
    font-size: 0.875rem;
    font-weight: var(--weight-medium);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(220,210,190,0.85);
    padding: 14px 36px;
    border: 1px solid rgba(201,169,110,0.25);
    border-radius: var(--radius-full);
    background: rgba(201,169,110,0.03);
    overflow: hidden;
    box-shadow: 0 0 20px rgba(201,169,110,0.04);
    transition: color 0.4s var(--ease-out),
                border-color 0.4s var(--ease-out),
                background 0.4s var(--ease-out),
                box-shadow 0.4s var(--ease-out),
                transform 0.4s var(--ease-out);
}
/* Shine sweep on hover */
.tt-cat-pill::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        105deg,
        transparent 38%,
        rgba(255,255,255,0.06) 44%,
        rgba(255,255,255,0.12) 50%,
        rgba(255,255,255,0.06) 56%,
        transparent 62%
    );
    transform: translateX(-150%);
    transition: transform 0.7s ease;
}
.tt-cat-pill:hover {
    color: var(--gold);
    border-color: rgba(201,169,110,0.5);
    background: rgba(201,169,110,0.07);
    box-shadow: 0 0 30px rgba(201,169,110,0.15),
                0 0 60px rgba(201,169,110,0.06);
    transform: translateY(-3px);
}
.tt-cat-pill:hover::after {
    transform: translateX(150%);
}

/* ═══════════════════════════════════════════
   SECTION TITLE STYLES — 5 Comprehensive Looks
   Each style changes: title, cat pills, sort, viewall
   ═══════════════════════════════════════════ */

/* ── Style 1: Divider (default) ──
   Base styles already applied above.
   Title: centered, gold lines both sides
   Pills: capsule border, shine sweep
   Controls: bordered pills */

/* ── Style 2: Diamond — Geometric, sharp ── */
.tt-stitle--diamond .tt-section__title {
    gap: var(--space-4);
}
.tt-stitle--diamond .tt-section__title::before {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201,169,110,0.15) 40%,
        rgba(201,169,110,0.3) 100%);
}
.tt-stitle--diamond .tt-section__title::after {
    background: linear-gradient(90deg,
        rgba(201,169,110,0.3) 0%,
        rgba(201,169,110,0.15) 60%,
        transparent 100%);
}
/* Diamond ornament via box-shadow trick on the lines' endpoints */
.tt-stitle--diamond .tt-section__title {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 0.2em;
    color: rgba(201,169,110,0.8);
}
.tt-stitle--diamond .tt-cat-pill {
    border-radius: 2px;
    border-color: rgba(201,169,110,0.3);
    letter-spacing: 0.22em;
    font-size: 0.8rem;
}
.tt-stitle--diamond .tt-cat-pill:hover {
    border-color: var(--gold);
    background: rgba(201,169,110,0.08);
    transform: none;
    box-shadow: 0 0 20px rgba(201,169,110,0.12);
}
.tt-stitle--diamond .tt-cat-pill::after { display: none; }
.tt-stitle--diamond .tt-section__sort {
    border-radius: 2px;
    border-color: rgba(201,169,110,0.25);
}
.tt-stitle--diamond .tt-section__viewall {
    border-radius: 2px;
    border-color: rgba(201,169,110,0.25);
}

/* ── Style 3: Glow — Ethereal, atmospheric ── */
.tt-stitle--glow .tt-section__title {
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 0.18em;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(201,169,110,0.3),
                 0 0 60px rgba(201,169,110,0.1);
    justify-content: center;
}
.tt-stitle--glow .tt-section__title::before,
.tt-stitle--glow .tt-section__title::after {
    display: none;
}
.tt-stitle--glow .tt-cat-pill {
    border-color: transparent;
    background: rgba(201,169,110,0.04);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(4px);
}
.tt-stitle--glow .tt-cat-pill:hover {
    background: rgba(201,169,110,0.1);
    border-color: transparent;
    box-shadow: 0 0 40px rgba(201,169,110,0.15);
    text-shadow: 0 0 20px rgba(201,169,110,0.3);
    transform: none;
}
.tt-stitle--glow .tt-cat-pill::after { display: none; }
.tt-stitle--glow .tt-section__sort {
    border-color: transparent;
    background: rgba(201,169,110,0.04);
    border-radius: var(--radius-sm);
}
.tt-stitle--glow .tt-section__sort:hover,
.tt-stitle--glow .tt-section__sort:focus {
    background: rgba(201,169,110,0.08);
    border-color: transparent;
}
.tt-stitle--glow .tt-section__viewall {
    border-color: transparent;
    background: rgba(201,169,110,0.04);
    border-radius: var(--radius-sm);
}
.tt-stitle--glow .tt-section__viewall:hover {
    background: rgba(201,169,110,0.08);
    border-color: transparent;
}

/* ── Style 4: Ribbon — Editorial, left-aligned ── */
.tt-stitle--ribbon .tt-section__title {
    justify-content: flex-start;
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--text-primary);
    letter-spacing: 0.1em;
    padding-left: var(--space-4);
}
.tt-stitle--ribbon .tt-section__title::before {
    content: '';
    flex: 0 0 3px;
    height: 1.2em;
    background: linear-gradient(180deg,
        transparent,
        var(--gold) 20%,
        var(--gold) 80%,
        transparent);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(201,169,110,0.3);
    position: static;
}
.tt-stitle--ribbon .tt-section__title::after {
    display: none;
}
.tt-stitle--ribbon .tt-featured-cats__grid {
    justify-content: flex-start;
}
.tt-stitle--ribbon .tt-cat-pill {
    border-radius: 2px;
    padding: 8px 20px;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
}
.tt-stitle--ribbon .tt-cat-pill::after { display: none; }
.tt-stitle--ribbon .tt-cat-pill:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(201,169,110,0.5);
}
.tt-stitle--ribbon .tt-section__sort {
    border-radius: 2px;
}
.tt-stitle--ribbon .tt-section__viewall {
    border: none;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(201,169,110,0.3);
}
.tt-stitle--ribbon .tt-section__viewall:hover {
    background: none;
    text-decoration-color: var(--gold);
}

/* ── Style 5: Minimal — Ultra-clean, whisper ── */
.tt-stitle--minimal .tt-section__title {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.25em;
    color: rgba(201,169,110,0.5);
    justify-content: center;
}
.tt-stitle--minimal .tt-section__title::before,
.tt-stitle--minimal .tt-section__title::after {
    display: none;
}
.tt-stitle--minimal .tt-cat-pill {
    border: none;
    background: none;
    color: rgba(201,169,110,0.5);
    padding: 8px 14px;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    position: relative;
}
.tt-stitle--minimal .tt-cat-pill::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transform: translateX(-50%);
    transition: width 0.3s var(--ease-out);
}
.tt-stitle--minimal .tt-cat-pill:hover {
    color: var(--gold);
    background: none;
    border: none;
    box-shadow: none;
    transform: none;
}
.tt-stitle--minimal .tt-cat-pill:hover::after {
    width: 60%;
    transform: translateX(-50%);
}
.tt-stitle--minimal .tt-section__sort {
    border: none;
    background: none;
    color: rgba(255,255,255,0.35);
    padding-left: 0;
}
.tt-stitle--minimal .tt-section__sort:hover,
.tt-stitle--minimal .tt-section__sort:focus {
    background: none;
    border: none;
    color: var(--gold-dim);
}
.tt-stitle--minimal .tt-section__viewall {
    border: none;
    background: none;
    padding: 0;
    font-size: 11px;
    color: rgba(201,169,110,0.4);
}
.tt-stitle--minimal .tt-section__viewall:hover {
    background: none;
    color: var(--gold);
}

/* ═══ PRODUCT GRID ═══ */
.tt-product-grid {
    display: grid;
    gap: var(--space-5);
}
.tt-product-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.tt-product-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.tt-product-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
.tt-product-grid--cols-5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1024px) {
    .tt-product-grid--cols-4,
    .tt-product-grid--cols-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .tt-product-grid--cols-3,
    .tt-product-grid--cols-4,
    .tt-product-grid--cols-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .tt-product-grid { gap: var(--space-3); }
}

/* Product section responsive */
@media (max-width: 768px) {
    .tt-section {
        padding: var(--space-8) 0;
    }
    .tt-featured-cats + .tt-product-section {
        padding-top: var(--space-3);
    }
    .tt-section__title {
        font-size: 12px;
        letter-spacing: 0.1em;
        gap: var(--space-2);
    }
    .tt-section__header {
        margin-bottom: var(--space-4);
        gap: var(--space-2);
    }
    .tt-section__sort {
        font-size: 10px;
        padding: 5px 26px 5px 10px;
    }
    .tt-section__viewall {
        font-size: 10px;
        padding: 5px 12px;
    }
    /* Style overrides — mobile */
    .tt-stitle--diamond .tt-section__title { font-size: 12px; letter-spacing: 0.15em; }
    .tt-stitle--glow .tt-section__title { font-size: 12px; }
    .tt-stitle--ribbon .tt-section__title { font-size: clamp(0.8rem, 1.8vw, 0.95rem); padding-left: var(--space-3); }
    .tt-stitle--minimal .tt-section__title { font-size: 11px; letter-spacing: 0.18em; }
    .tt-stitle--minimal .tt-cat-pill { padding: 6px 10px; font-size: 0.7rem; }
    .tt-stitle--minimal .tt-section__sort { font-size: 10px; }
    .tt-stitle--minimal .tt-section__viewall { font-size: 10px; }
    .tt-product-section + .tt-product-section::before {
        width: 6px;
        height: 6px;
        margin-bottom: var(--space-6);
    }
    .tt-product-section + .tt-product-section::after {
        width: 160px;
    }
    .tt-product-card {
        box-shadow: 0 1px 8px rgba(0,0,0,0.2);
    }
    .tt-product-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 16px rgba(0,0,0,0.4),
                    0 0 12px var(--gold-glow);
    }
    /* ── Card text: compact on 2-col grid ── */
    .tt-product-card__title {
        font-size: clamp(0.72rem, 3vw, 0.85rem);
        padding: 8px 8px 3px;
        border-top-color: rgba(201,169,110,0.06);
    }
    .tt-product-card__price {
        font-size: clamp(0.68rem, 2.6vw, 0.78rem);
        padding: 2px 8px 8px;
    }
    .tt-product-card__price del {
        font-size: 0.8em;
    }
    .tt-product-card__badge {
        top: var(--space-2);
        right: var(--space-2);
        padding: 2px var(--space-2);
        font-size: clamp(0.55rem, 2.5vw, 0.65rem);
    }
    /* Khung Vàng — smaller corners on mobile */
    .tt-product-card--khung-vang::before,
    .tt-product-card--khung-vang::after {
        width: 20px; height: 20px;
    }
    .tt-product-card--khung-vang {
        background-size: 2px 20px, 20px 2px, 2px 20px, 20px 2px;
    }
    .tt-product-card--khung-vang:hover {
        transform: translateY(-2px);
    }
    /* Sương Đêm — gentler hover */
    .tt-product-card--suong-dem:hover {
        transform: translateY(-1px);
    }
    /* Ánh Kim — disable ambient glow animation on mobile (battery) */
    .tt-product-card--anh-kim {
        animation: none;
    }
    .tt-product-card--anh-kim:hover {
        transform: translateY(-3px);
    }
    /* Pha Lê — smaller corners */
    .tt-product-card--pha-le::before,
    .tt-product-card--pha-le::after {
        width: 16px; height: 16px;
    }
    .tt-product-card--pha-le {
        background-size: 2px 16px, 16px 2px, 2px 16px, 16px 2px;
    }
    .tt-product-card--pha-le:hover {
        transform: translateY(-2px);
    }
    /* Pha Lê Vàng — smaller corners */
    .tt-product-card--pha-le-vang::before,
    .tt-product-card--pha-le-vang::after {
        width: 16px; height: 16px;
    }
    .tt-product-card--pha-le-vang {
        background-size: 2px 16px, 16px 2px, 2px 16px, 16px 2px;
    }
    /* Disable animations on mobile (battery) */
    .tt-product-card--vien-sang { animation: none; }
    /* Gương Đen — reduce extreme lift */
    .tt-product-card--guong-den:hover { transform: translateY(-4px); }
    /* Bóng Tối — reduce extreme lift */
    .tt-product-card--bong-toi:hover { transform: translateY(-5px); }
    /* Hoàng Gia — smaller inner corners */
    .tt-product-card--hoang-gia::before,
    .tt-product-card--hoang-gia::after {
        width: 18px; height: 18px;
    }
}
@media (max-width: 480px) {
    .tt-product-section + .tt-product-section::before,
    .tt-product-section + .tt-product-section::after {
        display: none;
    }
    /* Ultra-small screens — maximum compact */
    .tt-product-card__title {
        font-size: clamp(0.65rem, 3vw, 0.76rem);
        padding: 6px 6px 2px;
        border-top: none;
    }
    .tt-product-card__price {
        font-size: clamp(0.62rem, 2.5vw, 0.72rem);
        padding: 1px 6px 6px;
    }
    /* Smaller corner decorations */
    .tt-product-card--khung-vang::before,
    .tt-product-card--khung-vang::after {
        width: 14px; height: 14px;
    }
    .tt-product-card--khung-vang {
        background-size: 2px 14px, 14px 2px, 2px 14px, 14px 2px;
    }
    .tt-product-card--pha-le::before,
    .tt-product-card--pha-le::after {
        width: 12px; height: 12px;
    }
    .tt-product-card--pha-le {
        background-size: 2px 12px, 12px 2px, 2px 12px, 12px 2px;
    }
    .tt-product-card--pha-le-vang::before,
    .tt-product-card--pha-le-vang::after {
        width: 12px; height: 12px;
    }
    .tt-product-card--pha-le-vang {
        background-size: 2px 12px, 12px 2px, 2px 12px, 12px 2px;
    }
    .tt-product-card--hoang-gia::before,
    .tt-product-card--hoang-gia::after {
        width: 14px; height: 14px;
    }
    /* Compact add-to-cart button on ultra-small */
    .tt-product-card__atc {
        margin: 1px 6px 6px;
        padding: 7px 10px;
        font-size: 0.68rem;
        gap: 5px;
    }
    .tt-product-card__atc-icon {
        width: 13px;
        height: 13px;
    }
    /* Reduce all hover lift on small touch screens */
    .tt-product-card:hover {
        transform: translateY(-2px);
    }
}

/* ═══ PRODUCT CARD — KEYFRAMES ═══ */
@keyframes khung-vang-shimmer {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.8; }
}
@keyframes anh-kim-glow {
    0%, 100% { box-shadow: 0 4px 24px rgba(0,0,0,0.2), inset 0 0 40px rgba(201,169,110,0.04); }
    50% { box-shadow: 0 4px 24px rgba(0,0,0,0.2), inset 0 0 60px rgba(201,169,110,0.08); }
}
@keyframes anh-kim-line {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes pha-le-refract {
    0% { opacity: 0; transform: translateX(-100%); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateX(100%); }
}
@keyframes vien-sang-pulse {
    0%, 100% { box-shadow: 0 0 8px rgba(201,169,110,0.15), inset 0 0 8px rgba(201,169,110,0.05); }
    50% { box-shadow: 0 0 20px rgba(201,169,110,0.3), inset 0 0 16px rgba(201,169,110,0.08); }
}
@keyframes kim-cuong-sparkle {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* ═══ PRODUCT CARD ═══ */
.tt-product-card {
    display: block;
    padding-bottom: 104px; /* reserve space for absolute footer */
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 16px rgba(0,0,0,0.25);
    transition: border-color var(--duration-normal),
                box-shadow 0.4s var(--ease-out),
                transform 0.4s var(--ease-out);
}
.tt-product-card:hover {
    border-color: var(--border-gold);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5),
                0 0 20px var(--gold-glow);
    transform: translateY(-6px);
}

.tt-product-card__image-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bg-surface);
    display: block;
}
/* Vignette — edges fade into dark bg */
.tt-product-card__image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 55%, rgba(5,5,5,0.35) 100%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-out);
}
.tt-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out),
                filter 0.6s var(--ease-out);
}
.tt-product-card:hover .tt-product-card__image {
    transform: scale(1.06);
}

.tt-product-card__badge {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-xs);
    font-weight: var(--weight-semi);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    border-radius: var(--radius-full);
    z-index: 2;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.tt-badge--sale {
    background: var(--danger);
    color: var(--text-primary);
}
.tt-badge--new {
    background: var(--gold);
    color: var(--bg-void);
}

/* Title — centered, 1 line, compact */
.tt-product-card__title {
    padding: 10px 12px 4px;
    font-family: var(--font-heading);
    font-size: clamp(0.82rem, 1.5vw, 0.95rem);
    font-weight: var(--weight-regular);
    line-height: 1.4;
    color: var(--text-primary);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s var(--ease-out);
    border-top: 1px solid rgba(201,169,110,0.1);
}
.tt-product-card__title a {
    color: inherit;
    text-decoration: none;
}
.tt-product-card:hover .tt-product-card__title {
    color: var(--gold);
    border-top-color: rgba(201,169,110,0.3);
}

/* Rating stars — nằm trong .tt-product-card__header, natural height */
.tt-product-card__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 1px 12px 4px;
}
.tt-product-card__stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    color: var(--gold);
}
/* Override critical.css: svg { display: block } — keep stars horizontal */
.tt-product-card__stars svg {
    display: inline-block;
    width: 11px;
    height: 11px;
    flex-shrink: 0;
    vertical-align: middle;
}
.tt-star--empty {
    opacity: 0.3;
}
.tt-product-card__rating-count {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-dim);
    letter-spacing: 0.01em;
}

/* Footer — price + ATC button, luôn ở bottom của card nhờ margin-top: auto.
   Khoảng trống thừa nằm giữa header và footer — vô hình, không có element nào. */
.tt-product-card__footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.tt-product-card__price {
    padding: 2px 12px 10px;
    font-family: var(--font-mono);
    font-size: clamp(0.75rem, 1.4vw, 0.85rem);
    font-weight: var(--weight-medium);
    color: var(--gold);
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1.7;
}
.tt-product-card__price del {
    display: block;
    color: var(--text-dim);
    font-weight: var(--weight-regular);
    font-size: 0.78em;
    text-decoration-color: rgba(255,255,255,0.15);
    line-height: 1.4;
}
.tt-product-card__price ins {
    display: block;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: var(--weight-semi);
    line-height: 1.4;
}
.tt-product-card__price .tt-discount-badge {
    display: inline-flex;
    padding: 1px 5px;
    font-size: 0.75em;
    font-weight: var(--weight-semi);
    color: var(--gold-light);
    background: rgba(201,169,110,0.08);
    border: 1px solid rgba(201,169,110,0.18);
    border-radius: var(--radius-full);
    vertical-align: middle;
    margin-left: 3px;
}

/* ─── Add-to-Cart Button (Base) ─── */
.tt-product-card__atc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: calc(100% - 24px);
    box-sizing: border-box;
    margin: 2px 12px 10px;
    padding: 9px 16px;
    background: transparent;
    border: 1px solid var(--border-visible, rgba(255,255,255,0.12));
    border-radius: var(--radius-sm, 4px);
    color: var(--text-muted, #888);
    font-family: var(--font-body);
    font-size: clamp(0.72rem, 1.3vw, 0.8rem);
    font-weight: var(--weight-medium, 500);
    letter-spacing: 0.03em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out, cubic-bezier(0.16,1,0.3,1));
    -webkit-tap-highlight-color: transparent;
}
.tt-product-card__atc:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--border-gold, rgba(201,169,110,0.3));
    color: var(--gold, #C9A96E);
}
.tt-product-card__atc-icon {
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-out);
}
.tt-product-card__atc:hover .tt-product-card__atc-icon {
    transform: scale(1.1);
}

/* Loading state — WC adds .loading during AJAX, .is-loading for homepage lazy-load */
.tt-product-card__atc.loading,
.tt-product-card__atc.is-loading {
    pointer-events: none;
    opacity: 0.5;
}
.tt-product-card__atc.loading .tt-product-card__atc-icon,
.tt-product-card__atc.is-loading .tt-product-card__atc-icon {
    animation: tt-atc-spin 0.8s linear infinite;
}
@keyframes tt-atc-spin {
    to { transform: rotate(360deg); }
}

/* Added state — WC adds .added after success */
.tt-product-card__atc.added {
    border-color: rgba(201,169,110,0.3);
    color: var(--gold, #C9A96E);
    background: rgba(201,169,110,0.06);
}
.tt-product-card__atc.added .tt-product-card__atc-icon {
    display: none;
}
.tt-product-card__atc.added span::after {
    content: ' ✓';
}

/* WC "View Cart" link — hidden (cart drawer handles this) */
.tt-product-card .added_to_cart {
    display: none !important;
}

/* Out of stock */
.tt-product-card__atc--oos {
    display: block;
    margin: 2px 12px 10px;
    padding: 8px 16px;
    text-align: center;
    font-size: clamp(0.68rem, 1.2vw, 0.75rem);
    color: var(--text-dim, #555);
    letter-spacing: 0.04em;
    border-top: 1px solid var(--border-subtle, rgba(255,255,255,0.06));
}

/* Mobile — larger touch target */
@media (max-width: 768px) {
    .tt-product-card__atc {
        padding: 10px 14px;
        min-height: 42px;
        font-size: 0.76rem;
    }
}

/* ══════════════════════════════════════════════════
   STYLE 2: KHUNG VÀNG (Gold Frame)
   Concept: Tủ kính bảo tàng vàng. 4 góc L trang trí.
   Sản phẩm = tác phẩm nghệ thuật được đóng khung.
   ══════════════════════════════════════════════════ */
.tt-product-card--khung-vang {
    background: linear-gradient(180deg, #131313, #0F0F0F);
    border: 2px solid rgba(201,169,110,0.2);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 20px rgba(0,0,0,0.35),
                inset 0 0 30px rgba(201,169,110,0.04);
}
/* Gold L-corners — top-left + top-right (large, visible) */
.tt-product-card--khung-vang::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px;
    width: 32px; height: 32px;
    border-top: 2px solid rgba(201,169,110,0.5);
    border-left: 2px solid rgba(201,169,110,0.5);
    z-index: 3;
    pointer-events: none;
    transition: border-color 0.4s var(--ease-out);
}
.tt-product-card--khung-vang::after {
    content: '';
    position: absolute;
    top: -1px; right: -1px;
    width: 32px; height: 32px;
    border-top: 2px solid rgba(201,169,110,0.5);
    border-right: 2px solid rgba(201,169,110,0.5);
    z-index: 3;
    pointer-events: none;
    transition: border-color 0.4s var(--ease-out);
}
/* Bottom corners via background-image */
.tt-product-card--khung-vang {
    background-image:
        linear-gradient(to right, rgba(201,169,110,0.5) 32px, transparent 32px),
        linear-gradient(to top, rgba(201,169,110,0.5) 32px, transparent 32px),
        linear-gradient(to left, rgba(201,169,110,0.5) 32px, transparent 32px),
        linear-gradient(to top, rgba(201,169,110,0.5) 32px, transparent 32px);
    background-size: 2px 32px, 32px 2px, 2px 32px, 32px 2px;
    background-position: bottom left, bottom left, bottom right, bottom right;
    background-repeat: no-repeat;
}
.tt-product-card--khung-vang:hover {
    border-color: rgba(201,169,110,0.5);
    box-shadow: 0 6px 32px rgba(0,0,0,0.5),
                inset 0 0 30px rgba(201,169,110,0.06),
                0 0 24px rgba(201,169,110,0.12);
    transform: translateY(-4px);
}
.tt-product-card--khung-vang:hover::before,
.tt-product-card--khung-vang:hover::after {
    border-color: rgba(201,169,110,0.85);
    animation: khung-vang-shimmer 2s ease-in-out infinite;
}
/* Warm-tinted vignette */
.tt-product-card--khung-vang .tt-product-card__image-wrap::before {
    background: radial-gradient(ellipse at center, transparent 50%, rgba(15,12,5,0.45) 100%);
}
.tt-product-card--khung-vang .tt-product-card__title {
    font-weight: var(--weight-light);
    letter-spacing: 0.03em;
    border-top-color: rgba(201,169,110,0.2);
}
.tt-product-card--khung-vang:hover .tt-product-card__title {
    color: var(--gold-light);
    border-top-color: rgba(201,169,110,0.45);
}
.tt-product-card--khung-vang .tt-product-card__price {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Badge → outlined gold */
.tt-product-card--khung-vang .tt-badge--new {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(201,169,110,0.5);
}

/* ══════════════════════════════════════════════════
   STYLE 3: SƯƠNG ĐÊM (Night Mist)
   Concept: Trang sức hiện ra từ bóng tối sâu thẳm.
   Ảnh rất tối, mờ ảo → sáng dần khi hover.
   Huyền bí nhất trong 5 style.
   ══════════════════════════════════════════════════ */
.tt-product-card--suong-dem {
    background: linear-gradient(180deg, #0A0A0A, #060606, #030303);
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.02),
                0 2px 20px rgba(0,0,0,0.6);
    transition: box-shadow 0.8s var(--ease-out),
                transform 0.8s var(--ease-out);
}
.tt-product-card--suong-dem:hover {
    box-shadow: 0 0 0 1px rgba(201,169,110,0.08),
                0 4px 48px rgba(0,0,0,0.7),
                0 0 40px rgba(201,169,110,0.06);
    transform: translateY(-3px);
}
/* Extreme vignette — nearly black edges */
.tt-product-card--suong-dem .tt-product-card__image-wrap::before {
    background: radial-gradient(ellipse at center, transparent 25%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.8) 100%);
}
.tt-product-card--suong-dem:hover .tt-product-card__image-wrap::before {
    opacity: 0.35;
}
/* Deeply desaturated + dark → reveal on hover */
.tt-product-card--suong-dem .tt-product-card__image {
    filter: saturate(0.15) brightness(0.55);
    transition: transform 0.8s var(--ease-out),
                filter 1s var(--ease-out);
}
.tt-product-card--suong-dem:hover .tt-product-card__image {
    filter: saturate(0.8) brightness(0.92);
    transform: scale(1.03);
}
/* Disable shine sweep */
.tt-product-card--suong-dem .tt-product-card__image-wrap::after {
    display: none;
}
.tt-product-card--suong-dem .tt-product-card__title {
    color: rgba(255,255,255,0.4);
    border-top-color: rgba(255,255,255,0.04);
    transition: color 0.8s var(--ease-out), border-top-color 0.8s;
}
.tt-product-card--suong-dem:hover .tt-product-card__title {
    color: rgba(255,255,255,0.9);
    border-top-color: rgba(201,169,110,0.15);
}
.tt-product-card--suong-dem .tt-product-card__price {
    color: rgba(201,169,110,0.3);
    transition: color 0.8s var(--ease-out);
}
.tt-product-card--suong-dem:hover .tt-product-card__price {
    color: var(--gold);
}
.tt-product-card--suong-dem .tt-badge--new {
    background: rgba(201,169,110,0.08);
    color: rgba(201,169,110,0.4);
    transition: background 0.8s, color 0.8s;
}
.tt-product-card--suong-dem:hover .tt-badge--new {
    background: rgba(201,169,110,0.2);
    color: var(--gold);
}

/* ══════════════════════════════════════════════════
   STYLE 4: ÁNH KIM (Golden Gleam)
   Concept: Ánh sáng vàng ấm chiếu rọi từ showroom.
   Ambient gold glow + pulsating inner light.
   Warm, inviting, nhưng vẫn cao cấp.
   ══════════════════════════════════════════════════ */
.tt-product-card--anh-kim {
    background: linear-gradient(180deg, #15120E, #110E0A);
    border: 1px solid rgba(201,169,110,0.18);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2),
                inset 0 0 40px rgba(201,169,110,0.04);
    animation: anh-kim-glow 4s ease-in-out infinite;
}
/* Top accent line — animated golden shimmer */
.tt-product-card--anh-kim::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201,169,110,0.1) 15%,
        rgba(212,184,122,0.6) 30%,
        rgba(201,169,110,0.9) 50%,
        rgba(212,184,122,0.6) 70%,
        rgba(201,169,110,0.1) 85%,
        transparent 100%
    );
    background-size: 200% 100%;
    z-index: 3;
    pointer-events: none;
}
.tt-product-card--anh-kim:hover::before {
    animation: anh-kim-line 2s linear infinite;
}
.tt-product-card--anh-kim:hover {
    border-color: rgba(201,169,110,0.35);
    box-shadow: 0 8px 36px rgba(0,0,0,0.35),
                inset 0 0 60px rgba(201,169,110,0.08),
                0 0 40px rgba(201,169,110,0.15);
    transform: translateY(-5px);
    animation: none;
}
/* Warm sepia tone image */
.tt-product-card--anh-kim .tt-product-card__image {
    filter: sepia(0.12) brightness(0.95);
}
.tt-product-card--anh-kim:hover .tt-product-card__image {
    filter: sepia(0) brightness(1);
    transform: scale(1.05);
}
/* Gold-tinted warm vignette */
.tt-product-card--anh-kim .tt-product-card__image-wrap::before {
    background: radial-gradient(ellipse at center, transparent 50%, rgba(15,10,2,0.4) 100%);
}
/* Gold-tinted shine sweep */
.tt-product-card--anh-kim .tt-product-card__image-wrap::after {
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(201,169,110,0.04) 44%,
        rgba(201,169,110,0.1) 50%,
        rgba(201,169,110,0.04) 56%,
        transparent 60%
    );
}
.tt-product-card--anh-kim .tt-product-card__title {
    color: rgba(255,245,230,0.9);
    border-top-color: rgba(201,169,110,0.15);
}
.tt-product-card--anh-kim:hover .tt-product-card__title {
    color: var(--gold);
    border-top-color: rgba(201,169,110,0.35);
}
.tt-product-card--anh-kim .tt-product-card__price {
    color: var(--gold);
    text-shadow: 0 0 12px rgba(201,169,110,0.15);
}

/* ══════════════════════════════════════════════════
   STYLE 5: PHA LÊ (Crystal Display)
   Concept: Tủ kính pha lê cao cấp. Glass morphism.
   Sắc nét, chính xác. Platinum/silver highlights.
   ══════════════════════════════════════════════════ */
.tt-product-card--pha-le {
    background: rgba(20,20,22,0.85);
    border: 1px solid rgba(232,232,232,0.1);
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3),
                inset 0 1px 0 rgba(232,232,232,0.06);
}
@supports (backdrop-filter: blur(1px)) {
    .tt-product-card--pha-le {
        background: rgba(20,20,22,0.6);
        backdrop-filter: blur(16px) saturate(1.2);
        -webkit-backdrop-filter: blur(16px) saturate(1.2);
    }
}
/* Platinum corner marks — all 4 corners, large + visible */
.tt-product-card--pha-le::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px;
    width: 24px; height: 24px;
    border-top: 2px solid rgba(232,232,232,0.25);
    border-left: 2px solid rgba(232,232,232,0.25);
    z-index: 3;
    pointer-events: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.tt-product-card--pha-le::after {
    content: '';
    position: absolute;
    bottom: -1px; right: -1px;
    width: 24px; height: 24px;
    border-bottom: 2px solid rgba(232,232,232,0.25);
    border-right: 2px solid rgba(232,232,232,0.25);
    z-index: 3;
    pointer-events: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}
/* Bottom corners via background-image */
.tt-product-card--pha-le {
    background-image:
        linear-gradient(to left, rgba(232,232,232,0.25) 24px, transparent 24px),
        linear-gradient(to bottom, rgba(232,232,232,0.25) 24px, transparent 24px),
        linear-gradient(to right, rgba(232,232,232,0.25) 24px, transparent 24px),
        linear-gradient(to top, rgba(232,232,232,0.25) 24px, transparent 24px);
    background-size: 2px 24px, 24px 2px, 2px 24px, 24px 2px;
    background-position: top right, top right, bottom left, bottom left;
    background-repeat: no-repeat;
}
.tt-product-card--pha-le:hover {
    border-color: rgba(232,232,232,0.2);
    box-shadow: 0 6px 32px rgba(0,0,0,0.4),
                0 0 20px rgba(232,232,232,0.06),
                inset 0 1px 0 rgba(232,232,232,0.1);
    transform: translateY(-4px);
}
.tt-product-card--pha-le:hover::before,
.tt-product-card--pha-le:hover::after {
    border-color: rgba(232,232,232,0.6);
}
/* Prismatic rainbow edge flash on hover */
.tt-product-card--pha-le .tt-product-card__image-wrap::after {
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(180,200,255,0.04) 43%,
        rgba(255,200,200,0.06) 46%,
        rgba(255,255,255,0.1) 50%,
        rgba(200,255,200,0.06) 54%,
        rgba(180,200,255,0.04) 57%,
        transparent 60%
    );
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}
.tt-product-card--pha-le:hover .tt-product-card__image-wrap::after {
    transform: translateX(100%);
}
/* Sharp, high-contrast image */
.tt-product-card--pha-le .tt-product-card__image {
    filter: brightness(0.88) contrast(1.1);
}
.tt-product-card--pha-le:hover .tt-product-card__image {
    filter: brightness(1) contrast(1.05);
    transform: scale(1.03);
}
.tt-product-card--pha-le .tt-product-card__title {
    color: var(--platinum);
    letter-spacing: 0.02em;
    border-top-color: rgba(232,232,232,0.08);
}
.tt-product-card--pha-le:hover .tt-product-card__title {
    color: #fff;
    text-shadow: 0 0 12px rgba(232,232,232,0.15);
    border-top-color: rgba(232,232,232,0.2);
}
.tt-product-card--pha-le .tt-product-card__price {
    font-family: var(--font-mono);
    color: rgba(232,232,232,0.7);
    letter-spacing: 0.05em;
}
.tt-product-card--pha-le:hover .tt-product-card__price {
    color: var(--platinum);
}
/* Badge → geometric, platinum outlined */
.tt-product-card--pha-le .tt-product-card__badge {
    border-radius: 2px;
    font-family: var(--font-mono);
    letter-spacing: 0.1em;
    font-size: clamp(0.6rem, 1.2vw, 0.68rem);
}
.tt-product-card--pha-le .tt-badge--new {
    background: rgba(232,232,232,0.06);
    color: var(--platinum);
    border: 1px solid rgba(232,232,232,0.3);
}
.tt-product-card--pha-le .tt-badge--sale {
    background: rgba(231,76,60,0.15);
    border: 1px solid rgba(231,76,60,0.4);
}

/* ══════════════════════════════════════════════════
   STYLE 6: PHA LÊ VÀNG (Gold Crystal)
   Concept: Pha Lê phiên bản vàng đồng. Glass morphism
   với tone ấm. Góc L vàng thay vì platinum.
   ══════════════════════════════════════════════════ */
.tt-product-card--pha-le-vang {
    background: rgba(22,18,12,0.85);
    border: 1px solid rgba(201,169,110,0.12);
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3),
                inset 0 1px 0 rgba(201,169,110,0.08);
}
@supports (backdrop-filter: blur(1px)) {
    .tt-product-card--pha-le-vang {
        background: rgba(22,18,12,0.6);
        backdrop-filter: blur(16px) saturate(1.2);
        -webkit-backdrop-filter: blur(16px) saturate(1.2);
    }
}
.tt-product-card--pha-le-vang::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px;
    width: 24px; height: 24px;
    border-top: 2px solid rgba(201,169,110,0.35);
    border-left: 2px solid rgba(201,169,110,0.35);
    z-index: 3;
    pointer-events: none;
    transition: border-color 0.3s;
}
.tt-product-card--pha-le-vang::after {
    content: '';
    position: absolute;
    bottom: -1px; right: -1px;
    width: 24px; height: 24px;
    border-bottom: 2px solid rgba(201,169,110,0.35);
    border-right: 2px solid rgba(201,169,110,0.35);
    z-index: 3;
    pointer-events: none;
    transition: border-color 0.3s;
}
.tt-product-card--pha-le-vang {
    background-image:
        linear-gradient(to left, rgba(201,169,110,0.35) 24px, transparent 24px),
        linear-gradient(to bottom, rgba(201,169,110,0.35) 24px, transparent 24px),
        linear-gradient(to right, rgba(201,169,110,0.35) 24px, transparent 24px),
        linear-gradient(to top, rgba(201,169,110,0.35) 24px, transparent 24px);
    background-size: 2px 24px, 24px 2px, 2px 24px, 24px 2px;
    background-position: top right, top right, bottom left, bottom left;
    background-repeat: no-repeat;
}
.tt-product-card--pha-le-vang:hover {
    border-color: rgba(201,169,110,0.25);
    box-shadow: 0 6px 32px rgba(0,0,0,0.4),
                0 0 24px rgba(201,169,110,0.08),
                inset 0 1px 0 rgba(201,169,110,0.12);
    transform: translateY(-4px);
}
.tt-product-card--pha-le-vang:hover::before,
.tt-product-card--pha-le-vang:hover::after {
    border-color: rgba(201,169,110,0.7);
}
.tt-product-card--pha-le-vang .tt-product-card__image-wrap::after {
    background: linear-gradient(105deg,
        transparent 40%, rgba(201,169,110,0.04) 44%,
        rgba(201,169,110,0.1) 50%, rgba(201,169,110,0.04) 56%, transparent 60%);
}
.tt-product-card--pha-le-vang .tt-product-card__image {
    filter: brightness(0.9) sepia(0.05);
}
.tt-product-card--pha-le-vang:hover .tt-product-card__image {
    filter: brightness(1) sepia(0);
    transform: scale(1.03);
}
.tt-product-card--pha-le-vang .tt-product-card__title {
    color: rgba(255,245,230,0.85);
    border-top-color: rgba(201,169,110,0.1);
}
.tt-product-card--pha-le-vang:hover .tt-product-card__title {
    color: var(--gold-light);
    border-top-color: rgba(201,169,110,0.25);
}
.tt-product-card--pha-le-vang .tt-product-card__price {
    font-family: var(--font-mono);
    color: rgba(201,169,110,0.7);
    letter-spacing: 0.05em;
}
.tt-product-card--pha-le-vang:hover .tt-product-card__price {
    color: var(--gold);
}
.tt-product-card--pha-le-vang .tt-product-card__badge {
    border-radius: 2px;
    font-family: var(--font-mono);
    letter-spacing: 0.1em;
}
.tt-product-card--pha-le-vang .tt-badge--new {
    background: rgba(201,169,110,0.08);
    color: var(--gold);
    border: 1px solid rgba(201,169,110,0.35);
}
/* ─ Pha Lê Vàng: Add-to-Cart Button ─ */
.tt-product-card--pha-le-vang .tt-product-card__atc {
    margin: 2px 14px 12px;
    border-color: rgba(201,169,110,0.18);
    border-radius: 6px;
    color: rgba(201,169,110,0.6);
    font-family: var(--font-mono);
    letter-spacing: 0.04em;
}
.tt-product-card--pha-le-vang .tt-product-card__atc:hover {
    background: linear-gradient(135deg, rgba(201,169,110,0.1) 0%, rgba(201,169,110,0.04) 100%);
    border-color: rgba(201,169,110,0.4);
    color: var(--gold);
    box-shadow: 0 0 16px rgba(201,169,110,0.06);
}
.tt-product-card--pha-le-vang .tt-product-card__atc.added {
    background: rgba(201,169,110,0.08);
    border-color: rgba(201,169,110,0.3);
    color: var(--gold);
}
.tt-product-card--pha-le-vang .tt-product-card__atc--oos {
    color: rgba(201,169,110,0.3);
    border-top-color: rgba(201,169,110,0.08);
}

/* ══════════════════════════════════════════════════
   STYLE 7: HỒNG KIM (Rose Gold)
   Concept: Sắc hồng kim thanh lịch trên nền đen.
   Nữ tính, tinh tế, nhưng vẫn huyền bí cao cấp.
   ══════════════════════════════════════════════════ */
.tt-product-card--hong-kim {
    background: linear-gradient(180deg, #141112, #0F0D0E);
    border: 1px solid rgba(183,110,121,0.15);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 16px rgba(0,0,0,0.3),
                inset 0 0 24px rgba(183,110,121,0.03);
}
.tt-product-card--hong-kim:hover {
    border-color: rgba(183,110,121,0.35);
    box-shadow: 0 8px 32px rgba(0,0,0,0.45),
                0 0 24px rgba(183,110,121,0.1),
                inset 0 0 30px rgba(183,110,121,0.05);
    transform: translateY(-5px);
}
.tt-product-card--hong-kim .tt-product-card__image-wrap::before {
    background: radial-gradient(ellipse at center, transparent 50%, rgba(14,8,10,0.4) 100%);
}
.tt-product-card--hong-kim .tt-product-card__image-wrap::after {
    background: linear-gradient(105deg,
        transparent 40%, rgba(183,110,121,0.03) 44%,
        rgba(201,138,147,0.08) 50%, rgba(183,110,121,0.03) 56%, transparent 60%);
}
.tt-product-card--hong-kim .tt-product-card__title {
    border-top-color: rgba(183,110,121,0.12);
}
.tt-product-card--hong-kim:hover .tt-product-card__title {
    color: var(--rose-light);
    border-top-color: rgba(183,110,121,0.3);
}
.tt-product-card--hong-kim .tt-product-card__price {
    color: var(--rose);
}
.tt-product-card--hong-kim .tt-badge--new {
    background: rgba(183,110,121,0.15);
    color: var(--rose-light);
}
.tt-product-card--hong-kim .tt-badge--sale {
    background: rgba(183,110,121,0.2);
    color: var(--rose-light);
}

/* ══════════════════════════════════════════════════
   STYLE 8: GƯƠNG ĐEN (Dark Mirror)
   Concept: Bề mặt gương đen bóng. Phản chiếu ánh sáng
   rất mạnh. Tương phản cao, siêu sắc nét.
   ══════════════════════════════════════════════════ */
.tt-product-card--guong-den {
    background: linear-gradient(180deg, #0E0E0E, #080808);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5),
                inset 0 1px 0 rgba(255,255,255,0.06);
}
.tt-product-card--guong-den:hover {
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 12px 40px rgba(0,0,0,0.7),
                inset 0 1px 0 rgba(255,255,255,0.1),
                0 0 24px rgba(255,255,255,0.04);
    transform: translateY(-8px);
}
/* Stronger, wider shine sweep — mirror reflection */
.tt-product-card--guong-den .tt-product-card__image-wrap::after {
    background: linear-gradient(105deg,
        transparent 35%, rgba(255,255,255,0.02) 40%,
        rgba(255,255,255,0.12) 50%,
        rgba(255,255,255,0.02) 60%, transparent 65%);
    transition: transform 0.5s ease;
}
.tt-product-card--guong-den .tt-product-card__image {
    filter: contrast(1.1) brightness(0.95);
}
.tt-product-card--guong-den:hover .tt-product-card__image {
    filter: contrast(1.15) brightness(1);
    transform: scale(1.05);
}
.tt-product-card--guong-den .tt-product-card__title {
    border-top-color: rgba(255,255,255,0.06);
    font-weight: var(--weight-light);
}
.tt-product-card--guong-den:hover .tt-product-card__title {
    color: #fff;
    border-top-color: rgba(255,255,255,0.12);
}
.tt-product-card--guong-den .tt-product-card__price {
    color: rgba(255,255,255,0.7);
}
.tt-product-card--guong-den:hover .tt-product-card__price {
    color: #fff;
}

/* ══════════════════════════════════════════════════
   STYLE 9: VIỀN SÁNG (Luminous Border)
   Concept: Viền card phát sáng vàng. Border là điểm nhấn
   chính — tỏa sáng, pulsating, thu hút ánh nhìn.
   ══════════════════════════════════════════════════ */
.tt-product-card--vien-sang {
    background: var(--bg-elevated);
    border: 2px solid rgba(201,169,110,0.25);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 8px rgba(201,169,110,0.15),
                inset 0 0 8px rgba(201,169,110,0.05);
    animation: vien-sang-pulse 3s ease-in-out infinite;
}
.tt-product-card--vien-sang:hover {
    border-color: rgba(201,169,110,0.6);
    box-shadow: 0 0 32px rgba(201,169,110,0.25),
                0 8px 32px rgba(0,0,0,0.4),
                inset 0 0 16px rgba(201,169,110,0.08);
    transform: translateY(-5px);
    animation: none;
}
.tt-product-card--vien-sang .tt-product-card__title {
    border-top-color: rgba(201,169,110,0.15);
}
.tt-product-card--vien-sang:hover .tt-product-card__title {
    color: var(--gold);
    border-top-color: rgba(201,169,110,0.35);
}

/* ══════════════════════════════════════════════════
   STYLE 10: KIM CƯƠNG (Diamond)
   Concept: Ánh lấp lánh kim cương. Nhiều tia sáng đan chéo.
   Hiệu ứng sparkle. Rực rỡ nhất trong 15 style.
   ══════════════════════════════════════════════════ */
.tt-product-card--kim-cuong {
    background: linear-gradient(180deg, #111113, #0A0A0C);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.tt-product-card--kim-cuong:hover {
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5),
                0 0 16px rgba(255,255,255,0.04);
    transform: translateY(-5px);
}
/* Multi-angle shine — diamond facets */
.tt-product-card--kim-cuong .tt-product-card__image-wrap::after {
    background:
        linear-gradient(60deg, transparent 42%, rgba(255,255,255,0.06) 48%,
            rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.06) 52%, transparent 58%),
        linear-gradient(120deg, transparent 42%, rgba(255,255,255,0.04) 48%,
            rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 52%, transparent 58%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.tt-product-card--kim-cuong:hover .tt-product-card__image-wrap::after {
    transform: translateX(100%);
}
/* Sparkle dot via card ::before */
.tt-product-card--kim-cuong::before {
    content: '';
    position: absolute;
    top: 12px; right: 12px;
    width: 4px; height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 6px 2px rgba(255,255,255,0.4);
    z-index: 4;
    pointer-events: none;
    opacity: 0;
}
.tt-product-card--kim-cuong:hover::before {
    animation: kim-cuong-sparkle 0.8s ease-in-out 0.2s;
}
.tt-product-card--kim-cuong .tt-product-card__image {
    filter: contrast(1.05) brightness(0.95);
}
.tt-product-card--kim-cuong:hover .tt-product-card__image {
    filter: contrast(1.1) brightness(1.02);
    transform: scale(1.05);
}
.tt-product-card--kim-cuong .tt-product-card__title {
    border-top-color: rgba(255,255,255,0.05);
}
.tt-product-card--kim-cuong:hover .tt-product-card__title {
    color: #fff;
    text-shadow: 0 0 8px rgba(255,255,255,0.1);
    border-top-color: rgba(255,255,255,0.1);
}
.tt-product-card--kim-cuong .tt-product-card__price {
    color: rgba(232,232,232,0.8);
}
.tt-product-card--kim-cuong:hover .tt-product-card__price {
    color: #fff;
}

/* ══════════════════════════════════════════════════
   STYLE 11: HOÀNG GIA (Royal)
   Concept: Hoàng gia trang trọng. Khung đôi (border +
   inner border). Góc trang trí lớn. Phong cách cung điện.
   ══════════════════════════════════════════════════ */
.tt-product-card--hoang-gia {
    background: linear-gradient(180deg, #12100D, #0E0C09);
    border: 2px solid rgba(201,169,110,0.25);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 20px rgba(0,0,0,0.35),
                inset 0 0 0 4px rgba(10,10,8,1),
                inset 0 0 0 5px rgba(201,169,110,0.12);
}
.tt-product-card--hoang-gia:hover {
    border-color: rgba(201,169,110,0.5);
    box-shadow: 0 8px 36px rgba(0,0,0,0.5),
                inset 0 0 0 4px rgba(10,10,8,1),
                inset 0 0 0 5px rgba(201,169,110,0.25),
                0 0 20px rgba(201,169,110,0.1);
    transform: translateY(-4px);
}
/* Large ornamental L-corners */
.tt-product-card--hoang-gia::before {
    content: '';
    position: absolute;
    top: 6px; left: 6px;
    width: 28px; height: 28px;
    border-top: 2px solid rgba(201,169,110,0.4);
    border-left: 2px solid rgba(201,169,110,0.4);
    z-index: 3;
    pointer-events: none;
    transition: border-color 0.4s;
}
.tt-product-card--hoang-gia::after {
    content: '';
    position: absolute;
    bottom: 6px; right: 6px;
    width: 28px; height: 28px;
    border-bottom: 2px solid rgba(201,169,110,0.4);
    border-right: 2px solid rgba(201,169,110,0.4);
    z-index: 3;
    pointer-events: none;
    transition: border-color 0.4s;
}
.tt-product-card--hoang-gia:hover::before,
.tt-product-card--hoang-gia:hover::after {
    border-color: rgba(201,169,110,0.75);
}
.tt-product-card--hoang-gia .tt-product-card__image-wrap::before {
    background: radial-gradient(ellipse at center, transparent 50%, rgba(12,10,5,0.45) 100%);
}
.tt-product-card--hoang-gia .tt-product-card__title {
    border-top-color: rgba(201,169,110,0.15);
    letter-spacing: 0.02em;
}
.tt-product-card--hoang-gia:hover .tt-product-card__title {
    color: var(--gold-light);
    border-top-color: rgba(201,169,110,0.35);
}
.tt-product-card--hoang-gia .tt-product-card__price {
    background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.tt-product-card--hoang-gia .tt-badge--new {
    background: rgba(201,169,110,0.12);
    color: var(--gold);
    border: 1px solid rgba(201,169,110,0.35);
}

/* ══════════════════════════════════════════════════
   STYLE 12: LỤA ĐÊM (Night Silk)
   Concept: Vải lụa tối đan xen ánh vàng. Pattern chéo
   tinh tế. Mềm mượt, thanh lịch, tinh xảo.
   ══════════════════════════════════════════════════ */
.tt-product-card--lua-dem {
    background:
        repeating-linear-gradient(135deg,
            transparent 0px, transparent 10px,
            rgba(201,169,110,0.015) 10px, rgba(201,169,110,0.015) 11px),
        linear-gradient(180deg, #111111, #0C0C0C);
    border: 1px solid rgba(201,169,110,0.08);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.tt-product-card--lua-dem:hover {
    border-color: rgba(201,169,110,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.45),
                0 0 16px rgba(201,169,110,0.06);
    transform: translateY(-5px);
}
/* Silk sheen sweep — wider, softer */
.tt-product-card--lua-dem .tt-product-card__image-wrap::after {
    background: linear-gradient(135deg,
        transparent 30%, rgba(201,169,110,0.02) 38%,
        rgba(255,255,255,0.06) 50%,
        rgba(201,169,110,0.02) 62%, transparent 70%);
    transition: transform 0.9s ease;
}
/* Gold thread accent on top */
.tt-product-card--lua-dem::before {
    content: '';
    position: absolute;
    top: 0; left: 15%; right: 15%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent, rgba(201,169,110,0.2) 30%, rgba(201,169,110,0.35) 50%, rgba(201,169,110,0.2) 70%, transparent);
    z-index: 3;
    pointer-events: none;
}
.tt-product-card--lua-dem .tt-product-card__title {
    border-top-color: rgba(201,169,110,0.08);
}
.tt-product-card--lua-dem:hover .tt-product-card__title {
    color: var(--gold);
    border-top-color: rgba(201,169,110,0.2);
}

/* ══════════════════════════════════════════════════
   STYLE 13: BÓNG TỐI (Deep Shadow)
   Concept: Card bay cao trên bề mặt. Shadow nhiều lớp
   tạo độ sâu 3D cực kỳ ấn tượng. Tối giản nhưng sâu.
   ══════════════════════════════════════════════════ */
.tt-product-card--bong-toi {
    background: var(--bg-elevated);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius-lg);
    box-shadow:
        0 2px 4px rgba(0,0,0,0.3),
        0 4px 8px rgba(0,0,0,0.25),
        0 8px 16px rgba(0,0,0,0.2),
        0 16px 32px rgba(0,0,0,0.15);
}
.tt-product-card--bong-toi:hover {
    border-color: rgba(201,169,110,0.1);
    box-shadow:
        0 4px 8px rgba(0,0,0,0.3),
        0 8px 16px rgba(0,0,0,0.25),
        0 16px 32px rgba(0,0,0,0.2),
        0 32px 64px rgba(0,0,0,0.15),
        0 0 12px rgba(201,169,110,0.05);
    transform: translateY(-10px);
}
.tt-product-card--bong-toi .tt-product-card__title {
    border-top-color: rgba(255,255,255,0.04);
}
.tt-product-card--bong-toi:hover .tt-product-card__title {
    color: var(--gold);
    border-top-color: rgba(201,169,110,0.12);
}

/* ══════════════════════════════════════════════════
   STYLE 14: VÂN THẠCH (Marble)
   Concept: Bề mặt đá cẩm thạch đen sang trọng.
   Vân đá tạo từ CSS gradient. Vàng là vân vàng.
   ══════════════════════════════════════════════════ */
.tt-product-card--van-thach {
    background:
        linear-gradient(125deg, rgba(201,169,110,0.03) 0%, transparent 30%),
        linear-gradient(225deg, rgba(201,169,110,0.02) 10%, transparent 40%),
        linear-gradient(45deg, rgba(255,255,255,0.01) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(201,169,110,0.02) 0%, transparent 50%),
        linear-gradient(180deg, #111111, #0D0D0D);
    border: 1px solid rgba(201,169,110,0.08);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.tt-product-card--van-thach:hover {
    border-color: rgba(201,169,110,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5),
                0 0 16px rgba(201,169,110,0.06);
    transform: translateY(-5px);
}
/* Gold vein accent at bottom */
.tt-product-card--van-thach::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent, rgba(201,169,110,0.15) 20%, rgba(201,169,110,0.3) 50%, rgba(201,169,110,0.15) 80%, transparent);
    z-index: 3;
    pointer-events: none;
    transition: opacity 0.4s;
}
.tt-product-card--van-thach:hover::before {
    opacity: 0.6;
}
.tt-product-card--van-thach .tt-product-card__title {
    border-top-color: rgba(201,169,110,0.08);
}
.tt-product-card--van-thach:hover .tt-product-card__title {
    color: var(--gold);
    border-top-color: rgba(201,169,110,0.2);
}
.tt-product-card--van-thach .tt-product-card__price {
    color: var(--gold-dim);
}
.tt-product-card--van-thach:hover .tt-product-card__price {
    color: var(--gold);
}

/* ══════════════════════════════════════════════════
   STYLE 15: CỔ ĐIỂN (Vintage Classic)
   Concept: Phong cách cổ điển, sang trọng vượt thời gian.
   Tone ấm nâu-vàng. Sepia nhẹ. Viền trang trí cổ điển.
   ══════════════════════════════════════════════════ */
.tt-product-card--co-dien {
    background: linear-gradient(180deg, #161410, #110F0C);
    border: 1px solid rgba(160,130,80,0.2);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 16px rgba(0,0,0,0.35),
                inset 0 0 20px rgba(160,130,80,0.03);
}
.tt-product-card--co-dien:hover {
    border-color: rgba(160,130,80,0.4);
    box-shadow: 0 8px 32px rgba(0,0,0,0.45),
                inset 0 0 24px rgba(160,130,80,0.05),
                0 0 16px rgba(160,130,80,0.08);
    transform: translateY(-5px);
}
/* Sepia vintage tone on image */
.tt-product-card--co-dien .tt-product-card__image {
    filter: sepia(0.15) brightness(0.92) contrast(1.05);
}
.tt-product-card--co-dien:hover .tt-product-card__image {
    filter: sepia(0.05) brightness(0.98) contrast(1.02);
    transform: scale(1.04);
}
.tt-product-card--co-dien .tt-product-card__image-wrap::before {
    background: radial-gradient(ellipse at center, transparent 50%, rgba(16,12,6,0.45) 100%);
}
/* Warm vintage sweep */
.tt-product-card--co-dien .tt-product-card__image-wrap::after {
    background: linear-gradient(105deg,
        transparent 40%, rgba(160,130,80,0.03) 44%,
        rgba(160,130,80,0.08) 50%, rgba(160,130,80,0.03) 56%, transparent 60%);
}
/* Top + bottom accent lines */
.tt-product-card--co-dien::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(160,130,80,0.3), transparent);
    z-index: 3;
    pointer-events: none;
}
.tt-product-card--co-dien::after {
    content: '';
    position: absolute;
    bottom: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(160,130,80,0.3), transparent);
    z-index: 3;
    pointer-events: none;
}
.tt-product-card--co-dien .tt-product-card__title {
    color: rgba(255,240,220,0.85);
    border-top-color: rgba(160,130,80,0.12);
}
.tt-product-card--co-dien:hover .tt-product-card__title {
    color: rgba(212,184,122,1);
    border-top-color: rgba(160,130,80,0.3);
}
.tt-product-card--co-dien .tt-product-card__price {
    color: rgba(160,130,80,0.8);
}
.tt-product-card--co-dien:hover .tt-product-card__price {
    color: var(--gold);
}
.tt-product-card--co-dien .tt-badge--new {
    background: rgba(160,130,80,0.15);
    color: rgba(212,184,122,0.9);
}

/* ═══ PRODUCT SECTION RHYTHM ═══ */
.tt-product-section {
    border-top: none;
}

/* Diamond divider between consecutive product sections */
.tt-product-section + .tt-product-section::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    margin: -32px auto 24px;
    background: var(--gold);
    opacity: 0.3;
    transform: rotate(45deg);
    position: relative;
    z-index: 1;
}
.tt-product-section + .tt-product-section::after {
    content: '';
    position: absolute;
    top: 36px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,169,110,0.2) 30%, transparent 50%, rgba(201,169,110,0.2) 70%, transparent);
    pointer-events: none;
}

/* Even sections — subtle spotlight glow */
.tt-product-section:nth-child(even) {
    background:
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201,169,110,0.015) 0%, transparent 70%),
        linear-gradient(180deg, var(--bg-void) 0%, rgba(20,20,20,0.6) 50%, var(--bg-void) 100%);
}
/* Shine sweep on product card hover */
.tt-product-card__image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255,255,255,0.03) 45%,
        rgba(255,255,255,0.07) 50%,
        rgba(255,255,255,0.03) 55%,
        transparent 60%
    );
    transform: translateX(-100%);
    transition: transform 0.7s ease;
    z-index: 1;
}
.tt-product-card:hover .tt-product-card__image-wrap::after {
    transform: translateX(100%);
}

/* ═══ SCROLL REVEAL ═══ */
@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Initial hidden state — JS adds .tt-reveal-ready to body first */
.tt-reveal-ready .tt-product-card,
.tt-reveal-ready .tt-section__header {
    opacity: 0;
    transform: translateY(24px);
}
.tt-product-card.is-revealed,
.tt-section__header.is-revealed {
    animation: reveal-up 0.6s var(--ease-out) forwards;
    animation-delay: var(--reveal-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
    .tt-reveal-ready .tt-product-card,
    .tt-reveal-ready .tt-section__header {
        opacity: 1;
        transform: none;
    }
    .tt-product-card.is-revealed,
    .tt-section__header.is-revealed {
        animation: none;
    }
    /* Disable card hover lift + shine sweep + image zoom + animations */
    .tt-product-card:hover { transform: none; }
    .tt-product-card__image-wrap::after { display: none; }
    .tt-product-card:hover .tt-product-card__image { transform: none; }
    .tt-product-card--suong-dem .tt-product-card__image { filter: none; }
    .tt-product-card--anh-kim .tt-product-card__image { filter: none; }
    .tt-product-card--anh-kim { animation: none; }
    .tt-product-card--pha-le .tt-product-card__image { filter: none; }
    .tt-product-card--pha-le-vang .tt-product-card__image { filter: none; }
    .tt-product-card--guong-den .tt-product-card__image { filter: none; }
    .tt-product-card--kim-cuong .tt-product-card__image { filter: none; }
    .tt-product-card--co-dien .tt-product-card__image { filter: none; }
    .tt-product-card--vien-sang { animation: none; }
}

/* ═══ QUICK ADD — Desktop Popover + Mobile Sheet ═══
   Variable product cards: select variation + add to cart inline.
   Desktop >768: glass overlay popover on top of card.
   Mobile ≤768: bottom sheet slide-up (new .tt-qa-* classes).
   ════════════════════════════════════════════════════ */

/* ─── Card state when popover open ─── */
.tt-product-card.tt-qa-open {
    transform: none !important;
    z-index: 50;
}
.tt-product-card.tt-qa-open .tt-product-card__image-wrap::after {
    display: none;
}

/* ─── Desktop Popover (overlay on card) ─── */
.tt-quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    background: rgba(14,14,14,0.95);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: inherit;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease-out), visibility 0.3s;
    overflow: hidden;
    max-height: 100%;
}
.tt-quick-add.is-open {
    opacity: 1;
    visibility: visible;
}

/* Header: thumb + price + close */
.tt-quick-add__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px 8px;
    border-bottom: 1px solid rgba(201,169,110,0.08);
}
.tt-quick-add__thumb {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}
.tt-quick-add__info {
    flex: 1;
    min-width: 0;
}
.tt-quick-add__price {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--gold);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tt-quick-add__price del {
    color: var(--text-dim);
    font-size: 0.85em;
}
.tt-quick-add__price ins {
    text-decoration: none;
}
.tt-quick-add__close {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    line-height: 1;
}
.tt-quick-add__close:hover {
    border-color: rgba(201,169,110,0.3);
    color: var(--gold);
}

/* Body: attribute chips */
.tt-quick-add__body {
    flex: 0 1 auto;
    padding: 8px 12px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(201,169,110,0.15) transparent;
}
.tt-quick-add__attr {
    margin-bottom: 8px;
}
.tt-quick-add__attr:last-child {
    margin-bottom: 0;
}
.tt-quick-add__attr-label {
    font-size: 0.65rem;
    font-weight: var(--weight-medium);
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}
.tt-quick-add__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.tt-quick-add__chip {
    padding: 4px 10px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.tt-quick-add__chip:hover {
    border-color: rgba(201,169,110,0.3);
    color: var(--gold);
}
.tt-quick-add__chip.is-active {
    background: rgba(201,169,110,0.1);
    border-color: rgba(201,169,110,0.5);
    color: var(--gold);
}
.tt-quick-add__chip.is-unavailable {
    opacity: 0.3;
    text-decoration: line-through;
    pointer-events: none;
}
.tt-quick-add__stock {
    font-size: 0.63rem;
    margin-top: 2px;
    color: var(--text-dim);
}
.tt-quick-add__stock--in {
    color: rgba(46,204,113,0.7);
}
.tt-quick-add__stock--low {
    color: rgba(243,156,18,0.7);
}
.tt-quick-add__stock--out {
    color: rgba(224,85,85,0.7);
}

/* Footer: qty + submit */
.tt-quick-add__footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px 10px;
    border-top: 1px solid rgba(201,169,110,0.08);
}
.tt-quick-add__qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}
.tt-quick-add__qty-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.2s;
}
.tt-quick-add__qty-btn:hover {
    color: var(--gold);
}
.tt-quick-add__qty-val {
    width: 24px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-primary);
    font-family: var(--font-mono);
}
.tt-quick-add__submit {
    flex: 1;
    padding: 7px 12px;
    background: linear-gradient(135deg, rgba(201,169,110,0.15) 0%, rgba(201,169,110,0.08) 100%);
    border: 1px solid rgba(201,169,110,0.3);
    border-radius: 4px;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: var(--weight-semibold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
}
.tt-quick-add__submit:hover {
    background: linear-gradient(135deg, rgba(201,169,110,0.25) 0%, rgba(201,169,110,0.12) 100%);
    border-color: rgba(201,169,110,0.5);
    box-shadow: 0 0 12px rgba(201,169,110,0.1);
}
.tt-quick-add__submit.is-disabled {
    opacity: 0.4;
    pointer-events: none;
}
.tt-quick-add__submit.is-loading {
    pointer-events: none;
    opacity: 0.6;
}
.tt-quick-add__submit.is-success {
    background: rgba(46,204,113,0.12);
    border-color: rgba(46,204,113,0.3);
    color: #2ECC71;
}

/* ─── Pha Lê Vàng: Quick Add overrides ─── */
.tt-product-card--pha-le-vang .tt-quick-add {
    background: rgba(18,14,10,0.94);
    border-color: rgba(201,169,110,0.2);
    box-shadow: inset 0 0 30px rgba(201,169,110,0.03);
}
.tt-product-card--pha-le-vang .tt-quick-add__chip.is-active {
    background: rgba(201,169,110,0.15);
    border-color: rgba(201,169,110,0.6);
}
.tt-product-card--pha-le-vang .tt-quick-add__submit {
    background: linear-gradient(135deg, rgba(201,169,110,0.2) 0%, rgba(201,169,110,0.1) 100%);
    border-color: rgba(201,169,110,0.4);
    font-family: var(--font-mono);
    letter-spacing: 0.08em;
}
.tt-product-card--pha-le-vang .tt-quick-add__submit:hover {
    background: linear-gradient(135deg, rgba(201,169,110,0.3) 0%, rgba(201,169,110,0.15) 100%);
    box-shadow: 0 0 20px rgba(201,169,110,0.12);
}

/* ─── Mobile: Quick Add Bottom Sheet ─── */
.tt-qa-sheet-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.tt-qa-sheet-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.tt-qa-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    max-height: 70vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-elevated, #1A1A1A);
    border-top: 1px solid rgba(201,169,110,0.15);
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    transition: transform 0.35s var(--ease-out);
    overflow: hidden;
}
.tt-qa-sheet.is-open {
    transform: translateY(0);
}

/* Sheet drag handle */
.tt-qa-sheet__handle {
    width: 36px;
    height: 4px;
    margin: 8px auto 0;
    border-radius: 2px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* Sheet header */
.tt-qa-sheet__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px 10px;
    border-bottom: 1px solid rgba(201,169,110,0.08);
}
.tt-qa-sheet__thumb {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}
.tt-qa-sheet__info {
    flex: 1;
    min-width: 0;
}
.tt-qa-sheet__price {
    font-family: var(--font-mono);
    font-size: 0.88rem;
    color: var(--gold);
    margin-bottom: 2px;
}
.tt-qa-sheet__price del {
    color: var(--text-dim);
    font-size: 0.85em;
}
.tt-qa-sheet__price ins {
    text-decoration: none;
}
.tt-qa-sheet__stock {
    font-size: 0.72rem;
    color: var(--text-dim);
}
.tt-qa-sheet__stock--in {
    color: rgba(46,204,113,0.7);
}
.tt-qa-sheet__stock--low {
    color: rgba(243,156,18,0.7);
}
.tt-qa-sheet__stock--out {
    color: rgba(224,85,85,0.7);
}
.tt-qa-sheet__close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    line-height: 1;
}
.tt-qa-sheet__close:hover {
    border-color: rgba(201,169,110,0.3);
    color: var(--gold);
}

/* Sheet body: chips */
.tt-qa-sheet__body {
    flex: 0 1 auto;
    padding: 12px 16px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(201,169,110,0.15) transparent;
}
.tt-qa-sheet__attr {
    margin-bottom: 12px;
}
.tt-qa-sheet__attr:last-child {
    margin-bottom: 0;
}
.tt-qa-sheet__attr-label {
    font-size: 0.72rem;
    font-weight: var(--weight-medium);
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}
.tt-qa-sheet__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tt-qa-sheet__chip {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.tt-qa-sheet__chip:hover {
    border-color: rgba(201,169,110,0.3);
    color: var(--gold);
}
.tt-qa-sheet__chip.is-active {
    background: rgba(201,169,110,0.1);
    border-color: rgba(201,169,110,0.5);
    color: var(--gold);
}
.tt-qa-sheet__chip.is-unavailable {
    opacity: 0.3;
    text-decoration: line-through;
    pointer-events: none;
}

/* Sheet footer: qty + submit */
.tt-qa-sheet__footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(201,169,110,0.08);
}
.tt-qa-sheet__qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}
.tt-qa-sheet__qty-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.tt-qa-sheet__qty-btn:hover {
    color: var(--gold);
}
.tt-qa-sheet__qty-val {
    width: 32px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-primary);
    font-family: var(--font-mono);
}
.tt-qa-sheet__submit {
    flex: 1;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(201,169,110,0.15) 0%, rgba(201,169,110,0.08) 100%);
    border: 1px solid rgba(201,169,110,0.3);
    border-radius: 6px;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: var(--weight-semibold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
    -webkit-tap-highlight-color: transparent;
}
.tt-qa-sheet__submit:hover {
    background: linear-gradient(135deg, rgba(201,169,110,0.25) 0%, rgba(201,169,110,0.12) 100%);
    border-color: rgba(201,169,110,0.5);
}
.tt-qa-sheet__submit.is-disabled {
    opacity: 0.4;
    pointer-events: none;
}
.tt-qa-sheet__submit.is-loading {
    pointer-events: none;
    opacity: 0.6;
}
.tt-qa-sheet__submit.is-success {
    background: rgba(46,204,113,0.12);
    border-color: rgba(46,204,113,0.3);
    color: #2ECC71;
}

/* ─── Quick Add: Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
    .tt-quick-add,
    .tt-qa-sheet-overlay,
    .tt-qa-sheet {
        transition: none;
    }
}

/* ─── Quick Add: Ultra-small mobile ─── */
@media (max-width: 480px) {
    .tt-qa-sheet {
        max-height: 80vh;
    }
    .tt-qa-sheet__chip {
        padding: 7px 14px;
        font-size: 0.75rem;
    }
    .tt-qa-sheet__submit {
        font-size: 0.75rem;
        padding: 9px 12px;
    }
}

/* ═══ NOTICE ═══ */
.tt-notice {
    padding: var(--space-6);
    background: var(--bg-elevated);
    border: 1px solid var(--border-visible);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    text-align: center;
}

/* ═══ INDEX FALLBACK STYLES ═══ */
.tt-entry { margin-bottom: var(--space-6); }
.tt-entry__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}
.tt-entry__title a { transition: color var(--duration-fast); }
.tt-entry__title a:hover { color: var(--gold); }
.tt-entry__excerpt {
    font-size: var(--text-base);
    color: var(--text-body);
}

/* ═══ PAGINATION ═══ */
.tt-pagination { margin-top: var(--space-6); }
.tt-pagination .page-numbers {
    display: flex;
    gap: var(--space-2);
    justify-content: center;
    flex-wrap: wrap;
}
.tt-pagination .page-numbers li { list-style: none; }
.tt-pagination .page-numbers a,
.tt-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 var(--space-2);
    font-size: var(--text-sm);
    border: 1px solid var(--border-visible);
    border-radius: var(--radius-sm);
    color: var(--text-body);
    transition: all var(--duration-fast);
}
.tt-pagination .page-numbers a:hover {
    border-color: var(--gold-dim);
    color: var(--gold);
}
.tt-pagination .page-numbers .current {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-void);
}

/* ═══ WP DEFAULT ALIGNMENT ═══ */
.nav-links { display: flex; gap: var(--space-4); justify-content: space-between; margin-top: var(--space-6); }
.nav-links a { color: var(--gold); transition: opacity var(--duration-fast); }
.nav-links a:hover { opacity: 0.8; }

/* ═══════════════════════════════════════════
   LAYOUT SYSTEM (Content + Sidebar)
   ═══════════════════════════════════════════ */
.tt-layout {
    display: grid;
    gap: var(--space-8);
    align-items: start;
}
/* Prevent grid children from stretching beyond column with min-width: auto */
.tt-layout > * {
    min-width: 0;
}
.tt-layout--sidebar {
    grid-template-columns: minmax(0, 1fr) 300px;
}
.tt-layout--full {
    grid-template-columns: minmax(0, 1fr);
}
@media (max-width: 1024px) {
    .tt-layout--sidebar {
        grid-template-columns: 1fr;
    }
}

/* ═══ PAGE HEADER ═══ */
.tt-page-header {
    position: relative;
    padding: var(--space-10) 0 var(--space-8);
    margin-bottom: var(--space-8);
    text-align: center;
}
.tt-page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(201, 169, 110, 0.4) 20%,
        rgba(201, 169, 110, 0.6) 50%,
        rgba(201, 169, 110, 0.4) 80%,
        transparent
    );
}
.tt-page-header__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: var(--weight-light);
    color: var(--text-primary);
    letter-spacing: var(--tracking-tight);
    line-height: 1.2;
}
.tt-page-header__desc {
    margin-top: var(--space-2);
    font-size: var(--text-base);
    color: var(--text-muted);
    max-width: 65ch;
}

/* ═══════════════════════════════════════════
   ARCHIVE — Hero + Grid Layout
   ═══════════════════════════════════════════ */

/* Page Container */
.tt-archive-page {
    padding: 48px 0 80px;
}

/* Header */
.tt-archive-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    padding-bottom: 40px;
}
/* Gold spotlight glow behind title */
.tt-archive-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: min(500px, 70vw);
    height: 200px;
    background: radial-gradient(ellipse at center,
        rgba(201,169,110,0.06) 0%,
        rgba(201,169,110,0.02) 40%,
        transparent 70%);
    pointer-events: none;
}
/* Gold gradient separator with diamond ornament */
.tt-archive-header::after {
    content: '\25C6';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: rgba(201,169,110,0.35);
    background: var(--bg-void, #0a0a0a);
    padding: 0 16px;
    z-index: 1;
}
/* Gold line behind the diamond */
.tt-archive-header__count::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(400px, 60vw);
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201,169,110,0.2) 20%,
        rgba(201,169,110,0.35) 50%,
        rgba(201,169,110,0.2) 80%,
        transparent 100%);
}
.tt-archive-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,169,110,0.1);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 20px;
    padding: 6px 16px;
    margin-bottom: 20px;
}
.tt-archive-header__badge svg {
    opacity: 0.7;
}
.tt-archive-header__avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(201,169,110,0.3);
}
.tt-archive-header__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 16px;
    color: var(--text-primary);
    position: relative;
}
.tt-archive-header__desc {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    max-width: 640px;
    margin: 0 auto 16px;
    line-height: 1.65;
}
.tt-archive-header__count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(201,169,110,0.45);
    padding: 5px 14px;
    background: rgba(201,169,110,0.04);
    border: 1px solid rgba(201,169,110,0.08);
    border-radius: 20px;
}
.tt-archive-header__count svg {
    opacity: 0.5;
}

/* ── Hero Section: 1 Featured + 2 Side ── */
.tt-archive-hero {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}
.tt-archive-hero__side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── Grid Section: 3 columns ── */
.tt-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ═══ ARCHIVE CARD BASE ═══ */
.tt-acard {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background:
        linear-gradient(165deg,
            rgba(255,255,255,0.028) 0%,
            var(--bg-elevated) 40%,
            rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(201,169,110,0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
/* Gold top edge — hidden by default, reveals on hover */
.tt-acard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,169,110,0.4), transparent);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.tt-acard:hover::before {
    opacity: 1;
}
.tt-acard:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.5),
        0 0 40px rgba(201,169,110,0.06),
        0 -2px 20px rgba(201,169,110,0.04);
    border-color: rgba(201,169,110,0.18);
}
.tt-acard__link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* ═══ FEATURED CARD ═══ */
.tt-acard--featured {
    min-height: 560px;
}
.tt-acard--featured .tt-acard__link {
    position: relative;
    overflow: hidden;
}
.tt-acard--featured .tt-acard__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.tt-acard--featured:hover .tt-acard__img {
    transform: scale(1.06);
    filter: brightness(1.05);
}
.tt-acard--featured .tt-acard__img--placeholder {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 60%, rgba(201,169,110,0.04) 0%, transparent 50%),
        linear-gradient(135deg, rgba(30,27,22,0.95), rgba(15,13,11,0.98));
}
.tt-acard--featured .tt-acard__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.15) 70%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}
.tt-acard--featured .tt-acard__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tt-acard--featured .tt-acard__title {
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #fff;
    margin: 0;
}
.tt-acard--featured .tt-acard__excerpt {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.65);
    margin: 0;
    max-width: 480px;
}
.tt-acard--featured .tt-acard__cta {
    margin-top: 4px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(201,169,110,0.2), rgba(201,169,110,0.1));
    border: 1px solid rgba(201,169,110,0.3);
    border-radius: 8px;
    align-self: flex-start;
}
.tt-acard--featured:hover .tt-acard__cta {
    background: linear-gradient(135deg, rgba(201,169,110,0.3), rgba(201,169,110,0.15));
    border-color: rgba(201,169,110,0.5);
}

/* ═══ SIDE CARD ═══ */
.tt-acard--side {
    flex: 1;
    min-height: 0;
}
.tt-acard--side .tt-acard__link {
    position: relative;
    overflow: hidden;
}
.tt-acard--side .tt-acard__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.tt-acard--side:hover .tt-acard__img {
    transform: scale(1.06);
    filter: brightness(1.05);
}
.tt-acard--side .tt-acard__img--placeholder {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 60% 40%, rgba(201,169,110,0.04) 0%, transparent 50%),
        linear-gradient(135deg, rgba(30,27,22,0.95), rgba(15,13,11,0.98));
}
.tt-acard--side .tt-acard__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}
.tt-acard--side .tt-acard__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.tt-acard--side .tt-acard__title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    margin: 0;
}

/* ═══ GRID CARD ═══ */
.tt-acard--grid .tt-acard__link {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.tt-acard__thumb {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(15,15,15,0.8);
}
.tt-acard__thumb .tt-acard__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.tt-acard--grid:hover .tt-acard__img {
    transform: scale(1.06);
}
/* Thumbnail vignette — cinematic depth + gold warmth */
.tt-acard__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(0,0,0,0.4) 0%,
            transparent 50%),
        linear-gradient(135deg,
            rgba(201,169,110,0.05) 0%,
            transparent 40%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.4s ease;
}
.tt-acard__thumb .tt-acard__img {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.4s ease;
}
.tt-acard--grid:hover .tt-acard__thumb .tt-acard__img {
    filter: brightness(1.08);
}
.tt-acard__thumb .tt-acard__img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(201,169,110,0.04) 0%, transparent 60%),
        linear-gradient(135deg, rgba(30,27,22,0.95) 0%, rgba(18,16,14,0.98) 50%, rgba(25,22,18,0.95) 100%);
}
.tt-acard__thumb .tt-acard__img--placeholder svg {
    opacity: 0.15;
    color: rgba(201,169,110,0.5);
}
.tt-acard--grid .tt-acard__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    position: relative;
}
/* Gold separator between thumb and body */
.tt-acard--grid .tt-acard__body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, rgba(201,169,110,0.35), transparent);
}
.tt-acard--grid .tt-acard__title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin: 0;
    transition: color 0.3s ease;
    letter-spacing: 0.01em;
}
.tt-acard--grid:hover .tt-acard__title {
    color: rgba(255,248,240,0.95);
}

/* ═══ SHARED CARD ELEMENTS ═══ */

/* Badge */
.tt-acard__badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,169,110,0.12);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 4px;
    padding: 4px 10px;
}
.tt-acard__badge--featured {
    background: rgba(201,169,110,0.18);
    border-color: rgba(201,169,110,0.35);
    font-size: 11px;
    padding: 5px 14px;
    letter-spacing: 0.12em;
}

/* Meta (date, reading time) */
.tt-acard__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}
.tt-acard__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(201,169,110,0.35);
    flex-shrink: 0;
}
.tt-acard__cat {
    color: var(--gold);
    font-weight: 600;
    background: rgba(201,169,110,0.06);
    padding: 2px 10px;
    border-radius: 12px;
    border: 1px solid rgba(201,169,110,0.1);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* CTA */
.tt-acard__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    transition: all 0.3s;
    align-self: flex-start;
    margin-top: auto;
}
.tt-acard__cta svg {
    transition: transform 0.3s;
}
.tt-acard:hover .tt-acard__cta {
    color: #e8d5b5;
}
.tt-acard:hover .tt-acard__cta svg {
    transform: translateX(4px);
}
/* Grid card CTA — add subtle gold pill background on hover */
.tt-acard--grid .tt-acard__cta {
    padding: 6px 14px;
    border-radius: 6px;
    margin-left: -14px;
    transition: all 0.3s ease;
}
.tt-acard--grid:hover .tt-acard__cta {
    background: rgba(201,169,110,0.08);
}

/* ═══ PAGINATION ═══ */
.tt-archive-pagination {
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(201,169,110,0.08);
    text-align: center;
}
.tt-archive-pagination .page-numbers {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    margin: 0;
}
.tt-archive-pagination .page-numbers li {
    display: inline-flex;
}
.tt-archive-pagination .page-numbers a,
.tt-archive-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 600;
    background: rgba(18,18,18,0.5);
    border: 1px solid rgba(201,169,110,0.1);
    border-radius: 10px;
    color: rgba(255,255,255,0.6);
    transition: all 0.25s;
}
.tt-archive-pagination .page-numbers a:hover {
    background: rgba(25,25,25,0.7);
    border-color: rgba(201,169,110,0.3);
    color: var(--gold);
    transform: translateY(-3px);
}
.tt-archive-pagination .page-numbers .current {
    background: linear-gradient(135deg, rgba(201,169,110,0.25), rgba(201,169,110,0.12));
    border-color: rgba(201,169,110,0.4);
    color: var(--gold);
}
.tt-archive-pagination .page-numbers .dots {
    border: none;
    background: none;
    color: rgba(255,255,255,0.3);
    min-width: 32px;
}
.tt-archive-pagination .page-numbers svg {
    width: 16px;
    height: 16px;
}

/* ═══ ARCHIVE RESPONSIVE ═══ */

/* Tablet */
@media (max-width: 1023px) {
    .tt-archive-hero {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .tt-archive-hero__side {
        flex-direction: row;
        gap: 16px;
    }
    .tt-acard--featured {
        min-height: 400px;
    }
    .tt-acard--side {
        min-height: 250px;
    }
    .tt-archive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* Mobile */
@media (max-width: 639px) {
    .tt-archive-page {
        padding: 32px 0 56px;
    }
    .tt-archive-header {
        margin-bottom: 40px;
    }
    .tt-archive-hero {
        gap: 12px;
    }
    .tt-archive-hero__side {
        flex-direction: column;
        gap: 12px;
    }
    .tt-acard--featured {
        min-height: 320px;
    }
    .tt-acard--featured .tt-acard__body {
        padding: 24px;
    }
    .tt-acard--featured .tt-acard__title {
        font-size: clamp(1.15rem, 5vw, 1.4rem);
    }
    .tt-acard--featured .tt-acard__excerpt {
        display: none;
    }
    .tt-acard--side {
        min-height: 200px;
    }
    .tt-acard--side .tt-acard__body {
        padding: 20px;
    }
    .tt-acard--side .tt-acard__title {
        font-size: 15px;
    }
    .tt-archive-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .tt-acard--grid .tt-acard__body {
        padding: 20px;
    }
    .tt-acard--grid .tt-acard__title {
        font-size: 15px;
    }
    .tt-archive-pagination .page-numbers a,
    .tt-archive-pagination .page-numbers span {
        min-width: 40px;
        height: 40px;
        font-size: 13px;
    }
}

/* Old post navigation removed — now using custom .tt-post-nav cards */

/* ═══════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════ */
.tt-sidebar {
    /* sticky is on .tt-layout__sidebar parent */
}
.tt-sidebar__section {
    padding: var(--space-5);
    background:
        linear-gradient(165deg,
            rgba(255,255,255,0.022) 0%,
            var(--bg-elevated) 40%,
            rgba(255,255,255,0.008) 100%);
    border: 1px solid rgba(201,169,110,0.08);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-5);
    position: relative;
    overflow: hidden;
}
/* Gold top edge on widget */
.tt-sidebar__section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
}
.tt-sidebar__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--weight-medium);
    color: var(--text-primary);
    letter-spacing: var(--tracking-tight);
    padding-bottom: var(--space-3);
    margin-bottom: var(--space-4);
    border-bottom: none;
    position: relative;
}
/* Gold accent line under title */
.tt-sidebar__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, rgba(201,169,110,0.45), transparent);
}

/* Sidebar — Recent Posts */
.tt-sidebar__recent {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tt-sidebar__recent-item {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-2);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius-sm);
    margin: 0 calc(-1 * var(--space-2));
    transition: background 0.3s ease;
}
.tt-sidebar__recent-item:hover {
    background: rgba(201,169,110,0.04);
}
.tt-sidebar__recent-item:last-child { border-bottom: none; }
.tt-sidebar__number {
    flex-shrink: 0;
    font-family: var(--font-mono);
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: var(--gold-dim);
    line-height: 1;
    min-width: 2ch;
    text-shadow: 0 0 20px rgba(201,169,110,0.15);
}
.tt-sidebar__recent-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    min-width: 0;
}
.tt-sidebar__recent-link {
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--text-primary);
    line-height: var(--leading-tight);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--duration-fast);
}
.tt-sidebar__recent-link:hover { color: var(--gold); }
.tt-sidebar__recent-date {
    font-size: var(--text-xs);
    color: var(--text-dim);
}

/* Sidebar — Categories */
.tt-sidebar__cats {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tt-sidebar__cat-item {
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.tt-sidebar__cat-item:last-child { border-bottom: none; }
.tt-sidebar__cat-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-2) var(--space-2);
    margin: 0 calc(-1 * var(--space-2));
    border-radius: var(--radius-sm);
    transition: color var(--duration-fast), background 0.3s ease;
}
.tt-sidebar__cat-link:hover {
    color: var(--gold);
    background: rgba(201,169,110,0.04);
}
.tt-sidebar__cat-name {
    font-size: var(--text-sm);
    color: var(--text-body);
    letter-spacing: 0.02em;
}
.tt-sidebar__cat-link:hover .tt-sidebar__cat-name { color: var(--gold); }
.tt-sidebar__cat-count {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: rgba(201,169,110,0.5);
    background: rgba(201,169,110,0.06);
    border: 1px solid rgba(201,169,110,0.1);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-full);
    min-width: 2ch;
    text-align: center;
    transition: all 0.3s ease;
}
.tt-sidebar__cat-link:hover .tt-sidebar__cat-count {
    background: rgba(201,169,110,0.1);
    border-color: rgba(201,169,110,0.25);
    color: var(--gold);
}

/* ═══════════════════════════════════════════
   COMMENTS
   ═══════════════════════════════════════════ */
.tt-comments {
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid var(--border-subtle);
}
.tt-comments__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-regular);
    color: var(--text-primary);
    margin-bottom: var(--space-5);
}
.tt-comments__list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-6);
}
.tt-comments__list .comment {
    padding: var(--space-4);
    margin-bottom: var(--space-4);
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
}
.tt-comments__list .comment .comment-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-2);
}
.tt-comments__list .comment .comment-author img {
    border-radius: var(--radius-full);
    border: 2px solid var(--border-subtle);
}
.tt-comments__list .comment .comment-author .fn {
    font-weight: var(--weight-semi);
    color: var(--text-primary);
    font-size: var(--text-sm);
}
.tt-comments__list .comment .comment-metadata {
    font-size: var(--text-xs);
    color: var(--text-dim);
    margin-bottom: var(--space-3);
}
.tt-comments__list .comment .comment-metadata a {
    color: var(--text-dim);
    transition: color var(--duration-fast);
}
.tt-comments__list .comment .comment-metadata a:hover { color: var(--gold); }
.tt-comments__list .comment .comment-content {
    font-size: var(--text-base);
    color: var(--text-body);
    line-height: var(--leading-relaxed);
}
.tt-comments__list .comment .comment-content p { margin-bottom: var(--space-2); }
.tt-comments__list .comment .reply a {
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    transition: color var(--duration-fast);
}
.tt-comments__list .comment .reply a:hover { color: var(--gold-light); }

/* Nested comments */
.tt-comments__list .children {
    list-style: none;
    padding-left: var(--space-5);
    margin-top: var(--space-4);
}

.tt-comments__nav {
    margin: var(--space-4) 0;
}
.tt-comments__closed {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-style: italic;
}

/* Comment Form */
.tt-comment-form {
    margin-top: var(--space-5);
}
.tt-comment-form .comment-reply-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-regular);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}
.tt-comment-form p {
    margin-bottom: var(--space-3);
}
.tt-comment-form label {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--text-secondary);
    margin-bottom: var(--space-1);
}
.tt-comment-form input[type="text"],
.tt-comment-form input[type="email"],
.tt-comment-form input[type="url"],
.tt-comment-form textarea {
    width: 100%;
    padding: var(--space-3);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-primary);
    background: var(--bg-surface);
    border: 1px solid var(--border-visible);
    border-radius: var(--radius-md);
    transition: border-color var(--duration-fast);
}
.tt-comment-form input:focus,
.tt-comment-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201,169,110,0.15);
}

/* ─── Mobile zoom prevention — font-size ≥ 16px on ALL inputs, ALL browsers, ALL devices ───
   iOS Safari, Chrome iOS, Samsung Internet, Firefox mobile... đều auto-zoom khi < 16px.
   Rule này áp dụng TOÀN BỘ site, không chỉ WooCommerce. ─── */
@media screen and (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="url"],
    input[type="password"],
    input[type="search"],
    input[type="number"],
    input[type="date"],
    input[type="datetime-local"],
    select,
    textarea,
    .select2-container .select2-search__field,
    .select2-container--default .select2-selection--single,
    .select2-container--default .select2-selection--multiple {
        font-size: 16px !important;
    }
}
.tt-comment-form .form-submit .submit {
    display: inline-flex;
    align-items: center;
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--bg-void);
    background: var(--gold);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: background var(--duration-fast), transform var(--duration-fast);
}
.tt-comment-form .form-submit .submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ═══ NOTICE VARIANTS ═══ */
.tt-notice--warning {
    border-color: var(--gold-dim);
    text-align: left;
}
.tt-notice--warning strong {
    color: var(--gold);
}
.tt-notice--warning a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.tt-notice--warning a:hover {
    color: var(--gold-light);
}

/* ═══════════════════════════════════════════
   STATIC PAGE (page.php)
   ═══════════════════════════════════════════ */
.tt-page {
    padding: var(--space-8) 0 var(--space-10);
}
.tt-page__header {
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-5);
    border-bottom: 1px solid var(--border-subtle);
}
.tt-page__title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: var(--weight-light);
    color: var(--text-primary);
    letter-spacing: var(--tracking-tight);
}

/* ═══════════════════════════════════════════
   SINGLE POST — Reading Progress Bar
   ═══════════════════════════════════════════ */
.tt-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: rgba(201,169,110,0.5);
    z-index: 10000;
    transition: width 0.1s linear;
    pointer-events: none;
}

/* ═══════════════════════════════════════════
   SINGLE POST — Hero Header
   ═══════════════════════════════════════════ */
/* Single-post: reduce top padding (hero → content transition) */
.single-post .tt-site-main > .tt-container {
    padding-top: var(--space-4, 24px);
}

.tt-post-hero {
    position: relative;
    min-height: 35vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-bottom: 0;
}
.tt-post-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.tt-post-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
}
.tt-post-hero__bg--empty {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #131313 0%, #181510 100%);
}
.tt-post-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        var(--bg-void, #0e0e0e) 0%,
        rgba(14,14,14,0.65) 35%,
        rgba(14,14,14,0.25) 70%,
        rgba(14,14,14,0.1) 100%
    );
    z-index: 1;
}

/* ═══════════════════════════════════════════
   SINGLE POST — Post Header (in-content)
   Title, categories, meta — below hero, inside content area
   ═══════════════════════════════════════════ */
.tt-post-header {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tt-post-header__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.tt-post-header__cat {
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(201,169,110,0.65);
    background: rgba(201,169,110,0.06);
    border: 1px solid rgba(201,169,110,0.12);
    border-radius: 3px;
    padding: 4px 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.tt-post-header__cat:hover {
    color: rgba(201,169,110,0.9);
    background: rgba(201,169,110,0.1);
    border-color: rgba(201,169,110,0.2);
}
.tt-post-header__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: rgba(255,255,255,0.92);
    margin: 0 0 16px;
}
.tt-post-header__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}
.tt-post-header__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.tt-post-header__meta-item svg {
    width: 12px;
    height: 12px;
    opacity: 0.35;
}
.tt-post-header__meta-dot {
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}
.tt-post-header__meta-item--updated {
    color: rgba(201,169,110,0.5);
}
.tt-post-header__meta-item--updated svg {
    opacity: 0.5;
    color: rgba(201,169,110,0.6);
}

/* ═══════════════════════════════════════════
   SINGLE POST — Article
   ═══════════════════════════════════════════ */
.tt-post { position: relative; }

/* ── Reading-width constraint for single posts (no sidebar) ── */
.single-post .tt-layout--full .tt-layout__content {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

/* Sidebar sticky */
.tt-layout__sidebar {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    align-self: start;
}

/* ── Blog content page wrapper — "trang giấy" effect ── */
/* Wraps article + feedback only. Related posts & nav stay outside. */
.tt-post-page {
    background:
        linear-gradient(180deg,
            rgba(255,255,255,0.024) 0%,
            rgba(255,255,255,0.016) 35%,
            rgba(255,255,255,0.010) 70%,
            rgba(255,255,255,0.006) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.03);
    padding: clamp(32px, 5vw, 52px) clamp(28px, 5vw, 52px);
    box-shadow:
        0 4px 30px rgba(0,0,0,0.2),
        0 1px 6px rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
    min-width: 0;
    max-width: 100%;
}
/* Gilded top edge — thin gold gradient line */
.tt-post-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 5%,
        rgba(201,169,110,0.2) 20%,
        rgba(201,169,110,0.4) 50%,
        rgba(201,169,110,0.2) 80%,
        transparent 95%);
}
/* Corner glow — warm gold light at top corners */
.tt-post-page::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 180px;
    background:
        radial-gradient(ellipse 35% 100% at 0% 0%,
            rgba(201,169,110,0.04) 0%,
            transparent 70%),
        radial-gradient(ellipse 35% 100% at 100% 0%,
            rgba(201,169,110,0.04) 0%,
            transparent 70%);
    pointer-events: none;
    border-radius: 16px 16px 0 0;
}
/* Feedback inside page — subtle, no box, defer to Author Box */
.tt-post-page .tt-feedback {
    border: none;
    border-radius: 0;
    background: transparent;
    margin-top: 24px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.tt-post-page .tt-feedback::before {
    display: none;
}
.tt-post-page .tt-feedback__question {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
}
.tt-post-page .tt-feedback__first {
    font-size: 11px;
    color: rgba(201,169,110,0.3);
}
.tt-post-page .tt-feedback__btn {
    padding: 7px 16px;
    font-size: 12px;
    border-color: rgba(255,255,255,0.06);
    background: transparent;
    color: rgba(255,255,255,0.4);
}
.tt-post-page .tt-feedback__btn:hover {
    color: rgba(255,255,255,0.7);
    border-color: rgba(201,169,110,0.2);
    background: rgba(201,169,110,0.04);
}
.tt-post-page .tt-feedback__btn svg {
    width: 14px;
    height: 14px;
}
@media (max-width: 768px) {
    .tt-post-page {
        padding: var(--space-4) var(--space-3);
        border-radius: 12px;
    }
}

/* ═══════════════════════════════════════════
   SINGLE POST — Content Typography
   ═══════════════════════════════════════════ */
.tt-post__content,
.tt-page__content {
    font-size: 16.5px;
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    word-break: break-word;
    overflow-wrap: break-word;
    overflow-x: hidden;
    max-width: 100%;
    min-width: 0;
    width: 100%;
}

/* Drop Cap — chữ cái đầu ấn tượng (JS adds .tt-dropcap to first <p>) */
.tt-post__content .tt-dropcap::first-letter {
    float: left;
    font-family: var(--font-heading);
    font-size: 3.8em;
    font-weight: 700;
    line-height: 0.75;
    margin: 6px 14px 0 0;
    padding-top: 4px;
    color: rgba(201,169,110,0.65);
}

/* Paragraphs */
.tt-post__content p,
.tt-page__content p {
    margin-bottom: 1.2em;
}

/* ── Headings — premium, huyền bí ── */
/* H2 auto-numbering — editorial magazine style */
.tt-post__content {
    counter-reset: tt-h2;
}

.tt-post__content h2,
.tt-page__content h2 {
    display: flex;
    align-items: baseline;
    gap: 16px;
    counter-increment: tt-h2;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: rgba(255,255,255,0.93);
    letter-spacing: -0.015em;
    line-height: 1.35;
    margin: 40px 0 16px;
    padding: 0 0 14px 0;
    border-bottom: 1px solid rgba(201,169,110,0.15);
    background: none;
    border-left: none;
    border-radius: 0;
    position: relative;
}
.tt-post__content h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(201,169,110,0.6), rgba(201,169,110,0));
}
.tt-post__content h2::before {
    content: counter(tt-h2, decimal-leading-zero);
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: rgba(201,169,110,0.3);
    background: linear-gradient(180deg, rgba(201,169,110,0.35), rgba(201,169,110,0.12));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tt-post__content h3,
.tt-page__content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    line-height: 1.35;
    margin: 28px 0 10px;
    padding-left: 14px;
    border-left: 2px solid rgba(201,169,110,0.2);
}

.tt-post__content h4,
.tt-page__content h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin: 22px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* ── Links — subtle gold ── */
.tt-post__content a,
.tt-page__content a {
    color: rgba(201,169,110,0.7);
    text-decoration: none;
    border-bottom: none;
    transition: color 0.2s ease;
}
.tt-post__content a:hover,
.tt-page__content a:hover {
    color: rgba(201,169,110,0.95);
}

/* ── Images ── */
.tt-post__content img,
.tt-page__content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* ── Figures ── */
.tt-post__content figure { margin: 24px 0; }
.tt-post__content figcaption {
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    margin-top: 8px;
    font-style: italic;
}

/* ── Blockquotes — glass panel ── */
.tt-post__content blockquote,
.tt-page__content blockquote {
    margin: 24px 0;
    padding: 20px 24px;
    border-left: 3px solid rgba(201,169,110,0.25);
    background: rgba(201,169,110,0.02);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
}
.tt-post__content blockquote p:last-child { margin-bottom: 0; }

/* ── Lists ── */
.tt-post__content ul,
.tt-page__content ul {
    margin: 12px 0;
    padding-left: 0;
    list-style: none;
}
.tt-post__content ul > li,
.tt-page__content ul > li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 5px;
}
.tt-post__content ul > li::before,
.tt-page__content ul > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 10px;
    height: 1.5px;
    border-radius: 1px;
    background: linear-gradient(90deg, rgba(201,169,110,0.5), rgba(201,169,110,0.1));
}
/* Nested list — smaller dash */
.tt-post__content ul ul > li::before,
.tt-page__content ul ul > li::before {
    width: 6px;
    background: rgba(201,169,110,0.25);
}

.tt-post__content ol,
.tt-page__content ol {
    margin: 12px 0;
    padding-left: 24px;
    list-style: decimal;
}
.tt-post__content ol > li,
.tt-page__content ol > li {
    margin-bottom: 5px;
    padding-left: 4px;
}
.tt-post__content ol > li::marker {
    color: rgba(201,169,110,0.35);
    font-size: 0.9em;
}

.tt-post__content li > ul,
.tt-post__content li > ol {
    margin-top: 6px;
    margin-bottom: 0;
}

/* ── Tables — Scroll Box (sticky header + sticky col1 + gold scrollbar) ── */
.tt-post__content .tt-table-wrap,
.tt-post__content > table,
.tt-post__content figure.wp-block-table { margin: 24px 0; }

.tt-post__content figure.wp-block-table { overflow-x: auto; max-width: 100%; }

.tt-table-wrap {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    max-height: 460px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    background: var(--bg-void, #050505);
}

/* Gold scrollbar */
.tt-table-wrap::-webkit-scrollbar { width: 6px; height: 6px; }
.tt-table-wrap::-webkit-scrollbar-track { background: rgba(255,255,255,0.03); border-radius: 3px; }
.tt-table-wrap::-webkit-scrollbar-thumb { background: rgba(201,169,110,0.3); border-radius: 3px; }
.tt-table-wrap::-webkit-scrollbar-thumb:hover { background: rgba(201,169,110,0.5); }
.tt-table-wrap::-webkit-scrollbar-corner { background: transparent; }
.tt-table-wrap { scrollbar-width: thin; scrollbar-color: rgba(201,169,110,0.3) rgba(255,255,255,0.03); }

.tt-post__content table,
.tt-page__content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
}

/* Scroll Box: table inside wrapper expands naturally */
.tt-table-wrap table {
    width: max-content;
    min-width: 100%;
}
.tt-table-wrap td,
.tt-table-wrap th {
    min-width: 120px;
}

/* ── Header row — sticky top (only inside scroll box) ── */
.tt-table-wrap thead th {
    position: sticky;
    top: 0;
    z-index: 3;
    padding: 10px 16px;
    background: #0e0e0e;
    border-bottom: 1px solid rgba(201,169,110,0.12);
    font-weight: 600;
    color: rgba(201,169,110,0.8);
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ── First column — sticky left ── */
.tt-table-wrap th:first-child,
.tt-table-wrap td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    background: #080808;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

/* ── Corner cell (header + first col) — sticky both ── */
.tt-table-wrap thead th:first-child {
    z-index: 4;
    background: #0e0e0e;
}

/* Shadow on sticky column edge */
.tt-table-wrap th:first-child::after,
.tt-table-wrap td:first-child::after {
    content: '';
    position: absolute;
    top: 0;
    right: -6px;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to right, rgba(0,0,0,0.25), transparent);
    pointer-events: none;
}

/* Shadow below sticky header (uses ::before to avoid conflict with column ::after) */
.tt-table-wrap thead th::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 4px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), transparent);
    pointer-events: none;
}

/* ── Regular th (non-thead) ── */
.tt-post__content th,
.tt-page__content th {
    padding: 10px 16px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    text-align: left;
    font-size: 13px;
}

.tt-post__content td,
.tt-page__content td {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.55);
    vertical-align: top;
}

.tt-post__content tr:last-child td { border-bottom: none; }

/* Zebra striping */
.tt-post__content tbody tr:nth-child(even) td,
.tt-page__content tbody tr:nth-child(even) td {
    background: rgba(255,255,255,0.015);
}
.tt-post__content tbody tr:nth-child(even) td:first-child {
    background: #0b0b0b;
}
.tt-post__content tbody tr:hover td,
.tt-page__content tbody tr:hover td {
    background: rgba(201,169,110,0.03);
}
.tt-post__content tbody tr:hover td:first-child {
    background: #0d0b08;
}

/* Scroll hint below table */
.tt-table-scroll-hint {
    text-align: center;
    font-size: 11px;
    color: rgba(201,169,110,0.4);
    padding: 8px 0 0;
    letter-spacing: 0.3px;
}

/* ── Strong ── */
.tt-post__content strong,
.tt-page__content strong {
    color: rgba(255,255,255,0.88);
    font-weight: 600;
}

/* ── Sup (footnotes) ── */
.tt-post__content sup {
    color: rgba(255,255,255,0.45);
    font-size: 0.75em;
}
.tt-post__content sup a {
    color: rgba(255,255,255,0.45);
    border-bottom: none;
}

/* ── Emphasis ── */
.tt-post__content em,
.tt-page__content em {
    color: rgba(255,255,255,0.65);
    font-style: italic;
}

/* ── HR — subtle gold gradient separator ── */
.tt-post__content hr,
.tt-page__content hr {
    border: none;
    height: 1px;
    margin: 32px 0;
    background: linear-gradient(90deg, transparent, rgba(201,169,110,0.2), transparent);
    opacity: 1;
}

/* ── Code ── */
.tt-post__content code {
    font-family: var(--font-mono);
    font-size: 0.88em;
    padding: 2px 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
    color: rgba(255,255,255,0.7);
}
.tt-post__content pre {
    margin: 24px 0;
    padding: 16px 20px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 8px;
    overflow-x: auto;
    font-size: 13px;
}
.tt-post__content pre code { background: none; padding: 0; }

/* ═══════════════════════════════════════════
   SINGLE POST — Tags
   ═══════════════════════════════════════════ */
.tt-post__footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.tt-post__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.tt-post__tags a {
    display: inline-flex;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
    padding: 4px 10px;
    transition: all 0.25s ease;
    text-decoration: none;
}
.tt-post__tags a:hover {
    color: rgba(255,255,255,0.65);
    border-color: rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════════
   SINGLE POST — Editorial Content Boxes
   Các box nội dung custom trong bài viết
   ═══════════════════════════════════════════ */

/* ── Shared box base ── */
.ttj-editorial-standards-box,
.key-takeaways-container,
.ttj-decision-support,
.ttj-science-summary,
.ttj-actionable-steps,
.ttj-buy-smart,
.disclaimer-box {
    position: relative;
    margin: 24px 0;
    padding: 24px 28px;
    border-radius: 12px;
    border: 1px solid rgba(201,169,110,0.1);
    background: rgba(201,169,110,0.03);
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    font-size: 0.92rem;
}
.ttj-editorial-standards-box *,
.key-takeaways-container *,
.ttj-decision-support *,
.ttj-science-summary *,
.ttj-actionable-steps *,
.ttj-buy-smart *,
.disclaimer-box * {
    color: inherit;
}

/* Box H2 — no counter number, no flex */
.tt-post__content .key-takeaways-container > h2::before,
.tt-post__content .references-section > h2::before {
    display: none;
}
.tt-post__content .key-takeaways-container > h2::after,
.tt-post__content .references-section > h2::after {
    display: none;
}
.tt-post__content .key-takeaways-container > h2,
.tt-post__content .references-section > h2 {
    display: block;
    counter-increment: none;
    border-bottom: none;
    padding-bottom: 0;
    margin: 0 0 12px;
}

/* Box headings — specificity must beat .tt-post__content h2/h3/h4 (0,1,1) */
.tt-post__content .ttj-editorial-standards-box > h3,
.tt-post__content .key-takeaways-container > h2,
.tt-post__content .ttj-decision-support > h4,
.tt-post__content .ttj-science-summary > h4,
.tt-post__content .ttj-actionable-steps > h4,
.tt-post__content .ttj-buy-smart > h4 {
    margin: 0 0 14px 0;
    padding: 0 0 10px 0;
    border-bottom: 1px solid rgba(201,169,110,0.12);
    border-left: none;
    background: none;
    border-radius: 0;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: rgba(201,169,110,0.75);
    text-transform: none;
}
/* Remove double-border from h2 inside key-takeaways */
.tt-post__content .key-takeaways-container > h2 {
    font-size: 1rem;
    padding-left: 0;
    border-radius: 0;
}

/* Box lists — shared base (::before unique per box) */
.tt-post__content .ttj-editorial-standards-box ul,
.tt-post__content .key-takeaways-container ul,
.tt-post__content .ttj-decision-support ul,
.tt-post__content .ttj-science-summary ul,
.tt-post__content .ttj-actionable-steps ul,
.tt-post__content .ttj-buy-smart ul,
.tt-post__content .disclaimer-box ul {
    margin: 8px 0 0;
    padding-left: 0;
    list-style: none;
}
.tt-post__content .ttj-editorial-standards-box li,
.tt-post__content .key-takeaways-container li,
.tt-post__content .ttj-decision-support li,
.tt-post__content .ttj-science-summary li,
.tt-post__content .ttj-actionable-steps li,
.tt-post__content .ttj-buy-smart li,
.tt-post__content .disclaimer-box li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 22px;
}
.tt-post__content .ttj-editorial-standards-box li::before,
.tt-post__content .key-takeaways-container li::before,
.tt-post__content .ttj-decision-support li::before,
.tt-post__content .ttj-science-summary li::before,
.tt-post__content .ttj-actionable-steps li::before,
.tt-post__content .ttj-buy-smart li::before,
.tt-post__content .disclaimer-box li::before {
    display: block;
    position: absolute;
    left: 0;
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
}
.tt-post__content .ttj-editorial-standards-box li:last-child,
.tt-post__content .key-takeaways-container li:last-child,
.tt-post__content .ttj-decision-support li:last-child,
.tt-post__content .ttj-science-summary li:last-child,
.tt-post__content .ttj-actionable-steps li:last-child,
.tt-post__content .ttj-buy-smart li:last-child {
    margin-bottom: 0;
}

/* Editorial Standards — › chevron (tham khảo nguồn) */
.tt-post__content .ttj-editorial-standards-box li::before {
    content: '›';
    top: 0;
    font-size: 1.1em;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    line-height: 1.6;
}

/* Key Takeaways — ✦ star (điểm chính) */
.tt-post__content .key-takeaways-container li::before {
    content: '✦';
    top: 2px;
    font-size: 0.55em;
    color: rgba(201,169,110,0.6);
    line-height: 2.8;
}

/* Decision Support — ◇ diamond outline (lựa chọn) */
.tt-post__content .ttj-decision-support li::before {
    content: '◇';
    top: 0;
    font-size: 0.7em;
    color: rgba(201,169,110,0.5);
    line-height: 2.2;
}

/* Science Summary — — em dash (học thuật) */
.tt-post__content .ttj-science-summary li::before {
    content: '';
    top: 0.7em;
    width: 8px;
    height: 1.5px;
    background: rgba(255,255,255,0.2);
    border-radius: 1px;
}

/* Actionable Steps — ✓ checkmark (hành động) */
.tt-post__content .ttj-actionable-steps li::before {
    content: '✓';
    top: 0;
    font-size: 0.75em;
    font-weight: 700;
    color: rgba(201,169,110,0.55);
    line-height: 2;
}

/* Buy Smart — ◆ diamond solid (cao cấp) */
.tt-post__content .ttj-buy-smart li::before {
    content: '◆';
    top: 1px;
    font-size: 0.4em;
    color: rgba(201,169,110,0.45);
    line-height: 3.6;
}

/* Disclaimer — · dot nhỏ (muted) */
.tt-post__content .disclaimer-box li::before {
    content: '·';
    top: -1px;
    font-size: 1.2em;
    color: rgba(255,255,255,0.25);
    line-height: 1.5;
}

/* ── 1. Editorial Standards Box — muted, informational ── */
.ttj-editorial-standards-box {
    background: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.06);
}
.tt-post__content .ttj-editorial-standards-box > h3 {
    color: rgba(255,255,255,0.55);
    border-bottom-color: rgba(255,255,255,0.06);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Credo line */
.ttj-credo {
    display: block;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(201,169,110,0.08);
    font-size: 0.84rem;
    color: rgba(201,169,110,0.55);
    font-style: italic;
}

/* ── 2. Key Takeaways — prominent gold accent ── */
.key-takeaways-container {
    border-left: 3px solid rgba(201,169,110,0.35);
    background: linear-gradient(135deg, rgba(201,169,110,0.05) 0%, rgba(201,169,110,0.01) 100%);
}

/* ── 3. Decision Support — dual-option box ── */
.ttj-decision-support {
    border-left: 3px solid rgba(201,169,110,0.25);
    background: linear-gradient(135deg, rgba(201,169,110,0.04) 0%, transparent 100%);
}
.tt-post__content .ttj-decision-support > h4 {
    color: rgba(201,169,110,0.7);
}

/* ── 4. Science Summary — clean & academic ── */
.ttj-science-summary {
    background: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.06);
    border-left: 3px solid rgba(255,255,255,0.1);
}
.tt-post__content .ttj-science-summary > h4 {
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.82rem;
}

/* ── 5. Actionable Steps — warm, encouraging ── */
.ttj-actionable-steps {
    border-left: 3px solid rgba(201,169,110,0.3);
    background: linear-gradient(135deg, rgba(201,169,110,0.04) 0%, transparent 80%);
}

/* ── 6. Buy Smart — subtle commercial ── */
.ttj-buy-smart {
    background: rgba(201,169,110,0.03);
    border-color: rgba(201,169,110,0.12);
}

/* ── 7. Disclaimer Box — muted, subdued ── */
.disclaimer-box {
    background: rgba(255,255,255,0.015);
    border-color: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    line-height: 1.65;
    padding: 18px 24px;
}
.disclaimer-box strong,
.disclaimer-box em {
    color: rgba(255,255,255,0.55);
}

/* ═══════════════════════════════════════════
   SINGLE POST — Pillar CTA Section
   ═══════════════════════════════════════════ */
.ttj-pillar-cta {
    position: relative;
    margin: 28px 0;
    padding: 0;
    border-radius: 14px;
    border: 1px solid rgba(201,169,110,0.15);
    background: linear-gradient(145deg, rgba(201,169,110,0.05) 0%, rgba(15,15,15,0.95) 50%, rgba(201,169,110,0.03) 100%);
    overflow: hidden;
}

/* CTA Header */
.ttj-pillar-cta__header {
    padding: 20px 20px 14px;
    border-bottom: 1px solid rgba(201,169,110,0.08);
}
.tt-post__content .ttj-pillar-cta__title {
    margin: 0 0 8px 0;
    padding: 0;
    border: none;
    background: none;
    border-radius: 0;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(201,169,110,0.8);
    letter-spacing: -0.01em;
    text-transform: none;
}
.ttj-pillar-cta__desc {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
}

/* CTA Link List — reset content list styles */
.tt-post__content .ttj-pillar-cta__list {
    list-style: none;
    margin: 0;
    padding: 4px 12px;
}
.tt-post__content .ttj-pillar-cta__list > li {
    position: static;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.tt-post__content .ttj-pillar-cta__list > li::before {
    display: none;
}
.tt-post__content .ttj-pillar-cta__list > li:last-child {
    border-bottom: none;
}

/* Kill any WordPress-generated embeds/previews inside Pillar CTA */
.ttj-pillar-cta figure,
.ttj-pillar-cta iframe,
.ttj-pillar-cta .wp-block-embed,
.ttj-pillar-cta .wp-embedded-content,
.ttj-pillar-cta .wp-block-embed__wrapper,
.ttj-pillar-cta__list figure,
.ttj-pillar-cta__list iframe {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* CTA Link Items */
.tt-post__content .ttj-pillar-cta__link {
    display: block;
    padding: 14px 12px;
    border-radius: 8px;
    text-decoration: none !important;
    color: inherit;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transition: background 0.25s ease;
}
.tt-post__content .ttj-pillar-cta__link:hover {
    background: rgba(201,169,110,0.05) !important;
    color: inherit;
}
.tt-post__content .ttj-pillar-cta__link-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-bottom: 3px;
    transition: color 0.25s ease;
}
.tt-post__content .ttj-pillar-cta__link:hover .ttj-pillar-cta__link-title {
    color: rgba(201,169,110,0.85);
}
.tt-post__content .ttj-pillar-cta__link-desc {
    display: block;
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.4);
}

/* CTA Actions / Button */
.ttj-pillar-cta__actions {
    padding: 8px 20px 16px;
    text-align: center;
}
.tt-post__content .ttj-pillar-cta__btn {
    display: inline-block;
    padding: 9px 24px;
    border-radius: 6px;
    border: 1px solid rgba(201,169,110,0.25);
    background: rgba(201,169,110,0.06);
    color: rgba(201,169,110,0.8);
    font-family: var(--font-heading);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all 0.3s ease;
}
.tt-post__content .ttj-pillar-cta__btn:hover {
    background: rgba(201,169,110,0.12);
    border-color: rgba(201,169,110,0.4);
    color: rgba(201,169,110,1);
}

/* ═══════════════════════════════════════════
   SINGLE POST — FAQ Accordion (details/summary)
   ═══════════════════════════════════════════ */
.tt-post__content details {
    margin: 12px 0;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.tt-post__content details[open] {
    border-color: rgba(201,169,110,0.12);
}
.tt-post__content details + details {
    margin-top: 0;
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.tt-post__content details:has(+ details) {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.tt-post__content details summary {
    padding: 16px 20px;
    padding-right: 44px;
    cursor: pointer;
    list-style: none;
    position: relative;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.82);
    transition: color 0.25s ease, background 0.25s ease;
    line-height: 1.5;
}
.tt-post__content details summary::-webkit-details-marker {
    display: none;
}
.tt-post__content details summary::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid rgba(201,169,110,0.5);
    border-bottom: 1.5px solid rgba(201,169,110,0.5);
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.3s ease;
}
.tt-post__content details[open] > summary::after {
    transform: translateY(-35%) rotate(-135deg);
}
.tt-post__content details summary:hover {
    color: rgba(255,255,255,0.95);
    background: rgba(201,169,110,0.03);
}
.tt-post__content details summary strong {
    font-weight: 600;
    color: inherit;
}

/* Details content */
.tt-post__content .details-content,
.tt-post__content details > div {
    padding: 0 20px 18px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    border-top: 1px solid rgba(255,255,255,0.04);
}
.tt-post__content .details-content ul,
.tt-post__content details > div ul {
    margin: 10px 0 0;
    padding-left: 20px;
    list-style: disc;
}
.tt-post__content .details-content li,
.tt-post__content details > div li {
    position: static;
    margin-bottom: 6px;
    padding-left: 2px;
}
.tt-post__content .details-content li::before,
.tt-post__content details > div li::before {
    display: none;
}
.tt-post__content .details-content li::marker,
.tt-post__content details > div li::marker {
    color: rgba(201,169,110,0.3);
    font-size: 0.7em;
}

/* ═══════════════════════════════════════════
   SINGLE POST — References Section
   ═══════════════════════════════════════════ */
.references-section {
    margin: 48px 0 24px;
    padding: 24px 28px 20px;
    border-radius: 12px;
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.04);
}
.tt-post__content .references-section > h2 {
    margin: 0 0 16px 0;
    padding: 0 0 10px 0;
    border-left: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: none;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}
.tt-post__content .references-section ol {
    margin: 0;
    padding-left: 24px;
    list-style: decimal;
}
.tt-post__content .references-section li {
    position: static;
    margin-bottom: 10px;
    padding-left: 2px;
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.4);
}
.tt-post__content .references-section li::before {
    display: none;
}
.tt-post__content .references-section li:last-child {
    margin-bottom: 0;
}
.references-section cite {
    font-style: normal;
    color: rgba(255,255,255,0.45);
}
.references-section cite em {
    font-style: italic;
    color: rgba(255,255,255,0.5);
}
.tt-post__content .references-section a {
    color: rgba(201,169,110,0.45);
    word-break: break-all;
    font-size: 0.78rem;
}
.tt-post__content .references-section a:hover {
    color: rgba(201,169,110,0.7);
}

/* ── Citation superscripts ── */
.tt-post__content sup,
.tt-post__content sup a {
    color: rgba(201,169,110,0.55);
    font-size: 0.7em;
    text-decoration: none;
    font-weight: 600;
}
.tt-post__content sup a:hover {
    color: rgba(201,169,110,0.85);
}

/* ═══════════════════════════════════════════
   SINGLE POST — Article Feedback Widget
   ═══════════════════════════════════════════ */
.tt-feedback {
    margin: 48px 0 0;
    padding: 28px 24px;
    border: 1px solid rgba(201,169,110,0.12);
    border-radius: 14px;
    background: linear-gradient(165deg, rgba(201,169,110,0.03) 0%, rgba(15,15,15,0.6) 50%, rgba(12,12,12,0.8) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.tt-feedback::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
}

/* Question */
.tt-feedback__question {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}
.tt-feedback__first {
    font-size: 12px;
    color: rgba(201,169,110,0.4);
    margin: 0 0 16px;
    font-style: italic;
}

/* Progress Bar */
.tt-feedback__bar-wrap {
    max-width: 320px;
    margin: 0 auto 16px;
}
.tt-feedback__bar {
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.06);
    overflow: hidden;
    margin-bottom: 6px;
}
.tt-feedback__bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, rgba(201,169,110,0.6), rgba(201,169,110,0.3));
    transition: width 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    min-width: 2px;
}
.tt-feedback__bar-label {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.01em;
}

/* Buttons */
.tt-feedback__buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.tt-feedback__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}
.tt-feedback__btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.tt-feedback__btn:hover {
    border-color: rgba(201,169,110,0.25);
    background: rgba(201,169,110,0.06);
    color: rgba(255,255,255,0.85);
}
.tt-feedback__btn--yes:hover {
    border-color: rgba(201,169,110,0.35);
    box-shadow: 0 0 16px rgba(201,169,110,0.08);
}
.tt-feedback__btn--yes:hover svg {
    color: rgba(201,169,110,0.7);
}
.tt-feedback__btn--loading {
    pointer-events: none;
    opacity: 0.5;
}

/* Feedback Form */
.tt-feedback__form {
    text-align: left;
    max-width: 440px;
    margin: 0 auto;
}
.tt-feedback__form-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin: 0 0 14px;
}
.tt-feedback__reasons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}
.tt-feedback__reason {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.02);
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.tt-feedback__reason:hover {
    border-color: rgba(201,169,110,0.15);
    color: rgba(255,255,255,0.75);
}
.tt-feedback__reason input[type="radio"] {
    accent-color: rgba(201,169,110,0.7);
    width: 14px;
    height: 14px;
}
.tt-feedback__text {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 14px;
    transition: border-color 0.2s ease;
}
.tt-feedback__text::placeholder { color: rgba(255,255,255,0.2); }
.tt-feedback__text:focus {
    outline: none;
    border-color: rgba(201,169,110,0.25);
}
.tt-feedback__form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
.tt-feedback__btn--cancel {
    border-color: transparent;
    background: none;
    color: rgba(255,255,255,0.35);
}
.tt-feedback__btn--cancel:hover {
    color: rgba(255,255,255,0.6);
    background: none;
    border-color: transparent;
}
.tt-feedback__btn--submit {
    border-color: rgba(201,169,110,0.3);
    background: rgba(201,169,110,0.08);
    color: rgba(201,169,110,0.8);
}
.tt-feedback__btn--submit:hover {
    background: rgba(201,169,110,0.15);
    color: rgba(201,169,110,1);
    box-shadow: 0 0 16px rgba(201,169,110,0.1);
}

/* Done / Thank you */
.tt-feedback__voted,
.tt-feedback__done { text-align: center; }
.tt-feedback__check {
    width: 32px;
    height: 32px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: rgba(201,169,110,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.tt-feedback__check svg {
    width: 16px;
    height: 16px;
    color: rgba(201,169,110,0.7);
}
.tt-feedback__thanks {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin: 0 0 10px;
}

/* ═══════════════════════════════════════════
   SINGLE POST — Breadcrumb (SEO)
   Inside .tt-layout__content, above post header
   ═══════════════════════════════════════════ */
.tt-post-breadcrumb {
    margin-bottom: 16px;
    padding: 0;
    font-size: 11.5px;
    line-height: 1.6;
    color: rgba(255,255,255,0.3);
    background: none;
    border: none;
}
.tt-post-breadcrumb a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 200ms ease;
}
.tt-post-breadcrumb a:hover {
    color: rgba(201,169,110,0.7);
}
.tt-post-breadcrumb__sep {
    display: inline-block;
    margin: 0 5px;
    color: rgba(201,169,110,0.25);
    font-size: 9px;
    vertical-align: 1px;
}
.tt-post-breadcrumb__current {
    color: rgba(201,169,110,0.45);
}

@media (max-width: 639px) {
    .tt-post-breadcrumb {
        margin-bottom: 12px;
        font-size: 10.5px;
    }
    .tt-post-breadcrumb__sep {
        margin: 0 4px;
    }
}

/* ═══════════════════════════════════════════
   FONT SCALE — Deep Content Penetration
   CSS variable --tt-font-scale multiplies ALL
   explicit font-sizes so user font-size control
   affects headings, tables, details, etc.
   ═══════════════════════════════════════════ */
.tt-post__content.tt-font-scaled {
    --tt-font-scale: 1;
}

/* Headings */
.tt-post__content.tt-font-scaled h2 { font-size: calc(1.45rem * var(--tt-font-scale, 1)); }
.tt-post__content.tt-font-scaled h2::before { font-size: calc(2rem * var(--tt-font-scale, 1)); }
.tt-post__content.tt-font-scaled h3 { font-size: calc(1.15rem * var(--tt-font-scale, 1)); }
.tt-post__content.tt-font-scaled h4 { font-size: calc(1.02rem * var(--tt-font-scale, 1)); }

/* Media */
.tt-post__content.tt-font-scaled figcaption { font-size: calc(12px * var(--tt-font-scale, 1)); }

/* Tables */
.tt-post__content.tt-font-scaled table { font-size: calc(14px * var(--tt-font-scale, 1)); }

/* Box headings */
.tt-post__content.tt-font-scaled .ttj-editorial-standards-box > h3,
.tt-post__content.tt-font-scaled .key-takeaways-container > h2,
.tt-post__content.tt-font-scaled .ttj-decision-support > h4,
.tt-post__content.tt-font-scaled .ttj-science-summary > h4,
.tt-post__content.tt-font-scaled .ttj-actionable-steps > h4,
.tt-post__content.tt-font-scaled .ttj-buy-smart > h4 { font-size: calc(0.95rem * var(--tt-font-scale, 1)); }
.tt-post__content.tt-font-scaled .key-takeaways-container > h2 { font-size: calc(1rem * var(--tt-font-scale, 1)); }

/* Pillar CTA */
.tt-post__content.tt-font-scaled .ttj-pillar-cta__link-title { font-size: calc(0.9rem * var(--tt-font-scale, 1)); }
.tt-post__content.tt-font-scaled .ttj-pillar-cta__link-desc { font-size: calc(0.82rem * var(--tt-font-scale, 1)); }
.tt-post__content.tt-font-scaled .ttj-pillar-cta__title { font-size: calc(1.05rem * var(--tt-font-scale, 1)); }

/* Details / FAQ */
.tt-post__content.tt-font-scaled .details-content,
.tt-post__content.tt-font-scaled details > div { font-size: calc(0.9rem * var(--tt-font-scale, 1)); }

/* References */
.tt-post__content.tt-font-scaled .references-section > h2 { font-size: calc(0.85rem * var(--tt-font-scale, 1)); }
.tt-post__content.tt-font-scaled .references-section li { font-size: calc(0.8rem * var(--tt-font-scale, 1)); }
.tt-post__content.tt-font-scaled .references-section a { font-size: calc(0.78rem * var(--tt-font-scale, 1)); }

/* Smooth transition for all scaled elements */
.tt-post__content.tt-font-scaled h2,
.tt-post__content.tt-font-scaled h2::before,
.tt-post__content.tt-font-scaled h3,
.tt-post__content.tt-font-scaled h4,
.tt-post__content.tt-font-scaled figcaption,
.tt-post__content.tt-font-scaled table,
.tt-post__content.tt-font-scaled .details-content,
.tt-post__content.tt-font-scaled details > div,
.tt-post__content.tt-font-scaled details summary,
.tt-post__content.tt-font-scaled .references-section li,
.tt-post__content.tt-font-scaled .references-section a,
.tt-post__content.tt-font-scaled [class*="ttj-pillar-cta"] {
    transition: font-size 200ms ease;
}

/* ── Font Scale — Mobile (max-width: 639px) ── */
@media (max-width: 639px) {
    .tt-post__content.tt-font-scaled h2 { font-size: calc(1.15rem * var(--tt-font-scale, 1)); }
    .tt-post__content.tt-font-scaled h2::before { font-size: calc(1.5rem * var(--tt-font-scale, 1)); }
    .tt-post__content.tt-font-scaled h3 { font-size: calc(1rem * var(--tt-font-scale, 1)); }
    .tt-post__content.tt-font-scaled h4 { font-size: calc(0.85rem * var(--tt-font-scale, 1)); }
    .tt-post__content.tt-font-scaled th,
    .tt-post__content.tt-font-scaled td { font-size: calc(13px * var(--tt-font-scale, 1)); }
    .tt-post__content.tt-font-scaled .ttj-editorial-standards-box > h3,
    .tt-post__content.tt-font-scaled .key-takeaways-container > h2,
    .tt-post__content.tt-font-scaled .ttj-decision-support > h4,
    .tt-post__content.tt-font-scaled .ttj-science-summary > h4,
    .tt-post__content.tt-font-scaled .ttj-actionable-steps > h4,
    .tt-post__content.tt-font-scaled .ttj-buy-smart > h4 { font-size: calc(0.85rem * var(--tt-font-scale, 1)); }
    .tt-post__content.tt-font-scaled .ttj-pillar-cta__title { font-size: calc(0.95rem * var(--tt-font-scale, 1)); }
    .tt-post__content.tt-font-scaled .ttj-pillar-cta__link-title { font-size: calc(0.85rem * var(--tt-font-scale, 1)); }
    .tt-post__content.tt-font-scaled .ttj-pillar-cta__link-desc { font-size: calc(0.78rem * var(--tt-font-scale, 1)); }
    .tt-post__content.tt-font-scaled .ttj-pillar-cta__btn { font-size: calc(0.84rem * var(--tt-font-scale, 1)); }
    .tt-post__content.tt-font-scaled details summary { font-size: calc(0.87rem * var(--tt-font-scale, 1)); }
    .tt-post__content.tt-font-scaled .details-content,
    .tt-post__content.tt-font-scaled details > div { font-size: calc(0.85rem * var(--tt-font-scale, 1)); }
    .tt-post__content.tt-font-scaled .references-section li { font-size: calc(0.75rem * var(--tt-font-scale, 1)); }
    .tt-post__content.tt-font-scaled .references-section a { font-size: calc(0.72rem * var(--tt-font-scale, 1)); }
}

@media (prefers-reduced-motion: reduce) {
    .tt-post__content.tt-font-scaled *,
    .tt-post__content.tt-font-scaled *::before,
    .tt-post__content.tt-font-scaled *::after {
        transition-duration: 0ms !important;
    }
}

/* ═══════════════════════════════════════════
   SINGLE POST — Reading Toolbar (floating pill)
   ═══════════════════════════════════════════ */
.tt-reading-toolbar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201,169,110,0.08);
    border-radius: 24px;
    /* Appear animation */
    opacity: 0;
    visibility: hidden;
    transition: opacity 400ms cubic-bezier(0.16, 1, 0.3, 1),
                visibility 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
/* Top gold accent line */
.tt-reading-toolbar::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 2px;
    border-radius: 1px;
    background: linear-gradient(90deg,
        rgba(201,169,110,0.1),
        rgba(201,169,110,0.35),
        rgba(201,169,110,0.1));
    opacity: 0;
    transition: opacity 400ms ease;
}
.tt-reading-toolbar.is-visible {
    opacity: 1;
    visibility: visible;
}
.tt-reading-toolbar.is-visible::before {
    opacity: 1;
}
/* Backdrop-filter fallback */
@supports not (backdrop-filter: blur(12px)) {
    .tt-reading-toolbar {
        background: rgba(8,8,8,0.96);
    }
}

/* ── Toolbar Tooltips (desktop hover) ── */
.tt-reading-toolbar__btn[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10,10,10,0.95);
    border: 1px solid rgba(201,169,110,0.12);
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 500;
    color: rgba(201,169,110,0.8);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease, visibility 200ms ease;
    pointer-events: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10;
}
.tt-reading-toolbar__btn[data-tooltip]:hover::after,
.tt-reading-toolbar__btn[data-tooltip]:focus-visible::after {
    opacity: 1;
    visibility: visible;
}

/* ── First-visit guide (auto-reveal all tooltips once) ── */
.tt-reading-toolbar.is-first-visit .tt-reading-toolbar__btn[data-tooltip]::after {
    animation: tt-tooltip-reveal 5s ease forwards;
}
@keyframes tt-tooltip-reveal {
    0%   { opacity: 0; transform: translateY(-50%) translateX(-6px); }
    8%   { opacity: 1; transform: translateY(-50%) translateX(0); }
    80%  { opacity: 1; transform: translateY(-50%) translateX(0); }
    100% { opacity: 0; visibility: hidden; }
}
/* Staggered delays for each button */
.tt-reading-toolbar.is-first-visit #tt-font-btn::after { animation-delay: 0s; }
.tt-reading-toolbar.is-first-visit #tt-share-btn::after { animation-delay: 0.15s; }
.tt-reading-toolbar.is-first-visit #tt-tts-btn::after { animation-delay: 0.3s; }
.tt-reading-toolbar.is-first-visit #tt-bookmark-btn::after { animation-delay: 0.45s; }
/* Button hint glow on first visit */
.tt-reading-toolbar.is-first-visit .tt-reading-toolbar__btn {
    animation: tt-hint-glow 2s ease 0.5s;
}
@keyframes tt-hint-glow {
    0%, 100% { box-shadow: none; }
    50% { box-shadow: 0 0 12px rgba(201,169,110,0.2); }
}

/* ── Mobile first-visit banner (single pill) ── */
.tt-toolbar-guide {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%);
    background: rgba(10,10,10,0.95);
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: 12px;
    padding: 8px 16px;
    font-size: 11px;
    color: rgba(201,169,110,0.8);
    white-space: nowrap;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: tt-guide-banner 5s ease forwards;
    pointer-events: none;
    z-index: 10;
}
@keyframes tt-guide-banner {
    0%   { opacity: 0; transform: translateX(-50%) translateY(4px); }
    10%  { opacity: 1; transform: translateX(-50%) translateY(0); }
    80%  { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

/* ── TTS Action Toast ── */
.tt-tts-toast {
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10,10,10,0.95);
    border: 1px solid rgba(201,169,110,0.12);
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 500;
    color: rgba(201,169,110,0.8);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 250ms ease, visibility 250ms ease;
    pointer-events: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10;
}
.tt-tts-toast.is-visible {
    opacity: 1;
    visibility: visible;
}

/* ── Toolbar buttons ── */
.tt-reading-toolbar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    position: relative;
    transition: color 250ms cubic-bezier(0.16, 1, 0.3, 1),
                background 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.tt-reading-toolbar__btn svg {
    width: 16px;
    height: 16px;
}
.tt-reading-toolbar__btn:hover {
    color: rgba(201,169,110,0.7);
    background: rgba(201,169,110,0.06);
}
.tt-reading-toolbar__btn:active {
    transform: scale(0.92);
}

/* ── Toolbar panels (font, share) ── */
.tt-reading-toolbar__panel {
    position: absolute;
    left: calc(100% + 8px);
    top: 50%;
    transform: translateY(-50%) scale(0.95) translateX(-8px);
    background: rgba(10,10,10,0.92);
    border: 1px solid rgba(201,169,110,0.12);
    border-radius: 12px;
    padding: 8px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}
.tt-reading-toolbar__panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) scale(1) translateX(0);
}
@supports not (backdrop-filter: blur(12px)) {
    .tt-reading-toolbar__panel {
        background: rgba(8,8,8,0.98);
    }
}

/* ── Font Size Panel ── */
.tt-font-panel {
    display: flex;
    align-items: center;
    gap: 4px;
}
.tt-font-panel__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    background: transparent;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 200ms ease;
}
.tt-font-panel__btn:not(:disabled):hover {
    color: rgba(201,169,110,0.7);
    border-color: rgba(201,169,110,0.15);
    background: rgba(201,169,110,0.06);
}
.tt-font-panel__btn:not(:disabled):active {
    transform: scale(0.9);
    background: rgba(201,169,110,0.12);
}
.tt-font-panel__btn:disabled {
    opacity: 0.25;
    cursor: default;
    pointer-events: none;
}
.tt-font-panel__btn--reset {
    font-size: 14px;
    color: rgba(255,255,255,0.35);
}
.tt-font-panel__size {
    font-size: 11px;
    color: rgba(201,169,110,0.6);
    font-weight: 600;
    min-width: 36px;
    text-align: center;
    user-select: none;
}

/* ── Share Panel ── */
.tt-share-panel {
    display: flex;
    align-items: center;
    gap: 6px;
}
.tt-share-panel__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    background: transparent;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 250ms ease;
    text-decoration: none;
}
.tt-share-panel__link svg {
    width: 16px;
    height: 16px;
}
.tt-share-panel__link--fb:hover {
    color: #1877F2;
    border-color: rgba(24,119,242,0.2);
    background: rgba(24,119,242,0.06);
    box-shadow: 0 0 12px rgba(24,119,242,0.1);
}
.tt-share-panel__link--zalo:hover {
    color: #0068FF;
    border-color: rgba(0,104,255,0.2);
    background: rgba(0,104,255,0.06);
    box-shadow: 0 0 12px rgba(0,104,255,0.1);
}
.tt-share-panel__link--copy:hover {
    color: rgba(201,169,110,0.7);
    border-color: rgba(201,169,110,0.15);
    background: rgba(201,169,110,0.06);
}
/* Copy feedback: swap link → check icon */
.tt-share-check-icon { display: none; }
.tt-share-panel__link--copy.is-copied .tt-share-copy-icon { display: none; }
.tt-share-panel__link--copy.is-copied .tt-share-check-icon { display: block; }
.tt-share-panel__link--copy.is-copied {
    color: rgba(201,169,110,0.85);
    border-color: rgba(201,169,110,0.3);
    background: rgba(201,169,110,0.08);
}

/* ── TTS Button States ── */
.tt-tts-pause { display: none; }
#tt-tts-btn.is-playing .tt-tts-play { display: none; }
#tt-tts-btn.is-playing .tt-tts-pause { display: block; }
#tt-tts-btn.is-playing {
    color: rgba(201,169,110,0.85);
    background: rgba(201,169,110,0.08);
    animation: tt-pulse-gold 2s ease-in-out infinite;
}
#tt-tts-btn.is-paused .tt-tts-play { display: none; }
#tt-tts-btn.is-paused .tt-tts-pause { display: block; }
#tt-tts-btn.is-paused {
    color: rgba(201,169,110,0.5);
    background: rgba(201,169,110,0.04);
}
@keyframes tt-pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,110,0.2); }
    50% { box-shadow: 0 0 0 8px rgba(201,169,110,0); }
}

/* ── Bookmark Button States ── */
#tt-bookmark-btn svg {
    fill: transparent; /* Override fill="none" to enable smooth transition */
    transition: fill 300ms ease, stroke 300ms ease;
}
#tt-bookmark-btn.is-bookmarked svg {
    fill: rgba(201,169,110,0.85);
    stroke: rgba(201,169,110,0.85);
}
#tt-bookmark-btn.is-bookmarked {
    color: rgba(201,169,110,0.85);
}
#tt-bookmark-btn.is-animating {
    animation: tt-bookmark-pop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes tt-bookmark-pop {
    0% { transform: scale(1); }
    30% { transform: scale(1.25); }
    100% { transform: scale(1); }
}
/* Badge counter */
.tt-bookmark-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 14px;
    height: 14px;
    border-radius: 7px;
    background: rgba(201,169,110,0.9);
    color: #050505;
    font-size: 9px;
    font-weight: 700;
    line-height: 14px;
    text-align: center;
    padding: 0 3px;
    pointer-events: none;
}
/* Toast notification */
.tt-bookmark-toast {
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10,10,10,0.95);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 500;
    color: rgba(201,169,110,0.85);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 250ms ease, visibility 250ms ease;
    pointer-events: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10;
}
.tt-bookmark-toast.is-visible {
    opacity: 1;
    visibility: visible;
}

/* ═══════════════════════════════════════════
   SINGLE POST — Inline Share (bottom, subtle)
   ═══════════════════════════════════════════ */
.tt-share-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.tt-share-inline--bottom {
    margin-top: 12px;
    padding: 16px 0;
    opacity: 0.45;
    transition: opacity 400ms ease;
}
.tt-share-inline--bottom:hover {
    opacity: 0.8;
}
.tt-share-inline__label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    user-select: none;
    white-space: nowrap;
}
.tt-share-inline__sep {
    width: 24px;
    height: 1px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}
.tt-share-inline__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 250ms ease;
    text-decoration: none;
}
.tt-share-inline__btn svg {
    width: 14px;
    height: 14px;
}
.tt-share-inline__btn:hover {
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.04);
}
.tt-share-inline__btn--fb:hover {
    color: #1877F2;
    background: rgba(24,119,242,0.08);
}
.tt-share-inline__btn--zalo:hover {
    color: #0068FF;
    background: rgba(0,104,255,0.08);
}
.tt-share-inline__btn--copy:hover {
    color: rgba(201,169,110,0.7);
    background: rgba(201,169,110,0.06);
}
.tt-share-inline__btn--copy.is-copied .tt-share-copy-icon { display: none; }
.tt-share-inline__btn--copy.is-copied .tt-share-check-icon { display: block; }
.tt-share-inline__btn--copy.is-copied {
    color: rgba(201,169,110,0.85);
    background: rgba(201,169,110,0.08);
}

/* ═══════════════════════════════════════════
   SINGLE POST — Author Box (E-E-A-T)
   ═══════════════════════════════════════════ */
.tt-author-box {
    display: flex;
    gap: 20px;
    margin-top: 36px;
    padding: 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(201,169,110,0.08);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.tt-author-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
}
.tt-author-box:hover {
    border-color: rgba(201,169,110,0.15);
}
.tt-author-box__avatar {
    flex-shrink: 0;
}
.tt-author-box__avatar img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(201,169,110,0.2);
    box-shadow: 0 0 0 4px rgba(201,169,110,0.06);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.tt-author-box:hover .tt-author-box__avatar img {
    border-color: rgba(201,169,110,0.35);
    box-shadow: 0 0 0 4px rgba(201,169,110,0.1);
}
.tt-author-box__info {
    flex: 1;
    min-width: 0;
}
.tt-author-box__header {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.tt-author-box__name {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.25s ease;
}
.tt-author-box__name:hover {
    color: var(--gold, #C9A96E);
}
.tt-author-box__title {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(201,169,110,0.5);
    background: rgba(201,169,110,0.06);
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}
.tt-author-box__bio {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tt-author-box__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.tt-author-box__social {
    display: flex;
    gap: 6px;
}
.tt-author-box__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: all 0.25s ease;
}
.tt-author-box__social-link:hover {
    color: rgba(201,169,110,0.8);
    border-color: rgba(201,169,110,0.2);
    background: rgba(201,169,110,0.06);
}
.tt-author-box__social-link svg {
    width: 14px;
    height: 14px;
}
.tt-author-box__all-posts {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(201,169,110,0.5);
    text-decoration: none;
    transition: color 0.25s ease;
}
.tt-author-box__all-posts:hover {
    color: rgba(201,169,110,0.85);
}
.tt-author-box__all-posts svg {
    transition: transform 0.25s ease;
}
.tt-author-box__all-posts:hover svg {
    transform: translateX(3px);
}
/* Author Box — Mobile */
@media (max-width: 639px) {
    .tt-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
        padding: 20px 16px;
    }
    .tt-author-box__header {
        justify-content: center;
    }
    .tt-author-box__footer {
        justify-content: center;
    }
    .tt-author-box__avatar img {
        width: 64px;
        height: 64px;
    }
    .tt-author-box__bio {
        -webkit-line-clamp: 4;
    }
}

/* ═══════════════════════════════════════════
   SINGLE POST — Bookmarks Drawer
   ═══════════════════════════════════════════ */
.tt-bookmarks-drawer {
    position: fixed;
    inset: 0;
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease, visibility 300ms ease;
}
.tt-bookmarks-drawer.is-open {
    opacity: 1;
    visibility: visible;
}
.tt-bookmarks-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.tt-bookmarks-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: #111111;
    border-left: 1px solid rgba(201,169,110,0.1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}
.tt-bookmarks-drawer.is-open .tt-bookmarks-drawer__panel {
    transform: translateX(0);
}
.tt-bookmarks-drawer__header {
    display: flex;
    align-items: center;
    padding: 18px 20px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.tt-bookmarks-drawer__title {
    font-size: 10px;
    font-weight: 700;
    color: rgba(201,169,110,0.5);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.tt-bookmarks-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}
.tt-bookmarks-drawer__footer {
    padding: 12px 20px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255,255,255,0.04);
}
.tt-bookmarks-drawer__close {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    padding: 14px 0;
    border-radius: 12px;
    transition: all 200ms ease;
}
.tt-bookmarks-drawer__close:hover {
    background: rgba(201,169,110,0.08);
    border-color: rgba(201,169,110,0.15);
    color: rgba(201,169,110,0.7);
}
/* Drawer items */
.tt-bookmarks-drawer__item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 150ms ease;
}
.tt-bookmarks-drawer__item:hover {
    background: rgba(255,255,255,0.02);
}
.tt-bookmarks-drawer__item-link {
    flex: 1;
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    line-height: 1.5;
    transition: color 200ms ease;
}
.tt-bookmarks-drawer__item-link:hover {
    color: rgba(201,169,110,0.8);
}
.tt-bookmarks-drawer__item-date {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,0.2);
    margin-top: 3px;
}
.tt-bookmarks-drawer__item-remove {
    background: none;
    border: none;
    color: rgba(255,255,255,0.15);
    font-size: 11px;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    transition: all 150ms ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.tt-bookmarks-drawer__item-remove:hover {
    color: #e74c3c;
    background: rgba(231,76,60,0.08);
}
/* Empty state */
.tt-bookmarks-drawer__empty {
    text-align: center;
    padding: 48px 20px;
    color: rgba(255,255,255,0.2);
    font-size: 13px;
    font-style: italic;
}

/* ═══════════════════════════════════════════
   PRODUCT QUICK-BROWSE SHEET (bottom nav overlay)
   ═══════════════════════════════════════════ */
.tt-product-sheet {
    position: fixed;
    inset: 0;
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease, visibility 300ms ease;
    pointer-events: none;
}
.tt-product-sheet.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.tt-product-sheet__panel {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}
.tt-product-sheet.is-open .tt-product-sheet__panel {
    transform: translateY(0);
}

/* Header */
.tt-product-sheet__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    flex-shrink: 0;
}
.tt-product-sheet__title {
    font-size: 10px;
    font-weight: 700;
    color: rgba(201,169,110,0.5);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.tt-product-sheet__close-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50%;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 200ms ease;
}
.tt-product-sheet__close-top:hover {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
}

/* Tabs */
.tt-product-sheet__tabs {
    display: flex;
    gap: 8px;
    padding: 12px 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.tt-product-sheet__tabs::-webkit-scrollbar {
    display: none;
}
.tt-product-sheet__tab {
    flex-shrink: 0;
    padding: 8px 16px;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: transparent;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 200ms ease;
    white-space: nowrap;
}
.tt-product-sheet__tab:hover {
    border-color: rgba(201,169,110,0.2);
    color: rgba(255,255,255,0.7);
}
.tt-product-sheet__tab.is-active {
    background: rgba(201,169,110,0.12);
    border-color: rgba(201,169,110,0.25);
    color: var(--gold, #C9A96E);
}

/* Body */
.tt-product-sheet__body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 16px 0;
    -webkit-overflow-scrolling: touch;
}

/* Grid */
.tt-product-sheet__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.tt-product-sheet__grid .tt-product-card {
    opacity: 1;
    transform: none;
}

/* Skeleton loading */
.tt-product-sheet__skeleton {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.tt-product-sheet__skel-item {
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    overflow: hidden;
}
.tt-product-sheet__skel-img {
    aspect-ratio: 1;
    background: linear-gradient(110deg, rgba(255,255,255,0.04) 30%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 70%);
    background-size: 200% 100%;
    animation: tt-skel-shimmer 1.5s ease-in-out infinite;
}
.tt-product-sheet__skel-text {
    padding: 10px;
}
.tt-product-sheet__skel-line {
    height: 10px;
    border-radius: 4px;
    background: rgba(255,255,255,0.06);
    margin-bottom: 6px;
}
.tt-product-sheet__skel-line:last-child {
    width: 60%;
    margin-bottom: 0;
}
@keyframes tt-skel-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* View all link */
.tt-product-sheet__viewall {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 20px 0 8px;
    color: var(--gold, #C9A96E);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 200ms ease;
}
.tt-product-sheet__viewall:hover {
    opacity: 0.7;
}

/* Footer */
.tt-product-sheet__footer {
    padding: 12px 20px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255,255,255,0.04);
    flex-shrink: 0;
}
.tt-product-sheet__close-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    padding: 14px 0;
    border-radius: 12px;
    transition: all 200ms ease;
}
.tt-product-sheet__close-bottom:hover {
    background: rgba(201,169,110,0.08);
    border-color: rgba(201,169,110,0.15);
    color: rgba(201,169,110,0.7);
}

/* Desktop: wider grid */
@media (min-width: 769px) {
    .tt-product-sheet__panel {
        max-width: 680px;
        margin: 0 auto;
        inset: 40px;
        border-radius: 16px;
        border: 1px solid rgba(201,169,110,0.08);
        transform: translateY(40px);
        opacity: 0;
    }
    .tt-product-sheet.is-open .tt-product-sheet__panel {
        transform: translateY(0);
        opacity: 1;
    }
    .tt-product-sheet__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .tt-product-sheet__skeleton {
        grid-template-columns: repeat(3, 1fr);
    }
    .tt-product-sheet.is-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }
}

/* ═══════════════════════════════════════════
   SINGLE POST — Related Posts (luxury cards)
   ═══════════════════════════════════════════ */
.tt-related {
    margin-top: 48px;
    padding-top: 0;
    position: relative;
}
/* Decorative gold separator above */
.tt-related::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: 32px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201,169,110,0.25) 20%,
        rgba(201,169,110,0.4) 50%,
        rgba(201,169,110,0.25) 80%,
        transparent 100%);
}
/* Diamond center ornament on separator */
.tt-related::after {
    content: '\25C6';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: rgba(201,169,110,0.4);
    background: var(--bg-void, #0a0a0a);
    padding: 0 12px;
    z-index: 1;
}
.tt-related__title {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    color: rgba(201,169,110,0.5);
    margin-bottom: 24px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
}
.tt-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.tt-related__card {
    border-radius: 12px;
    overflow: hidden;
    background:
        linear-gradient(165deg,
            rgba(255,255,255,0.025) 0%,
            rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}
.tt-related__card:hover {
    border-color: rgba(201,169,110,0.15);
    transform: translateY(-3px);
    box-shadow:
        0 12px 32px rgba(0,0,0,0.35),
        0 0 0 1px rgba(201,169,110,0.06);
}
.tt-related__card a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-bottom: none;
}
.tt-related__thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(15,15,15,0.5);
    position: relative;
}
/* Subtle vignette on thumbnails */
.tt-related__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(0,0,0,0.4) 0%,
            transparent 50%);
    pointer-events: none;
}
.tt-related__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                filter 0.6s ease;
}
.tt-related__card:hover .tt-related__thumb img {
    transform: scale(1.05);
}
.tt-related__body {
    padding: 16px 18px 18px;
}
.tt-related__cat {
    display: inline-block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(201,169,110,0.55);
    margin-bottom: 8px;
    padding: 3px 8px;
    background: rgba(201,169,110,0.06);
    border-radius: 4px;
    transition: color 0.3s ease;
}
.tt-related__card:hover .tt-related__cat {
    color: rgba(201,169,110,0.8);
}
.tt-related__card-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255,255,255,0.72);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    transition: color 0.3s ease;
}
.tt-related__card:hover .tt-related__card-title {
    color: rgba(255,255,255,0.92);
}

/* ═══════════════════════════════════════════
   SINGLE POST — Post Navigation Cards
   ═══════════════════════════════════════════ */
.tt-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}
.tt-post-nav__card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 130px;
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.tt-post-nav__card:hover {
    transform: translateY(-3px);
    border-color: rgba(201,169,110,0.12);
    box-shadow:
        0 12px 32px rgba(0,0,0,0.35),
        0 0 40px rgba(201,169,110,0.03);
}
.tt-post-nav__card a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 20px;
    text-decoration: none;
    position: relative;
    z-index: 2;
    border-bottom: none;
}
.tt-post-nav__card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.tt-post-nav__card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.tt-post-nav__card:hover .tt-post-nav__card-bg img {
    transform: scale(1.04);
}
.tt-post-nav__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.45) 45%,
        rgba(0,0,0,0.15) 100%);
    z-index: 1;
}
.tt-post-nav__card--no-thumb {
    background:
        linear-gradient(165deg,
            rgba(255,255,255,0.025) 0%,
            rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.05);
}
.tt-post-nav__card--no-thumb::after { display: none; }
.tt-post-nav__label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(201,169,110,0.5);
    margin-bottom: 6px;
    display: block;
    transition: color 0.3s ease;
}
.tt-post-nav__card:hover .tt-post-nav__label {
    color: rgba(201,169,110,0.75);
}
.tt-post-nav__card-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    color: rgba(255,255,255,0.82);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    transition: color 0.3s ease;
}
.tt-post-nav__card:hover .tt-post-nav__card-title {
    color: #fff;
}
.tt-post-nav__card--no-thumb .tt-post-nav__card-title {
    color: rgba(255,255,255,0.6);
}
.tt-post-nav__card--next { text-align: right; }
.tt-post-nav__card--next a { align-items: flex-end; }

/* ═══════════════════════════════════════════
   SINGLE POST — TOC (Sidebar — desktop)
   ═══════════════════════════════════════════ */
.tt-toc {
    position: relative;
    padding: 24px 20px 20px;
    border: 1px solid rgba(201,169,110,0.12);
    border-radius: 14px;
    margin-bottom: 24px;
    background: linear-gradient(165deg, rgba(201,169,110,0.04) 0%, rgba(20,18,15,0.6) 40%, rgba(15,15,15,0.8) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
}
.tt-toc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(201,169,110,0.5), rgba(201,169,110,0.15), transparent);
}
.tt-toc__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    color: rgba(201,169,110,0.55);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding-bottom: 14px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.tt-toc__title::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1.5px solid rgba(201,169,110,0.35);
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
}
.tt-toc__title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(201,169,110,0.1), transparent);
}
.tt-toc__list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: tt-toc;
}
.tt-toc__list li {
    margin-bottom: 0;
    counter-increment: tt-toc;
}
.tt-toc__list a {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 9px 10px 9px 12px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.4);
    border-radius: 6px;
    border-left: 2px solid transparent;
    transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    line-height: 1.45;
    position: relative;
}
.tt-toc__list a::before {
    content: counter(tt-toc, decimal-leading-zero);
    font-size: 10px;
    font-weight: 700;
    color: rgba(201,169,110,0.2);
    letter-spacing: -0.02em;
    flex-shrink: 0;
    min-width: 16px;
    transition: color 0.25s ease;
}
.tt-toc__list a:hover {
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.02);
}
.tt-toc__list a:hover::before {
    color: rgba(201,169,110,0.4);
}
.tt-toc__list a.tt-toc--active {
    color: rgba(201,169,110,0.85);
    border-left-color: rgba(201,169,110,0.5);
    background: rgba(201,169,110,0.05);
}
.tt-toc__list a.tt-toc--active::before {
    color: rgba(201,169,110,0.6);
}

/* TOC mobile FAB + Drawer — hidden on desktop */
.tt-toc-fab { display: none; }
.tt-toc-drawer { display: none; }

/* ═══════════════════════════════════════════
   SINGLE POST — Gutenberg Block Overrides
   Kill ALL separators, spacers, gaps
   ═══════════════════════════════════════════ */
.tt-post__content .wp-block-separator,
.tt-post__content hr.wp-block-separator,
.tt-post__content .wp-block-separator.is-style-wide,
.tt-post__content .wp-block-separator.is-style-dots,
.tt-post__content .wp-block-separator.is-style-default {
    border: none !important;
    height: 0 !important;
    margin: 20px 0 !important;
    padding: 0 !important;
    background: none !important;
    opacity: 0 !important;
    max-width: 100% !important;
}
.tt-post__content .wp-block-separator.is-style-dots::before {
    display: none !important;
}
/* Kill spacer blocks */
.tt-post__content .wp-block-spacer {
    height: 20px !important;
    min-height: 0 !important;
}

/* ── WP Block Overflow Protection — prevent horizontal overflow ── */
.tt-post__content .wp-block-group,
.tt-post__content .wp-block-columns,
.tt-post__content .wp-block-cover,
.tt-post__content .wp-block-media-text,
.tt-post__content .wp-block-embed,
.tt-post__content .wp-block-video,
.tt-post__content .wp-block-image {
    max-width: 100%;
}
/* Kill wide/full alignments inside constrained content */
.tt-post__content .alignfull,
.tt-post__content .alignwide {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}
.tt-post__content .wp-block-embed__wrapper {
    max-width: 100%;
    overflow: hidden;
}
.tt-post__content iframe {
    max-width: 100%;
}
/* GenerateBlocks + catch-all: prevent any child from blowing out width */
.tt-post__content [class*="gb-container"],
.tt-post__content [class*="gb-grid"] {
    max-width: 100% !important;
    overflow-x: hidden;
}
.tt-post__content > * {
    max-width: 100%;
}
/* Override inline styles from WP/GenerateBlocks that force fixed widths */
.tt-post__content > div[style],
.tt-post__content > section[style],
.tt-post__content > p[style] {
    max-width: 100% !important;
    width: auto !important;
}
/* Figures can be deeply nested (inside .image-gallery, divs, etc.) */
.tt-post__content figure[style] {
    max-width: 100% !important;
    width: auto !important;
}
/* WP alignment classes — center, left, right */
.tt-post__content .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}
.tt-post__content .alignleft {
    float: left;
    margin: 4px 20px 12px 0;
    max-width: 50%;
}
.tt-post__content .alignright {
    float: right;
    margin: 4px 0 12px 20px;
    max-width: 50%;
}
/* WP caption figures */
.tt-post__content .wp-caption {
    max-width: 100%;
}
.tt-post__content .wp-caption img {
    display: block;
    max-width: 100%;
    height: auto;
}
/* Override inline light-theme backgrounds from old WP editor */
.tt-post__content [style*="background"] {
    background-color: rgba(255,255,255,0.04) !important;
    background-image: none !important;
    color: rgba(255,255,255,0.72) !important;
}
/* Kill calc-based full-width hacks that cause overflow */
.tt-post__content .alignfull[style*="margin"],
.tt-post__content .alignwide[style*="margin"] {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* ── Empty anchor bookmarks — CSS fallback ── */
/* Main fix is PHP filter (position:absolute inline style).
   This catches any remaining truly-empty anchors. */
.tt-post__content a:empty {
    font-size: 0;
    line-height: 0;
    margin: 0;
    padding: 0;
}
/* Pillar CTA links — kill extra WP content inside, keep only title+desc */
.tt-post__content .ttj-pillar-cta__link > *:not(.ttj-pillar-cta__link-title):not(.ttj-pillar-cta__link-desc) {
    display: none !important;
}
.tt-post__content .ttj-pillar-cta__link p {
    margin: 0;
    padding: 0;
}

/* ═══════════════════════════════════════════
   SINGLE POST — Responsive
   ═══════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1023px) {
    .tt-post-hero { min-height: 30vh; }
    .tt-post-header__title { font-size: clamp(1.3rem, 3.2vw, 1.8rem); }
    .tt-related__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .tt-post-nav { grid-template-columns: 1fr; gap: 12px; }
    .tt-post-nav__card--next { text-align: left; }
    .tt-post-nav__card--next a { align-items: flex-start; }
}

/* Mobile */
@media (max-width: 639px) {
    .tt-post-hero { min-height: 25vh; }

    .tt-post-header { margin-bottom: 20px; padding-bottom: 18px; }
    .tt-post-header__title { font-size: 1.25rem; line-height: 1.25; }
    .tt-post-header__cat { font-size: 9px; padding: 3px 10px; }
    .tt-post-header__meta { gap: 8px; font-size: 11px; }

    .tt-post__content,
    .tt-page__content { font-size: 15px; line-height: 1.8; }
    .tt-post__content h2 { font-size: 1.15rem; margin-top: 28px; gap: 10px; padding: 0 0 10px 0; }
    .tt-post__content h2::before { font-size: 1.5rem; }
    .tt-post__content h3 { font-size: 1rem; margin-top: 22px; padding-left: 12px; }
    .tt-post__content h4 { font-size: 0.85rem; margin-top: 18px; }
    /* ── Responsive Tables ── */
    .tt-table-wrap { max-height: 360px; }
    .tt-post__content th,
    .tt-post__content td,
    .tt-page__content th,
    .tt-page__content td { padding: 8px 12px; font-size: 13px; }
    .tt-post__content thead th,
    .tt-page__content thead th { font-size: 11px; padding: 8px 12px; }

    .tt-toc { display: none; }

    .tt-feedback { margin-top: 32px; padding: 20px 16px; }
    .tt-feedback__question { font-size: 14px; }
    .tt-feedback__buttons { flex-direction: column; gap: 8px; }
    .tt-feedback__btn { justify-content: center; width: 100%; }
    .tt-feedback__form { max-width: 100%; }

    /* Reading Toolbar — horizontal fixed bar on mobile (bottom) */
    .tt-reading-toolbar {
        position: fixed;
        left: 50%;
        top: auto;
        bottom: calc(60px + 12px + env(safe-area-inset-bottom, 0px));
        transform: translateX(-50%);
        flex-direction: row;
        gap: 4px;
        border-radius: 24px;
        padding: 6px 14px;
        width: auto;
        margin: 0;
        /* Always visible on mobile — skip JS IntersectionObserver */
        opacity: 1 !important;
        visibility: visible !important;
    }
    .tt-reading-toolbar::before {
        display: none;
    }
    /* Hide per-button tooltips on mobile (use banner instead) */
    .tt-reading-toolbar__btn[data-tooltip]::after {
        display: none;
    }
    /* Toasts: above toolbar on mobile */
    .tt-bookmark-toast,
    .tt-tts-toast {
        left: 50%;
        top: auto;
        bottom: calc(100% + 8px);
        transform: translateX(-50%);
    }
    .tt-reading-toolbar__btn {
        width: 36px;
        height: 36px;
    }
    .tt-reading-toolbar__btn svg {
        width: 15px;
        height: 15px;
    }
    /* Panels: drop above toolbar on mobile */
    .tt-reading-toolbar__panel {
        position: absolute;
        left: 50%;
        top: auto;
        bottom: calc(100% + 8px);
        transform: translateX(-50%) scale(0.95) translateY(4px);
    }
    .tt-reading-toolbar__panel.is-open {
        transform: translateX(-50%) scale(1) translateY(0);
    }
    /* Bookmarks drawer — full width */
    .tt-bookmarks-drawer__panel {
        width: 100%;
        max-width: 100vw;
    }
    /* Toast: above toolbar on mobile */
    .tt-bookmark-toast {
        left: 50%;
        top: auto;
        bottom: calc(100% + 8px);
        transform: translateX(-50%);
    }

    .tt-related { margin-top: 32px; }
    .tt-related__grid { grid-template-columns: 1fr; gap: 12px; }
    .tt-related__card { border-radius: 10px; }
    .tt-post-nav__card { min-height: 100px; border-radius: 10px; }

    /* Editorial boxes — mobile */
    .ttj-editorial-standards-box,
    .key-takeaways-container,
    .ttj-decision-support,
    .ttj-science-summary,
    .ttj-actionable-steps,
    .ttj-buy-smart,
    .disclaimer-box {
        margin: 24px 0;
        padding: 18px 16px;
        font-size: 0.85rem;
        border-radius: 10px;
    }
    .tt-post__content .ttj-editorial-standards-box > h3,
    .tt-post__content .key-takeaways-container > h2,
    .tt-post__content .ttj-decision-support > h4,
    .tt-post__content .ttj-science-summary > h4,
    .tt-post__content .ttj-actionable-steps > h4,
    .tt-post__content .ttj-buy-smart > h4 {
        font-size: 0.85rem;
        margin-bottom: 10px;
        padding-bottom: 8px;
    }

    /* Pillar CTA — mobile */
    .ttj-pillar-cta { margin: 24px 0; border-radius: 10px; }
    .ttj-pillar-cta__header { padding: 20px 16px 16px; }
    .tt-post__content .ttj-pillar-cta__title { font-size: 0.95rem; }
    .ttj-pillar-cta__desc { font-size: 0.82rem; }
    .ttj-pillar-cta__list { padding: 4px 8px; }
    .ttj-pillar-cta__link { padding: 12px 8px; }
    .ttj-pillar-cta__link-title { font-size: 0.85rem; }
    .ttj-pillar-cta__link-desc { font-size: 0.78rem; }
    .ttj-pillar-cta__actions { padding: 12px 16px 18px; }
    .ttj-pillar-cta__btn { padding: 9px 22px; font-size: 0.84rem; }

    /* FAQ accordion — mobile */
    .tt-post__content details summary { padding: 14px 40px 14px 16px; font-size: 0.87rem; }
    .tt-post__content details summary::after { right: 14px; }
    .tt-post__content .details-content,
    .tt-post__content details > div { padding: 0 16px 14px; font-size: 0.85rem; }

    /* References — mobile */
    .references-section { margin: 36px 0 16px; padding: 18px 16px 14px; }
    .references-section li { font-size: 0.75rem; }
    .references-section a { font-size: 0.72rem; }

    /* Drop cap smaller on mobile */
    .tt-post__content .tt-dropcap::first-letter {
        font-size: 2.8em;
        margin: 4px 10px 0 0;
    }

    /* TOC FAB — premium floating button */
    .tt-toc-fab {
        display: flex;
        position: fixed;
        top: 40%;
        right: 14px;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(30,28,24,0.95), rgba(20,18,15,0.98));
        border: 1px solid rgba(201,169,110,0.2);
        color: rgba(201,169,110,0.6);
        align-items: center;
        justify-content: center;
        z-index: 101;
        cursor: pointer;
        box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,169,110,0.05);
        transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .tt-toc-fab:active {
        transform: scale(0.92);
        border-color: rgba(201,169,110,0.35);
    }
    .tt-toc-fab svg { width: 17px; height: 17px; }

    /* TOC Drawer — luxury bottom sheet */
    .tt-toc-drawer {
        position: fixed;
        inset: 0;
        z-index: 200;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .tt-toc-drawer--open {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    .tt-toc-drawer__overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.65);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }
    .tt-toc-drawer__panel {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        max-height: 65vh;
        overflow-y: auto;
        background: linear-gradient(180deg, #1a1816 0%, #121110 100%);
        border-radius: 18px 18px 0 0;
        padding: 0;
        border-top: 1px solid rgba(201,169,110,0.15);
        box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
    }
    .tt-toc-drawer__panel::before {
        content: '';
        display: block;
        width: 36px;
        height: 4px;
        border-radius: 2px;
        background: rgba(255,255,255,0.12);
        margin: 10px auto 0;
    }
    .tt-toc-drawer__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px 12px;
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .tt-toc-drawer__title {
        font-size: 10px;
        font-weight: 700;
        color: rgba(201,169,110,0.5);
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }
    .tt-toc-drawer__close {
        background: none;
        border: none;
        color: rgba(255,255,255,0.25);
        cursor: pointer;
        font-size: 22px;
        line-height: 1;
        padding: 4px 6px;
        border-radius: 6px;
        transition: background 0.15s ease;
    }
    .tt-toc-drawer__close:active {
        background: rgba(255,255,255,0.05);
    }
    .tt-toc-drawer__body {
        padding: 8px 14px 24px;
        counter-reset: tt-toc-m;
    }
    .tt-toc-drawer__item {
        display: flex;
        align-items: baseline;
        gap: 12px;
        padding: 12px 14px;
        font-size: 14px;
        color: rgba(255,255,255,0.5);
        text-decoration: none;
        border-radius: 8px;
        line-height: 1.45;
        transition: all 0.2s ease;
        counter-increment: tt-toc-m;
        border-left: 2px solid transparent;
    }
    .tt-toc-drawer__item::before {
        content: counter(tt-toc-m, decimal-leading-zero);
        font-size: 11px;
        font-weight: 700;
        color: rgba(201,169,110,0.2);
        flex-shrink: 0;
        min-width: 18px;
    }
    .tt-toc-drawer__item:hover,
    .tt-toc-drawer__item:active {
        background: rgba(201,169,110,0.04);
        color: rgba(255,255,255,0.8);
        border-left-color: rgba(201,169,110,0.3);
    }
    .tt-toc-drawer__item:hover::before,
    .tt-toc-drawer__item:active::before {
        color: rgba(201,169,110,0.45);
    }
}

/* ═══════════════════════════════════════════
   SEARCH RESULTS
   ═══════════════════════════════════════════ */
.tt-search-term {
    color: var(--gold);
    font-style: italic;
    font-weight: var(--weight-semi);
    position: relative;
    display: inline-block;
}
.tt-search-term::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold) 20%,
        var(--gold) 80%,
        transparent
    );
    opacity: 0.4;
}

/* ═══════════════════════════════════════════
   404 — NOT FOUND
   ═══════════════════════════════════════════ */
.tt-404 {
    text-align: center;
    padding: var(--space-10) 0;
    max-width: 560px;
    margin: 0 auto;
}
.tt-404__code {
    font-family: var(--font-mono);
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: var(--weight-bold);
    line-height: 1;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-4);
}
.tt-404__title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--weight-light);
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}
.tt-404__desc {
    font-size: var(--text-base);
    color: var(--text-muted);
    margin-bottom: var(--space-6);
    line-height: var(--leading-relaxed);
}
.tt-404__search {
    margin-bottom: var(--space-5);
}
.tt-404__home {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--bg-void);
    background: var(--gold);
    border-radius: var(--radius-full);
    transition: background var(--duration-fast), transform var(--duration-fast);
}
.tt-404__home:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   NO RESULTS
   ═══════════════════════════════════════════ */
.tt-no-results {
    text-align: center;
    padding: var(--space-10) 0;
}
.tt-no-results__title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-regular);
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}
.tt-no-results__desc {
    font-size: var(--text-base);
    color: var(--text-muted);
    margin-bottom: var(--space-5);
    max-width: 50ch;
    margin-inline: auto;
}
.tt-no-results__search {
    max-width: 400px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════
   WP POSTS PAGINATION (archive/search)
   ═══════════════════════════════════════════ */
.pagination,
nav.navigation.pagination {
    margin-top: var(--space-10);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(201, 169, 110, 0.08);
}
.pagination .nav-links,
nav.navigation.pagination .nav-links {
    display: flex;
    gap: var(--space-2);
    justify-content: center;
    flex-wrap: wrap;
}
.pagination .page-numbers,
nav.navigation.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 var(--space-3);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    letter-spacing: 0.02em;
    background: rgba(18, 18, 18, 0.3);
    border: 1px solid rgba(201, 169, 110, 0.12);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--duration-fast);
}
.pagination .page-numbers:hover,
nav.navigation.pagination .page-numbers:hover {
    background: rgba(25, 25, 25, 0.5);
    border-color: rgba(201, 169, 110, 0.3);
    color: var(--gold);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.pagination .page-numbers.current,
nav.navigation.pagination .page-numbers.current {
    background: linear-gradient(
        135deg,
        rgba(201, 169, 110, 0.9),
        rgba(201, 169, 110, 0.7)
    );
    border-color: var(--gold);
    color: var(--bg-void);
    font-weight: var(--weight-semi);
    box-shadow: 0 2px 8px rgba(201, 169, 110, 0.25);
}
.pagination .page-numbers.dots,
nav.navigation.pagination .page-numbers.dots {
    border-color: transparent;
    background: transparent;
    color: rgba(201, 169, 110, 0.3);
    cursor: default;
}
.pagination .page-numbers.dots:hover,
nav.navigation.pagination .page-numbers.dots:hover {
    transform: none;
    box-shadow: none;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — CATEGORIES
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
    .tt-featured-cats__grid {
        gap: var(--space-3);
    }
    .tt-cat-pill {
        font-size: 0.8125rem;
        letter-spacing: 0.14em;
        padding: 12px 26px;
    }
}
@media (max-width: 480px) {
    .tt-featured-cats__grid {
        gap: 6px;
    }
    .tt-cat-pill {
        font-size: 0.7rem;
        letter-spacing: 0.08em;
        padding: 8px 16px;
    }
}

/* ═══════════════════════════════════════════
   SEASONAL EFFECTS — Bốn Mùa
   Same palette (gold/platinum), ultra-subtle
   ═══════════════════════════════════════════ */

/* Seasonal slogan — slightly elevated from regular desc */
.tt-hero--spring .tt-hero__desc,
.tt-hero--summer .tt-hero__desc,
.tt-hero--autumn .tt-hero__desc,
.tt-hero--winter .tt-hero__desc {
    font-size: var(--text-lg);
    color: rgba(200,200,200,0.65);
    letter-spacing: 0.06em;
}

/* ——— XUÂN (Spring) ———
   Dots drift upward like pollen rising
   Warm glow pulses gently on slogan */
.tt-hero--spring.tt-hero--no-image::after {
    background-image: radial-gradient(rgba(201,169,110,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: season-bloom 25s linear infinite;
}
@keyframes season-bloom {
    from { background-position: 0 0; }
    to { background-position: 0 -400px; }
}
.tt-hero--spring .tt-hero__desc {
    animation: spring-glow 6s ease-in-out infinite;
}
@keyframes spring-glow {
    0%, 100% { text-shadow: 0 0 30px rgba(201,169,110,0); }
    50% { text-shadow: 0 0 30px rgba(201,169,110,0.12); }
}

/* ——— HẠ (Summer) ———
   Diagonal light ray sweeps slowly across hero
   Title shimmer speeds up to 5s */
.tt-hero--summer .tt-hero__content::before {
    display: block !important;
    content: '';
    position: absolute;
    inset: -60%;
    background: linear-gradient(
        115deg,
        transparent 42%,
        rgba(201,169,110,0.015) 46%,
        rgba(201,169,110,0.04) 50%,
        rgba(201,169,110,0.015) 54%,
        transparent 58%
    );
    animation: season-ray 16s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes season-ray {
    0%, 100% { transform: translateX(-150%); }
    50% { transform: translateX(150%); }
}
.tt-hero--summer.tt-hero--no-image .tt-hero__title {
    animation: shimmer-sweep 5s ease-in-out infinite;
}
.tt-hero--summer .tt-hero__desc {
    animation: summer-warmth 4s ease-in-out infinite;
}
@keyframes summer-warmth {
    0%, 100% { text-shadow: 0 0 20px rgba(201,169,110,0); }
    50% { text-shadow: 0 0 24px rgba(201,169,110,0.15); }
}

/* ——— THU (Autumn) ———
   Dots drift diagonally downward like falling leaves
   Slogan gently breathes (opacity) */
.tt-hero--autumn.tt-hero--no-image::after {
    background-image: radial-gradient(rgba(201,169,110,0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    animation: season-fall 30s linear infinite;
}
@keyframes season-fall {
    from { background-position: 0 0; }
    to { background-position: 120px 400px; }
}
.tt-hero--autumn .tt-hero__desc {
    animation: autumn-breathe 7s ease-in-out infinite;
}
@keyframes autumn-breathe {
    0%, 100% { opacity: 0.5; text-shadow: none; }
    50% { opacity: 0.85; text-shadow: 0 0 20px rgba(201,169,110,0.06); }
}

/* ——— ĐÔNG (Winter) ———
   Dual-layer frost dots twinkle at different rhythms
   Slogan has platinum frost glow */
.tt-hero--winter.tt-hero--no-image::after {
    background-image:
        radial-gradient(rgba(232,232,232,0.035) 1px, transparent 1px),
        radial-gradient(rgba(201,169,110,0.02) 1px, transparent 1px);
    background-size: 32px 32px, 56px 56px;
    background-position: 0 0, 18px 28px;
    animation: season-twinkle 8s ease-in-out infinite;
}
@keyframes season-twinkle {
    0%, 100% { opacity: 0.3; }
    30% { opacity: 0.9; }
    50% { opacity: 0.4; }
    80% { opacity: 1; }
}
.tt-hero--winter .tt-hero__desc {
    animation: frost-glow 5s ease-in-out infinite;
}
@keyframes frost-glow {
    0%, 100% { text-shadow: 0 0 24px rgba(232,232,232,0); }
    50% { text-shadow: 0 0 24px rgba(232,232,232,0.08); }
}

/* Seasonal responsive */
@media (max-width: 768px) {
    .tt-hero--spring .tt-hero__desc,
    .tt-hero--summer .tt-hero__desc,
    .tt-hero--autumn .tt-hero__desc,
    .tt-hero--winter .tt-hero__desc {
        font-size: var(--text-base);
    }
}

/* ═══════════════════════════════════════════
   CART DRAWER (slide-out mini cart)
   Sitewide — header cart icon on every page
   ═══════════════════════════════════════════ */

/* Keyframes used by cart drawer (duplicated from woocommerce.css for non-WC pages) */
@keyframes tt-cart-fade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes tt-cart-spin {
    to { transform: rotate(360deg); }
}

.tt-cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 10000;
    visibility: hidden;
    pointer-events: none;
}
.tt-cart-drawer.is-open {
    visibility: visible;
    pointer-events: auto;
}
.tt-cart-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.35s ease;
}
.tt-cart-drawer.is-open .tt-cart-drawer__overlay {
    background: rgba(0,0,0,0.6);
}
.tt-cart-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
    border-left: 1px solid rgba(201,169,110,0.15);
    box-shadow: -8px 0 32px rgba(0,0,0,0.4);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.tt-cart-drawer.is-open .tt-cart-drawer__panel {
    transform: translateX(0);
}
/* Header */
.tt-cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-5);
    border-bottom: 1px solid rgba(201,169,110,0.12);
    flex-shrink: 0;
    position: relative;
}
/* Gold accent line under header */
.tt-cart-drawer__header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
}
.tt-cart-drawer__title {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: var(--weight-medium);
    color: var(--text-primary);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    margin: 0;
}
.tt-cart-drawer__title .tt-icon {
    color: var(--gold);
    opacity: 0.7;
}
.tt-cart-drawer__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-full);
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--duration-fast);
}
.tt-cart-drawer__close:hover {
    border-color: rgba(201,169,110,0.3);
    color: var(--text-primary);
}
/* Body — flex column to sticky-bottom total+buttons */
.tt-cart-drawer__body {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}
.tt-cart-drawer .widget_shopping_cart_content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

/* ═══ MINI CART ITEMS (scrollable) ═══ */
.tt-cart-drawer .woocommerce-mini-cart {
    list-style: none;
    margin: 0;
    padding: 0 var(--space-5);
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(201,169,110,0.15) transparent;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}
.tt-cart-drawer .woocommerce-mini-cart::-webkit-scrollbar { width: 4px; }
.tt-cart-drawer .woocommerce-mini-cart::-webkit-scrollbar-track { background: transparent; }
.tt-cart-drawer .woocommerce-mini-cart::-webkit-scrollbar-thumb {
    background: rgba(201,169,110,0.2);
    border-radius: 2px;
}
.tt-cart-drawer .mini_cart_item {
    position: relative;
    padding: var(--space-4) 28px var(--space-4) 0;
    border-bottom: 1px solid rgba(201,169,110,0.08);
    animation: tt-cart-fade 0.3s ease-out;
}
.tt-cart-drawer .mini_cart_item:last-child { border-bottom: none; }
/* Product link (wraps image + name) */
.tt-cart-drawer .mini_cart_item > a:not(.remove) {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    color: var(--text-body);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    line-height: 1.4;
    text-decoration: none;
    transition: color var(--duration-fast);
}
.tt-cart-drawer .mini_cart_item > a:not(.remove):hover { color: var(--gold); }
.tt-cart-drawer .mini_cart_item img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid rgba(201,169,110,0.12);
    flex-shrink: 0;
    background: rgba(15,15,15,0.5);
}
/* Quantity x Price */
.tt-cart-drawer .mini_cart_item .quantity {
    display: block;
    padding-left: calc(68px + var(--space-3));
    margin-top: var(--space-1);
    font-size: var(--text-xs);
    color: var(--text-muted);
    font-family: var(--font-mono);
}
.tt-cart-drawer .mini_cart_item .quantity .woocommerce-Price-amount {
    color: var(--gold);
    font-weight: var(--weight-semi);
}
/* Remove button */
.tt-cart-drawer .mini_cart_item .remove {
    position: absolute;
    top: var(--space-4);
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 18px;
    line-height: 1;
    color: var(--text-muted) !important;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.04);
    text-decoration: none;
    transition: all var(--duration-fast);
}
.tt-cart-drawer .mini_cart_item .remove:hover {
    border-color: rgba(231,76,60,0.5);
    color: var(--danger) !important;
    background: rgba(231,76,60,0.1);
    transform: scale(1.1);
}

/* ═══ MINI CART TOTAL (sticky bottom) ═══ */
.tt-cart-drawer .woocommerce-mini-cart__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) var(--space-5);
    margin: 0;
    border-top: 1px solid rgba(201,169,110,0.15);
    flex-shrink: 0;
    font-size: var(--text-sm);
    color: var(--text-primary);
}
.tt-cart-drawer .woocommerce-mini-cart__total strong {
    font-weight: var(--weight-medium);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    font-size: var(--text-xs);
}
.tt-cart-drawer .woocommerce-mini-cart__total .woocommerce-Price-amount {
    font-family: var(--font-mono);
    font-size: var(--text-lg);
    font-weight: var(--weight-bold);
    color: var(--gold);
}

/* ═══ MINI CART BUTTONS (sticky bottom) ═══ */
.tt-cart-drawer .woocommerce-mini-cart__buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    padding: 0 var(--space-5) var(--space-4);
    margin: 0;
    flex-shrink: 0;
}
.tt-cart-drawer .woocommerce-mini-cart__buttons .button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--weight-bold);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast);
    text-decoration: none;
}
/* View Cart — outline */
.tt-cart-drawer .woocommerce-mini-cart__buttons .button.wc-forward:not(.checkout) {
    color: var(--gold);
    background: transparent;
    border: 1px solid rgba(201,169,110,0.35);
}
.tt-cart-drawer .woocommerce-mini-cart__buttons .button.wc-forward:not(.checkout):hover {
    background: rgba(201,169,110,0.08);
    border-color: rgba(201,169,110,0.6);
}
/* Checkout — gold gradient */
.tt-cart-drawer .woocommerce-mini-cart__buttons .button.checkout {
    color: var(--bg-void) !important;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
    border: none !important;
}
.tt-cart-drawer .woocommerce-mini-cart__buttons .button.checkout:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201,169,110,0.3);
}

/* Continue Shopping — ghost text button */
.tt-continue-shopping {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--duration-fast);
    position: relative;
}
.tt-continue-shopping::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: rgba(201,169,110,0.4);
    transition: width var(--duration-normal) ease;
}
.tt-continue-shopping:hover {
    color: var(--gold);
}
.tt-continue-shopping:hover::after {
    width: 60%;
}
.tt-continue-shopping svg {
    opacity: 0.5;
    transition: opacity var(--duration-fast), transform var(--duration-fast);
}
.tt-continue-shopping:hover svg {
    opacity: 1;
    transform: translateX(-3px);
}

/* ═══ EMPTY CART STATE ═══ */
.tt-cart-drawer .woocommerce-mini-cart__empty-message {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-8) var(--space-5);
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
}
.tt-cart-drawer .woocommerce-mini-cart__empty-message::before {
    content: '';
    display: block;
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-3);
    border: 2px solid rgba(201,169,110,0.2);
    border-radius: var(--radius-full);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23c9a96e' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Cpath d='M6 2L3 6v14a2 2 0 002 2h14a2 2 0 002-2V6l-3-4z'/%3E%3Cline x1='3' y1='6' x2='21' y2='6'/%3E%3Cpath d='M16 10a4 4 0 01-8 0'/%3E%3C/svg%3E") center / 24px no-repeat;
    opacity: 0.4;
}

/* ═══ CART DRAWER — LOADING STATE ═══ */
.tt-cart-drawer__panel.is-loading .tt-cart-drawer__body {
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.tt-cart-drawer__panel.is-loading .tt-cart-drawer__body::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    margin: -14px 0 0 -14px;
    border: 2px solid rgba(201,169,110,0.15);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: tt-cart-spin 0.6s linear infinite;
    z-index: 2;
}

/* ═══ CART DRAWER — ITEM REMOVING ═══ */
.tt-cart-drawer .mini_cart_item.is-removing {
    pointer-events: none;
    opacity: 0.3;
    transform: translateX(30px);
    transition: all 0.3s ease;
}

/* ═══ CART DRAWER — HEADER COUNT ═══ */
.tt-cart-drawer__count {
    font-size: var(--text-sm);
    font-family: var(--font-mono);
    color: var(--gold);
    opacity: 0.6;
    font-weight: var(--weight-regular);
}

/* ═══ CART DRAWER — SCROLL SHADOWS ═══ */
.tt-cart-drawer__body.has-scroll-top::before,
.tt-cart-drawer__body.has-scroll-bottom::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 24px;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.2s ease;
}
.tt-cart-drawer__body.has-scroll-top::before {
    top: 0;
    background: linear-gradient(to bottom, var(--bg-primary) 0%, transparent 100%);
}
.tt-cart-drawer__body.has-scroll-bottom::after {
    bottom: 0;
    background: linear-gradient(to top, var(--bg-primary) 0%, transparent 100%);
}

/* ═══════════════════════════════════════════
   CART DRAWER — ENHANCED UX
   Variation tags, name clamp, qty controls,
   free shipping bar, responsive, shimmer
   ═══════════════════════════════════════════ */

/* ── Variation data → compact inline pill tags ── */
.tt-cart-drawer .mini_cart_item dl.variation {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding-left: calc(68px + var(--space-3));
    margin: 6px 0 0;
}
.tt-cart-drawer .mini_cart_item dl.variation dt {
    display: none;
}
.tt-cart-drawer .mini_cart_item dl.variation dd {
    margin: 0;
    padding: 2px 10px;
    font-size: 0.6875rem;
    color: rgba(201,169,110,0.7);
    background: rgba(201,169,110,0.05);
    border: 1px solid rgba(201,169,110,0.12);
    border-radius: var(--radius-full);
    line-height: 1.5;
}
.tt-cart-drawer .mini_cart_item dl.variation dd p {
    margin: 0;
}

/* ── Product name — max 2 lines ── */
.tt-cart-drawer .tt-mini-cart-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

/* ── Free shipping progress bar ── */
.tt-shipping-bar {
    padding: var(--space-3) var(--space-5);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}
.tt-shipping-bar__text {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0 0 var(--space-2);
    line-height: 1.5;
    text-align: center;
}
.tt-shipping-bar__text strong {
    color: var(--gold);
    font-weight: var(--weight-semi);
}
.tt-shipping-bar__text em {
    font-style: normal;
    color: var(--text-body);
}
.tt-shipping-bar__text--done {
    color: var(--success);
}
.tt-shipping-bar__text--done em {
    color: var(--success);
}
.tt-shipping-bar__track {
    height: 3px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    overflow: hidden;
}
.tt-shipping-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dim), var(--gold));
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Qty +/- controls ── */
.tt-cart-drawer .tt-mini-qty {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding-left: calc(68px + var(--space-3));
    margin-top: var(--space-2);
}
.tt-mini-qty__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,169,110,0.12);
    border-radius: var(--radius-full);
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
    transition: all var(--duration-fast);
    padding: 0;
    line-height: 1;
}
.tt-mini-qty__btn:hover {
    border-color: rgba(201,169,110,0.4);
    color: var(--gold);
    background: rgba(201,169,110,0.06);
}
.tt-mini-qty__val {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: var(--text-primary);
    min-width: 20px;
    text-align: center;
    font-weight: var(--weight-medium);
}
.tt-mini-qty__price {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    font-weight: var(--weight-semi);
    color: var(--gold);
}
.tt-mini-qty.is-updating {
    opacity: 0.4;
    pointer-events: none;
}

/* ── Checkout button shimmer ── */
.tt-cart-drawer .woocommerce-mini-cart__buttons .button.checkout {
    position: relative;
    overflow: hidden;
}
.tt-cart-drawer .woocommerce-mini-cart__buttons .button.checkout::after {
    content: '';
    position: absolute;
    inset: -50%;
    background: linear-gradient(
        115deg,
        transparent 40%,
        rgba(255,255,255,0.12) 48%,
        rgba(255,255,255,0.2) 50%,
        rgba(255,255,255,0.12) 52%,
        transparent 60%
    );
    animation: tt-shimmer-checkout 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes tt-shimmer-checkout {
    0%, 100% { transform: translateX(-200%); }
    50% { transform: translateX(200%); }
}

/* ── Empty state CTA button ── */
.tt-empty-cart-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    margin: 0 var(--space-5) var(--space-4);
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--weight-bold);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--gold);
    background: transparent;
    border: 1px solid rgba(201,169,110,0.3);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--duration-fast);
    flex-shrink: 0;
}
.tt-empty-cart-cta:hover {
    background: rgba(201,169,110,0.08);
    border-color: rgba(201,169,110,0.6);
    color: var(--gold);
}

/* ── Empty cart: Close drawer button (below CTA) ── */
.tt-cart-drawer-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: calc(100% - var(--space-5) * 2);
    height: 44px;
    margin: 0 var(--space-5) var(--space-4);
    margin-bottom: max(var(--space-4), env(safe-area-inset-bottom));
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 200ms ease;
}
.tt-cart-drawer-close-btn:hover {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.65);
}

/* ── Footer separator enhancement ── */
.tt-cart-drawer .woocommerce-mini-cart__total {
    border-top-color: rgba(201,169,110,0.2);
}

/* ── Item numbering (inline) ── */
.tt-cart-item-num {
    color: var(--gold);
    opacity: 0.7;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    text-shadow: 0 0 12px rgba(201,169,110,0.15);
}

/* ═══ CART DRAWER — RESPONSIVE ═══ */
@media (max-width: 768px) {
    .tt-cart-drawer__panel {
        width: 100%;
        max-width: 100%;
    }
    .tt-cart-drawer__header {
        padding: var(--space-3) var(--space-4);
    }
    .tt-cart-drawer .woocommerce-mini-cart {
        padding: 0 var(--space-4);
    }
    .tt-shipping-bar {
        padding: var(--space-3) var(--space-4);
    }
    .tt-cart-drawer .mini_cart_item img {
        width: 60px;
        height: 60px;
    }
    .tt-cart-drawer .mini_cart_item dl.variation,
    .tt-cart-drawer .tt-mini-qty {
        padding-left: calc(60px + var(--space-3));
    }
    .tt-cart-drawer .mini_cart_item .remove {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    .tt-cart-drawer .woocommerce-mini-cart__total {
        padding: var(--space-3) var(--space-4);
    }
    .tt-cart-drawer .woocommerce-mini-cart__buttons {
        padding: 0 var(--space-4) var(--space-3);
    }
    .tt-empty-cart-cta {
        margin: 0 var(--space-4) var(--space-3);
    }
}
@media (max-width: 480px) {
    .tt-cart-drawer .mini_cart_item > a:not(.remove) {
        font-size: 0.8125rem;
    }
    .tt-cart-drawer .mini_cart_item img {
        width: 56px;
        height: 56px;
    }
    .tt-cart-drawer .mini_cart_item dl.variation,
    .tt-cart-drawer .tt-mini-qty {
        padding-left: calc(56px + var(--space-3));
    }
    .tt-mini-qty__btn {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    .tt-cart-drawer .mini_cart_item .remove {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }
}

/* ═══ CART DRAWER — REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
    .tt-cart-drawer .mini_cart_item { animation: none; }
    .tt-shipping-bar__fill { transition: none; }
    .tt-cart-drawer .woocommerce-mini-cart__buttons .button.checkout::after { animation: none; }
}

/* ═══ SCROLL TO TOP BUTTON ═══ */
.tt-scroll-top {
    position: fixed;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(201,169,110,0.25);
    border-radius: 50%;
    background: rgba(14,14,14,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--gold);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: opacity 0.3s ease,
                visibility 0.3s ease,
                transform 0.3s ease,
                background 0.2s ease,
                border-color 0.2s ease,
                box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3),
                0 0 0 0 rgba(201,169,110,0);
}

.tt-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.tt-scroll-top:hover {
    background: rgba(201,169,110,0.15);
    border-color: rgba(201,169,110,0.5);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4),
                0 0 20px rgba(201,169,110,0.15);
    transform: translateY(-2px) scale(1);
}

.tt-scroll-top:active {
    transform: translateY(0) scale(0.95);
}

.tt-scroll-top svg {
    flex-shrink: 0;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.tt-scroll-top:hover svg {
    opacity: 1;
}

/* Position variants — controlled by inline style from admin settings */
/* .tt-scroll-top--left, .tt-scroll-top--right handled by inline bottom/left/right */

@media (max-width: 768px) {
    .tt-scroll-top {
        /* Mobile size controlled by inline style */
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .tt-scroll-top {
        transition: opacity 0.2s ease, visibility 0.2s ease;
        transform: none !important;
    }
    .tt-scroll-top.is-visible {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tt-reading-toolbar,
    .tt-reading-toolbar__panel,
    .tt-reading-toolbar__btn,
    .tt-bookmarks-drawer,
    .tt-bookmarks-drawer__panel {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
    #tt-tts-btn.is-playing {
        animation: none;
        box-shadow: 0 0 0 3px rgba(201,169,110,0.2);
    }
    #tt-bookmark-btn.is-animating {
        animation: none;
    }
    .tt-reading-toolbar.is-first-visit .tt-reading-toolbar__btn[data-tooltip]::after {
        animation: none;
        opacity: 1;
        visibility: visible;
    }
    .tt-reading-toolbar.is-first-visit .tt-reading-toolbar__btn {
        animation: none;
    }
    .tt-toolbar-guide {
        animation: none;
        opacity: 1;
    }
}

/* ═══ FORM INPUTS — Radio & Checkbox Custom Styling ═══ */

/* Hide default radio/checkbox */
input[type="radio"],
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    margin: 0;
    margin-right: var(--space-2);
    vertical-align: middle;
    flex-shrink: 0;
    cursor: pointer;
    transition: border-color 0.2s ease,
                background 0.2s ease,
                box-shadow 0.2s ease;
}

/* Checkbox — square with rounded corners */
input[type="checkbox"] {
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    background: rgba(30,30,30,0.8);
    position: relative;
}

input[type="checkbox"]:hover {
    border-color: rgba(201,169,110,0.4);
}

input[type="checkbox"]:checked {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(201,169,110,0.2), rgba(201,169,110,0.1));
}

/* Checkmark icon */
input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid var(--gold);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

input[type="checkbox"]:focus-visible {
    outline: 2px solid rgba(201,169,110,0.5);
    outline-offset: 2px;
}

/* Radio — circular */
input[type="radio"] {
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    background: rgba(30,30,30,0.8);
    position: relative;
}

input[type="radio"]:hover {
    border-color: rgba(201,169,110,0.4);
}

input[type="radio"]:checked {
    border-color: var(--gold);
    background: rgba(201,169,110,0.1);
}

/* Radio dot */
input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 6px rgba(201,169,110,0.4);
}

input[type="radio"]:focus-visible {
    outline: 2px solid rgba(201,169,110,0.5);
    outline-offset: 2px;
}

/* Disabled state */
input[type="radio"]:disabled,
input[type="checkbox"]:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Labels with radio/checkbox */
label:has(> input[type="radio"]),
label:has(> input[type="checkbox"]) {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}


/* ═══════════════════════════════════════════
   PRINT STYLESHEET — Optimized for Printing
   ═══════════════════════════════════════════ */

@media print {
    /* Reset colors for print */
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    /* Hide non-essential elements */
    header,
    footer,
    nav,
    .tt-header,
    .tt-footer,
    .tt-cart-drawer,
    .tt-scroll-top,
    .tt-product-bar,
    .tt-mobile-nav,
    button,
    .button,
    .woocommerce-message,
    .woocommerce-error,
    .woocommerce-info,
    #wpadminbar {
        display: none !important;
    }

    /* Show full URLs for links */
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }

    /* Don't show URLs for anchors or images */
    a[href^="#"]:after,
    a[href^="javascript:"]:after,
    a.no-print-url:after {
        content: "";
    }

    /* Page breaks */
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        page-break-inside: avoid;
    }

    img {
        page-break-inside: avoid;
        max-width: 100% !important;
    }

    p, blockquote {
        orphans: 3;
        widows: 3;
    }

    /* Product page specific */
    .woocommerce-product-gallery {
        max-width: 400px;
        float: left;
        margin-right: 2em;
    }

    .tt-product-summary {
        overflow: visible;
    }

    .woocommerce-product-details__short-description,
    .woocommerce-Tabs-panel {
        page-break-before: auto;
    }

    /* Ensure prices and important info are visible */
    .price,
    .stock,
    .product_meta {
        font-weight: bold;
        border: 1px solid #ddd;
        padding: 0.5em;
        margin: 0.5em 0;
    }

    /* Cart/Checkout tables */
    table {
        border-collapse: collapse;
        width: 100%;
    }

    th, td {
        border: 1px solid #ddd;
        padding: 0.5em;
        text-align: left;
    }

    /* Clean margins */
    @page {
        margin: 2cm;
    }

    body {
        margin: 0;
        padding: 0;
    }
}

/* Search Results CSS */
.tt-search-tabs{display:flex;align-items:center;justify-content:space-between;gap:var(--space-4);margin-bottom:var(--space-6);padding-bottom:var(--space-4);border-bottom:1px solid rgba(201,169,110,0.12)}
.tt-search-tabs__nav{display:flex;gap:var(--space-1)}
.tt-search-tab{position:relative;padding:var(--space-2) var(--space-4);font-size:var(--text-sm);font-weight:var(--weight-medium);letter-spacing:0.02em;color:rgba(255,255,255,0.5);background:transparent;border:1px solid transparent;border-radius:var(--radius-sm);cursor:pointer;transition:all var(--duration-fast)}
.tt-search-tab:hover{color:var(--gold);background:rgba(201,169,110,0.05)}
.tt-search-tab.active{color:var(--gold);background:rgba(201,169,110,0.1);border-color:rgba(201,169,110,0.2)}
.tt-search-tab__count{margin-left:var(--space-1);font-size:var(--text-xs);opacity:0.7}
.tt-search-view-toggle{display:none;gap:var(--space-1)}
.tt-search-view-toggle.active{display:flex}
.tt-view-toggle-btn{display:flex;align-items:center;justify-content:center;width:38px;height:38px;background:rgba(18,18,18,0.3);border:1px solid rgba(201,169,110,0.12);border-radius:var(--radius-sm);color:rgba(255,255,255,0.4);cursor:pointer;transition:all var(--duration-fast)}
.tt-view-toggle-btn:hover{border-color:rgba(201,169,110,0.3);color:var(--gold);background:rgba(25,25,25,0.5)}
.tt-view-toggle-btn.active{background:rgba(201,169,110,0.1);border-color:rgba(201,169,110,0.3);color:var(--gold)}
.tt-search-tab-content{display:none}
.tt-search-tab-content.active{display:block}
.tt-search-badge{position:absolute;top:8px;right:8px;z-index:10;display:inline-flex;align-items:center;gap:3px;padding:3px 7px;font-size:8px;font-weight:var(--weight-semi);letter-spacing:0.04em;text-transform:uppercase;border-radius:3px;backdrop-filter:blur(6px)}
.tt-search-badge svg{width:8px;height:8px;opacity:0.7}
.tt-search-badge--product{background:rgba(201,169,110,0.15);border:1px solid rgba(201,169,110,0.3);color:var(--gold)}
.tt-search-badge--post{background:rgba(100,116,139,0.15);border:1px solid rgba(148,163,184,0.3);color:#94a3b8}
.tt-search-results-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:var(--space-4);margin-bottom:var(--space-6)}
.tt-search-product-card{position:relative;display:flex;flex-direction:column;background:linear-gradient(135deg,rgba(18,18,18,0.4),rgba(25,25,25,0.3));border:1px solid rgba(201,169,110,0.08);border-radius:var(--radius-lg);overflow:hidden;transition:all var(--duration-normal)}
.tt-search-product-card:hover{border-color:rgba(201,169,110,0.2);box-shadow:0 8px 24px rgba(0,0,0,0.4);transform:translateY(-2px)}
.tt-search-product-card__image-link{position:relative;display:block;aspect-ratio:1;background:var(--bg-void);border-bottom:1px solid rgba(201,169,110,0.08);overflow:hidden}
.tt-search-product-card__image{width:100%;height:100%;object-fit:contain;transition:transform var(--duration-slow)}
.tt-search-product-card__image--placeholder{background:linear-gradient(135deg,rgba(30,30,30,0.5),rgba(40,40,40,0.3))}
.tt-search-product-card:hover .tt-search-product-card__image{transform:scale(1.05)}
.tt-search-product-card__content{display:flex;flex-direction:column;gap:var(--space-2);padding:var(--space-4)}
.tt-search-product-card__title{font-family:var(--font-heading);font-size:var(--text-base);font-weight:var(--weight-semi);line-height:1.3;color:var(--text-primary)}
.tt-search-product-card__title a{color:inherit;transition:color var(--duration-fast)}
.tt-search-product-card__title a:hover{color:var(--gold)}
.tt-search-product-card__price{font-size:var(--text-lg);font-weight:var(--weight-bold);color:var(--gold)}
.tt-search-product-card__rating{display:flex;align-items:center;gap:var(--space-1)}
.tt-search-product-card__excerpt{display:none;font-size:var(--text-sm);color:rgba(255,255,255,0.6);line-height:1.6}
.tt-search-product-card__actions{margin-top:auto}
.tt-search-product-card__cart-btn{width:100%;justify-content:center}
.tt-search-results-grid.view-list .tt-search-product-card{flex-direction:row;gap:var(--space-5)}
.tt-search-results-grid.view-list .tt-search-product-card__image-link{flex-shrink:0;width:240px;aspect-ratio:4/3;border-bottom:none;border-right:1px solid rgba(201,169,110,0.08)}
.tt-search-results-grid.view-list .tt-search-product-card__content{padding:var(--space-4)}
.tt-search-results-grid.view-list .tt-search-product-card__excerpt{display:block}
.tt-search-results-grid.view-list .tt-search-product-card__actions{margin-top:var(--space-2)}
.tt-search-results-grid.view-list .tt-search-product-card__cart-btn{width:auto}
.tt-search-results-list{display:flex;flex-direction:column;gap:var(--space-5);margin-bottom:var(--space-6)}
.tt-search-post-card{position:relative;display:grid;grid-template-columns:280px 1fr;gap:var(--space-6);padding:var(--space-5);background:linear-gradient(135deg,rgba(18,18,18,0.4),rgba(25,25,25,0.3));border:1px solid rgba(201,169,110,0.08);border-radius:var(--radius-lg);transition:all var(--duration-normal)}
.tt-search-post-card:hover{border-color:rgba(201,169,110,0.2);box-shadow:0 8px 24px rgba(0,0,0,0.4)}
.tt-search-post-card__image-link{position:relative;display:block;border-radius:var(--radius-md);overflow:hidden;aspect-ratio:4/3;border:1px solid rgba(201,169,110,0.12);background:var(--bg-void)}
.tt-search-post-card__image{width:100%;height:100%;object-fit:contain;transition:transform var(--duration-slow)}
.tt-search-post-card:hover .tt-search-post-card__image{transform:scale(1.05)}
.tt-search-post-card__content{display:flex;flex-direction:column;gap:var(--space-3);padding:var(--space-1) 0}
.tt-search-post-card__title{font-family:var(--font-heading);font-size:clamp(1.125rem,2vw,1.375rem);font-weight:var(--weight-semi);line-height:1.3;color:var(--text-primary)}
.tt-search-post-card__title a{color:inherit;transition:color var(--duration-fast)}
.tt-search-post-card__title a:hover{color:var(--gold)}
.tt-search-post-card__meta{display:flex;align-items:center;gap:var(--space-2);font-size:var(--text-xs);font-weight:var(--weight-medium);letter-spacing:0.02em;color:rgba(201,169,110,0.5);text-transform:uppercase}
.tt-search-post-card__excerpt{font-size:var(--text-sm);color:rgba(255,255,255,0.6);line-height:1.7;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.tt-search-post-card__readmore{display:inline-flex;align-items:center;gap:var(--space-2);padding:var(--space-2) var(--space-4);font-size:var(--text-xs);font-weight:var(--weight-semi);color:var(--gold);letter-spacing:0.08em;text-transform:uppercase;border:1px solid rgba(201,169,110,0.15);border-radius:var(--radius-sm);transition:all var(--duration-fast);align-self:flex-start;margin-top:auto}
.tt-search-post-card__readmore:hover{color:var(--bg-void);background:var(--gold);border-color:var(--gold)}
.tt-search-post-card__readmore svg{width:10px;height:10px;transition:transform var(--duration-fast)}
.tt-search-post-card__readmore:hover svg{transform:translateX(2px)}
.tt-search-no-results{padding:var(--space-8) var(--space-4);text-align:center;color:rgba(255,255,255,0.5);font-size:var(--text-base)}
.tt-search-mixed-results .tt-search-results-grid{grid-template-columns:repeat(2,1fr)}
.tt-search-mixed-results .tt-search-post-card{grid-column:1/-1}
@media (min-width:768px){.tt-search-results-grid{grid-template-columns:repeat(3,1fr);gap:var(--space-5)}}
@media (min-width:1024px){.tt-search-results-grid{grid-template-columns:repeat(4,1fr);gap:var(--space-6)}}
@media (max-width:767px){.tt-search-tabs{flex-direction:column;align-items:stretch;gap:var(--space-3)}.tt-search-tabs__nav{width:100%;justify-content:space-between}.tt-search-tab{flex:1;text-align:center;padding:var(--space-2);font-size:11px}}
.tt-search-product-card__meta{display:flex;align-items:center;gap:var(--space-1);font-size:var(--text-xs);color:rgba(201,169,110,0.6);font-weight:var(--weight-medium)}
.tt-search-product-card__meta time{letter-spacing:0.02em}
.tt-search-product-card__excerpt{display:block;font-size:var(--text-sm);color:rgba(255,255,255,0.6);line-height:1.6;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;margin-top:var(--space-1)}

/* Search Results Premium Redesign - Final Fix */

/* Clean grid - no waste space */
.tt-search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* Premium cards */
.tt-search-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(20,20,20,0.8), rgba(15,15,15,0.9));
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tt-search-product-card:hover {
    border-color: rgba(201,169,110,0.35);
    box-shadow: 0 8px 24px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,169,110,0.2) inset;
    transform: translateY(-4px);
}

/* Image container */
.tt-search-product-card__image-link {
    position: relative;
    display: block;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(30,30,30,0.8), rgba(25,25,25,0.9));
    border-bottom: 1px solid rgba(201,169,110,0.1);
    overflow: hidden;
}

.tt-search-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tt-search-product-card:hover .tt-search-product-card__image {
    transform: scale(1.06);
}

/* Content area */
.tt-search-product-card__content {
    display: flex;
    flex-direction: column;
    padding: 18px;
    gap: 10px;
    flex: 1;
}

/* Title - 2 lines max */
.tt-search-product-card__title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    color: #fff;
    margin: 0;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tt-search-product-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.tt-search-product-card__title a:hover {
    color: var(--gold);
}

/* Meta (date, price, etc) */
.tt-search-product-card__meta,
.tt-search-product-card__price {
    font-size: 13px;
    color: rgba(201,169,110,0.8);
    font-weight: 500;
    margin: 0;
}

.tt-search-product-card__price {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
}

/* Excerpt - 2 lines max */
.tt-search-product-card__excerpt {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255,255,255,0.5);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

/* Actions */
.tt-search-product-card__actions {
    margin-top: auto;
    padding-top: 8px;
}

.tt-search-product-card__cart-btn,
.tt-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--gold);
    background: transparent;
    border: 1px solid rgba(201,169,110,0.25);
    border-radius: 4px;
    transition: all 0.2s;
    text-decoration: none;
}

.tt-search-product-card__cart-btn:hover,
.tt-btn:hover {
    background: rgba(201,169,110,0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateX(2px);
}

/* Badge - smaller */
.tt-search-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    backdrop-filter: blur(8px);
}

/* Pagination premium */
.tt-search-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 48px 0 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(201,169,110,0.12);
}

.tt-search-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    margin: 0 4px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 600;
    background: rgba(20,20,20,0.6);
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: 6px;
    color: rgba(255,255,255,0.6);
    transition: all 0.2s;
    text-decoration: none;
}

.tt-search-pagination .page-numbers:hover {
    background: rgba(30,30,30,0.8);
    border-color: rgba(201,169,110,0.3);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.tt-search-pagination .page-numbers.current {
    background: linear-gradient(135deg, rgba(201,169,110,0.25), rgba(201,169,110,0.15));
    border-color: rgba(201,169,110,0.4);
    color: var(--gold);
    box-shadow: 0 2px 8px rgba(201,169,110,0.2);
}

.tt-search-pagination .page-numbers.dots {
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.3);
}

.tt-search-pagination .page-numbers.dots:hover {
    transform: none;
    box-shadow: none;
}

/* Page header */
.tt-page-header__desc {
    font-size: 14px;
    color: rgba(201,169,110,0.7);
    margin-top: 12px;
    font-weight: 500;
}

.tt-page-header__desc strong {
    color: var(--gold);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 767px) {
    .tt-search-results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .tt-search-product-card__content {
        padding: 14px;
    }
    .tt-search-product-card__title {
        font-size: 14px;
        min-height: 38px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .tt-search-results-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (min-width: 1024px) {
    .tt-search-results-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

/* Search header center */
.tt-page-header__desc{text-align:center}

/* ═══════════════════════════════════════════
   BLOG — Related Knowledge Inline Section
   ═══════════════════════════════════════════ */
.ttj-related-knowledge-inline {
    margin: 28px 0;
    padding: 24px 28px;
    border-radius: 12px;
    border: 1px solid rgba(201,169,110,0.12);
    background: rgba(201,169,110,0.03);
}
.tt-post__content .ttj-related-knowledge-inline__title {
    display: block;
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
    border-bottom: 1px solid rgba(201,169,110,0.12);
    border-left: none;
    background: none;
    border-radius: 0;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(201,169,110,0.75);
    counter-increment: none;
}
.tt-post__content .ttj-related-knowledge-inline__title::before,
.tt-post__content .ttj-related-knowledge-inline__title::after {
    display: none;
}
.ttj-related-knowledge-inline__intro {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
    margin: 0 0 12px;
}

/* List — kill <br> inside links, align dash + text */
.tt-post__content .ttj-related-knowledge-inline__list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.tt-post__content .ttj-related-knowledge-inline__list > li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
}
.tt-post__content .ttj-related-knowledge-inline__list > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 10px;
    height: 1.5px;
    border-radius: 1px;
    background: linear-gradient(90deg, rgba(201,169,110,0.5), rgba(201,169,110,0.15));
}
.tt-post__content .ttj-related-knowledge-inline__list > li:last-child {
    margin-bottom: 0;
}
.ttj-related-knowledge-inline__list a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    border-bottom: none;
    font-size: 0.9rem;
    line-height: 1.6;
    transition: color 0.2s ease;
}
.ttj-related-knowledge-inline__list a:hover {
    color: rgba(201,169,110,0.9);
}

/* Kill stray <br> inside links (generated by WP editor) */
.ttj-related-knowledge-inline__list a br,
.ttj-product-cta-btn br {
    display: none;
}

/* ═══════════════════════════════════════════
   BLOG CTA — Product Link Button
   Used in top-list posts to link to product pages
   ═══════════════════════════════════════════ */

/* Center the button within its parent <p> */
.ttj-toplist-products p:has(.ttj-product-cta-btn) {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 8px;
}

.ttj-product-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    padding: 13px 32px;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold) !important;
    text-decoration: none !important;
    border-bottom: none !important;
    background: linear-gradient(
        135deg,
        rgba(201,169,110,0.10) 0%,
        rgba(201,169,110,0.04) 50%,
        rgba(201,169,110,0.10) 100%
    );
    border: 1px solid rgba(201,169,110,0.35);
    border-radius: 100px;
    box-shadow:
        0 0 24px rgba(201,169,110,0.06),
        inset 0 1px 0 rgba(201,169,110,0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Subtle shimmer line on top edge */
.ttj-product-cta-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 20%; right: 20%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(201,169,110,0.4),
        transparent
    );
    border-radius: 1px;
}

/* Arrow icon */
.ttj-product-cta-btn::after {
    content: '\2192';
    font-size: 14px;
    line-height: 1;
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover — gold glow intensifies */
.ttj-product-cta-btn:hover {
    color: var(--gold-light) !important;
    border-color: rgba(201,169,110,0.55);
    background: linear-gradient(
        135deg,
        rgba(201,169,110,0.14) 0%,
        rgba(201,169,110,0.06) 50%,
        rgba(201,169,110,0.14) 100%
    );
    box-shadow:
        0 0 32px rgba(201,169,110,0.10),
        0 4px 16px rgba(201,169,110,0.06),
        inset 0 1px 0 rgba(201,169,110,0.18);
    transform: translateY(-1px);
}

.ttj-product-cta-btn:hover::before {
    left: 10%; right: 10%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(201,169,110,0.6),
        transparent
    );
}

.ttj-product-cta-btn:hover::after {
    opacity: 1;
    transform: translateX(4px);
}

/* Active — press feedback */
.ttj-product-cta-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow:
        0 0 16px rgba(201,169,110,0.06),
        inset 0 1px 0 rgba(201,169,110,0.1);
}

/* Focus visible for keyboard navigation */
.ttj-product-cta-btn:focus-visible {
    outline: 2px solid rgba(201,169,110,0.5);
    outline-offset: 3px;
}

/* Mobile — slightly smaller padding */
@media (max-width: 768px) {
    .ttj-product-cta-btn {
        padding: 11px 24px;
        font-size: 12px;
        gap: 8px;
    }
}
