/* Xianyitang / THL Innovation - Premium Website Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg-main: #f9f7f4;
    --bg-alt: #efe9e3;
    --text-dark: #2c2420;
    --text-light: #6b6460;
    --accent-burgundy: #8b3a3a;
    --accent-gold: #c9a876;
    --accent-gold-light: #e8d7c3;
    --white: #ffffff;
    --border-light: #e5ddd5;
}

/* Chinese font stack */
.zh-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans CJK SC', 'Noto Sans CJK TC', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans CJK SC', 'Noto Sans CJK TC', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-main);
}

/* Typography */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1rem;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-light);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 60px;
}

.logo img,
.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-burgundy);
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    line-height: 1.2;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

nav a:hover::after {
    width: 100%;
}

/* Nav Shop Link - Standout pill button */
.nav-shop-link {
    background-color: var(--accent-burgundy);
    color: var(--white) !important;
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-shop-link::after {
    display: none !important;
}

.nav-shop-link:hover {
    background-color: var(--text-dark);
    color: var(--white) !important;
    transform: translateY(-1px);
}

/* Mobile Nav Toggle (Hamburger) */
.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    -webkit-appearance: none;
    appearance: none;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: 2rem;
}

.language-switcher a {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.language-switcher a.active {
    color: var(--accent-burgundy);
    font-weight: 600;
    border-bottom: 2px solid var(--accent-burgundy);
}

.language-switcher a:hover {
    color: var(--accent-burgundy);
}

.language-switcher span {
    color: var(--border-light);
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-alt) 100%);
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 2.8rem;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-trust-strip {
    background: var(--accent-burgundy);
    color: var(--white);
    padding: 1rem 2rem;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    border-radius: 4px;
}

.hero-trust-strip p {
    color: var(--white);
    margin: 0;
}

.hero-featured-image {
    margin-top: 3.5rem;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-featured-image:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.hero-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: contain;
}

/* Section Styling */
section {
    padding: 4rem 2rem;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-burgundy);
}

/* Brand Introduction Section */
.brand-intro {
    background: var(--white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.brand-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.brand-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Featured Products Section */
.featured-products {
    background: var(--bg-main);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: var(--bg-alt);
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-name-cn {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
}

.product-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
}

/* Call to Action Links */
.cta-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent-burgundy);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--accent-burgundy);
    padding-bottom: 2px;
}

.cta-link:hover {
    color: var(--text-dark);
    border-bottom-color: var(--text-dark);
}

/* Story/Origin Excerpt */
.story-excerpt {
    background: var(--white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.excerpt-content {
    max-width: 800px;
    margin: 0 auto;
}

.excerpt-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Quality & Trust Section */
.quality-section {
    background: var(--bg-main);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quality-item {
    text-align: center;
}

.quality-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-burgundy);
}

.quality-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--accent-burgundy);
    color: var(--white);
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn:hover {
    background-color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 58, 58, 0.2);
}

.btn-secondary {
    border: 2px solid var(--accent-burgundy);
    background-color: transparent;
    color: var(--accent-burgundy);
}

.btn-secondary:hover {
    background-color: var(--accent-burgundy);
    color: var(--white);
}

/* Shop CTA Section */
.shop-cta {
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-main) 100%);
    border-top: 1px solid var(--border-light);
    padding: 4rem 2rem;
}

.shop-cta-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.shop-cta-inner h2 {
    color: var(--accent-burgundy);
}

.shop-cta-inner h2::after {
    background-color: var(--accent-gold);
}

