:root {
    --lh-bg: #100d0b;
    --lh-bg-soft: #18130f;
    --lh-bg-card: #211914;
    --lh-bg-paper: #f6efe3;
    --lh-text: #efe4d2;
    --lh-muted: #b8a996;
    --lh-ink: #261c17;
    --lh-line: rgba(239, 228, 210, 0.14);
    --lh-gold: #c9a35f;
    --lh-gold-soft: rgba(201, 163, 95, 0.18);
    --lh-danger: #b64d43;
    --lh-success: #7d9b64;
    --lh-radius: 22px;
    --lh-radius-sm: 14px;
    --lh-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    --lh-font: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    --lh-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background:
        radial-gradient(circle at 10% 0%, rgba(201, 163, 95, 0.12), transparent 32rem),
        radial-gradient(circle at 90% 10%, rgba(111, 75, 58, 0.22), transparent 34rem),
        var(--lh-bg);
    color: var(--lh-text);
    font-family: var(--lh-sans);
    line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--lh-gold); }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; }

.lh-container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.lh-skip { position: absolute; left: -999px; top: 0; background: #fff; color: #000; padding: 10px; z-index: 1000; }
.lh-skip:focus { left: 10px; }

.lh-topbar { border-bottom: 1px solid var(--lh-line); color: var(--lh-muted); font-size: 13px; }
.lh-topbar-inner { display: flex; justify-content: space-between; gap: 18px; padding: 9px 0; }
.lh-header { position: sticky; top: 0; z-index: 50; background: rgba(16, 13, 11, 0.88); backdrop-filter: blur(16px); border-bottom: 1px solid var(--lh-line); }
.lh-header-inner { display: flex; align-items: center; gap: 26px; padding: 18px 0; }
.lh-logo { display: inline-flex; align-items: center; gap: 12px; }
.lh-logo-mark { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--lh-gold); border-radius: 50%; color: var(--lh-gold); font-family: var(--lh-font); letter-spacing: .08em; }
.lh-logo-text { display: grid; line-height: 1.1; }
.lh-logo-text strong { font-family: var(--lh-font); font-size: 22px; font-weight: 500; }
.lh-logo-text small { color: var(--lh-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .15em; }
.lh-nav { margin-left: auto; }
.lh-menu { list-style: none; display: flex; align-items: center; gap: 22px; margin: 0; padding: 0; }
.lh-menu a { color: var(--lh-muted); font-size: 14px; text-transform: uppercase; letter-spacing: .1em; }
.lh-menu a:hover { color: var(--lh-text); }
.lh-menu-toggle { display: none; color: var(--lh-text); background: transparent; border: 1px solid var(--lh-line); border-radius: 12px; padding: 8px 12px; }
.lh-cart-link { display: inline-flex; align-items: center; gap: 9px; border: 1px solid var(--lh-line); padding: 10px 14px; border-radius: 999px; color: var(--lh-text); }
.lh-cart-count { min-width: 23px; height: 23px; display: inline-grid; place-items: center; border-radius: 50%; background: var(--lh-gold); color: #160f0a; font-weight: 700; font-size: 12px; }

.lh-hero { padding: 86px 0 70px; }
.lh-hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(320px, .78fr); gap: 46px; align-items: center; }
.lh-eyebrow { color: var(--lh-gold); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 700; margin: 0 0 16px; }
.lh-hero h1, .lh-page-hero h1, .lh-single h1, .lh-product-info h1 { font-family: var(--lh-font); font-weight: 500; line-height: 1.05; margin: 0; }
.lh-hero h1 { font-size: clamp(44px, 7vw, 82px); max-width: 780px; }
.lh-hero-copy > p:not(.lh-eyebrow) { color: var(--lh-muted); font-size: 19px; max-width: 680px; }
.lh-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.lh-button, .button, .woocommerce button.button, .woocommerce a.button, .woocommerce input.button, .woocommerce #respond input#submit {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--lh-gold) !important;
    background: var(--lh-gold) !important;
    color: #130d09 !important;
    border-radius: 999px !important;
    padding: 13px 22px !important;
    min-height: 46px;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
    text-decoration: none !important;
}
.lh-button:hover, .button:hover, .woocommerce button.button:hover, .woocommerce a.button:hover, .woocommerce input.button:hover { transform: translateY(-1px); background: #d8b574 !important; color: #130d09 !important; }
.lh-button-ghost, .woocommerce a.button.wc-backward { background: transparent !important; color: var(--lh-text) !important; border-color: var(--lh-line) !important; }
.lh-button-ghost:hover, .woocommerce a.button.wc-backward:hover { border-color: var(--lh-gold) !important; color: var(--lh-gold) !important; background: transparent !important; }
.lh-button-small { padding: 10px 15px !important; min-height: 38px; font-size: 13px; }

.lh-hero-panel { min-height: 430px; }
.lh-featured-article { min-height: 430px; border-radius: var(--lh-radius); overflow: hidden; position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; background: linear-gradient(135deg, #2b211b, #120e0b); box-shadow: var(--lh-shadow); border: 1px solid var(--lh-line); }
.lh-featured-article img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.lh-featured-article::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(16, 13, 11, .92), transparent 60%); }
.lh-featured-article span, .lh-featured-article h2 { position: relative; z-index: 1; }
.lh-featured-article span { color: var(--lh-gold); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; }
.lh-featured-article h2 { font-family: var(--lh-font); font-weight: 500; font-size: clamp(27px, 4vw, 42px); line-height: 1.12; margin: 10px 0 0; }

.lh-section { padding: 72px 0; }
.lh-section-muted { background: rgba(255, 255, 255, 0.025); border-top: 1px solid var(--lh-line); border-bottom: 1px solid var(--lh-line); }
.lh-section-head { max-width: 720px; margin-bottom: 32px; }
.lh-section-head h2 { font-family: var(--lh-font); font-size: clamp(31px, 4vw, 52px); line-height: 1.1; margin: 0 0 10px; font-weight: 500; }
.lh-section-head p:not(.lh-eyebrow) { color: var(--lh-muted); margin: 0; }

.lh-collection-grid, .lh-product-grid, .lh-article-grid { display: grid; gap: 22px; }
.lh-collection-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.lh-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.lh-article-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.lh-collection-card, .lh-product-card, .lh-article-card, .lh-side-card, .lh-checkout-card, .lh-order-review-card, .lh-cart-summary-panel, .lh-tabs-shell {
    background: rgba(33, 25, 20, 0.82);
    border: 1px solid var(--lh-line);
    border-radius: var(--lh-radius);
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .16);
}
.lh-collection-card { padding: 14px; display: grid; gap: 12px; }
.lh-collection-image { display: block; aspect-ratio: 4 / 3; border-radius: 16px; overflow: hidden; background: #2c221c; }
.lh-collection-image img, .lh-product-card-image img, .lh-article-image img { width: 100%; height: 100%; object-fit: cover; }
.lh-collection-title { font-family: var(--lh-font); font-size: 22px; line-height: 1.1; }
.lh-collection-card small { color: var(--lh-muted); }
.lh-placeholder { display: block; width: 100%; height: 100%; min-height: 150px; background: linear-gradient(135deg, rgba(201,163,95,.16), rgba(255,255,255,.04)); }

.lh-product-card { display: flex; flex-direction: column; }
.lh-product-card-image { aspect-ratio: 1 / 1; background: #2c221c; display: block; }
.lh-product-card-body { padding: 18px; display: grid; gap: 10px; flex: 1; }
.lh-product-type { margin: 0; color: var(--lh-gold); font-size: 12px; text-transform: uppercase; letter-spacing: .11em; min-height: 18px; }
.lh-product-card h3 { margin: 0; font-family: var(--lh-font); font-size: 22px; line-height: 1.18; font-weight: 500; }
.lh-product-price, .lh-single-price { color: var(--lh-text); font-size: 18px; font-weight: 700; }
.lh-product-actions { margin-top: auto; }

.lh-article-card { display: grid; }
.lh-article-image { aspect-ratio: 4 / 3; background: #2c221c; display: block; }
.lh-article-card > div { padding: 20px; }
.lh-post-meta { color: var(--lh-gold); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; margin: 0 0 8px; }
.lh-article-card h2, .lh-article-card h3 { font-family: var(--lh-font); font-weight: 500; line-height: 1.15; margin: 0 0 12px; }
.lh-article-card h2 { font-size: 30px; }
.lh-article-card h3 { font-size: 24px; }
.lh-article-card p { color: var(--lh-muted); }
.lh-read-more { color: var(--lh-gold); font-weight: 700; }
.lh-article-grid-list { grid-template-columns: 1fr; }
.lh-article-card-wide { grid-template-columns: 290px 1fr; }

.lh-brand-note { padding: 90px 0; }
.lh-brand-note-inner { border: 1px solid var(--lh-line); border-radius: calc(var(--lh-radius) + 10px); padding: clamp(30px, 6vw, 70px); background: radial-gradient(circle at 80% 10%, var(--lh-gold-soft), transparent 30rem), rgba(33, 25, 20, .7); }
.lh-brand-note h2 { font-family: var(--lh-font); font-size: clamp(34px, 5vw, 62px); line-height: 1.05; font-weight: 500; margin: 0 0 16px; }
.lh-brand-note p:not(.lh-eyebrow) { max-width: 760px; color: var(--lh-muted); font-size: 19px; }

.lh-page-hero { padding: 72px 0 42px; border-bottom: 1px solid var(--lh-line); background: radial-gradient(circle at 18% 0%, rgba(201,163,95,.12), transparent 30rem); }
.lh-page-hero h1 { font-size: clamp(36px, 6vw, 66px); max-width: 900px; }
.lh-page-hero p:not(.lh-eyebrow) { color: var(--lh-muted); max-width: 760px; font-size: 18px; }
.lh-page-content, .lh-content { color: var(--lh-text); }
.lh-content-wrap { max-width: 860px; }
.lh-content { font-family: var(--lh-font); font-size: 21px; line-height: 1.8; }
.lh-content h2, .lh-content h3, .lh-page-content h2, .lh-page-content h3 { font-family: var(--lh-font); line-height: 1.15; margin-top: 2em; }
.lh-content p, .lh-page-content p { margin-bottom: 1.25em; }
.lh-content blockquote { border-left: 3px solid var(--lh-gold); margin: 2em 0; padding: .4em 0 .4em 1.2em; color: var(--lh-muted); font-size: 1.15em; }
.lh-single-hero { padding: 72px 0 30px; }
.lh-single-head { max-width: 880px; }
.lh-single h1 { font-size: clamp(40px, 6vw, 74px); }
.lh-single-head p:not(.lh-eyebrow) { color: var(--lh-muted); font-size: 20px; }
.lh-single-image { margin-top: 32px; }
.lh-single-image img { border-radius: var(--lh-radius); width: 100%; max-height: 620px; object-fit: cover; border: 1px solid var(--lh-line); }

.lh-layout-with-sidebar, .lh-shop-layout { display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 28px; align-items: start; }
.lh-shop-layout { grid-template-columns: 260px minmax(0, 1fr); }
.lh-sidebar { position: sticky; top: 110px; }
.lh-side-card { padding: 22px; }
.lh-side-card h3 { font-family: var(--lh-font); font-size: 24px; margin: 0 0 14px; font-weight: 500; }
.lh-side-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.lh-side-card a { color: var(--lh-muted); }
.lh-side-card li.is-active a, .lh-side-card a:hover { color: var(--lh-gold); }
.lh-shop-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 24px; color: var(--lh-muted); }
.lh-shop-toolbar select, .woocommerce-ordering select { background: var(--lh-bg-card); color: var(--lh-text); border: 1px solid var(--lh-line); border-radius: 999px; padding: 10px 14px; }
.woocommerce-pagination { margin-top: 32px; }
.woocommerce-pagination ul { display: flex; list-style: none; gap: 8px; padding: 0; justify-content: center; }
.woocommerce-pagination a, .woocommerce-pagination span { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--lh-line); border-radius: 50%; }
.woocommerce-pagination .current { background: var(--lh-gold); color: #120d09; border-color: var(--lh-gold); }

.lh-product-single { padding: 64px 0 34px; }
.lh-product-single-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(360px, .68fr); gap: 44px; align-items: start; }
.lh-product-main-image { background: var(--lh-bg-card); border: 1px solid var(--lh-line); border-radius: var(--lh-radius); overflow: hidden; }
.lh-product-main-image img { width: 100%; height: auto; }
.lh-product-thumbs { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.lh-product-thumbs a { width: 76px; height: 76px; border-radius: 13px; overflow: hidden; border: 1px solid var(--lh-line); background: var(--lh-bg-card); }
.lh-product-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.lh-product-info { background: rgba(33,25,20,.72); border: 1px solid var(--lh-line); border-radius: var(--lh-radius); padding: clamp(24px, 4vw, 38px); position: sticky; top: 110px; }
.lh-product-info h1 { font-size: clamp(34px, 5vw, 56px); }
.lh-single-price { margin-top: 18px; font-size: 28px; color: var(--lh-gold); }
.lh-stock-line { margin: 8px 0 22px; color: var(--lh-muted); }
.lh-product-short { color: var(--lh-muted); }
.lh-product-buy-box { margin: 24px 0; padding: 18px; border-radius: var(--lh-radius-sm); background: rgba(0,0,0,.18); border: 1px solid var(--lh-line); }
.lh-product-buy-box form.cart { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.quantity input.qty { width: 72px; min-height: 45px; border: 1px solid var(--lh-line); border-radius: 999px; background: rgba(0,0,0,.18); color: var(--lh-text); text-align: center; }
.lh-product-notes { display: grid; gap: 12px; color: var(--lh-muted); }
.lh-product-notes div { display: grid; gap: 2px; padding-top: 12px; border-top: 1px solid var(--lh-line); }
.lh-product-notes strong { color: var(--lh-text); }
.lh-tabs-shell { padding: 24px; }
.woocommerce-tabs ul.tabs { list-style: none; display: flex; gap: 10px; padding: 0; margin: 0 0 20px; flex-wrap: wrap; }
.woocommerce-tabs ul.tabs li a { display: inline-flex; padding: 10px 16px; border: 1px solid var(--lh-line); border-radius: 999px; color: var(--lh-muted); }
.woocommerce-tabs ul.tabs li.active a { background: var(--lh-gold); color: #120d09; border-color: var(--lh-gold); }
.woocommerce-Tabs-panel { color: var(--lh-muted); }
.woocommerce-Tabs-panel h2 { color: var(--lh-text); font-family: var(--lh-font); font-weight: 500; }

.lh-cart-shell { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 28px; align-items: start; }
.lh-cart-form { display: grid; gap: 18px; }
.lh-cart-list { display: grid; gap: 16px; }
.lh-cart-item { display: grid; grid-template-columns: 110px minmax(0, 1fr) 110px 130px 120px; gap: 18px; align-items: center; background: rgba(33,25,20,.82); border: 1px solid var(--lh-line); border-radius: var(--lh-radius); padding: 16px; }
.lh-cart-item-image { border-radius: 16px; overflow: hidden; background: #2c221c; }
.lh-cart-item-image img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.lh-cart-item h2 { font-family: var(--lh-font); font-size: 24px; font-weight: 500; line-height: 1.16; margin: 0 0 8px; }
.lh-cart-meta { color: var(--lh-muted); font-size: 13px; }
.lh-remove-link { color: var(--lh-danger); font-size: 13px; }
.lh-cart-item-price span, .lh-cart-item-quantity span, .lh-cart-item-subtotal span { display: block; color: var(--lh-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px; }
.lh-cart-actions-bar { display: flex; justify-content: space-between; align-items: end; gap: 18px; flex-wrap: wrap; background: rgba(33,25,20,.52); border: 1px solid var(--lh-line); border-radius: var(--lh-radius); padding: 18px; }
.lh-coupon label { display: block; color: var(--lh-muted); margin-bottom: 7px; }
.lh-coupon > div { display: flex; gap: 8px; }
.lh-coupon input { min-height: 46px; background: rgba(0,0,0,.22); border: 1px solid var(--lh-line); color: var(--lh-text); border-radius: 999px; padding: 0 16px; }
.lh-cart-summary-panel { padding: 24px; position: sticky; top: 110px; }
.lh-cart-summary-panel h2, .cart_totals h2 { font-family: var(--lh-font); font-weight: 500; margin-top: 0; }
.cart_totals table { width: 100%; border-collapse: collapse; color: var(--lh-muted); }
.cart_totals th, .cart_totals td { padding: 14px 0; border-bottom: 1px solid var(--lh-line); text-align: left; }
.wc-proceed-to-checkout { margin-top: 20px; }
.wc-proceed-to-checkout .checkout-button { width: 100%; }

.lh-checkout-grid { display: grid; grid-template-columns: minmax(0, 1fr) 430px; gap: 28px; align-items: start; }
.lh-checkout-fields { display: grid; gap: 22px; }
.lh-checkout-card, .lh-order-review-card { padding: 24px; }
.lh-checkout-card h2, .lh-order-review-card h2 { font-family: var(--lh-font); font-weight: 500; font-size: 30px; margin: 0 0 18px; }
.lh-order-review-card { position: sticky; top: 110px; }
.woocommerce form .form-row { margin: 0 0 16px; }
.woocommerce form .form-row label { color: var(--lh-muted); margin-bottom: 6px; display: block; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
    width: 100%; min-height: 46px; border-radius: 14px; border: 1px solid var(--lh-line); background: rgba(0,0,0,.22); color: var(--lh-text); padding: 10px 13px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered { color: var(--lh-text); line-height: 24px; }
.select2-dropdown { background: var(--lh-bg-card); color: var(--lh-text); border-color: var(--lh-line); }
.woocommerce-checkout-review-order-table { width: 100%; border-collapse: collapse; color: var(--lh-muted); }
.woocommerce-checkout-review-order-table th, .woocommerce-checkout-review-order-table td { padding: 12px 0; border-bottom: 1px solid var(--lh-line); text-align: left; vertical-align: top; }
.woocommerce-checkout-payment { margin-top: 18px; }
.wc_payment_methods { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 12px; }
.payment_box { color: var(--lh-muted); padding: 12px; border-radius: 14px; background: rgba(0,0,0,.16); margin-top: 8px; }
.place-order .button { width: 100%; }
.woocommerce-error, .woocommerce-info, .woocommerce-message { list-style: none; border: 1px solid var(--lh-line); border-left: 4px solid var(--lh-gold); border-radius: 16px; background: rgba(33,25,20,.9); color: var(--lh-text); padding: 16px 18px; margin: 0 0 20px; }
.woocommerce-error { border-left-color: var(--lh-danger); }
.woocommerce-message { border-left-color: var(--lh-success); }
.lh-empty-state { text-align: center; max-width: 680px; margin: 0 auto; background: rgba(33,25,20,.78); border: 1px solid var(--lh-line); border-radius: var(--lh-radius); padding: 44px; }
.lh-empty-state h2 { font-family: var(--lh-font); font-size: 38px; font-weight: 500; line-height: 1.1; margin: 0 0 12px; }
.lh-empty-state p { color: var(--lh-muted); }
.lh-order-overview { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; list-style: none; padding: 0; margin: 24px 0; }
.lh-order-overview li { background: rgba(33,25,20,.82); border: 1px solid var(--lh-line); border-radius: 16px; padding: 16px; color: var(--lh-muted); }
.lh-order-overview strong { display: block; color: var(--lh-text); }

.search-form { display: flex; gap: 10px; margin-top: 20px; max-width: 560px; }
.search-field { flex: 1; border-radius: 999px; border: 1px solid var(--lh-line); background: rgba(0,0,0,.22); color: var(--lh-text); padding: 12px 16px; }
.search-submit { border-radius: 999px; border: 1px solid var(--lh-gold); background: var(--lh-gold); color: #120d09; padding: 0 20px; font-weight: 700; }

.lh-footer { border-top: 1px solid var(--lh-line); background: #0c0908; padding: 54px 0 24px; }
.lh-footer-grid { display: grid; grid-template-columns: 1.2fr .55fr .55fr; gap: 34px; }
.lh-footer p, .lh-footer a, .lh-footer-bottom { color: var(--lh-muted); }
.lh-footer h3 { font-family: var(--lh-font); font-weight: 500; margin-top: 0; color: var(--lh-text); }
.lh-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.lh-footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--lh-line); margin-top: 40px; padding-top: 20px; font-size: 13px; }

@media (max-width: 1000px) {
    .lh-hero-grid, .lh-product-single-grid, .lh-cart-shell, .lh-checkout-grid, .lh-shop-layout, .lh-layout-with-sidebar { grid-template-columns: 1fr; }
    .lh-product-grid, .lh-collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lh-article-grid { grid-template-columns: 1fr; }
    .lh-sidebar, .lh-product-info, .lh-cart-summary-panel, .lh-order-review-card { position: static; }
    .lh-cart-item { grid-template-columns: 90px minmax(0, 1fr); }
    .lh-cart-item-price, .lh-cart-item-quantity, .lh-cart-item-subtotal { grid-column: 2; }
    .lh-order-overview { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
    .lh-container { width: min(100% - 28px, 1180px); }
    .lh-topbar { display: none; }
    .lh-header-inner { flex-wrap: wrap; gap: 14px; }
    .lh-menu-toggle { display: inline-flex; margin-left: auto; }
    .lh-nav { display: none; order: 5; width: 100%; margin-left: 0; }
    .lh-nav.is-open { display: block; }
    .lh-menu { flex-direction: column; align-items: flex-start; gap: 13px; padding: 12px 0; }
    .lh-cart-link { margin-left: 0; }
    .lh-hero { padding: 48px 0; }
    .lh-hero-panel, .lh-featured-article { min-height: 330px; }
    .lh-product-grid, .lh-collection-grid { grid-template-columns: 1fr; }
    .lh-article-card-wide { grid-template-columns: 1fr; }
    .lh-footer-grid { grid-template-columns: 1fr; }
    .lh-footer-bottom { flex-direction: column; }
    .lh-cart-actions-bar, .lh-coupon > div { align-items: stretch; flex-direction: column; }
    .lh-order-overview { grid-template-columns: 1fr; }
    .lh-content { font-size: 19px; }
}

/* v003: stable product image frames and zoomable gallery */
.lh-product-card-image {
    position: relative;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--lh-bg-paper);
    border-bottom: 1px solid var(--lh-line);
}

.lh-product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 14px;
    transition: transform .28s ease;
}

.lh-product-card:hover .lh-product-card-image img {
    transform: scale(1.035);
}

.lh-product-card h3 {
    min-height: 78px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lh-product-type {
    min-height: 46px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lh-product-gallery {
    min-width: 0;
}

.lh-product-main-image {
    position: relative;
    width: 100%;
    height: clamp(420px, 62vh, 640px);
    display: grid;
    place-items: center;
    background: var(--lh-bg-paper);
    border: 1px solid var(--lh-line);
    border-radius: var(--lh-radius);
    overflow: hidden;
    cursor: zoom-in;
}

.lh-product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: clamp(18px, 3vw, 34px);
}

.lh-product-main-image::after {
    content: "Click to enlarge";
    position: absolute;
    right: 16px;
    bottom: 16px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(16, 13, 11, .72);
    color: var(--lh-text);
    border: 1px solid var(--lh-line);
    font-size: 12px;
    letter-spacing: .04em;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none;
}

.lh-product-main-image:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.lh-product-main-image-empty {
    cursor: default;
}

.lh-product-main-image-empty::after {
    display: none;
}

.lh-product-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.lh-product-thumb,
.lh-product-thumbs a {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    overflow: hidden;
    border: 1px solid var(--lh-line);
    background: var(--lh-bg-paper);
    padding: 0;
    cursor: pointer;
    opacity: .72;
    transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}

.lh-product-thumb:hover,
.lh-product-thumb.is-active,
.lh-product-thumbs a:hover {
    opacity: 1;
    border-color: var(--lh-gold);
    transform: translateY(-1px);
}

.lh-product-thumb img,
.lh-product-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 7px;
}

.lh-lightbox-open {
    overflow: hidden;
}

.lh-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 34px;
    background: rgba(8, 6, 5, .92);
    backdrop-filter: blur(10px);
}

.lh-lightbox.is-open {
    display: flex;
}

.lh-lightbox img {
    max-width: min(1120px, 94vw);
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--lh-radius-sm);
    background: var(--lh-bg-paper);
    box-shadow: var(--lh-shadow);
}

.lh-lightbox-close {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid var(--lh-line);
    background: rgba(33, 25, 20, .92);
    color: var(--lh-text);
    font-size: 27px;
    line-height: 1;
    cursor: pointer;
}

.lh-lightbox-close:hover {
    color: var(--lh-gold);
    border-color: var(--lh-gold);
}

@media (max-width: 1000px) {
    .lh-product-main-image {
        height: clamp(360px, 58vh, 560px);
    }
}

@media (max-width: 760px) {
    .lh-product-card h3,
    .lh-product-type {
        min-height: 0;
    }

    .lh-product-main-image {
        height: min(76vh, 520px);
        min-height: 330px;
    }

    .lh-product-main-image::after {
        display: none;
    }

    .lh-lightbox {
        padding: 18px;
    }
}

/* v004: better single product proportions and horizontal assurance cards */
.lh-product-single {
    padding: 70px 0 28px;
}

.lh-product-single-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .74fr);
    gap: clamp(34px, 5vw, 58px);
    align-items: start;
}

.lh-product-main-image {
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
    max-height: 640px;
}

.lh-product-main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lh-product-info {
    padding: clamp(24px, 3.2vw, 34px);
}

.lh-product-info h1 {
    font-size: clamp(31px, 4vw, 48px);
    letter-spacing: -0.015em;
}

.lh-product-info .lh-eyebrow {
    margin-bottom: 14px;
}

.lh-single-price {
    margin-top: 22px;
    font-size: clamp(23px, 2.2vw, 30px);
}

.lh-product-short {
    font-size: 15px;
    line-height: 1.72;
}

.lh-product-buy-box {
    margin: 22px 0 0;
}

.lh-product-assurance {
    padding: 22px 0 26px;
}

.lh-product-notes-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    color: var(--lh-muted);
}

.lh-product-note {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 15px;
    align-items: start;
    padding: 20px;
    border: 1px solid var(--lh-line);
    border-radius: var(--lh-radius);
    background: rgba(33, 25, 20, .66);
    box-shadow: 0 16px 45px rgba(0, 0, 0, .14);
}

.lh-product-note > div {
    display: grid;
    gap: 5px;
    padding: 0;
    border: 0;
}

.lh-note-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(201, 163, 95, .55);
    background: rgba(201, 163, 95, .13);
    color: var(--lh-gold);
    font-size: 20px;
    line-height: 1;
}

