/* Thermacure Blog — Shared Styles */

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; -webkit-font-smoothing: antialiased; }
        a { color: inherit; }
        h1, h2, h3, h4, h5 { margin: 0; }
        ul, ol { margin: 0; }

/* Components */
/* ── Article Hero (cream bg) ── */
            .tc-blog-hero {
                padding: 72px 0 28px;
            }
            .tc-blog-hero .tc-container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 32px;
            }

            /* Breadcrumb */
            .tc-breadcrumb {
                display: flex; align-items: center; gap: 8px;
                font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 20px;
            }
            .tc-breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
            .tc-breadcrumb a:hover { color: #FF6C46; }
            .tc-breadcrumb .sep { color: rgba(255,255,255,0.4); }

            /* Category badge */
            .tc-badge {
                display: inline-block;
                background: rgba(255,255,255,0.15);
                border: 1px solid rgba(255,255,255,0.25);
                padding: 5px 14px; border-radius: 9999px;
                font-size: 11px; font-weight: 700;
                color: #fff; letter-spacing: 0.5px;
                text-transform: uppercase; margin-bottom: 20px;
            }

            /* Title */
            .tc-blog-title {
                font-size: clamp(32px, 4.5vw, 50px);
                font-weight: 900; color: #fff;
                line-height: 1.08; letter-spacing: -2px;
                margin-bottom: 20px; max-width: 800px;
            }

            .tc-blog-subtitle {
                font-size: 18px; color: rgba(255,255,255,0.85);
                max-width: 640px; line-height: 1.7; margin-bottom: 16px;
            }

            /* Meta */
            .tc-blog-meta {
                display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
                padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.2);
                font-size: 13px; color: rgba(255,255,255,0.85);
            }
            .tc-blog-meta .tc-author {
                display: flex; align-items: center; gap: 10px;
            }
            .tc-author-avatar {
                width: 36px; height: 36px; border-radius: 50%;
                background: #FF6C46; display: flex;
                align-items: center; justify-content: center;
                font-size: 13px; font-weight: 700; color: white;
            }
            .tc-author-name { color: #fff; font-weight: 600; }
            .tc-blog-meta .dot { color: rgba(255,255,255,0.4); }

            /* ── Article Grid ── */
            .tc-article-wrap {
                max-width: 1200px; margin: 0 auto;
                padding: 60px 32px 20px;
                display: grid;
                grid-template-columns: 220px 1fr;
                gap: 60px; align-items: start;
            }

            /* TOC Sidebar */
            .tc-toc {
                position: sticky; top: 100px;
            }
            .tc-toc-label {
                font-size: 10px; font-weight: 700;
                text-transform: uppercase; letter-spacing: 1.5px;
                color: #89847A; margin-bottom: 16px;
            }
            .tc-toc ul { list-style: none; padding: 0; margin: 0; }
            .tc-toc a {
                display: block; font-size: 13px; font-weight: 500;
                color: #89847A; text-decoration: none;
                padding: 6px 12px;
                border-left: 2px solid transparent;
                border-radius: 0 8px 8px 0;
                transition: all 0.15s ease; line-height: 1.4;
            }
            .tc-toc a:hover, .tc-toc a.active {
                color: #FF6C46;
                border-left-color: #FF6C46;
                background: rgba(255,108,70,0.06);
            }

            /* Article Content */
            .tc-article { max-width: 780px; }

            .tc-article h2 {
                font-size: 28px; font-weight: 800;
                color: #1C1A17; line-height: 1.15;
                letter-spacing: -0.8px;
                margin: 56px 0 16px;
                scroll-margin-top: 100px;
            }
            .tc-article h2:first-of-type { margin-top: 0; }

            .tc-article h3 {
                font-size: 20px; font-weight: 700;
                color: #1C1A17; line-height: 1.25;
                margin: 36px 0 12px;
            }

            .tc-article p {
                font-size: 16px; color: #292421;
                line-height: 1.8; margin-bottom: 20px;
            }
            .tc-article p strong { color: #1C1A17; font-weight: 600; }

            .tc-article ul, .tc-article ol {
                font-size: 16px; color: #292421;
                line-height: 1.8; margin-bottom: 20px;
                padding-left: 24px;
            }
            .tc-article li { margin-bottom: 8px; }

            /* Stats Row */
            .tc-stats {
                display: grid; grid-template-columns: repeat(3, 1fr);
                gap: 12px; margin: 32px 0;
            }
            .tc-stat {
                background: #FBFAF7; border: 1px solid #F0F0F0;
                border-radius: 16px; padding: 28px 24px; text-align: center;
            }
            .tc-stat .num {
                font-size: 36px; font-weight: 900;
                color: #FF6C46; line-height: 1; margin-bottom: 6px;
            }
            .tc-stat .label { font-size: 12px; color: #89847A; font-weight: 500; }

            /* Cards Grid */
            .tc-cards {
                display: grid; grid-template-columns: repeat(2, 1fr);
                gap: 12px; margin: 28px 0;
            }
            .tc-card {
                background: #fff; border: 1px solid #F0F0F0;
                border-radius: 16px; padding: 24px;
                transition: all 0.2s ease;
            }
            .tc-card:hover {
                border-color: rgba(255,108,70,0.2);
                box-shadow: 0 4px 20px rgba(0,0,0,0.04);
                transform: translateY(-1px);
            }
            .tc-card-icon {
                width: 40px; height: 40px; border-radius: 12px;
                display: flex; align-items: center; justify-content: center;
                font-size: 18px; margin-bottom: 14px;
            }
            .tc-card h4 {
                font-size: 15px; font-weight: 700;
                color: #1C1A17; margin-bottom: 6px;
            }
            .tc-card p {
                font-size: 13px; color: #89847A;
                line-height: 1.6; margin: 0;
            }

            /* Steps */
            .tc-steps { margin: 28px 0; }
            .tc-step {
                display: grid; grid-template-columns: 48px 1fr;
                gap: 20px; align-items: start; padding: 20px 0;
                position: relative;
            }
            .tc-step:not(:last-child)::after {
                content: ''; position: absolute;
                left: 22px; top: 60px; width: 2px;
                height: calc(100% - 28px); background: #F0F0F0;
            }
            .tc-step-num {
                width: 48px; height: 48px; border-radius: 50%;
                display: flex; align-items: center; justify-content: center;
                font-size: 18px; font-weight: 800; color: white;
                flex-shrink: 0; z-index: 1;
            }
            .tc-step h4 { font-size: 16px; font-weight: 700; color: #1C1A17; margin-bottom: 4px; }
            .tc-step p { font-size: 14px; color: #292421; margin: 0; line-height: 1.6; }

            /* Callout */
            .tc-callout {
                background: rgba(255,108,70,0.06);
                border: 1px solid rgba(255,108,70,0.1);
                border-left: 3px solid #FF6C46;
                border-radius: 0 16px 16px 0;
                padding: 24px 28px; margin: 28px 0;
            }
            .tc-callout p { margin-bottom: 0; }
            .tc-callout strong { color: #FF6C46; }
            .tc-callout-green {
                background: rgba(16,185,129,0.05);
                border-color: rgba(16,185,129,0.1);
                border-left-color: #10B981;
            }
            .tc-callout-green strong { color: #10B981; }
            .tc-callout-blue {
                background: rgba(59,130,246,0.05);
                border-color: rgba(59,130,246,0.1);
                border-left-color: #3B82F6;
            }
            .tc-callout-blue strong { color: #3B82F6; }
            .tc-callout-purple {
                background: rgba(139,92,246,0.05);
                border-color: rgba(139,92,246,0.1);
                border-left-color: #8B5CF6;
            }
            .tc-callout-purple strong { color: #8B5CF6; }

            /* Table */
            .tc-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 28px 0; }
            .tc-table-wrap .tc-table { margin: 0; }
            .tc-table {
                width: 100%; border-collapse: separate;
                border-spacing: 0; border-radius: 16px;
                overflow: hidden; border: 1px solid #F0F0F0; margin: 28px 0;
            }
            .tc-table th {
                background: #FBFAF7; color: #FF6C46;
                padding: 14px 18px; font-size: 11px;
                font-weight: 700; text-transform: uppercase;
                letter-spacing: 0.8px; text-align: center;
                border-bottom: 1px solid #F0F0F0;
            }
            .tc-table td {
                padding: 14px 18px; text-align: center;
                font-size: 14px; color: #292421;
                border-bottom: 1px solid #F0F0F0;
            }
            .tc-table tr:last-child td { border-bottom: none; }
            .tc-table tr:hover td { background: #FBFAF7; }
            .tc-table .hl { color: #FF6C46; font-weight: 700; }
            .tc-table .featured td { background: rgba(255,108,70,0.04); }
            .tc-table td:first-child, .tc-table th:first-child { text-align: left; }

            /* Benefits */
            .tc-benefits {
                display: grid; grid-template-columns: repeat(2, 1fr);
                gap: 12px; margin: 28px 0;
            }
            .tc-benefit {
                background: #fff; border: 1px solid #F0F0F0;
                border-left: 3px solid; border-radius: 0 16px 16px 0;
                padding: 20px 22px;
            }
            .tc-benefit h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
            .tc-benefit p { font-size: 13px; color: #89847A; line-height: 1.6; margin: 0; }

            /* FAQ */
            .tc-faqs {
                display: grid; grid-template-columns: repeat(2, 1fr);
                gap: 12px; margin: 28px 0;
            }
            .tc-faq {
                background: #FBFAF7; border: 1px solid #F0F0F0;
                border-radius: 16px; padding: 22px;
            }
            .tc-faq h4 { font-size: 14px; font-weight: 700; color: #1C1A17; margin-bottom: 6px; }
            .tc-faq p { font-size: 13px; color: #292421; line-height: 1.6; margin: 0; }

            /* CTA */
            .tc-blog-cta {
                background: #FBFAF7; border: 1px solid #F0F0F0;
                border-radius: 24px; padding: 48px; text-align: center;
                margin: 20px 0 0; position: relative; overflow: hidden;
            }
            .tc-blog-cta::before {
                content: ''; position: absolute;
                top: -100px; left: 50%; transform: translateX(-50%);
                width: 500px; height: 500px; border-radius: 50%;
                background: radial-gradient(circle, rgba(255,108,70,0.06) 0%, transparent 70%);
                pointer-events: none;
            }
            .tc-blog-cta h2 { margin-top: 0 !important; margin-bottom: 12px !important; position: relative; }
            .tc-blog-cta p { margin-bottom: 28px; position: relative; }
            .tc-btn-coral {
                display: inline-block; background: #FF6C46; color: #fff !important;
                padding: 14px 32px; border-radius: 9999px;
                font-size: 14px; font-weight: 700; text-decoration: none;
                transition: all 0.2s ease; position: relative;
            }
            .tc-btn-coral:hover {
                background: #E8573A; box-shadow: 0 8px 30px rgba(255,108,70,0.25);
                transform: translateY(-1px); color: #fff !important;
            }

            /* Tags + Share */
            .tc-footer-meta {
                display: flex; justify-content: space-between; align-items: center;
                padding: 16px 0; border-top: 1px solid #F0F0F0; margin-top: 16px;
            }
            .tc-tags { display: flex; gap: 4px; flex-wrap: wrap; align-items: center; }
            .tc-tag {
                font-size: 12px; font-weight: 400;
                padding: 0; border: none; border-radius: 0;
                background: none; color: var(--tc-text-muted, #808080);
            }
            .tc-tag::before { content: "#"; }
            .tc-tags .tc-tag ~ .tc-tag { margin-left: 4px; }
            .tc-share { display: flex; gap: 8px; align-items: center; }
            .tc-share-btn {
                width: 36px; height: 36px; border-radius: 50%;
                display: flex; align-items: center; justify-content: center;
                border: 1px solid #F0F0F0; background: #fff;
                font-size: 14px; cursor: pointer; transition: all 0.2s ease;
                text-decoration: none; color: #292421;
            }
            .tc-share-btn:hover {
                border-color: rgba(255,108,70,0.3);
                background: rgba(255,108,70,0.04);
                color: #FF6C46;
            }

            /* Related Articles */
            .tc-related {
                padding: 24px 32px; background: #FBFAF7;
                border-top: 1px solid #F0F0F0;
            }
            .tc-related-label {
                font-size: 10px; font-weight: 700;
                text-transform: uppercase; letter-spacing: 1.5px;
                color: #89847A; margin-bottom: 24px;
            }
            .tc-related-grid {
                display: grid; grid-template-columns: repeat(3, 1fr);
                gap: 16px; max-width: 1200px; margin: 0 auto;
            }
            .tc-related-card {
                background: #fff; border: 1px solid #F0F0F0;
                border-radius: 16px; padding: 24px;
                text-decoration: none; transition: all 0.2s ease; display: block;
            }
            .tc-related-card:hover {
                border-color: rgba(255,108,70,0.2);
                box-shadow: 0 8px 24px rgba(0,0,0,0.06);
                transform: translateY(-2px);
            }
            .tc-related-icon {
                width: 48px; height: 48px; border-radius: 12px;
                overflow: hidden; flex-shrink: 0; margin-bottom: 14px;
            }
            .tc-related-icon img { width: 100%; height: 100%; object-fit: cover; }
            .tc-related-card h4 { font-size: 14px; font-weight: 700; color: #1C1A17; line-height: 1.35; margin-bottom: 6px; }
            .tc-related-card p { font-size: 12px; color: #89847A; line-height: 1.5; margin: 0; }

            /* ── Blog Index ── */
            .tc-blog-index-hero {
                background: #FBFAF7;
                padding: 72px 0 28px;
                text-align: center;
            }
            .tc-blog-index-hero h1 {
                font-size: clamp(36px, 5vw, 56px);
                font-weight: 900; color: #1C1A17;
                letter-spacing: -2px; margin-bottom: 16px;
            }
            .tc-blog-index-hero p {
                font-size: 18px; color: #292421;
                max-width: 560px; margin: 0 auto; line-height: 1.7;
            }
            .tc-blog-grid-wrap {
                max-width: 1200px; margin: 0 auto;
                padding: 60px 32px 100px;
            }
            .tc-blog-grid {
                display: grid; grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .tc-blog-card {
                background: #fff; border: 1px solid #F0F0F0;
                border-radius: 20px; padding: 0;
                text-decoration: none; display: flex; flex-direction: column;
                overflow: hidden; transition: all 0.2s ease;
            }
            .tc-blog-card:hover {
                border-color: rgba(255,108,70,0.2);
                box-shadow: 0 8px 30px rgba(0,0,0,0.06);
                transform: translateY(-2px);
            }
            .tc-blog-card-img {
                width: 100%; aspect-ratio: 16/10; overflow: hidden;
            }
            .tc-blog-card-img img {
                width: 100%; height: 100%; object-fit: cover;
                transition: transform 0.3s ease;
            }
            .tc-blog-card:hover .tc-blog-card-img img {
                transform: scale(1.04);
            }
            .tc-blog-card-body {
                padding: 24px 28px 28px;
                display: flex; flex-direction: column; flex: 1;
            }
            .tc-blog-card-icon {
                width: 48px; height: 48px; border-radius: 14px;
                display: flex; align-items: center; justify-content: center;
                font-size: 22px; margin-bottom: 20px;
            }
            .tc-blog-card .tc-badge { margin-bottom: 14px; }
            .tc-blog-card h3 {
                font-size: 20px; font-weight: 800; color: #1C1A17;
                line-height: 1.25; margin-bottom: 10px; letter-spacing: -0.5px;
            }
            .tc-blog-card p {
                font-size: 14px; color: #89847A;
                line-height: 1.6; margin-bottom: 16px;
            }
            .tc-blog-card-meta {
                font-size: 12px; color: #89847A;
                display: flex; gap: 12px; align-items: center;
            }

            /* Specialties Grid */
            .tc-specs {
                display: grid; grid-template-columns: repeat(3, 1fr);
                gap: 10px; margin: 28px 0;
            }
            .tc-spec {
                background: #fff; border: 1px solid #F0F0F0;
                border-radius: 16px; padding: 20px; text-align: center;
            }
            .tc-spec h4 { font-size: 15px; font-weight: 700; color: #FF6C46; margin-bottom: 6px; }
            .tc-spec p { font-size: 12px; color: #89847A; line-height: 1.5; margin: 0; }
            .tc-affinity {
                display: inline-block; font-size: 10px; font-weight: 700;
                padding: 3px 10px; border-radius: 8px; margin-top: 10px;
            }
            .tc-aff-alta { background: rgba(16,185,129,0.08); color: #10B981; }
            .tc-aff-media { background: rgba(255,198,58,0.1); color: #B8860B; }

            /* Fade-in animation */
            .fade-in {
                opacity: 0;
                transform: translateY(20px);
                transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            }
            .fade-in.visible {
                opacity: 1;
                transform: translateY(0);
            }

            /* ── Responsive ── */
            @media (max-width: 991px) {
                .tc-article-wrap { grid-template-columns: 1fr; gap: 0; }
                .tc-toc { display: none; }
                .tc-stats { grid-template-columns: 1fr; }
                .tc-cards, .tc-benefits, .tc-faqs { grid-template-columns: 1fr; }
                .tc-specs { grid-template-columns: 1fr 1fr; }
                .tc-related-grid { grid-template-columns: 1fr 1fr; }
                .tc-blog-cta { padding: 32px 20px; }
                .tc-footer-meta { flex-direction: column; gap: 16px; }
                .tc-blog-hero { padding: 80px 0 32px; }
                .tc-blog-hero .tc-container { padding: 0 16px; }
                .tc-blog-index-hero { padding: 80px 0 32px; }
                .tc-article-wrap { padding: 60px 16px 20px; }
                .tc-blog-grid-wrap { padding: 60px 16px 100px; }
                .tc-related { padding: 24px 16px; }
                .tc-blog-grid { grid-template-columns: 1fr; }
            }
            @media (max-width: 600px) {
                .tc-specs { grid-template-columns: 1fr; }
                .tc-related-grid { grid-template-columns: 1fr; }
                .tc-footer-meta { flex-direction: column; align-items: flex-start; gap: 12px; }
            }

/* ── Odoo footer styles ── */
.o_footer *, .o_footer_copyright * { box-sizing: border-box; }
.o_footer .container, .o_footer_copyright .container {
    max-width: 1140px; margin: 0 auto; padding: 0 12px; width: 100%;
}
.o_footer .row {
    display: flex; flex-wrap: wrap; margin: 0 -12px;
}
.o_footer .row > [class*="col-"],
.o_footer_copyright .row > [class*="col-"] {
    padding: 0 12px; width: 100%;
}
@media (min-width: 992px) {
    .o_footer .col-lg-2 { flex: 0 0 16.6667%; max-width: 16.6667%; }
    .o_footer .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .o_footer .col-lg-5 { flex: 0 0 41.6667%; max-width: 41.6667%; }
}
@media (min-width: 576px) {
    .o_footer_copyright .col-sm { flex: 1 0 0%; }
}
.o_footer .d-flex { display: flex !important; }
.o_footer .align-items-center { align-items: center !important; }
.o_footer .justify-content-center { justify-content: center !important; }
@media (min-width: 992px) {
    .o_footer .justify-content-lg-start { justify-content: flex-start !important; }
}
.o_footer .text-end { text-align: right !important; }
.o_footer .w-100 { width: 100% !important; }
.o_footer .img-fluid { max-width: 100%; height: auto; }
.o_footer .mx-auto { margin-left: auto !important; margin-right: auto !important; }
.o_footer .list-inline { padding-left: 0; list-style: none; }
.o_footer .mb-0 { margin-bottom: 0 !important; }
.o_footer .ms-3 { margin-left: 1rem !important; }
.o_footer .m-1 { margin: 0.25rem !important; }
.o_footer .btn { display: inline-block; font-weight: 400; text-align: center; vertical-align: middle; cursor: pointer; user-select: none; padding: 0.375rem 0.75rem; font-size: 1rem; line-height: 1.5; border-radius: 0.375rem; text-decoration: none; transition: all 0.15s; }
.o_footer .btn-lg { padding: 0.5rem 1rem; font-size: 1.25rem; border-radius: 0.5rem; }
.o_footer .text-black { color: #000 !important; }
.pt16 { padding-top: 16px !important; }
.pb16 { padding-bottom: 16px !important; }
.pb0 { padding-bottom: 0 !important; }
.o_footer { background-color: #292421; color: #FFFFFF; }
.o_footer a:not(.btn) { color: #c5c2be; text-decoration: none; }
.o_footer a:not(.btn):hover { color: #a19d95; }
.s_social_media > * { display: inline-block; vertical-align: middle; }
.s_social_media a { margin: .2rem; }
.s_social_media a i.fa { display: flex; justify-content: center; align-items: center; }
.s_social_media.no_icon_color a { color: inherit !important; }
.btn-custom:hover { filter: invert(0.2); }
        
/* ══════════════════════════════════════════════
   Thermacure Pill Topbar
   ══════════════════════════════════════════════ */
.tc-header-wrap {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1030; background: transparent;
    pointer-events: none;
}
.tc-header-wrap * { pointer-events: auto; }

.tc-topbar {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 16px 32px; max-width: 100%;
}

.tc-pill {
    display: flex; align-items: center; gap: 4px;
    padding: 6px 8px; border-radius: 32px;
    background: rgba(25, 25, 25, 0.55);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.tc-topbar-logo {
    display: flex; align-items: center;
    padding: 6px 14px 6px 10px; text-decoration: none;
}
.tc-topbar-logo img {
    height: 26px; width: auto;
    filter: brightness(0) invert(1);
}

.tc-topbar-link {
    padding: 8px 18px; border-radius: 22px;
    font-size: 14px; font-weight: 500;
    color: rgba(255, 255, 255, 0.85); text-decoration: none;
    transition: background 0.2s, color 0.2s; white-space: nowrap;
}
.tc-topbar-link:hover {
    background: rgba(255, 255, 255, 0.1); color: #fff;
}

.tc-dropdown { position: relative; display: flex; align-items: center; }
.tc-dropdown-trigger { cursor: pointer; }
.tc-dropdown-menu {
    display: none; position: absolute;
    top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
    background: rgba(25, 25, 25, 0.7);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px; padding: 8px; min-width: 300px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.25); z-index: 1040;
}
.tc-dropdown-menu::before {
    content: ''; position: absolute;
    top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
    width: 12px; height: 12px;
    background: rgba(25, 25, 25, 0.7);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-left: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px;
}
.tc-dropdown:hover .tc-dropdown-menu { display: block; }
.tc-dropdown::after {
    content: ''; position: absolute;
    top: 100%; left: 0; right: 0; height: 16px; display: none;
}
.tc-dropdown:hover::after { display: block; }
.tc-dropdown-header {
    padding: 10px 14px 6px; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.4);
}
.tc-dropdown-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 14px; border-radius: 10px;
    text-decoration: none; color: rgba(255,255,255,0.85);
    transition: background 0.15s;
}
.tc-dropdown-item:hover { background: rgba(255, 255, 255, 0.08); }
.tc-dropdown-icon {
    font-size: 18px; line-height: 1; margin-top: 2px;
    width: 24px; text-align: center; flex-shrink: 0;
}
.tc-dropdown-title { font-size: 14px; font-weight: 600; color: #fff; line-height: 1.3; }
.tc-dropdown-desc { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; line-height: 1.3; }
.tc-dropdown-footer {
    padding: 8px 14px; margin-top: 4px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.tc-dropdown-footer a { font-size: 13px; font-weight: 600; color: #FF6C46; text-decoration: none; }
.tc-dropdown-footer a:hover { text-decoration: underline; }

.tc-topbar-cta {
    padding: 8px 22px; border-radius: 22px;
    font-size: 14px; font-weight: 600;
    color: #1C1A17; background: #fff;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s; white-space: nowrap;
}
.tc-topbar-cta:hover { background: rgba(255,255,255,0.85); transform: translateY(-1px); color: #1C1A17; }

.tc-mobile-toggle {
    display: none; padding: 8px 12px; border-radius: 20px;
    background: none; border: none;
    color: rgba(255,255,255,0.85); font-size: 18px; cursor: pointer;
}
.tc-mobile-menu { display: none; }

@media (max-width: 991px) {
    .tc-topbar { padding: 10px 12px; overflow: visible; }
    .tc-pill { padding: 4px 6px; gap: 2px; min-width: 0; }
    .tc-pill-left { flex-shrink: 1; overflow: hidden; }
    .tc-pill-left .tc-topbar-link,
    .tc-pill-left .tc-dropdown { display: none; }
    .tc-topbar-logo { padding: 4px 8px 4px 6px; }
    .tc-topbar-logo img { height: 20px; max-width: 120px; object-fit: contain; }
    .tc-pill-right { flex-shrink: 0; }
    .tc-topbar-cta { padding: 6px 16px; font-size: 13px; }
    .tc-mobile-toggle { display: flex; align-items: center; padding: 6px 8px; }
    .tc-mobile-menu.open {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 12px; right: 12px;
        background: rgba(25, 25, 25, 0.85);
        backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 16px; padding: 16px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.25); gap: 4px; z-index: 1031;
    }
    .tc-mobile-menu .tc-topbar-link {
        display: block; padding: 12px 16px; border-radius: 12px; font-size: 16px;
        color: rgba(255,255,255,0.85); text-decoration: none;
    }
    .tc-mobile-menu .tc-topbar-cta {
        display: block; text-align: center; padding: 14px 20px;
        border-radius: 12px; font-size: 16px; margin-top: 8px;
    }
}
@media (max-width: 375px) {
    .tc-topbar { padding: 8px 8px; }
    .tc-pill { padding: 3px 4px; }
    .tc-topbar-logo img { height: 18px; max-width: 100px; }
    .tc-topbar-cta { padding: 5px 12px; font-size: 12px; }
}

        
/* TikTok icon (not in FA 4.7) */
@font-face {
    font-family: 'FontAwesome-tiktok-only';
    src: url("/web/static/fonts/tiktok_only.woff");
    font-weight: normal; font-style: normal; font-display: block;
}
.fa-tiktok { font-family: 'FontAwesome-tiktok-only' !important; }
.fa-tiktok:before { content: '\e07b'; }