.shop-cta-inner p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.shop-cta-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.shop-cta-pill {
    background: var(--white);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.shop-cta-btn {
    font-size: 1.05rem;
    padding: 0.85rem 2.5rem;
    background-color: var(--accent-burgundy);
    box-shadow: 0 4px 16px rgba(139, 58, 58, 0.18);
}

.shop-cta-btn:hover {
    background-color: var(--text-dark);
    box-shadow: 0 6px 20px rgba(44, 36, 32, 0.22);
}

/* Contact Section */
.contact-section {
    background: var(--white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-box p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Contact Form */
.contact-form {
    background: var(--bg-main);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.form-status {
    display: none;
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-status-pending,
.form-status-success,
.form-status-error {
    display: block;
}

.form-status-pending {
    background: var(--accent-gold-light);
    color: var(--text-dark);
}

.form-status-success {
    background: #e8f3ea;
    color: #1f5b2c;
}

.form-status-error {
    background: #f8e7e3;
    color: #8b3a3a;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: var(--white);
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-burgundy);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox/Consent Label */
.form-group label[style*="display: flex"] {
    align-items: flex-start !important;
    width: 100%;
}

.form-group label[style*="display: flex"] span {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
}

.form-group input[type="checkbox"] {
    width: auto;
    height: auto;
    padding: 0;
    border: 0;
    margin-top: 0.2rem;
    flex-shrink: 0;
    min-width: 16px;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-item {
    text-align: center;
}

.contact-item h3 {
    color: var(--accent-burgundy);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--bg-main);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.footer-section p {
    color: var(--bg-main);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--bg-main);
    margin: 0;
}

/* Footer legal links – subtle, secondary text */
.footer-legal-links {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.55;
}

.footer-legal-links a {
    color: var(--bg-main);
    text-decoration: none;
}

.footer-legal-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-legal-sep {
    margin: 0 0.4em;
    opacity: 0.4;
}

/* Legal page content */
.legal-content {
    padding: 3rem 2rem;
}

.legal-body {
    max-width: 780px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-dark);
}

.legal-body h2 {
    font-size: 1.3rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--border-light);
}

.legal-body p,
.legal-body ul {
    margin-bottom: 1rem;
}

.legal-body ul {
    padding-left: 1.5rem;
}

.legal-body li {
    margin-bottom: 0.4rem;
}

.legal-body a {
    color: var(--accent-burgundy);
    text-decoration: none;
}

.legal-body a:hover {
    text-decoration: underline;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
    text-align: left;
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--border-light);
}

.legal-table th {
    background: var(--bg-alt);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Page Sections */
.page-hero {
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-alt) 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* All Products Grid */
.all-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.product-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.product-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.product-item-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background: var(--bg-alt);
}

.product-item-content {
    padding: 1.5rem;
}

.product-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-item-cn {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-style: italic;
}

.product-category {
    font-size: 0.8rem;
    color: var(--accent-burgundy);
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-item-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.product-item-shop-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-decoration: none;
    letter-spacing: 0.2px;
}

.product-item-shop-link:hover {
    color: var(--accent-burgundy);
    text-decoration: underline;
}

/* Category Headers */
.category-header {
    grid-column: 1 / -1;
    padding: 2rem 0 1rem;
    border-bottom: 2px solid var(--accent-burgundy);
    margin-top: 2rem;
}

.category-header h3 {
    color: var(--accent-burgundy);
    margin: 0;
}

/* Story Page */
.story-section {
    padding: 3rem 2rem;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
}

.story-section h2 {
    color: var(--accent-burgundy);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* 404 Page */
.error-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.error-content {
    text-align: center;
    max-width: 600px;
}

.error-code {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--accent-burgundy);
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.error-description {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .header-container {
        padding: 0 1rem;
        flex-direction: column;
        gap: 0.75rem;
    }

    .header-left {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        width: 100%;
        align-items: center;
    }

    .nav-toggle {
        display: flex;
    }

    nav {
        grid-column: 1 / -1;
        display: none;
        width: 100%;
    }

    nav.is-open {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        font-size: 0.95rem;
    }

    nav li a {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-light);
    }

    nav li:first-child a {
        border-top: 1px solid var(--border-light);
    }

    .nav-shop-link {
        display: inline-block;
        margin: 0.15rem 0;
    }

    nav a::after {
        display: none;
    }

    .language-switcher {
        margin-left: 0;
        order: 3;
        width: 100%;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .hero-image img {
        height: 200px;
    }

    .hero-trust-strip {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    section {
        padding: 2.5rem 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .quality-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .all-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .error-code {
        font-size: 3.5rem;
    }
}

/* ─── Cookie Consent Banner ──────────────────────────────────────── */
#thl-cb {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #f5f5f5;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    z-index: 9999;
    font-size: 0.875rem;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.4);
}

#thl-cb p {
    margin: 0;
    flex: 1 1 200px;
}

#thl-cb p a {
    color: #c8a96e;
    text-decoration: underline;
}

.thl-cb-btns {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

#thl-cb-accept,
#thl-cb-decline {
    padding: 0.5rem 1.1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
}

#thl-cb-accept {
    background: #c8a96e;
    color: #1a1a1a;
}

#thl-cb-decline {
    background: transparent;
    color: #f5f5f5;
    border: 1px solid #f5f5f5;
}

#thl-cb-accept:hover { opacity: 0.9; }
#thl-cb-decline:hover { opacity: 0.8; }

@media (max-width: 480px) {
    #thl-cb { flex-direction: column; align-items: flex-start; }
    .thl-cb-btns { width: 100%; }
    #thl-cb-accept, #thl-cb-decline { flex: 1; }
}

/* ── Hero trust badges ───────────────────────────────────────────── */
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

.trust-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}

.trust-badge--green {
    background: #d4f5e2;
    color: #1a6635;
}

.trust-badge--gold {
    background: rgba(200,169,110,0.18);
    color: #7a5a10;
    border: 1.5px solid var(--gold, #c8a96e);
}

.trust-badge--muted {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.25);
}

/* ── Quality item highlight (sulphur-free + ISO) ──────────────── */
.quality-item--highlight {
    background: var(--bg-alt);
    border-radius: 8px;
    padding: 1.5rem;
    border-top: 3px solid var(--gold, #c8a96e);
}

.quality-item-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    line-height: 1;
}