.lh-product-note strong {
    color: var(--lh-text);
    font-family: var(--lh-font);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.15;
}

.lh-product-note span:not(.lh-note-icon) {
    font-size: 14px;
    line-height: 1.62;
}

.lh-product-tabs-section {
    padding-top: 36px;
}

@media (max-width: 1000px) {
    .lh-product-single-grid {
        grid-template-columns: 1fr;
    }

    .lh-product-main-image {
        aspect-ratio: 4 / 3;
        height: auto;
        max-height: none;
    }

    .lh-product-notes-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .lh-product-single {
        padding-top: 42px;
    }

    .lh-product-main-image {
        aspect-ratio: 1 / 1;
        height: auto;
        min-height: 0;
    }

    .lh-product-note {
        grid-template-columns: 42px minmax(0, 1fr);
        padding: 17px;
    }

    .lh-note-icon {
        width: 42px;
        height: 42px;
    }
}


/* v005: cleaner product media frame and true-size image preview */
.lh-product-single-grid {
    grid-template-columns: minmax(0, 580px) minmax(340px, 1fr);
    justify-content: center;
    align-items: start;
}

.lh-product-gallery {
    width: 100%;
    max-width: 580px;
}

.lh-product-main-image {
    width: 100%;
    max-width: 580px;
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 0;
    background: #f6efe3;
}

.lh-product-main-image img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    padding: 0;
    object-fit: contain;
    object-position: center;
}

.lh-product-info {
    max-width: 520px;
}

.lh-product-info h1 {
    font-size: clamp(30px, 3.25vw, 44px);
    line-height: 1.08;
}

.lh-lightbox {
    align-items: flex-start;
    justify-content: center;
    overflow: auto;
    padding: 56px 34px 34px;
}

.lh-lightbox img {
    max-width: none;
    max-height: none;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--lh-radius-sm);
    background: var(--lh-bg-paper);
}

.lh-lightbox::after {
    content: "Original image size";
    position: fixed;
    left: 18px;
    bottom: 18px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(33, 25, 20, .88);
    border: 1px solid var(--lh-line);
    color: var(--lh-muted);
    font-size: 12px;
    pointer-events: none;
}

@media (max-width: 1000px) {
    .lh-product-single-grid {
        grid-template-columns: 1fr;
    }

    .lh-product-gallery,
    .lh-product-main-image,
    .lh-product-info {
        max-width: none;
    }

    .lh-product-main-image {
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 760px) {
    .lh-lightbox {
        align-items: center;
        padding: 18px;
    }

    .lh-lightbox img {
        max-width: 94vw;
        max-height: 88vh;
    }

    .lh-lightbox::after {
        display: none;
    }
}

/* v006: edge-to-edge product card images for catalog and featured objects */
.lh-product-card-image {
    background: #120e0b;
    border-bottom: 0;
    padding: 0;
}

.lh-product-card-image img,
.lh-product-card .lh-product-card-image img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    padding: 0;
    object-fit: cover;
    object-position: center;
}

.lh-product-card:hover .lh-product-card-image img {
    transform: scale(1.025);
}

/* Keep placeholders calm when an item has no image. */
.lh-product-card-image .lh-placeholder {
    min-height: 100%;
    background: radial-gradient(circle at 50% 36%, rgba(201,163,95,.16), transparent 36%), #120e0b;
}

/* v007: stronger article table styling for journal posts */
.lh-content-wrap {
    overflow-x: auto;
}

.lh-content .wp-block-table {
    margin: 2.35em 0;
    overflow-x: auto;
}

.lh-content table {
    width: 100%;
    min-width: 680px;
    margin: 2.35em 0;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid rgba(201, 163, 95, .32);
    border-radius: 18px;
    background: rgba(33, 25, 20, .78);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .18);
    font-family: var(--lh-sans);
    font-size: 16px;
    line-height: 1.58;
    color: var(--lh-muted);
}

.lh-content .wp-block-table table {
    margin: 0;
}

.lh-content th,
.lh-content td {
    padding: 16px 18px;
    border-right: 1px solid rgba(239, 228, 210, .13);
    border-bottom: 1px solid rgba(239, 228, 210, .13);
    text-align: left;
    vertical-align: top;
}

.lh-content th:last-child,
.lh-content td:last-child {
    border-right: 0;
}

.lh-content tr:last-child th,
.lh-content tr:last-child td {
    border-bottom: 0;
}

.lh-content thead th,
.lh-content tbody tr:first-child th {
    background: linear-gradient(180deg, rgba(201, 163, 95, .18), rgba(201, 163, 95, .08));
    color: var(--lh-text);
    font-family: var(--lh-font);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .04em;
}

.lh-content tbody tr:nth-child(even) td,
.lh-content tbody tr:nth-child(even) th {
    background: rgba(255, 255, 255, .025);
}

.lh-content tbody tr:hover td,
.lh-content tbody tr:hover th {
    background: rgba(201, 163, 95, .06);
}

.lh-content caption,
.lh-content .wp-block-table figcaption {
    margin-top: 10px;
    color: var(--lh-muted);
    font-family: var(--lh-sans);
    font-size: 14px;
    text-align: left;
}

@media (max-width: 760px) {
    .lh-content table {
        min-width: 620px;
        font-size: 15px;
    }
    .lh-content th,
    .lh-content td {
        padding: 13px 14px;
    }
}


/* v009: homepage newsletter signup */
.lh-newsletter-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
    gap: 34px;
    margin-top: 34px;
    padding: 28px;
    border: 1px solid rgba(201, 163, 95, .28);
    border-radius: var(--lh-radius);
    background: linear-gradient(135deg, rgba(33, 25, 20, .9), rgba(14, 11, 9, .72));
    box-shadow: 0 22px 70px rgba(0, 0, 0, .18);
}

.lh-newsletter-copy h3 {
    margin: 0 0 12px;
    font-size: clamp(26px, 3vw, 44px);
    line-height: 1.05;
}

.lh-newsletter-copy p:last-child {
    margin-bottom: 0;
    max-width: 660px;
}

.lh-newsletter-form {
    display: grid;
    align-content: center;
    gap: 12px;
}

.lh-newsletter-label {
    color: var(--lh-text);
    font-family: var(--lh-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.lh-newsletter-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.lh-newsletter-form input[type="email"] {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(239, 228, 210, .16);
    border-radius: 999px;
    background: rgba(0, 0, 0, .25);
    color: var(--lh-text);
    padding: 0 18px;
    font-family: var(--lh-sans);
    font-size: 15px;
    outline: none;
}

.lh-newsletter-form input[type="email"]:focus {
    border-color: rgba(201, 163, 95, .62);
    box-shadow: 0 0 0 4px rgba(201, 163, 95, .08);
}

.lh-newsletter-consent {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    color: var(--lh-muted);
    font-family: var(--lh-sans);
    font-size: 13px;
    line-height: 1.5;
}

.lh-newsletter-consent input {
    margin-top: 2px;
    accent-color: var(--lh-gold);
}

.lh-newsletter-message {
    min-height: 18px;
    color: var(--lh-muted);
    font-family: var(--lh-sans);
    font-size: 14px;
    line-height: 1.45;
}

.lh-newsletter-message.is-success {
    color: #d6bd7a;
}

.lh-newsletter-message.is-error {
    color: #e2a39a;
}

.lh-honeypot {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 900px) {
    .lh-newsletter-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .lh-newsletter-panel {
        padding: 22px;
    }
    .lh-newsletter-row {
        grid-template-columns: 1fr;
    }
    .lh-newsletter-row .lh-button {
        width: 100%;
        justify-content: center;
    }
}

/* v014: native contact form */
.lh-contact-panel {
    margin-top: 28px;
    padding: 28px;
    border: 1px solid rgba(201, 163, 95, .26);
    border-radius: var(--lh-radius);
    background: linear-gradient(135deg, rgba(33, 25, 20, .92), rgba(14, 11, 9, .76));
    box-shadow: 0 24px 72px rgba(0, 0, 0, .22);
}

.lh-contact-form {
    display: grid;
    gap: 18px;
}

.lh-contact-hint {
    margin: 0 0 4px;
    max-width: 760px;
    color: var(--lh-muted);
    font-family: var(--lh-sans);
    font-size: 15px;
    line-height: 1.65;
}

.lh-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.lh-contact-form label {
    display: grid;
    gap: 8px;
    margin: 0;
}

.lh-contact-form label > span {
    color: var(--lh-text);
    font-family: var(--lh-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.lh-contact-form label em {
    color: var(--lh-muted);
    font-style: normal;
    font-weight: 500;
    letter-spacing: .02em;
    text-transform: none;
}

.lh-contact-form input[type="text"],
.lh-contact-form input[type="email"],
.lh-contact-form textarea {
    width: 100%;
    border: 1px solid rgba(239, 228, 210, .16);
    border-radius: 18px;
    background: rgba(0, 0, 0, .24);
    color: var(--lh-text);
    padding: 14px 16px;
    font-family: var(--lh-sans);
    font-size: 15px;
    line-height: 1.55;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.lh-contact-form input[type="text"],
.lh-contact-form input[type="email"] {
    min-height: 50px;
}

.lh-contact-form textarea {
    resize: vertical;
    min-height: 180px;
}

.lh-contact-form input[type="text"]:focus,
.lh-contact-form input[type="email"]:focus,
.lh-contact-form textarea:focus {
    border-color: rgba(201, 163, 95, .62);
    background: rgba(0, 0, 0, .32);
    box-shadow: 0 0 0 4px rgba(201, 163, 95, .08);
}

.lh-contact-consent {
    grid-template-columns: 18px 1fr !important;
    gap: 10px !important;
    align-items: start;
    color: var(--lh-muted);
    font-family: var(--lh-sans);
    font-size: 13px;
    line-height: 1.55;
}

.lh-contact-consent input {
    margin-top: 2px;
    accent-color: var(--lh-gold);
}

.lh-contact-consent span {
    color: var(--lh-muted) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.lh-contact-message {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 16px;
    font-family: var(--lh-sans);
    font-size: 14px;
    line-height: 1.5;
}

.lh-contact-message.is-success {
    border: 1px solid rgba(201, 163, 95, .35);
    background: rgba(201, 163, 95, .12);
    color: #ead49b;
}

.lh-contact-message.is-error {
    border: 1px solid rgba(226, 163, 154, .32);
    background: rgba(226, 163, 154, .11);
    color: #e8b3aa;
}

@media (max-width: 720px) {
    .lh-contact-panel {
        padding: 22px;
    }

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

    .lh-contact-form .lh-button {
        width: 100%;
        justify-content: center;
    }
}


/* v015: WordPress content image alignment fixes.
   Gutenberg/editor alignment classes must behave the same on the public site. */
.lh-page-content::after,
.lh-content::after {
    content: "";
    display: block;
    clear: both;
}

.lh-page-content .alignleft,
.lh-content .alignleft,
.lh-page-content figure.wp-block-image.alignleft,
.lh-content figure.wp-block-image.alignleft,
.lh-page-content img.alignleft,
.lh-content img.alignleft {
    float: left;
    clear: none;
    display: block;
    max-width: min(340px, 45%);
    margin: .35em 1.65em 1em 0;
}

.lh-page-content .alignright,
.lh-content .alignright,
.lh-page-content figure.wp-block-image.alignright,
.lh-content figure.wp-block-image.alignright,
.lh-page-content img.alignright,
.lh-content img.alignright {
    float: right;
    clear: none;
    display: block;
    max-width: min(340px, 45%);
    margin: .35em 0 1em 1.65em;
}

.lh-page-content .aligncenter,
.lh-content .aligncenter,
.lh-page-content figure.wp-block-image.aligncenter,
.lh-content figure.wp-block-image.aligncenter {
    display: block;
    margin: 1.8em auto;
    text-align: center;
}

.lh-page-content figure.wp-block-image,
.lh-content figure.wp-block-image {
    line-height: 0;
}

.lh-page-content figure.wp-block-image img,
.lh-content figure.wp-block-image img,
.lh-page-content img.alignleft,
.lh-content img.alignleft,
.lh-page-content img.alignright,
.lh-content img.alignright {
    border-radius: 18px;
    border: 1px solid var(--lh-line);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .24);
}

.lh-page-content figure.wp-block-image figcaption,
.lh-content figure.wp-block-image figcaption {
    margin-top: 10px;
    color: var(--lh-muted);
    font-family: var(--lh-sans);
    font-size: 13px;
    line-height: 1.45;
}

@media (max-width: 760px) {
    .lh-page-content .alignleft,
    .lh-content .alignleft,
    .lh-page-content .alignright,
    .lh-content .alignright,
    .lh-page-content figure.wp-block-image.alignleft,
    .lh-content figure.wp-block-image.alignleft,
    .lh-page-content figure.wp-block-image.alignright,
    .lh-content figure.wp-block-image.alignright,
    .lh-page-content img.alignleft,
    .lh-content img.alignleft,
    .lh-page-content img.alignright,
    .lh-content img.alignright {
        float: none;
        max-width: 100%;
        margin: 1.4em 0;
    }
}


/* v016: click-controlled dropdown menu.
   Submenus should not stretch the header; they open as floating panels. */
.lh-menu > li {
    position: relative;
}

.lh-menu > .menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lh-menu > .menu-item-has-children > a::after {
    content: "▾";
    display: inline-block;
    color: var(--lh-gold);
    font-size: 10px;
    line-height: 1;
    opacity: .82;
    transform: translateY(-1px);
    transition: transform .18s ease, opacity .18s ease;
}

.lh-menu > .menu-item-has-children.is-submenu-open > a::after {
    transform: translateY(-1px) rotate(180deg);
    opacity: 1;
}

.lh-menu .sub-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    z-index: 90;
    display: grid;
    gap: 2px;
    min-width: 285px;
    max-width: min(360px, calc(100vw - 36px));
    margin: 0;
    padding: 10px;
    list-style: none;
    background: rgba(16, 13, 11, .98);
    border: 1px solid rgba(239, 228, 210, .16);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .46);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.lh-menu .sub-menu::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -6px;
    width: 10px;
    height: 10px;
    background: rgba(16, 13, 11, .98);
    border-left: 1px solid rgba(239, 228, 210, .16);
    border-top: 1px solid rgba(239, 228, 210, .16);
    transform: translateX(-50%) rotate(45deg);
}

.lh-menu > .menu-item-has-children.is-submenu-open > .sub-menu,
.lh-menu > .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.lh-menu .sub-menu li {
    display: block;
    width: 100%;
}

.lh-menu .sub-menu a {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--lh-muted);
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: .09em;
    text-transform: uppercase;
    white-space: normal;
}

.lh-menu .sub-menu a:hover,
.lh-menu .sub-menu a:focus {
    background: rgba(201, 163, 95, .10);
    color: var(--lh-text);
    outline: none;
}

@media (max-width: 760px) {
    .lh-menu > li {
        width: 100%;
    }

    .lh-menu > .menu-item-has-children > a {
        justify-content: space-between;
        width: 100%;
    }

    .lh-menu .sub-menu {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        max-width: none;
        margin: 4px 0 4px 0;
        padding: 6px 0 6px 14px;
        background: transparent;
        border: 0;
        border-left: 1px solid rgba(201, 163, 95, .22);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        transition: none;
    }

    .lh-menu .sub-menu::before {
        display: none;
    }

    .lh-menu > .menu-item-has-children.is-submenu-open > .sub-menu,
    .lh-menu > .menu-item-has-children:focus-within > .sub-menu {
        display: grid;
        transform: none;
    }

    .lh-menu .sub-menu a {
        padding: 8px 0;
        font-size: 12px;
        letter-spacing: .08em;
    }

    .lh-menu .sub-menu a:hover,
    .lh-menu .sub-menu a:focus {
        background: transparent;
        color: var(--lh-gold);
    }
}


/* v018: branded WooCommerce pagination for shop and category pages - horizontal fixed */
.woocommerce nav.woocommerce-pagination,
.woocommerce-pagination {
    clear: both;
    width: 100%;
    margin: 44px 0 8px !important;
    padding: 0 !important;
    text-align: center;
}

.woocommerce nav.woocommerce-pagination ul,
.woocommerce-pagination ul,
.woocommerce-pagination ul.page-numbers {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 9px;
    max-width: 100%;
    margin: 0 auto !important;
    padding: 10px !important;
    list-style: none !important;
    border: 1px solid rgba(239, 228, 210, .13) !important;
    border-radius: 999px;
    background:
        radial-gradient(circle at 16% 20%, rgba(201, 163, 95, .12), transparent 12rem),
        rgba(33, 25, 20, .66);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .22);
}

.woocommerce nav.woocommerce-pagination ul li,
.woocommerce-pagination ul li {
    display: block !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    list-style: none !important;
    overflow: visible !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span,
.woocommerce-pagination a.page-numbers,
.woocommerce-pagination span.page-numbers {
    display: inline-grid !important;
    place-items: center;
    width: 43px;
    height: 43px;
    min-width: 43px;
    padding: 0 !important;
    border: 1px solid rgba(239, 228, 210, .15) !important;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, .22) !important;
    color: var(--lh-muted) !important;
    font-family: var(--lh-sans);
    font-size: 14px;
    font-weight: 700;
    line-height: 1 !important;
    text-decoration: none !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
    transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce-pagination a.page-numbers:hover,
.woocommerce-pagination a.page-numbers:focus {
    transform: translateY(-1px);
    border-color: rgba(201, 163, 95, .66) !important;
    background: rgba(201, 163, 95, .11) !important;
    color: var(--lh-text) !important;
    outline: none;
    box-shadow: 0 0 0 4px rgba(201, 163, 95, .07);
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce-pagination span.page-numbers.current {
    background: var(--lh-gold) !important;
    border-color: var(--lh-gold) !important;
    color: #130d09 !important;
    box-shadow:
        0 0 0 5px rgba(201, 163, 95, .10),
        0 12px 28px rgba(201, 163, 95, .18);
}

.woocommerce nav.woocommerce-pagination ul li span.dots,
.woocommerce-pagination span.page-numbers.dots {
    width: 38px;
    min-width: 38px;
    border-color: transparent !important;
    background: transparent !important;
    color: var(--lh-gold) !important;
    box-shadow: none;
}

.woocommerce-pagination a.page-numbers.prev,
.woocommerce-pagination a.page-numbers.next,
.woocommerce nav.woocommerce-pagination ul li a.prev,
.woocommerce nav.woocommerce-pagination ul li a.next {
    width: auto;
    min-width: 48px;
    padding: 0 16px !important;
    border-radius: 999px !important;
    color: var(--lh-text) !important;
}

.lh-shop-main .woocommerce-pagination::before {
    content: "";
    display: block;
    width: min(520px, 100%);
    height: 1px;
    margin: 0 auto 22px;
    background: linear-gradient(90deg, transparent, rgba(201, 163, 95, .32), transparent);
}

@media (max-width: 760px) {
    .woocommerce nav.woocommerce-pagination,
    .woocommerce-pagination {
        margin-top: 34px !important;
    }

    .woocommerce nav.woocommerce-pagination ul,
    .woocommerce-pagination ul,
    .woocommerce-pagination ul.page-numbers {
        width: 100%;
        gap: 7px;
        padding: 9px !important;
        border-radius: 24px;
    }

    .woocommerce nav.woocommerce-pagination ul li a,
    .woocommerce nav.woocommerce-pagination ul li span,
    .woocommerce-pagination a.page-numbers,
    .woocommerce-pagination span.page-numbers {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 13px;
    }

    .woocommerce-pagination a.page-numbers.prev,
    .woocommerce-pagination a.page-numbers.next,
    .woocommerce nav.woocommerce-pagination ul li a.prev,
    .woocommerce nav.woocommerce-pagination ul li a.next {
        min-width: 44px;
        padding: 0 12px !important;
    }
}


/* v018 safety: never let the pagination wrapper or ul become a vertical grid */
.lh-shop-main nav.woocommerce-pagination ul.page-numbers,
.lh-shop-main .woocommerce-pagination ul.page-numbers,
.lh-shop-main .page-numbers:not(a):not(span) {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
}

.lh-shop-main nav.woocommerce-pagination ul.page-numbers > li,
.lh-shop-main .woocommerce-pagination ul.page-numbers > li {
    display: inline-flex !important;
    width: auto !important;
}

/* v019: compact customer account menu near cart */
.lh-header-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 2px;
}

.lh-account-menu {
    position: relative;
}

.lh-account-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 45px;
    padding: 10px 14px;
    border: 1px solid var(--lh-line);
    border-radius: 999px;
    background: rgba(0, 0, 0, .16);
    color: var(--lh-muted);
    cursor: pointer;
    transition: border-color .18s ease, color .18s ease, background .18s ease, box-shadow .18s ease;
}

.lh-account-toggle:hover,
.lh-account-toggle:focus,
.lh-account-menu.is-account-open .lh-account-toggle {
    border-color: rgba(201, 163, 95, .46);
    color: var(--lh-text);
    background: rgba(201, 163, 95, .07);
    outline: none;
    box-shadow: 0 0 0 4px rgba(201, 163, 95, .055);
}

.lh-account-icon {
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: var(--lh-gold);
    font-size: 17px;
    line-height: 1;
}

.lh-account-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.lh-account-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 90;
    width: 210px;
    padding: 10px;
    border: 1px solid rgba(239, 228, 210, .14);
    border-radius: 18px;
    background: rgba(20, 15, 12, .98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.lh-account-dropdown::before {
    content: "";
    position: absolute;
    right: 24px;
    top: -6px;
    width: 10px;
    height: 10px;
    border-left: 1px solid rgba(239, 228, 210, .14);
    border-top: 1px solid rgba(239, 228, 210, .14);
    background: rgba(20, 15, 12, .98);
    transform: rotate(45deg);
}

.lh-account-menu.is-account-open .lh-account-dropdown,
.lh-account-menu:focus-within .lh-account-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.lh-account-dropdown a {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 11px;
    border-radius: 12px;
    color: var(--lh-muted);
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.lh-account-dropdown a:hover,
.lh-account-dropdown a:focus {
    background: rgba(201, 163, 95, .11);
    color: var(--lh-text);
    outline: none;
}

@media (max-width: 920px) {
    .lh-account-label {
        display: none;
    }

    .lh-account-toggle {
        width: 45px;
        padding: 0;
        justify-content: center;
    }
}

@media (max-width: 760px) {
    .lh-header-actions {
        order: 4;
        width: 100%;
        justify-content: space-between;
        gap: 12px;
    }

    .lh-account-menu,
    .lh-cart-link {
        flex: 1 1 0;
    }

    .lh-account-toggle,
    .lh-cart-link {
        width: 100%;
        justify-content: center;
    }

    .lh-account-label {
        display: inline;
    }

    .lh-account-dropdown {
        left: 0;
        right: auto;
        width: min(260px, calc(100vw - 34px));
    }

    .lh-account-dropdown::before {
        left: 26px;
        right: auto;
    }
}

/* v020: branded cart layout and WooCommerce totals reset */
.woocommerce-cart .lh-cart-shell {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 430px);
    gap: 30px;
}

.woocommerce-cart .lh-cart-form,
.woocommerce-cart .lh-cart-list,
.woocommerce-cart .cart-collaterals,
.woocommerce-cart .cart_totals {
    min-width: 0;
}

/* WooCommerce normally floats cart_totals at 48%; inside our custom panel that makes the summary look broken. */
.woocommerce-cart .lh-cart-summary-panel .cart-collaterals,
.woocommerce-cart .lh-cart-summary-panel .cart_totals,
.woocommerce .lh-cart-summary-panel .cart-collaterals .cart_totals,
.woocommerce-page .lh-cart-summary-panel .cart-collaterals .cart_totals {
    float: none !important;
    width: 100% !important;
    clear: both !important;
}

.woocommerce-cart .lh-cart-summary-panel {
    padding: 28px;
    overflow: hidden;
}

.woocommerce-cart .lh-cart-summary-panel > h2 {
    margin: 0 0 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(239, 228, 210, .12);
    color: var(--lh-text);
    font-size: 28px;
    line-height: 1.15;
}

.woocommerce-cart .lh-cart-summary-panel .cart_totals h2 {
    margin: 0 0 14px;
    color: var(--lh-gold);
    font-size: 18px;
    font-family: var(--lh-sans);
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.woocommerce-cart .lh-cart-summary-panel .cart_totals table.shop_table,
.woocommerce-cart .lh-cart-summary-panel .cart_totals table {
    display: block;
    width: 100% !important;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(239, 228, 210, .12) !important;
    border-radius: 18px;
    border-collapse: separate !important;
    background: rgba(0, 0, 0, .13);
}

.woocommerce-cart .lh-cart-summary-panel .cart_totals table tbody {
    display: block;
    width: 100%;
}

.woocommerce-cart .lh-cart-summary-panel .cart_totals table tr {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(239, 228, 210, .11);
}

.woocommerce-cart .lh-cart-summary-panel .cart_totals table tr:last-child {
    border-bottom: 0;
}

.woocommerce-cart .lh-cart-summary-panel .cart_totals table th,
.woocommerce-cart .lh-cart-summary-panel .cart_totals table td {
    display: block;
    width: auto;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    line-height: 1.45;
}

.woocommerce-cart .lh-cart-summary-panel .cart_totals table th {
    flex: 0 0 auto;
    color: var(--lh-text);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.woocommerce-cart .lh-cart-summary-panel .cart_totals table td {
    flex: 1 1 auto;
    min-width: 0;
    color: var(--lh-muted);
    text-align: right;
    overflow-wrap: anywhere;
    word-break: normal;
}

.woocommerce-cart .lh-cart-summary-panel .cart_totals table td strong,
.woocommerce-cart .lh-cart-summary-panel .cart_totals table td .amount,
.woocommerce-cart .lh-cart-summary-panel .cart_totals table .order-total td {
    color: var(--lh-text);
    font-weight: 800;
}

.woocommerce-cart .lh-cart-summary-panel .cart_totals table .woocommerce-shipping-totals.shipping {
    display: block;
}

.woocommerce-cart .lh-cart-summary-panel .cart_totals table .woocommerce-shipping-totals.shipping th,
.woocommerce-cart .lh-cart-summary-panel .cart_totals table .woocommerce-shipping-totals.shipping td {
    width: 100%;
    text-align: left;
}

.woocommerce-cart .lh-cart-summary-panel .cart_totals table .woocommerce-shipping-totals.shipping th {
    margin-bottom: 9px;
}

.woocommerce-cart .lh-cart-summary-panel .cart_totals #shipping_method {
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce-cart .lh-cart-summary-panel .cart_totals #shipping_method li {
    display: block;
    margin: 0 0 8px;
    color: var(--lh-text);
}

.woocommerce-cart .lh-cart-summary-panel .cart_totals #shipping_method input {
    margin-right: 7px;
    accent-color: var(--lh-gold);
}

.woocommerce-cart .lh-cart-summary-panel .woocommerce-shipping-destination,
.woocommerce-cart .lh-cart-summary-panel .woocommerce-shipping-calculator {
    margin: 9px 0 0;
    color: var(--lh-muted);
    font-size: 13px;
    line-height: 1.5;
}

.woocommerce-cart .lh-cart-summary-panel .shipping-calculator-button {
    color: var(--lh-gold);
    font-weight: 700;
}

.woocommerce-cart .lh-cart-summary-panel .wc-proceed-to-checkout {
    padding: 22px 0 0;
}

.woocommerce-cart .lh-cart-summary-panel .checkout-button {
    width: 100%;
    text-align: center;
    font-size: 16px !important;
}

.woocommerce-cart .lh-cart-item {
    grid-template-columns: 96px minmax(0, 1fr) 86px 110px 98px;
    gap: 16px;
}

.woocommerce-cart .lh-cart-item-image {
    width: 96px;
    height: 96px;
}

.woocommerce-cart .lh-cart-item-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
}

.woocommerce-cart .lh-cart-item h2 {
    font-size: 22px;
    line-height: 1.12;
}

.woocommerce-cart .quantity .qty {
    width: 64px;
    max-width: 100%;
    text-align: center;
}

@media (max-width: 1120px) {
    .woocommerce-cart .lh-cart-shell {
        grid-template-columns: 1fr;
    }

    .woocommerce-cart .lh-cart-summary-panel {
        position: static;
    }
}

@media (max-width: 760px) {
    .woocommerce-cart .lh-cart-item {
        grid-template-columns: 82px minmax(0, 1fr);
        align-items: start;
    }

    .woocommerce-cart .lh-cart-item-image {
        width: 82px;
        height: 82px;
    }

    .woocommerce-cart .lh-cart-item h2 {
        font-size: 19px;
    }

    .woocommerce-cart .lh-cart-item-price,
    .woocommerce-cart .lh-cart-item-quantity,
    .woocommerce-cart .lh-cart-item-subtotal {
        grid-column: 2;
    }

    .woocommerce-cart .lh-cart-summary-panel {
        padding: 22px;
    }
}
