:root {
    --ltp-bg: #fafaf7;
    --ltp-bg-card: #ffffff;
    --ltp-text: #16161a;
    --ltp-text-muted: #56565b;
    --ltp-gold: #c2a14d;
    --ltp-border: #e8e6de;
    --ltp-dark: #16161a;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--ltp-bg);
    color: var(--ltp-text);
    font-family: "IBM Plex Sans", sans-serif;
    line-height: 1.5;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

a {
    color: inherit;
}

img,
svg,
video,
iframe,
embed,
object {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    overflow-wrap: break-word;
}

.ltp-skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    z-index: 9999;
    background: var(--ltp-text);
    color: #fff;
    padding: 0.65rem 1.1rem;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: 0 0 8px 0;
    transition: top 0.15s ease;
}

.ltp-skip-link:focus {
    top: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--ltp-gold);
    outline-offset: 2px;
}

input[type="checkbox"],
input[type="radio"] {
    accent-color: var(--ltp-gold);
    width: 16px;
    height: 16px;
}

input[type="hidden"] {
    display: none !important;
}

.ltp-container {
    width: min(1240px, calc(100% - 3rem));
    margin: 0 auto;
}

.ltp-announcement {
    position: relative;
    z-index: 110;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ltp-announcement-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    text-align: center;
    padding: 0.45rem 0;
}

.ltp-announcement-inner p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.35;
    font-weight: 500;
}

.ltp-announcement-inner a {
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.78rem;
    line-height: 1;
    padding-bottom: 0.1rem;
}

.ltp-announcement-close {
    appearance: none;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 1.15rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.88;
    padding: 0 0.2rem;
}

.ltp-announcement-close:hover {
    opacity: 1;
}

.ltp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--ltp-border);
    backdrop-filter: blur(10px);
}

body.admin-bar .ltp-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .ltp-header {
        top: 46px;
    }
}

.ltp-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    min-height: 74px;
}

.ltp-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.ltp-brand-logo {
    display: block;
    height: auto;
    max-width: 100%;
    flex-shrink: 0;
}

.ltp-brand-icon {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 9px;
    object-fit: cover;
    flex-shrink: 0;
}

.ltp-brand-icon-text {
    display: none;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.ltp-brand-icon-text em {
    color: var(--ltp-gold);
    font-style: normal;
}

.ltp-brand-meta {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.1;
}

.ltp-site-title {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--ltp-text);
}

.ltp-site-tagline {
    font-size: 0.72rem;
    color: #777a81;
}

.ltp-brand-mark {
    width: 33px;
    height: 33px;
    border-radius: 8px;
    background: var(--ltp-gold);
    color: var(--ltp-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
}

.ltp-brand-text {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.ltp-brand-text em {
    color: var(--ltp-gold);
    font-style: normal;
}

.ltp-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.7rem;
}

.ltp-nav a {
    text-decoration: none;
    font-size: 0.9rem;
    color: var(--ltp-text-muted);
    font-weight: 500;
    border-bottom: 2px solid transparent;
    padding: 1.45rem 0;
}

.ltp-nav li {
    position: relative;
}

.ltp-nav .menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.ltp-nav .menu-item-has-children > a::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.75;
    transform: translateY(1px);
}

.ltp-nav .sub-menu {
    position: absolute;
    top: calc(100% - 0.5rem);
    left: 0;
    min-width: 220px;
    padding: 0.45rem;
    margin: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 10px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
    z-index: 120;
}

.ltp-nav .sub-menu li {
    width: 100%;
}

.ltp-nav .sub-menu a {
    display: block;
    padding: 0.6rem 0.65rem;
    border-bottom: 0;
    border-radius: 8px;
    font-size: 0.88rem;
}

.ltp-nav .sub-menu a:hover,
.ltp-nav .sub-menu .current-menu-item > a,
.ltp-nav .sub-menu .current_page_item > a {
    background: #f7f6f2;
    color: var(--ltp-text);
}

@media (min-width: 1025px) {
    .ltp-nav > ul {
        align-items: center;
    }

    .ltp-nav > ul > li > a {
        display: inline-flex;
        align-items: center;
        height: 74px;
        line-height: 1;
        padding: 0;
    }
}

.ltp-nav li:hover > .sub-menu,
.ltp-nav li:focus-within > .sub-menu,
.ltp-nav li.is-submenu-open > .sub-menu {
    display: flex;
}

.ltp-header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.ltp-header-link {
    text-decoration: none;
    font-size: 0.95rem;
    color: var(--ltp-text-muted);
    font-weight: 500;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0 0.35rem;
}

.ltp-header-link:hover {
    color: var(--ltp-text);
}

.ltp-header-cart {
    text-decoration: none;
    border: 1px solid #d7d4ca;
    border-radius: 10px;
    color: var(--ltp-text);
    font-weight: 500;
    height: 40px;
    padding: 0 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.94rem;
    line-height: 1;
    background: #f8f8f6;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.ltp-cart-count {
    min-width: 17px;
    height: 17px;
    border-radius: 999px;
    background: #0f1117;
    color: #fff;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.63rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.2rem;
}

.ltp-header-cart:hover {
    border-color: #c9c4b6;
    background: #ffffff;
}

.ltp-shop-cta {
    height: 40px;
    padding: 0 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    line-height: 1;
    border-radius: 10px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: filter 0.2s ease;
}

.ltp-shop-cta:hover {
    filter: brightness(0.97);
}

.ltp-header-icon {
    display: none;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--ltp-border);
    background: #fff;
    border-radius: 8px;
    color: var(--ltp-text);
    text-decoration: none;
    flex-shrink: 0;
}

.ltp-header-icon svg {
    width: 1.2rem;
    height: 1.2rem;
}

.ltp-header-icon-badge {
    position: absolute;
    top: -0.35rem;
    right: -0.35rem;
}

/* Search — unlike the account/cart icons, this is the only entry point
   for search (no text-link equivalent shown at desktop width), so it
   stays visible at every breakpoint instead of following the
   .ltp-header-icon display:none default. */
.ltp-search-toggle {
    position: relative;
}

.ltp-search-icon-btn {
    display: inline-flex !important;
    cursor: pointer;
}

.ltp-search-panel {
    position: absolute;
    top: calc(100% + 0.625rem);
    right: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 14px 32px -16px rgba(22, 22, 26, 0.25);
    width: min(320px, 90vw);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}

.ltp-search-toggle.is-open .ltp-search-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ltp-search-panel-input {
    flex: 1;
    min-width: 0;
    border: 1px solid var(--ltp-border);
    border-radius: 8px;
    padding: 0.5rem 0.7rem;
    font-size: 0.875rem;
    font-family: inherit;
    color: var(--ltp-text);
}

.ltp-search-panel-input:focus {
    outline: none;
    border-color: var(--ltp-gold);
}

.ltp-search-panel-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    flex-shrink: 0;
    background: var(--ltp-dark);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.ltp-search-panel-submit svg {
    width: 1.05rem;
    height: 1.05rem;
}

.ltp-search-panel-submit:hover {
    background: var(--ltp-gold);
    color: var(--ltp-dark);
}

@media (max-width: 480px) {
    .ltp-search-panel {
        right: -3.5rem;
    }
}

.ltp-nav .current-menu-item > a,
.ltp-nav .current_page_item > a,
.ltp-nav .is-active > a,
.ltp-nav a:hover {
    color: var(--ltp-text);
    border-bottom-color: var(--ltp-gold);
}

.ltp-shop-cta,
.ltp-btn-primary {
    text-decoration: none;
    border-radius: 9px;
    background: var(--ltp-gold);
    color: var(--ltp-text);
    font-weight: 600;
    padding: 0.7rem 1.1rem;
}

.ltp-main {
    min-height: 60vh;
}

.ltp-hero {
    padding: 4.2rem 0;
}

.ltp-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.ltp-kicker {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a8842f;
    margin: 0 0 1rem;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.12;
}

.ltp-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.ltp-hero h1 span {
    color: var(--ltp-gold);
}

.ltp-lead,
.ltp-copy {
    color: var(--ltp-text-muted);
    max-width: 56ch;
    margin: 0 0 1.8rem;
}

.ltp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.ltp-btn-ghost,
.ltp-btn-dark {
    text-decoration: none;
    border-radius: 9px;
    font-weight: 600;
    padding: 0.7rem 1.1rem;
}

.ltp-btn-ghost {
    border: 1px solid #d9d6cc;
}

.ltp-btn-dark {
    border: 1px solid #34343a;
    color: #fff;
}

.ltp-metrics {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    gap: 2rem;
    align-items: center;
}

.ltp-metrics strong {
    display: block;
    font-size: 1.5rem;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
}

.ltp-metrics span {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #83838a;
    margin-top: 0.2rem;
    display: block;
}

.ltp-divider {
    width: 1px;
    height: 3rem;
    background: #e2e0d8;
}

.ltp-card-chart {
    position: relative;
    background: var(--ltp-bg-card);
    border: 1px solid var(--ltp-border);
    border-radius: 16px;
    padding: 1.125rem;
    box-shadow: 0 24px 60px -28px rgba(20, 18, 10, 0.35);
}

.ltp-chart-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.875rem;
    gap: 0.5rem;
}

.ltp-chart-label {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 600;
    font-size: 0.8125rem;
}

.ltp-chart-status {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6875rem;
    color: #2e9e6b;
}

.ltp-chart-badge {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6875rem;
    background: #f6efd9;
    color: #a8842f;
    padding: 0.25rem 0.5625rem;
    border-radius: 6px;
}

.ltp-chart-placeholder {
    border-radius: 10px;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(140deg, #131316 5%, #2a2a30 50%, #0f0f11 100%);
}

.ltp-badge-label {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c2a14d;
}

.ltp-badge-value {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.375rem;
    margin-top: 0.12rem;
}

.ltp-chart-placeholder::after,
.ltp-highlight-chart::after {
    content: "";
    position: absolute;
    inset: auto -10% 15% -10%;
    height: 2px;
    transform: rotate(-7deg);
    background: linear-gradient(90deg, transparent, var(--ltp-gold), transparent);
}

.ltp-floating-badge {
    position: absolute;
    left: -1rem;
    bottom: -1rem;
    background: var(--ltp-dark);
    color: #fff;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
}

.ltp-section {
    padding: 4rem 0;
}

.ltp-light {
    background: #fff;
    border-top: 1px solid var(--ltp-border);
    border-bottom: 1px solid var(--ltp-border);
}

.ltp-three-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.ltp-three-grid article,
.ltp-post-card,
.ltp-product-card {
    border: 1px solid var(--ltp-border);
    border-radius: 14px;
    background: var(--ltp-bg-card);
    padding: 1.2rem;
}

.ltp-highlight {
    background: #16161a;
    border-radius: 18px;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
    padding: 2rem;
    color: #fff;
}

.ltp-highlight .ltp-kicker,
.ltp-dark-band span {
    color: #c2a14d;
}

.ltp-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.ltp-post-card a {
    text-decoration: none;
}

.ltp-post-card h2,
.ltp-post-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.ltp-post-card p,
.ltp-post-card div {
    color: var(--ltp-text-muted);
    margin: 0;
}

.ltp-page-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
}

.ltp-page-title-wrap {
    margin-bottom: 0.9rem;
}

.ltp-page-title--icon {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0;
}

.ltp-page-title-icon {
    width: 1.35em;
    height: 1.35em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #a8842f;
    background: #f6efd9;
    border: 1px solid #eadfb5;
    border-radius: 10px;
    padding: 0.22rem;
}

.ltp-page-title-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.ltp-product-header,
.ltp-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.ltp-product-header span {
    color: #8a8a90;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.ltp-product-header strong {
    font-size: 0.75rem;
    background: #eaf5ef;
    color: #2e9e6b;
    border-radius: 5px;
    padding: 0.2rem 0.5rem;
}

.ltp-product-footer a {
    text-decoration: none;
    border-radius: 8px;
    padding: 0.5rem 0.85rem;
    background: var(--ltp-gold);
    font-weight: 600;
}

.ltp-dark-band {
    background: var(--ltp-dark);
    color: #fff;
}

.ltp-four-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ltp-four-grid article {
    border-right: 1px solid #26262b;
    padding: 1.6rem 1.1rem;
}

.ltp-four-grid article:last-child {
    border-right: 0;
}

.ltp-four-grid strong {
    display: block;
    font-size: 2rem;
    color: var(--ltp-gold);
}

.ltp-four-grid span {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9a9a9f;
}

/* Footer Styles */
.ltp-footer {
    background: #16161a;
    color: #fff;
    padding: 4rem 0 2.5rem;
}

/* Footer CTA Section */
.ltp-footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-bottom: 2.75rem;
    border-bottom: 1px solid #26262b;
    flex-wrap: wrap;
}

.ltp-footer-cta h2 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.875rem;
    letter-spacing: -0.02em;
    margin: 0;
    max-width: 460px;
}

.ltp-footer-cta a {
    text-decoration: none;
    background: var(--ltp-gold);
    color: var(--ltp-text);
    border-radius: 9px;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    white-space: nowrap;
}

/* Footer Main Grid */
.ltp-footer-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 2.5rem;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.ltp-footer-brand {
    max-width: 300px;
}

.ltp-footer-brand p {
    font-size: 0.84rem;
    line-height: 1.6;
    color: #9a9a9f;
    margin: 0 0 1.125rem;
}

.ltp-footer-whatsapp,
.ltp-footer-email {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.78rem;
    color: #c9c9ce;
}

.ltp-footer-email {
    margin-top: 0.35rem;
}

.ltp-footer-qr {
    width: 180px;
}

.ltp-footer-qr-link {
    display: block;
    width: 100%;
    border: 1px solid #2f2f35;
    border-radius: 10px;
    background: #1c1c21;
    padding: 0.5rem;
}

.ltp-footer-qr-link img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    background: #fff;
}

.ltp-footer-qr p {
    margin: 0.5rem 0 0;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.68rem;
    color: #9a9a9f;
}

/* Footer Columns */
.ltp-footer-columns {
    display: flex;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.ltp-footer-column h3 {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b6b70;
    margin: 0 0 0.875rem;
    font-weight: 400;
}

.ltp-footer-column nav,
.ltp-footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.ltp-footer-column a {
    text-decoration: none;
    color: #c9c9ce;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.ltp-footer-column a:hover {
    color: var(--ltp-gold);
}

/* Social Icons */
.ltp-social-icons {
    display: flex;
    gap: 0.4375rem;
    margin-bottom: 0.875rem;
}

.ltp-social-icons a {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    border: 1px solid #2f2f35;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--ltp-gold);
    text-decoration: none;
    transition: all 0.2s;
}

.ltp-social-icons a svg {
    width: 14px;
    height: 14px;
    display: block;
}

.ltp-social-icons a:hover {
    background: #34343a;
    border-color: var(--ltp-gold);
}

.ltp-tradingview-link {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.78rem;
    color: var(--ltp-gold);
    text-decoration: none;
    transition: opacity 0.2s;
}

.ltp-tradingview-link:hover {
    opacity: 0.8;
}

/* Disclaimer Box */
.ltp-footer-disclaimer {
    margin-top: 2.25rem;
    padding: 1rem 1.25rem;
    background: #1c1c21;
    border: 1px solid #26262b;
    border-radius: 10px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.75rem;
    line-height: 1.6;
    color: #9a9a9f;
}

.ltp-footer-disclaimer strong {
    color: #c9c9ce;
}

/* Footer Bottom Legal */
.ltp-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    color: #6b6b70;
}

.ltp-footer-links {
    display: flex;
    gap: 1.125rem;
}

.ltp-footer-links ul,
.ltp-footer-links .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1.125rem;
    flex-wrap: wrap;
}

.ltp-footer-links li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ltp-footer-links li::marker {
    content: '';
}

.ltp-footer-links a {
    text-decoration: none;
    color: #6b6b70;
    transition: color 0.2s;
}

.ltp-footer-links a:hover {
    color: #9a9a9f;
}

.ltp-back-to-top {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 42px;
    height: 42px;
    border: 1px solid #2f2f35;
    border-radius: 999px;
    background: #16161a;
    color: #c2a14d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    z-index: 150;
}

.ltp-back-to-top svg {
    width: 19px;
    height: 19px;
    display: block;
}

.ltp-back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.ltp-back-to-top:hover {
    border-color: #c2a14d;
}

.ltp-menu-toggle {
    display: none;
    justify-self: end;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--ltp-border);
    background: #fff;
    border-radius: 8px;
    padding: 0;
    cursor: pointer;
}

.ltp-menu-toggle-bars,
.ltp-menu-toggle-bars::before,
.ltp-menu-toggle-bars::after {
    display: block;
    width: 1.1rem;
    height: 2px;
    background: var(--ltp-text);
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.ltp-menu-toggle-bars {
    position: relative;
}

.ltp-menu-toggle-bars::before,
.ltp-menu-toggle-bars::after {
    content: "";
    position: absolute;
    left: 0;
}

.ltp-menu-toggle-bars::before {
    top: -6px;
}

.ltp-menu-toggle-bars::after {
    top: 6px;
}

.ltp-menu-toggle[aria-expanded="true"] .ltp-menu-toggle-bars {
    background: transparent;
}

.ltp-menu-toggle[aria-expanded="true"] .ltp-menu-toggle-bars::before {
    top: 0;
    transform: rotate(45deg);
}

.ltp-menu-toggle[aria-expanded="true"] .ltp-menu-toggle-bars::after {
    top: 0;
    transform: rotate(-45deg);
}

.ltp-content-page {
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 14px;
    padding: 1.5rem;
}

.ltp-content-page--cart {
    margin-top: 0;
}

/* Single blog post — content container size overrides (Layout meta box) */
.ltp-container--narrow {
    width: min(720px, calc(100% - 3rem));
}

.ltp-container--full {
    width: calc(100% - 3rem);
}

/* Single blog post — optional sidebar (Layout meta box) */
.ltp-single-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: start;
}

.ltp-single-layout--left-sidebar {
    grid-template-columns: 320px 1fr;
}

.ltp-single-layout--left-sidebar .ltp-blog-sidebar {
    grid-column: 1;
    grid-row: 1;
}

.ltp-single-layout--left-sidebar .ltp-single-post {
    grid-column: 2;
    grid-row: 1;
}

.ltp-blog-sidebar {
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 14px;
    padding: 1.5rem;
    position: sticky;
    top: 1.25rem;
}

.ltp-blog-sidebar-block + .ltp-blog-sidebar-block {
    margin-top: 1.625rem;
}

.ltp-blog-sidebar-label {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8a8a90;
    margin-bottom: 0.875rem;
}

.ltp-blog-sidebar-block p,
.ltp-blog-sidebar-block ul {
    font-size: 0.875rem;
    color: #56565b;
}

.ltp-blog-sidebar-block ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ltp-blog-sidebar-block a {
    color: #56565b;
    text-decoration: none;
}

.ltp-blog-sidebar-block a:hover {
    color: var(--ltp-text);
}

.ltp-blog-sidebar-block img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Single blog post — featured image + content typography */
.ltp-single-featured-image {
    margin: -1.5rem -1.5rem 1.5rem;
    border-radius: 14px 14px 0 0;
    overflow: hidden;
}

.ltp-single-featured-image img {
    display: block;
    width: 100%;
    height: auto;
}

.ltp-entry-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #3c3c40;
}

.ltp-entry-content > *:first-child {
    margin-top: 0;
}

.ltp-entry-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 0.875rem;
}

.ltp-entry-content h3 {
    font-size: 1.2rem;
    margin: 1.75rem 0 0.75rem;
}

.ltp-entry-content p {
    margin: 0 0 1.25rem;
}

.ltp-entry-content ul,
.ltp-entry-content ol {
    margin: 0 0 1.25rem;
    padding-left: 1.4rem;
}

.ltp-entry-content li {
    margin-bottom: 0.5rem;
}

.ltp-entry-content a {
    color: var(--ltp-gold);
    text-decoration: underline;
}

.ltp-entry-content blockquote {
    margin: 1.5rem 0;
    padding: 0.25rem 0 0.25rem 1.25rem;
    border-left: 3px solid var(--ltp-gold);
    color: #56565b;
    font-style: italic;
}

.ltp-entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.25rem 0;
}

.ltp-entry-content code {
    background: #f3f1ea;
    border-radius: 4px;
    padding: 0.15rem 0.4rem;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.875em;
}

.ltp-entry-content pre {
    background: #16161a;
    color: #f5f4ef;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    overflow-x: auto;
}

.ltp-entry-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* Single blog post — comments (comments.php) */
.ltp-comments-wrap {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--ltp-border);
}

.ltp-comments-title {
    font-size: 1.3rem;
    margin: 0 0 1.5rem;
}

.ltp-comment-list,
.ltp-comment-list .children {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ltp-comment-list > li {
    margin-bottom: 1.5rem;
}

.ltp-comment-list .children {
    margin-top: 1.5rem;
    padding-left: 1.75rem;
    border-left: 1px solid var(--ltp-border);
}

.ltp-comment-list .comment-body {
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
}

.ltp-comment-list .comment-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.ltp-comment-list .comment-author .avatar {
    border-radius: 50%;
    display: block;
}

.ltp-comment-list .comment-author b {
    font-weight: 600;
    font-size: 0.95rem;
}

.ltp-comment-list .comment-metadata {
    font-size: 0.78rem;
    color: #8a8a90;
}

.ltp-comment-list .comment-metadata a {
    color: inherit;
    text-decoration: none;
}

.ltp-comment-list .comment-content p {
    margin: 0 0 0.75rem;
    font-size: 0.94rem;
    color: #3c3c40;
    line-height: 1.6;
}

.ltp-comment-list .comment-content p:last-child {
    margin-bottom: 0;
}

.ltp-comment-list .reply {
    margin-top: 0.5rem;
}

.ltp-comment-list .comment-reply-link {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ltp-gold);
    text-decoration: none;
}

.ltp-comments-closed {
    color: #56565b;
    font-size: 0.9rem;
}

#respond {
    margin-top: 2rem;
}

#respond .comment-reply-title {
    font-size: 1.1rem;
    margin: 0 0 1rem;
}

.ltp-comment-form p {
    margin: 0 0 1rem;
}

.ltp-comment-form label {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.ltp-comment-form input[type="text"],
.ltp-comment-form input[type="email"],
.ltp-comment-form input[type="url"],
.ltp-comment-form textarea {
    width: 100%;
    border: 1px solid var(--ltp-border);
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
    font-family: inherit;
}

.ltp-comment-form textarea {
    resize: vertical;
}

.ltp-comment-submit {
    border: none;
    border-radius: 9px;
    background: var(--ltp-gold);
    color: var(--ltp-text);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
}

.ltp-comment-submit:hover {
    filter: brightness(0.97);
}

/* Footer Widgets row (Appearance > Widgets, optional, empty by default) */
.ltp-footer-widgets-row {
    background: #fafaf7;
    border-top: 1px solid var(--ltp-border);
    border-bottom: 1px solid var(--ltp-border);
    padding: 2.5rem 0;
}

.ltp-footer-widgets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.ltp-footer-widget-title {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a8a90;
    margin-bottom: 0.75rem;
}

.ltp-footer-widget p {
    font-size: 0.875rem;
    color: #56565b;
    margin: 0 0 0.75rem;
}

.woocommerce-cart .ltp-page-title-wrap--cart {
    margin-top: 0.1rem;
}

/* Why Section */
.ltp-why-intro {
    max-width: 620px;
    margin-bottom: 2.75rem;
}

.ltp-why-intro h2 {
    font-size: 2.125rem;
    margin-bottom: 0.875rem;
}

.ltp-pillar-card {
    border: 1px solid var(--ltp-border);
    border-radius: 14px;
    padding: 1.75rem;
    background: #fafaf7;
}

.ltp-pillar-no {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.75rem;
    color: #c2a14d;
    margin-bottom: 1rem;
}

.ltp-pillar-card h3 {
    font-size: 1.1875rem;
    margin-bottom: 0.5625rem;
}

.ltp-pillar-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #6b6b70;
    margin: 0;
}

/* Featured Indicator */
.ltp-featured-box {
    background: #16161a;
    border-radius: 18px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.ltp-featured-content {
    padding: 3rem 2.75rem;
    color: #fff;
}

.ltp-kicker-light {
    color: #c2a14d;
}

/* Secure checkout kicker variant — shown on checkout page */
.ltp-kicker-secure {
    color: #2e7a50;
    letter-spacing: 0.08em;
}

.ltp-featured-content h2 {
    font-size: 1.875rem;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.ltp-featured-content > p {
    font-size: 0.97rem;
    line-height: 1.6;
    color: #b6b6bc;
    margin: 0 0 1.75rem;
    max-width: 420px;
}

.ltp-featured-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.ltp-featured-stats strong {
    display: block;
    font-size: 1.875rem;
    color: #c2a14d;
    font-family: "Space Grotesk", sans-serif;
}

.ltp-featured-stats span {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9a9a9f;
    margin-top: 0.25rem;
    display: block;
}

.ltp-featured-chart {
    background: #0e0e10;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}

.ltp-featured-chart-media {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.ltp-chart-header {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6875rem;
    color: #6b6b70;
    letter-spacing: 0.06em;
    margin-top: 0.875rem;
}

.ltp-btn-dark {
    background: transparent;
}

/* Offer Section */
.ltp-section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.25rem;
}

.ltp-offer-card {
    border: 1px solid var(--ltp-border);
    border-radius: 14px;
    padding: 1.75rem;
    background: #fafaf7;
}

.ltp-offer-card h3 {
    font-size: 1.1875rem;
    margin-bottom: 0.625rem;
}

.ltp-offer-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #6b6b70;
    margin: 0;
}

/* Founder Section */
.ltp-founder-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.ltp-founder-placeholder {
    width: 100%;
    height: 320px;
    background: linear-gradient(140deg, #e8e6de 0%, #f3f1ea 50%, #dfddc8 100%);
    border-radius: 16px;
    border: 1px solid var(--ltp-border);
}

.ltp-founder-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.ltp-founder-content p {
    font-size: 1rem;
    line-height: 1.65;
    color: #56565b;
    margin: 0 0 1.5rem;
    max-width: 520px;
}

.ltp-link-underline {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--ltp-text);
    border-bottom: 2px solid var(--ltp-gold);
    padding-bottom: 0.1875rem;
}

/* Blog Section */
.ltp-blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 1.875rem;
}

.ltp-blog-header h2 {
    font-size: 1.875rem;
    margin: 0;
}

.ltp-view-all {
    text-decoration: none;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.8125rem;
    color: #a8842f;
}

.ltp-post-card {
    overflow: hidden;
    background: #fafaf7;
    display: block;
}

.ltp-post-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ltp-post-visual {
    aspect-ratio: 16 / 9;
    height: auto;
    background: #131316;
    position: relative;
    overflow: hidden;
}

.ltp-post-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.ltp-post-content {
    padding: 1.25rem;
}

.ltp-post-date {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6875rem;
    color: #8a8a90;
    margin: 0 0 0.625rem;
}

.ltp-post-card h3 {
    font-size: 1.03rem;
    line-height: 1.3;
    margin: 0;
}

@media (max-width: 1024px) {
    .ltp-hero-grid,
    .ltp-highlight,
    .ltp-blog-grid,
    .ltp-three-grid,
    .ltp-four-grid,
    .ltp-featured-box,
    .ltp-founder-grid,
    .ltp-account-hero {
        grid-template-columns: 1fr 1fr;
    }

    .ltp-single-layout,
    .ltp-single-layout--left-sidebar {
        grid-template-columns: 1fr;
    }

    .ltp-single-layout--left-sidebar .ltp-blog-sidebar,
    .ltp-single-layout--left-sidebar .ltp-single-post {
        grid-column: 1;
    }

    .ltp-blog-sidebar {
        position: static;
    }

    .ltp-single-featured-image {
        margin: -1.5rem -1.5rem 1.25rem;
    }

    .ltp-header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .ltp-header-actions {
        justify-self: end;
        grid-row: 1;
        grid-column: 3;
    }

    .ltp-brand {
        grid-row: 1;
        grid-column: 1;
    }

    .ltp-brand-logo,
    .ltp-brand-meta {
        display: none;
    }

    .ltp-brand-icon {
        display: block;
    }

    .ltp-brand-icon-text {
        display: inline-block;
    }

    .ltp-menu-toggle {
        display: flex;
    }

    .ltp-header-icon {
        display: inline-flex;
    }

    .ltp-header-account,
    .ltp-header-cart,
    .ltp-shop-cta {
        display: none;
    }

    .ltp-nav {
        display: none;
        grid-row: 2;
        grid-column: 1 / -1;
        border-top: 1px solid var(--ltp-border);
    }

    .ltp-nav.is-open {
        display: block;
    }

    .ltp-nav ul {
        flex-direction: column;
        padding: 0.75rem 0;
        gap: 0;
    }

    .ltp-nav li {
        width: 100%;
    }

    .ltp-nav a {
        display: block;
        padding: 0.75rem 0;
    }

    .ltp-nav .menu-item-has-children > a {
        display: flex;
        justify-content: space-between;
    }

    .ltp-nav .sub-menu {
        position: static;
        display: none;
        min-width: 0;
        margin: 0.1rem 0 0.35rem;
        padding: 0.25rem 0 0.35rem 0.65rem;
        border: 0;
        border-left: 1px solid var(--ltp-border);
        border-radius: 0;
        box-shadow: none;
        background: transparent;
    }

    .ltp-nav .sub-menu a {
        padding: 0.55rem 0;
        border-radius: 0;
        background: transparent;
    }

    .ltp-nav .sub-menu a:hover,
    .ltp-nav .sub-menu .current-menu-item > a,
    .ltp-nav .sub-menu .current_page_item > a {
        background: transparent;
    }

    .ltp-nav .menu-item-has-children.is-submenu-open > .sub-menu {
        display: flex;
    }

    .ltp-featured-box {
        grid-template-columns: 1fr;
    }

    .ltp-footer-columns {
        gap: 2rem;
    }
}

@media (max-width: 680px) {
    .ltp-container {
        width: min(1240px, calc(100% - 1.5rem));
    }

    .ltp-brand-logo {
        width: 110px !important;
    }

    .ltp-brand-icon {
        width: 32px;
        height: 32px;
    }

    .ltp-brand-icon-text {
        font-size: 1.05rem;
    }

    .ltp-header-actions {
        gap: 0.4rem;
    }

    .ltp-header-icon {
        width: 2.25rem;
        height: 2.25rem;
    }

    .ltp-menu-toggle {
        width: 2.25rem;
        height: 2.25rem;
    }

    .ltp-announcement-inner {
        min-height: 0;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        flex-wrap: wrap;
        gap: 0.45rem 0.65rem;
        padding: 0.55rem 0;
    }

    .ltp-announcement-inner p {
        font-size: 0.8rem;
    }

    .ltp-hero-grid,
    .ltp-highlight,
    .ltp-blog-grid,
    .ltp-three-grid,
    .ltp-four-grid,
    .ltp-metrics,
    .ltp-featured-box,
    .ltp-founder-grid,
    .ltp-account-hero {
        grid-template-columns: 1fr;
    }

    table.woocommerce-table--order-details {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .ltp-footer-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .ltp-footer-cta h2 {
        font-size: 1.5rem;
    }

    .ltp-footer-main {
        flex-direction: column;
        gap: 1.25rem;
    }

    .ltp-footer-brand {
        max-width: 100%;
    }

    .ltp-footer-qr {
        width: 160px;
    }

    .ltp-footer-columns {
        width: 100%;
        gap: 1.25rem;
        flex-direction: column;
    }

    .ltp-footer-column {
        width: 100%;
        min-width: 0;
    }

    .ltp-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .ltp-footer-links {
        width: 100%;
        flex-direction: column;
        gap: 0.4rem;
    }

    .ltp-back-to-top {
        right: 1rem;
        bottom: 1rem;
        width: 40px;
        height: 40px;
    }

    .ltp-divider {
        display: none;
    }

    .ltp-metrics {
        gap: 1.5rem;
    }
}

/* =========================================================
   Strategy page
   ========================================================= */
.ltp-breadcrumb {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.75rem;
    color: #8a8a90;
    margin-bottom: 1.5rem;
}

.ltp-breadcrumb span {
    color: var(--ltp-text);
}

.ltp-strategy-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    padding-bottom: 3.5rem;
}

.ltp-strategy-equity-card {
    background: #0e0e10;
    border-radius: 16px;
    padding: 1.625rem;
}

.ltp-rule-card {
    border: 1px solid var(--ltp-border);
    border-radius: 14px;
    padding: 1.75rem;
    background: #fafaf7;
    border-top: 3px solid var(--ltp-gold);
}

.ltp-rule-card h3 {
    font-size: 1.1875rem;
    margin-bottom: 0.625rem;
}

.ltp-rule-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #56565b;
    margin: 0;
}

.ltp-rule-entry {
    border-top-color: #2e9e6b;
}

.ltp-rule-exit {
    border-top-color: #d6573d;
}

.ltp-rule-notrade {
    border-top-color: var(--ltp-gold);
}

.ltp-performance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.75rem;
    align-items: center;
}

.ltp-stat-box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
    margin-top: 1.5rem;
}

.ltp-stat-box {
    background: #fafaf7;
    border: 1px solid var(--ltp-border);
    border-radius: 12px;
    padding: 1.125rem;
}

.ltp-stat-box strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
}

.ltp-stat-box span {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #83838a;
    margin-top: 0.25rem;
    display: block;
}

.ltp-performance-placeholder {
    width: 100%;
    min-height: 320px;
    border-radius: 16px;
    border: 1px solid var(--ltp-border);
    background: linear-gradient(140deg, #e8e6de 0%, #f3f1ea 50%, #dfddc8 100%);
}

.ltp-faq-list {
    border-top: 1px solid #ede9dc;
}

.ltp-faq-item {
    border-bottom: 1px solid #ede9dc;
    padding: 1.375rem 0;
}

.ltp-faq-q {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
}

.ltp-faq-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6b6b70;
    margin: 0;
}

.ltp-cta-band {
    background: #16161a;
    border-radius: 18px;
    padding: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #fff;
}

.ltp-cta-band h2 {
    font-size: 1.625rem;
    color: #fff;
    margin-bottom: 0.4rem;
}

.ltp-cta-band p {
    font-size: 0.875rem;
    color: #9a9a9f;
    margin: 0;
    max-width: 480px;
}

/* =========================================================
   Tools page
   ========================================================= */
.ltp-tools-sidebar .ltp-shop-sidebar-block + .ltp-shop-sidebar-block {
    margin-top: 1.5rem;
    padding-top: 1.375rem;
    border-top: 1px solid var(--ltp-border);
}

.ltp-tools-sidebar .ltp-shop-sidebar-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ltp-text);
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.ltp-tools-sidebar .ltp-shop-sidebar-label::before {
    content: "";
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    border-radius: 2px;
    background: var(--ltp-gold);
}

.ltp-tools-filter-summary {
    display: none;
}

@media (max-width: 900px) {
    .ltp-tools-filter-toggle {
        margin-bottom: 1.25rem;
    }

    .ltp-tools-filter-summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        width: 100%;
        cursor: pointer;
        background: #fff;
        border: 1px solid var(--ltp-border);
        border-radius: 12px;
        padding: 0.9375rem 1.125rem;
        font-family: "IBM Plex Mono", monospace;
        font-size: 0.75rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--ltp-text);
        font-weight: 600;
    }

    .ltp-tools-filter-chevron {
        font-size: 0.9375rem;
        line-height: 1;
        transition: transform 0.2s ease;
    }

    .ltp-tools-filter-toggle.is-open .ltp-tools-filter-summary {
        border-radius: 12px 12px 0 0;
    }

    .ltp-tools-filter-toggle.is-open .ltp-tools-filter-chevron {
        transform: rotate(180deg);
    }

    .ltp-tools-filter-toggle .ltp-tools-sidebar {
        display: none;
        border-top: none;
        border-radius: 0 0 12px 12px;
        margin-top: -1px;
    }

    .ltp-tools-filter-toggle.is-open .ltp-tools-sidebar {
        display: block;
    }
}

.ltp-tools-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.ltp-tools-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.ltp-tools-card .ltp-product-badge-row {
    margin-bottom: 0.875rem;
}

.ltp-tools-card .ltp-product-type-badge,
.ltp-tools-card .ltp-product-status-badge {
    font-size: 0.6875rem;
    padding: 0.375rem 0.75rem;
}

.ltp-tools-card h2 {
    font-size: 1.1875rem;
    line-height: 1.3;
    margin: 0 0 0.5rem;
}

.ltp-tools-card h2 a {
    color: var(--ltp-text);
    text-decoration: none;
}

.ltp-tools-card h2 a:hover {
    color: var(--ltp-gold);
}

.ltp-tools-card-tagline {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #6b6b70;
    margin: 0 0 1.125rem;
}

.ltp-tools-card-image-link {
    display: block;
    margin: 0 0 1.125rem;
    border-radius: 10px;
    overflow: hidden;
    background: #f4f3ef;
}

.ltp-tools-card-image {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.ltp-tools-card .ltp-product-specs-grid {
    margin-bottom: 1.125rem;
}

.ltp-tools-card .ltp-product-spec-pill {
    padding: 0.5rem 0.75rem;
}

.ltp-tools-card-resources {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.ltp-tools-card-resource {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4375rem 0.6875rem;
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ltp-text);
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.ltp-tools-card-resource .ltp-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--ltp-gold);
}

.ltp-tools-card-resource:hover {
    border-color: var(--ltp-gold);
    color: var(--ltp-gold);
}

.ltp-tools-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 1.125rem;
    border-top: 1px solid var(--ltp-border);
}

.ltp-tools-card-actions {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
}

.ltp-tools-card-cart-wrap {
    display: inline-flex;
}

.ltp-tools-card-feedback {
    margin-top: 0.55rem;
}

a.ltp-tools-card-cart-btn,
button.ltp-tools-card-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--ltp-dark);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 10px 18px -12px rgba(16, 18, 25, 0.7);
    transition: filter 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

a.ltp-tools-card-cart-btn .ltp-icon,
button.ltp-tools-card-cart-btn .ltp-icon {
    width: 17px;
    height: 17px;
}

a.ltp-tools-card-cart-btn:hover,
button.ltp-tools-card-cart-btn:hover {
    background: #243041;
    transform: translateY(-1px);
    box-shadow: 0 12px 20px -12px rgba(16, 18, 25, 0.78);
}

button.ltp-tools-card-cart-btn:disabled {
    cursor: default;
    opacity: 0.7;
    transform: none;
}

button.ltp-tools-card-cart-btn.is-added {
    background: #2e9e6b;
    color: #fff;
}

.ltp-tools-card-cart-msg {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    white-space: nowrap;
    overflow-x: auto;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.42rem 0.62rem;
    border-radius: 6px;
    background: #fff;
    border: 1px solid var(--ltp-border);
    box-shadow: 0 6px 14px -10px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    line-height: 1.2;
}

.ltp-tools-card-cart-msg:empty {
    display: none;
}

.ltp-tools-card-cart-msg.is-success {
    color: #1f7a3d;
    border-color: #cfe9d6;
}

.ltp-tools-card-cart-msg.is-error {
    color: #b03a26;
    border-color: #f3d3cc;
}

.ltp-tools-card-cart-msg a {
    color: #fff;
    text-decoration: none;
    padding: 0.44rem 0.72rem;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.1;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    box-sizing: border-box;
}

.ltp-tools-card-cart-msg a:hover {
    filter: brightness(0.95);
}

.ltp-tools-card-cart-msg .ltp-tools-card-cart-links {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.ltp-tools-card-cart-msg .ltp-tools-card-cart-links a:nth-child(1) {
    background: #2e9e6b;
    border-color: #2a8d60;
}

.ltp-tools-card-cart-msg .ltp-tools-card-cart-links a:nth-child(2) {
    background: #1f2937;
    border-color: #111827;
}

.ltp-tools-card-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    min-width: 0;
}

.ltp-tools-card-price .price {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--ltp-text);
    white-space: nowrap;
}

.ltp-tools-price-free {
    color: #1f8a52;
}

.ltp-tools-card-price.ltp-price-on-sale .price del {
    text-decoration-color: #c0392b;
    opacity: 0.6;
    font-size: 0.875rem;
}

.ltp-tools-card-price.ltp-price-on-sale .price ins {
    text-decoration: none;
    color: var(--ltp-text);
}

.ltp-tools-save-pill {
    display: inline-flex;
    flex-shrink: 0;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.625rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2e9e6b, #258a5c);
    color: #fff;
    padding: 0.1875rem 0.5rem;
    border-radius: 16px;
    white-space: nowrap;
    vertical-align: middle;
}

.ltp-tools-card-cta {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    background: #f8f4e8;
    color: #282730;
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.625rem 0.95rem;
    border-radius: 10px;
    border: 1px solid #ddd1b0;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.ltp-tools-card-cta:hover {
    background: #f1e6c8;
    border-color: #cdb67a;
    color: #1f1f24;
}

.ltp-tools-pagination {
    margin-top: 2rem;
    text-align: center;
}

.ltp-tools-empty {
    font-size: 0.9375rem;
    color: #6b6b70;
}

/* =========================================================
   Search results (search.php)
   ========================================================= */
.ltp-search-section-title {
    font-size: 1.375rem;
    margin: 0 0 1.25rem;
}

.ltp-search-results-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.ltp-search-result-item {
    display: block;
    border: 1px solid var(--ltp-border);
    border-radius: 12px;
    padding: 1.125rem 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.ltp-search-result-item:hover {
    border-color: var(--ltp-gold);
    background: #fdfbf4;
}

.ltp-search-result-type {
    display: inline-block;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a8a90;
    margin-bottom: 0.5rem;
}

.ltp-search-result-item h3 {
    font-size: 1.0625rem;
    margin: 0 0 0.375rem;
    color: var(--ltp-text);
}

.ltp-search-result-item p {
    font-size: 0.875rem;
    color: #56565b;
    margin: 0;
}

.ltp-tools-active-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

.ltp-tools-active-filters-label {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8a8a90;
}

.ltp-tools-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 20px;
    padding: 0.375rem 0.5rem 0.375rem 0.75rem;
    font-size: 0.78rem;
    text-decoration: none;
    color: var(--ltp-text);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.ltp-tools-filter-chip:hover {
    border-color: var(--ltp-gold);
    background: #fdf9ef;
}

.ltp-tools-filter-chip-label {
    color: #8a8a90;
}

.ltp-tools-filter-chip-value {
    font-weight: 600;
}

.ltp-tools-filter-chip-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #f1efe7;
    color: #56565b;
    font-size: 0.75rem;
    line-height: 1;
}

.ltp-tools-filter-chip:hover .ltp-tools-filter-chip-remove {
    background: var(--ltp-gold);
    color: #fff;
}

.ltp-tools-clear-filters {
    font-size: 0.78rem;
    font-weight: 600;
    color: #b03a26;
    text-decoration: underline;
}

@media (max-width: 860px) {
    .ltp-tools-grid {
        grid-template-columns: 1fr;
    }
}

.ltp-cart-cross-sell {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--ltp-border);
}

.ltp-cart-cross-sell > h2 {
    font-size: 1.375rem;
    margin: 0 0 1.25rem;
}

/* The cart-items column this renders in is narrower than the page, so the
   cards stack single-column here regardless of the wider Tools-grid
   breakpoint above. */
.ltp-cart-cross-sell .ltp-tools-grid {
    grid-template-columns: 1fr;
}

/* =========================================================
   Contact page
   ========================================================= */
.ltp-contact-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}

.ltp-contact-header-text {
    flex: 1;
    min-width: 0;
}

.ltp-contact-header .ltp-contact-whatsapp {
    flex-shrink: 0;
    width: 320px;
}

.ltp-contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 900px) {
    .ltp-contact-header {
        flex-direction: column;
        align-items: stretch;
    }

    .ltp-contact-header .ltp-contact-whatsapp {
        width: 100%;
    }

    .ltp-contact-grid {
        grid-template-columns: 1fr;
    }
}

.ltp-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.ltp-contact-whatsapp {
    text-decoration: none;
    background: var(--ltp-dark);
    border-radius: 14px;
    padding: 1.625rem;
    color: #fff;
    display: block;
}

.ltp-contact-whatsapp-number {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.375rem;
}

.ltp-contact-whatsapp-cta {
    font-size: 0.84rem;
    color: #9a9a9f;
    margin-top: 0.375rem;
}

.ltp-contact-card {
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 14px;
    padding: 1.5rem;
}

.ltp-contact-card-label {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8a8a90;
    margin-bottom: 0.875rem;
}

.ltp-contact-icon-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ltp-contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: block;
}

.ltp-contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.ltp-contact-links a {
    text-decoration: none;
    color: var(--ltp-text);
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.ltp-contact-link-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: inline-flex;
    color: #8a8a90;
    transition: color 0.2s ease;
}

.ltp-contact-link-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.ltp-contact-link-name {
    flex: 1;
}

.ltp-contact-link-arrow {
    color: #a8842f;
}

.ltp-contact-links a:hover .ltp-contact-link-icon {
    color: var(--ltp-gold);
}

.ltp-contact-hours {
    font-size: 0.9rem;
    color: #3a3a3d;
    line-height: 1.7;
    margin: 0;
}

.ltp-contact-email-link {
    text-decoration: none;
    color: var(--ltp-text);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    word-break: break-all;
}

.ltp-contact-email-link:hover {
    color: var(--ltp-gold);
}

.ltp-contact-form-card {
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 16px;
    padding: 2.25rem;
}

.ltp-contact-form-card .ltp-checkout-card-title {
    gap: 0.625rem;
}

.ltp-contact-form-card .ltp-checkout-card-title .ltp-contact-icon {
    width: 19px;
    height: 19px;
    color: var(--ltp-gold);
}

.ltp-contact-disclaimer-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.ltp-contact-disclaimer-icon {
    width: 19px;
    height: 19px;
    margin-top: 0.0625rem;
    color: #b8973f;
}

.ltp-contact-disclaimer {
    font-size: 0.8125rem;
    color: #8a8a90;
    line-height: 1.55;
    margin: 0;
}

/* Generic Contact Form 7 field styling, reused for the contact page. */
.ltp-contact-form-card .wpcf7-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ltp-contact-form-card .wpcf7-form > p {
    margin: 0;
}

.ltp-contact-form-card .wpcf7-form > p:has(textarea),
.ltp-contact-form-card .wpcf7-form > p:has(input[type="submit"]) {
    grid-column: 1 / -1;
}

/* CF7 appends .wpcf7-response-output as a direct child of <form>, not
   wrapped in a <p> like the field rows, so it needs its own rule. */
.ltp-contact-form-card .wpcf7-form > .wpcf7-response-output {
    grid-column: 1 / -1;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}

.ltp-contact-form-card .wpcf7-form label {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    font-size: 0.78rem;
    color: #8a8a90;
    font-weight: 500;
    width: 100%;
}

.ltp-contact-form-card .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.ltp-contact-form-card .wpcf7-form-control {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d9d6cc;
    border-radius: 10px;
    padding: 0.8125rem 0.9375rem;
    font-size: 0.875rem;
    font-family: "IBM Plex Sans", sans-serif;
    color: var(--ltp-text);
    background: #fff;
    appearance: auto;
}

.ltp-contact-form-card select.wpcf7-form-control {
    height: 48px;
}

.ltp-contact-form-card textarea.wpcf7-form-control {
    height: auto;
    min-height: 170px;
    resize: vertical;
}

.ltp-contact-form-card .wpcf7-form-control:focus {
    outline: none;
    border-color: var(--ltp-gold);
}

.ltp-contact-form-card input[type="submit"] {
    margin-top: 0.375rem;
    background: var(--ltp-gold);
    color: var(--ltp-text);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.875rem 1.875rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-family: "IBM Plex Sans", sans-serif;
}

.wpcf7-response-output {
    border-radius: 10px;
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
    margin: 0.5rem 0 0;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #d6573d;
    color: #b3402c;
    background: #fceeea;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #2e9e6b;
    color: #1f5b3e;
    background: #eaf5ef;
}

.wpcf7-not-valid-tip {
    color: #d6573d;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: block;
}

/* =========================================================
   Shared form-field styling (checkout billing, my-account
   login/register/edit-account all use WooCommerce's classes).
   ========================================================= */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    list-style: none;
    border-radius: 10px;
    font-size: 0.85rem;
    padding: 0.875rem 1.125rem;
    margin: 0 0 1.25rem;
    background: #fff;
    border: 1px solid var(--ltp-border);
}

.woocommerce-error {
    border-color: #f1c3b6;
    color: #b3402c;
    background: #fceeea;
}

.woocommerce-message {
    border-color: #bfe3cf;
    color: #1f5b3e;
    background: #eaf5ef;
}

.woocommerce-error a.button,
.woocommerce-message a.button {
    flex-shrink: 0;
    float: none;
    display: inline-block;
    margin-left: 0;
    padding: 0.5rem 1.125rem;
    border-radius: 8px;
    background: var(--ltp-gold);
    text-decoration: none;
    color: var(--ltp-text);
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.woocommerce-error a.button:hover,
.woocommerce-message a.button:hover {
    background: var(--ltp-dark);
    color: #fff;
}

.form-row label {
    display: block;
    font-size: 0.78rem;
    color: #8a8a90;
    font-weight: 500;
    margin-bottom: 0.375rem;
}

.form-row .required {
    color: #d6573d;
    text-decoration: none;
}

.form-row .woocommerce-input-wrapper {
    display: block;
}

.input-text,
select.woocommerce-Input,
.woocommerce-Input,
textarea.input-text,
.select2-container .select2-selection--single {
    width: 100%;
    border: 1px solid #d9d6cc;
    border-radius: 10px;
    padding: 0.8125rem 0.9375rem;
    font-size: 0.875rem;
    font-family: "IBM Plex Sans", sans-serif;
    color: var(--ltp-text);
    background: #fff;
    height: auto;
}

.select2-container .select2-selection--single {
    height: 46px;
    display: flex;
    align-items: center;
}

.input-text:focus,
.woocommerce-Input:focus {
    outline: none;
    border-color: var(--ltp-gold);
    box-shadow: 0 0 0 3px rgba(182, 147, 60, 0.16);
}

/* Live validation feedback, toggled by theme.js as the shopper types/blurs a
   field — independent of WooCommerce's own .woocommerce-invalid (which only
   appears after a failed submit). */
.form-row.ltp-field-invalid .input-text,
.form-row.ltp-field-invalid .woocommerce-Input {
    border-color: #d6573d;
}

.form-row.ltp-field-invalid .input-text:focus,
.form-row.ltp-field-invalid .woocommerce-Input:focus {
    box-shadow: 0 0 0 3px rgba(214, 87, 61, 0.14);
}

.ltp-field-error-message {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #d6573d;
}

/* WooCommerce's password show/hide toggle button (injected via JS into a
   wrapping .password-input span) loses its eye icon now that the bundled
   woocommerce-layout.css is disabled — restyle it to match the theme. */
.password-input {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.password-input input[type="password"],
.password-input input[type="text"] {
    padding-right: 2.75rem;
}

.password-input input::-ms-reveal {
    display: none;
}

.show-password-input {
    background-color: transparent;
    border-radius: 0;
    border: 0;
    cursor: pointer;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
}

.show-password-input::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.3 3.3C16.9 2.9 16.2 2.9 15.7 3.3L13.3 5.7C12.2437 5.3079 11.1267 5.1048 10 5.1C6.2 5.2 2.8 7.2 1 10.5C1.2 10.9 1.5 11.3 1.8 11.7C2.6 12.8 3.6 13.7 4.7 14.4L3 16.1C2.6 16.5 2.5 17.2 3 17.7C3.4 18.1 4.1 18.2 4.6 17.7L17.3 4.9C17.7 4.4 17.7 3.7 17.3 3.3ZM6.7 12.3L5.4 13.6C4.2 12.9 3.1 11.9 2.3 10.7C3.5 9 5.1 7.8 7 7.2C5.7 8.6 5.6 10.8 6.7 12.3ZM10.1 9C9.6 8.5 9.7 7.7 10.2 7.2C10.7 6.8 11.4 6.8 11.9 7.2L10.1 9ZM18.3 9.5C17.8 8.8 17.2 8.1 16.5 7.6L15.5 8.6C16.3 9.2 17 9.9 17.6 10.8C15.9 13.4 13 15 9.9 15H9.1L8.1 16C8.8 15.9 9.4 16 10 16C13.3 16 16.4 14.4 18.3 11.7C18.6 11.3 18.8 10.9 19.1 10.5C18.8 10.2 18.6 9.8 18.3 9.5ZM14 10L10 14C12.2 14 14 12.2 14 10Z" fill="%2356565b"/></svg>');
}

.show-password-input.display-password::before {
    background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.3 9.49999C15 4.89999 8.50002 3.79999 3.90002 7.19999C2.70002 8.09999 1.70002 9.29999 0.900024 10.6C1.10002 11 1.40002 11.4 1.70002 11.8C5.00002 16.4 11.3 17.4 15.9 14.2C16.8 13.5 17.6 12.8 18.3 11.8C18.6 11.4 18.8 11 19.1 10.6C18.8 10.2 18.6 9.79999 18.3 9.49999ZM10.1 7.19999C10.6 6.69999 11.4 6.69999 11.9 7.19999C12.4 7.69999 12.4 8.49999 11.9 8.99999C11.4 9.49999 10.6 9.49999 10.1 8.99999C9.60003 8.49999 9.60003 7.69999 10.1 7.19999ZM10 14.9C6.90002 14.9 4.00002 13.3 2.30002 10.7C3.50002 8.99999 5.10002 7.79999 7.00002 7.19999C6.30002 7.99999 6.00002 8.89999 6.00002 9.89999C6.00002 12.1 7.70002 14 10 14C12.2 14 14.1 12.3 14.1 9.99999V9.89999C14.1 8.89999 13.7 7.89999 13 7.19999C14.9 7.79999 16.5 8.99999 17.7 10.7C16 13.3 13.1 14.9 10 14.9Z" fill="%2356565b"/></svg>');
}

.woocommerce-form-row,
.form-row {
    margin: 0 0 1rem;
}

.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.woocommerce-billing-fields__field-wrapper .form-row-wide,
.woocommerce-billing-fields__field-wrapper .form-row-first,
.woocommerce-billing-fields__field-wrapper .form-row-last {
    grid-column: span 1;
}

.woocommerce-billing-fields__field-wrapper .form-row-wide {
    grid-column: 1 / -1;
}

/* Checkout uses a CSS grid layout for billing rows; neutralize the old
   global float/width rules so each field aligns to its grid column. */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > .form-row {
    width: 100%;
    float: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
    align-items: start;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .input-text,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .woocommerce-Input,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper select,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .select2-container .select2-selection--single {
    min-height: 46px;
    height: 46px;
    box-sizing: border-box;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .select2-container .select2-selection--single .select2-selection__arrow {
    height: 44px;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > .form-row.form-row-first,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > .form-row.form-row-last,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > .form-row.form-row-wide {
    grid-column: span 1;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_country_field,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_state_field,
.woocommerce-checkout #order_comments_field {
    grid-column: span 1;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_whatsapp_same_as_phone_field,
.woocommerce-checkout #order_comments_field,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_whatsapp_same_as_phone_field.form-row {
    grid-column: 1 / -1;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_phone_field,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_whatsapp_number_field {
    grid-column: span 1;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_phone_field {
    grid-column: 1;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_whatsapp_number_field {
    grid-column: 2;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_country_field {
    grid-column: 1;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_state_field {
    grid-column: 2;
}

/* Force explicit visual order so phone/whatsapp and country/state always
   pair up correctly, regardless of source order from checkout field filters. */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_email_field {
    order: 1;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_tradingview_username_field {
    order: 2;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_country_field {
    order: 3;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_state_field {
    order: 4;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_phone_field {
    order: 5;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_whatsapp_number_field {
    order: 6;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_whatsapp_same_as_phone_field {
    order: 7;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_whatsapp_same_as_phone_field {
    margin-top: -0.5rem;
}

/* Visually separate the contact-location group (country/state) and the
   phone-numbers group (phone/WhatsApp) from the rows above them. */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_country_field,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_phone_field {
    margin-top: 0.375rem;
}

.woocommerce-checkout .form-row .description {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #8a8a90;
}

.woocommerce-checkout .ltp-country-phone-help {
    margin-top: 0.34rem;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_whatsapp_same_as_phone_field label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0;
    font-size: 0.8rem;
    color: #58585e;
    cursor: pointer;
}

.woocommerce-checkout #billing_whatsapp_same_as_phone_field label .optional {
    display: none;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_whatsapp_same_as_phone_field input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: var(--ltp-gold);
}

.woocommerce-checkout #billing_phone_field label .optional {
    display: none;
}

.woocommerce-checkout #billing_phone_field label::after {
    content: " *";
    color: #d6573d;
}

.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0 0 1.25rem;
}

.woocommerce-account-fields {
    margin-top: 1.25rem;
}

.create-account .form-row {
    margin-bottom: 1rem;
}

/* =========================================================
   Shop (product archive)
   ========================================================= */
.woocommerce-breadcrumb {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.75rem;
    color: #8a8a90;
    margin-bottom: 1.125rem;
}

.woocommerce-breadcrumb a {
    text-decoration: none;
    color: #8a8a90;
}

.woocommerce-products-header__title.page-title {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 2.25rem;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
}

.ltp-shop-subtitle {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #56565b;
    max-width: 560px;
    margin: 0;
}

.term-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #56565b;
    max-width: 560px;
}

.ltp-shop-layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.ltp-shop-sidebar {
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 14px;
    padding: 1.5rem;
    position: sticky;
    top: 1.25rem;
}

.ltp-shop-sidebar-block + .ltp-shop-sidebar-block {
    margin-top: 1.625rem;
}

.ltp-shop-sidebar-label {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8a8a90;
    margin-bottom: 0.875rem;
}

.ltp-shop-cat-list,
.ltp-shop-price-list,
.ltp-shop-attr-list {
    display: flex;
    flex-direction: column;
    gap: 0.6875rem;
    font-size: 0.875rem;
}

.ltp-shop-cat-link,
.ltp-shop-price-link,
.ltp-shop-attr-link {
    text-decoration: none;
    color: #56565b;
}

.ltp-shop-cat-link span,
.ltp-shop-attr-link span {
    color: #9a9a9f;
}

.ltp-shop-cat-link.is-active,
.ltp-shop-price-link.is-active,
.ltp-shop-attr-link.is-active {
    color: var(--ltp-text);
    font-weight: 600;
}

/* Generic styling for widgets dropped into the Shop Sidebar widget area
   (Appearance > Widgets) — text, lists, search, WooCommerce widgets, etc. */
.ltp-shop-sidebar-block p {
    margin: 0 0 0.75rem;
    font-size: 0.875rem;
    color: #56565b;
}

.ltp-shop-sidebar-block ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.ltp-shop-sidebar-block li ul {
    margin-top: 0.5rem;
    padding-left: 0.875rem;
}

.ltp-shop-sidebar-block a {
    color: #56565b;
    text-decoration: none;
}

.ltp-shop-sidebar-block a:hover {
    color: var(--ltp-text);
}

.ltp-shop-sidebar-block img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.ltp-shop-sidebar-block input[type="text"],
.ltp-shop-sidebar-block input[type="search"],
.ltp-shop-sidebar-block input[type="email"],
.ltp-shop-sidebar-block select {
    width: 100%;
    border: 1px solid var(--ltp-border);
    border-radius: 8px;
    padding: 0.55rem 0.7rem;
    font-size: 0.85rem;
    font-family: inherit;
}

.ltp-shop-sidebar-block button,
.ltp-shop-sidebar-block input[type="submit"] {
    margin-top: 0.6rem;
    border: none;
    border-radius: 8px;
    background: var(--ltp-gold);
    color: var(--ltp-text);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.55rem 0.9rem;
    cursor: pointer;
}

.woocommerce-result-count {
    font-size: 0.84rem;
    color: #8a8a90;
    margin: 0;
}

.woocommerce-notices-wrapper:empty {
    display: none;
}

.ltp-shop-main > .woocommerce-result-count,
.ltp-shop-main form.woocommerce-ordering {
    display: inline-block;
}

.ltp-shop-main {
    position: relative;
}

.ltp-shop-main .woocommerce-result-count {
    float: left;
    margin-bottom: 1.375rem;
}

.woocommerce-ordering {
    float: right;
    margin-bottom: 1.375rem;
}

.woocommerce-ordering select {
    border: 1px solid #d9d6cc;
    border-radius: 8px;
    padding: 0.5625rem 0.875rem;
    font-size: 0.84rem;
    font-family: "IBM Plex Sans", sans-serif;
    color: var(--ltp-text);
    background: #fff;
}

ul.products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
    clear: both;
}

ul.products li.product {
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

ul.products li.product:hover {
    box-shadow: 0 18px 40px -22px rgba(20, 18, 10, 0.4);
    border-color: #d8cfb0;
}

ul.products li.product a.woocommerce-LoopProduct-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

ul.products li.product img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    background: #131316;
}

ul.products li.product .woocommerce-loop-product__title {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    line-height: 1.3;
    margin: 0.5rem 1.25rem 0.5rem;
}

ul.products li.product .star-rating {
    margin: 0 1.25rem 0.5rem;
    color: var(--ltp-gold);
    font-size: 0.8rem;
}

ul.products li.product .price {
    margin: 0 1.25rem 1.25rem;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.1875rem;
    color: var(--ltp-text);
    margin-top: auto;
}

ul.products li.product .price del {
    color: #9a9a9f;
    font-weight: 400;
    font-size: 0.9rem;
    margin-right: 0.375rem;
}

ul.products li.product .button {
    margin: 0 1.25rem 1.25rem;
    text-decoration: none;
    display: inline-block;
    background: var(--ltp-gold);
    color: var(--ltp-text);
    font-weight: 600;
    font-size: 0.84rem;
    padding: 0.5625rem 1rem;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

ul.products li.product .button:hover {
    background: var(--ltp-dark);
    color: #fff;
}

ul.products li.product .button.added::after {
    content: " \2713";
}

ul.products li.product .onsale {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.656rem;
    letter-spacing: 0.06em;
    background: var(--ltp-gold);
    color: var(--ltp-text);
    padding: 0.25rem 0.5625rem;
    border-radius: 5px;
    font-weight: 600;
    z-index: 1;
}

ul.products li.product a.woocommerce-LoopProduct-link {
    position: relative;
}

ul.products li.product .ltp-shop-status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.656rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--ltp-dark);
    color: #fff;
    padding: 0.25rem 0.5625rem;
    border-radius: 5px;
    font-weight: 600;
    z-index: 1;
}

ul.products li.product .ltp-shop-type-eyebrow {
    display: block;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.656rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a8a90;
    margin: 1.25rem 1.25rem 0;
}

.woocommerce-pagination {
    clear: both;
    margin-top: 2.5rem;
}

.woocommerce-pagination ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-pagination .page-numbers {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    border: 1px solid var(--ltp-border);
    border-radius: 8px;
    color: var(--ltp-text);
    font-size: 0.85rem;
}

.woocommerce-pagination .page-numbers.current {
    background: var(--ltp-dark);
    color: #fff;
    border-color: var(--ltp-dark);
}

.woocommerce-info.woocommerce-no-products-found {
    grid-column: 1 / -1;
}

@media (max-width: 900px) {
    .ltp-shop-layout {
        grid-template-columns: 1fr;
    }

    .ltp-shop-sidebar {
        position: static;
    }

    ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    ul.products {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Single product
   ========================================================= */
.ltp-product-header-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
}

.ltp-product-header-text {
    flex: 1;
    min-width: 0;
}

.ltp-product-header-text .product_title.entry-title {
    margin: 0 0 0.5rem;
}

.ltp-product-header-text .ltp-product-tagline {
    margin: 0;
}

.ltp-product-header-inner .ltp-product-badge-row {
    flex-shrink: 0;
    margin-bottom: 0;
    padding-top: 0.5rem;
}

@media (max-width: 680px) {
    .ltp-product-header-inner {
        flex-direction: column;
        gap: 0.875rem;
    }

    .ltp-product-header-inner .ltp-product-badge-row {
        padding-top: 0;
    }
}

.ltp-main .woocommerce-breadcrumb,
.product.type-product,
.woocommerce-tabs,
.related.products,
.upsells.products {
    width: min(1240px, calc(100% - 3rem));
    margin: 0 auto;
}

.ltp-main .woocommerce-breadcrumb {
    padding-top: 1.75rem;
}

.product.type-product {
    padding-bottom: 3.5rem;
}

.ltp-product-top {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    align-items: start;
    gap: 3rem;
}

.ltp-product-gallery-col {
    position: sticky;
    top: 1.25rem;
    grid-column: 1;
    grid-row: 1;
}

.ltp-product-gallery-col > .onsale {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.656rem;
    letter-spacing: 0.06em;
    background: var(--ltp-gold);
    color: var(--ltp-text);
    padding: 0.25rem 0.5625rem;
    border-radius: 5px;
    font-weight: 600;
    z-index: 1;
}

.ltp-product-top .summary.entry-summary {
    grid-column: 2;
    grid-row: 1;
}

.product.type-product .woocommerce-tabs,
.product.type-product .related.products,
.product.type-product .upsells.products,
.product.type-product > .product_meta {
    width: auto;
    margin: 0;
}

.woocommerce-product-gallery {
    position: relative;
}

.woocommerce-product-gallery__wrapper {
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce-product-gallery .flex-viewport,
.woocommerce-product-gallery__image--placeholder {
    border-radius: 16px;
    border: 1px solid var(--ltp-border);
    background: #0e0e10;
    overflow: hidden;
}

.woocommerce-product-gallery__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.woocommerce-product-gallery__image--placeholder img {
    height: 64px;
    width: 64px;
    object-fit: contain;
    border: none;
    border-radius: 0;
    opacity: 0.35;
}

.woocommerce-product-gallery .flex-viewport img {
    display: block;
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    object-fit: cover;
    border: none;
    border-radius: 0;
}

/* Zoom/lightbox trigger — default WC markup is a bare emoji link parked at
   top-left, overlapping the Sale badge. Move it to a proper circular button
   top-right instead. */
.woocommerce-product-gallery__trigger {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(22, 22, 26, 0.55);
    backdrop-filter: blur(2px);
    transition: background 0.2s ease;
}

.woocommerce-product-gallery__trigger:hover {
    background: var(--ltp-gold);
}

.woocommerce-product-gallery__trigger img.emoji {
    width: 16px;
    height: 16px;
    margin: 0;
    filter: brightness(0) invert(1);
}

.woocommerce-product-gallery .flex-control-thumbs {
    display: flex;
    gap: 0.625rem;
    margin: 0.875rem 0 0;
    padding: 0.25rem 0 0.375rem;
    list-style: none;
    overflow-x: auto;
    scrollbar-width: thin;
}

.woocommerce-product-gallery .flex-control-thumbs li {
    flex: 0 0 auto;
}

.woocommerce-product-gallery .flex-control-thumbs img {
    display: block;
    border-radius: 8px;
    border: 2px solid transparent;
    width: 64px;
    height: 64px;
    object-fit: cover;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

.woocommerce-product-gallery .flex-control-thumbs img:hover {
    opacity: 1;
}

.woocommerce-product-gallery .flex-control-thumbs img.flex-active {
    border-color: var(--ltp-gold);
    opacity: 1;
}

.ltp-product-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.625rem;
    flex-wrap: wrap;
    margin: 0.875rem 0 1.25rem;
}

.ltp-product-price-row .price {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: var(--ltp-text);
}

.ltp-product-price-row .price del {
    color: #9a9a9f;
    font-size: 1.0625rem;
    font-weight: 400;
    margin-right: 0.625rem;
}

.ltp-product-price-row .price ins {
    text-decoration: none;
}

.ltp-product-price-label {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8a8a90;
    width: 100%;
}

/* ---- Variable product: badge-style variation selector ---- */

.variations_form table.variations {
    width: 100%;
    border: none;
    margin: 0 0 1.25rem;
}

.variations_form table.variations tbody,
.variations_form table.variations tr,
.variations_form table.variations th,
.variations_form table.variations td {
    display: block;
    border: none;
    padding: 0;
    background: none;
}

.variations_form table.variations tr {
    margin-bottom: 1rem;
}

.variations_form table.variations th.label {
    display: none;
}

.variations_form table.variations td.value select {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.variations_form .reset_variations {
    display: none;
}

.ltp-variation-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ltp-variation-pill {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ltp-text);
    background: #fff;
    border: 1px solid #d9d6cc;
    border-radius: 24px;
    padding: 0.5rem 1.125rem;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.ltp-variation-pill:hover {
    border-color: var(--ltp-gold);
}

.ltp-variation-pill.is-selected {
    background: var(--ltp-gold);
    border-color: var(--ltp-gold);
    color: var(--ltp-text);
}

.woocommerce-variation-price,
.woocommerce-variation-availability {
    display: none !important;
}

.woocommerce-variation-add-to-cart.variations_button {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex-wrap: wrap;
    margin: 0;
}

/* ---- "Exciting offer" price highlight ---- */

.ltp-product-price-row.ltp-price-on-sale {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    background: linear-gradient(135deg, #fff9ec 0%, #fef3da 100%);
    border: 1px solid #f0ddab;
    border-left: 4px solid var(--ltp-gold);
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    gap: 0.3125rem;
    box-shadow: 0 4px 12px -8px rgba(194, 161, 77, 0.45);
}

.ltp-product-urgency-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.3125rem;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #a8742f;
    white-space: nowrap;
}

.ltp-pulse-dot {
    position: relative;
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e0532f;
    flex-shrink: 0;
}

.ltp-pulse-dot::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #e0532f;
    animation: ltp-pulse 1.6s ease-out infinite;
}

@keyframes ltp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(2.6);
        opacity: 0;
    }
}

.ltp-product-save-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    flex: 0 0 auto;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6875rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2e9e6b, #258a5c);
    color: #fff;
    padding: 0.25rem 0.5625rem;
    border-radius: 20px;
    white-space: nowrap;
    width: fit-content;
    box-shadow: 0 3px 8px -4px rgba(46, 158, 107, 0.55);
    animation: ltp-save-badge-pop 0.4s ease-out;
}

.ltp-save-bolt {
    font-size: 0.75rem;
    line-height: 1;
}

.ltp-save-amount {
    font-weight: 600;
    opacity: 0.92;
    padding-left: 0.25rem;
    border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.ltp-save-amount .woocommerce-Price-amount {
    font-weight: 600;
}

@keyframes ltp-save-badge-pop {
    0% {
        transform: scale(0.85);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.ltp-price-on-sale .price del {
    text-decoration-color: #c0392b;
}

.ltp-price-on-sale .price ins {
    color: var(--ltp-text);
}

.ltp-product-badge-row {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1.125rem;
}

.ltp-product-type-badge,
.ltp-product-status-badge {
    display: inline-flex;
    align-items: center;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 24px;
    line-height: 1.1;
}

.ltp-product-type-badge {
    text-decoration: none;
    background: #f6efd9;
    color: #a8842f;
    border: 1px solid rgba(168, 132, 47, 0.25);
    transition: filter 0.2s ease, transform 0.15s ease;
}

.ltp-product-type-badge:hover {
    filter: brightness(0.94);
    transform: translateY(-1px);
}

/* Category accent colors, keyed by product_cat slug */
.ltp-product-type-badge.ltp-cat-tradingview-indicators {
    background: #e1eefb;
    color: #1f5f9e;
    border-color: rgba(31, 95, 158, 0.22);
}

.ltp-product-type-badge.ltp-cat-tradingview-strategies {
    background: #e9e6fb;
    color: #5849b8;
    border-color: rgba(88, 73, 184, 0.22);
}

.ltp-product-type-badge.ltp-cat-excel-tools {
    background: #e3f3e6;
    color: #1f7a3d;
    border-color: rgba(31, 122, 61, 0.22);
}

.ltp-product-type-badge.ltp-cat-python-strategies {
    background: #fdf3d8;
    color: #8a6c10;
    border-color: rgba(138, 108, 16, 0.22);
}

.ltp-product-type-badge.ltp-cat-openalgo-plugins {
    background: #fbe7d9;
    color: #b1551b;
    border-color: rgba(177, 85, 27, 0.22);
}

.ltp-product-type-badge.ltp-cat-analytics-tools {
    background: #ddf1f3;
    color: #1c7480;
    border-color: rgba(28, 116, 128, 0.22);
}

.ltp-product-type-badge.ltp-cat-reports-signals {
    background: #fbe3ec;
    color: #b32d63;
    border-color: rgba(179, 45, 99, 0.22);
}

.ltp-product-type-badge.ltp-cat-courses-ebooks {
    background: #ede2fa;
    color: #6e3aa8;
    border-color: rgba(110, 58, 168, 0.22);
}

.ltp-product-type-badge.ltp-cat-free-tools {
    background: #e1f5e8;
    color: #1f8a52;
    border-color: rgba(31, 138, 82, 0.22);
}

.ltp-product-type-badge.ltp-cat-upcoming-releases {
    background: #ececec;
    color: #5a5a5e;
    border-color: rgba(90, 90, 94, 0.22);
}

.ltp-product-status-badge {
    background: #e3f3e6;
    color: #1f7a3d;
}

.ltp-product-status-badge.ltp-status-beta {
    background: #fdf3d8;
    color: #8a6c10;
}

.ltp-product-status-badge.ltp-status-upcoming {
    background: #e1eefb;
    color: #3a6ea5;
}

.ltp-product-status-badge.ltp-status-private {
    background: #fbe1de;
    color: #b03a26;
}

.ltp-product-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.625rem;
    margin-bottom: 1.375rem;
}

.ltp-product-gallery-col > .ltp-product-specs-grid {
    margin-top: 0.875rem;
    margin-bottom: 1.75rem;
}

.ltp-product-spec-pill {
    display: flex;
    flex-direction: column;
    gap: 0.1875rem;
    padding: 0.625rem 0.875rem;
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 10px;
}

.ltp-product-spec-label {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8a8a90;
}

.ltp-product-spec-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ltp-text);
}

.product_title.entry-title {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 2.125rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 0.75rem;
}

.ltp-product-tagline {
    font-size: 1rem;
    line-height: 1.5;
    color: #56565b;
    margin: 0 0 1.125rem;
}

.woocommerce-product-rating {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.5rem;
}

.woocommerce-product-rating .star-rating {
    color: var(--ltp-gold);
}

.woocommerce-product-rating .woocommerce-review-link {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.78rem;
    color: #8a8a90;
    text-decoration: none;
}

.woocommerce-product-details__short-description {
    font-size: 1rem;
    line-height: 1.65;
    color: #56565b;
    margin: 0 0 1.5rem;
}

form.cart {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.quantity {
    display: inline-flex;
    align-items: stretch;
    height: 48px;
    box-sizing: border-box;
    border: 1px solid #d9d6cc;
    border-radius: 9px;
    overflow: hidden;
}

.quantity .qty {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    border: none;
    border-left: 1px solid #d9d6cc;
    border-right: 1px solid #d9d6cc;
    border-radius: 0;
    padding: 0 0.5rem;
    width: 50px;
    height: 100%;
    text-align: center;
    font-size: 0.95rem;
    line-height: normal;
}

.ltp-qty-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background: none;
    border: none;
    color: #56565b;
    font-size: 1.125rem;
    padding: 0 1rem;
    height: 100%;
    cursor: pointer;
    line-height: 1;
}

.ltp-qty-step:hover {
    color: var(--ltp-text);
}

button.single_add_to_cart_button,
a.single_add_to_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 48px;
    background: var(--ltp-gold);
    color: var(--ltp-text);
    font-weight: 600;
    font-size: 0.97rem;
    line-height: normal;
    padding: 0 1.75rem;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: "IBM Plex Sans", sans-serif;
    transition: background 0.2s ease, color 0.2s ease;
}

button.single_add_to_cart_button:hover {
    background: var(--ltp-dark);
    color: #fff;
}

button.single_add_to_cart_button {
    flex: 1;
}

.ltp-buy-now-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex: 1 0 100%;
    height: 48px;
    background: var(--ltp-dark);
    color: #fff;
    font-weight: 600;
    font-size: 0.97rem;
    line-height: normal;
    padding: 0 1.75rem;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    font-family: "IBM Plex Sans", sans-serif;
    transition: background 0.2s ease, color 0.2s ease;
}

.ltp-buy-now-button:hover {
    background: var(--ltp-gold);
    color: var(--ltp-text);
}

.woocommerce-variation-add-to-cart {
    width: 100%;
}

.product_meta {
    font-size: 0.84rem;
    color: #8a8a90;
    padding-top: 1.5rem;
    border-top: 1px solid var(--ltp-border);
}

.product_meta > span {
    display: block;
    margin-bottom: 0.375rem;
}

.ltp-product-trust {
    display: flex;
    flex-direction: column;
    gap: 0.6875rem;
    padding: 1.25rem 1.375rem;
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.ltp-product-trust-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: #3a3a3d;
}

.ltp-product-trust .ltp-check {
    color: #2e9e6b;
    font-weight: 700;
}

.ltp-product-resources {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-bottom: 1.5rem;
}

.ltp-product-resource-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.875rem;
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--ltp-text);
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.ltp-product-resource-card .ltp-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--ltp-gold);
}

.ltp-product-resource-card:hover {
    border-color: var(--ltp-gold);
    color: var(--ltp-gold);
}

.ltp-product-coupons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.ltp-coupon-chip {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: #fff;
    border: 1px dashed #d9c389;
    border-radius: 10px;
    padding: 0.5625rem 0.75rem;
}

.ltp-coupon-icon {
    font-size: 1.0625rem;
    line-height: 1;
    color: var(--ltp-gold);
    flex-shrink: 0;
}

.ltp-coupon-info {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

.ltp-coupon-code {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    color: var(--ltp-text);
    background: #f6efd9;
    padding: 0.125rem 0.5rem;
    border-radius: 5px;
}

.ltp-coupon-desc {
    font-size: 0.84rem;
    color: #56565b;
}

.ltp-coupon-copy {
    flex-shrink: 0;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ltp-text);
    background: #f1efe7;
    border: none;
    border-radius: 6px;
    padding: 0.375rem 0.75rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.ltp-coupon-copy:hover {
    background: var(--ltp-gold);
}

.ltp-coupon-copy.is-copied {
    background: #2e9e6b;
    color: #fff;
}

.ltp-product-ask-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    background: #eaf6ee;
    border: 1px solid #c9e6d3;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
}

.ltp-ask-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ltp-text);
}

.ltp-ask-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4375rem;
    flex-shrink: 0;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    color: #fff;
    background: #25975a;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.ltp-ask-whatsapp-btn .ltp-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.ltp-ask-whatsapp-btn:hover {
    background: #1f7d4b;
}

.ltp-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.ltp-product-tag-chip {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.75rem;
    color: #56565b;
    background: #f1efe7;
    padding: 0.3125rem 0.6875rem;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.ltp-product-tag-chip:hover {
    background: var(--ltp-gold);
    color: var(--ltp-text);
}

.ltp-product-notify-form,
.ltp-product-request-access {
    padding: 1.25rem 1.375rem;
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.ltp-product-notify-label {
    font-size: 0.9rem;
    color: #56565b;
    margin: 0 0 0.875rem;
    line-height: 1.5;
}

.ltp-notify-form {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.ltp-notify-email {
    flex: 1;
    min-width: 180px;
    border: 1px solid #d9d6cc;
    border-radius: 9px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-family: "IBM Plex Sans", sans-serif;
}

.ltp-notify-submit {
    background: var(--ltp-gold);
    color: var(--ltp-text);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    font-family: "IBM Plex Sans", sans-serif;
    transition: background 0.2s ease, color 0.2s ease;
}

.ltp-notify-submit:hover {
    background: var(--ltp-dark);
    color: #fff;
}

.ltp-product-notify-success {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2e9e6b;
    margin: 0;
}

.ltp-product-request-access .ltp-buy-now-button {
    display: inline-block;
    text-decoration: none;
    flex: none;
}

.woocommerce-tabs {
    margin-top: 2.5rem;
    background: #fff;
    border-top: 1px solid var(--ltp-border);
    border-bottom: 1px solid var(--ltp-border);
    padding: 0 0 2.5rem;
}

.woocommerce-tabs ul.tabs {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--ltp-border);
}

.woocommerce-tabs ul.tabs li {
    margin: 0;
}

.woocommerce-tabs ul.tabs li a {
    display: block;
    text-decoration: none;
    padding: 1.25rem 0;
    font-weight: 500;
    font-size: 0.9375rem;
    color: #8a8a90;
    border-bottom: 2px solid transparent;
}

.woocommerce-tabs ul.tabs li.active a {
    font-weight: 600;
    color: var(--ltp-text);
    border-bottom-color: var(--ltp-gold);
}

.woocommerce-Tabs-panel {
    padding-top: 2rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #56565b;
}

.woocommerce-Tabs-panel h2 {
    font-size: 1.375rem;
    margin: 0 0 0.875rem;
}

/* ---- Reviews tab ---- */

.star-rating {
    overflow: hidden;
    position: relative;
    height: 1.1em;
    line-height: 1.1;
    width: 5.5em;
    font-size: 1rem;
    letter-spacing: 2px;
}

.star-rating::before {
    content: "\2605\2605\2605\2605\2605";
    position: absolute;
    top: 0;
    left: 0;
    color: #d9d6cc;
}

.star-rating span {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding-top: 1.5em;
}

.star-rating span::before {
    content: "\2605\2605\2605\2605\2605";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--ltp-gold);
}

.woocommerce-noreviews {
    font-size: 0.9375rem;
    color: #56565b;
}

#respond .required {
    color: #c0392b;
    text-decoration: none;
}

.commentlist {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.commentlist .comment_container {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 1.375rem;
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 12px;
}

.commentlist .comment_container img.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
}

.commentlist .comment-text {
    flex: 1;
}

.commentlist .star-rating {
    margin-bottom: 0.5rem;
}

.commentlist .meta {
    font-size: 0.84rem;
    color: #8a8a90;
    margin: 0 0 0.5rem;
}

.commentlist .woocommerce-review__author {
    color: var(--ltp-text);
    font-weight: 600;
}

.commentlist .description p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #3a3a3d;
    margin: 0;
}

#review_form_wrapper {
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 12px;
}

#reply-title {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0 0 1.25rem;
}

#reply-title small a {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--ltp-gold);
    margin-left: 0.625rem;
}

.comment-notes {
    font-size: 0.84rem;
    color: #8a8a90;
    margin: 0 0 1.25rem;
}

.comment-form-rating,
.comment-form-comment,
.comment-form-author,
.comment-form-email {
    margin: 0 0 1.125rem;
}

.comment-form-rating label,
.comment-form-comment label,
.comment-form-author label,
.comment-form-email label {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--ltp-text);
    margin-bottom: 0.5rem;
}

.comment-form-rating #rating {
    display: none;
}

.stars {
    margin: 0;
}

.stars a {
    display: inline-block;
    font-size: 0;
    width: 1.75rem;
    text-align: center;
}

.stars a::before {
    content: "\2605";
    font-size: 1.375rem;
    color: #d9d6cc;
    transition: color 0.15s ease;
}

.stars:hover a::before {
    color: var(--ltp-gold);
}

.stars a:hover ~ a::before {
    color: #d9d6cc;
}

.stars.selected a::before {
    color: var(--ltp-gold);
}

.stars.selected a.active ~ a::before {
    color: #d9d6cc;
}

.comment-form-comment textarea,
.comment-form-author input,
.comment-form-email input {
    width: 100%;
    border: 1px solid #d9d6cc;
    border-radius: 9px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-family: "IBM Plex Sans", sans-serif;
    box-sizing: border-box;
}

.comment-form-comment textarea {
    resize: vertical;
    min-height: 120px;
}

.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.84rem;
    color: #56565b;
    margin: 0 0 1.25rem;
}

.comment-form-cookies-consent input {
    accent-color: var(--ltp-gold);
}

.form-submit {
    margin: 0;
}

.form-submit .submit {
    background: var(--ltp-gold);
    color: var(--ltp-text);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.75rem;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    font-family: "IBM Plex Sans", sans-serif;
    transition: background 0.2s ease, color 0.2s ease;
}

.form-submit .submit:hover {
    background: var(--ltp-dark);
    color: #fff;
}

.related.products,
.upsells.products {
    padding: 3.5rem 0 1.5rem;
}

.related.products > h2,
.upsells.products > h2 {
    font-size: 1.625rem;
    margin: 0 0 1.625rem;
}

@media (max-width: 900px) {
    .ltp-product-top {
        grid-template-columns: 1fr;
    }

    .ltp-product-gallery-col,
    .ltp-product-top .summary.entry-summary {
        grid-column: 1;
        grid-row: auto;
    }

    .ltp-product-gallery-col {
        position: static;
    }
}

/* =========================================================
   Checkout
   ========================================================= */
.ltp-checkout-shell {
    position: relative;
    overflow: clip;
    padding: 2rem 0 4rem;
    background:
        radial-gradient(640px 280px at 92% -4%, rgba(194, 161, 77, 0.16), transparent 68%),
        radial-gradient(700px 340px at -8% 0%, rgba(22, 22, 26, 0.08), transparent 70%),
        #fafaf7;
}

.ltp-checkout-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.33;
    background-image: linear-gradient(to right, rgba(22, 22, 26, 0.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(22, 22, 26, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
}

.ltp-checkout-shell-header,
.ltp-checkout-shell-body {
    position: relative;
    z-index: 1;
}

.ltp-checkout-shell-header {
    display: grid;
    grid-template-columns: 1fr minmax(250px, 320px);
    gap: 1.25rem;
    align-items: start;
    margin-bottom: 1.25rem;
}

.ltp-checkout-shell-copy .ltp-page-title {
    margin: 0.15rem 0 0.5rem;
    font-size: clamp(2rem, 4.1vw, 2.9rem);
    line-height: 1.05;
}

.ltp-checkout-shell-copy .ltp-lead {
    max-width: 62ch;
    margin: 0;
    color: #4b4b52;
}

.ltp-complete-message {
    margin-top: 0.65rem;
    max-width: 76ch;
    background: linear-gradient(180deg, #fffdf6 0%, #fff 65%);
    border: 1px solid #e6dcc1;
    border-left: 4px solid #c2a14d;
    border-radius: 12px;
    padding: 0.95rem 1.1rem;
}

.ltp-complete-message p {
    margin: 0.45rem 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #3f3f45;
}

.ltp-complete-message p:first-child {
    margin-top: 0;
}

.ltp-complete-message p:last-child {
    margin-bottom: 0;
}

.ltp-complete-message strong {
    color: #141419;
}

.ltp-complete-message a {
    color: #8a742f;
    font-weight: 600;
    text-decoration: none;
}

.ltp-complete-message a:hover {
    text-decoration: underline;
}

.ltp-checkout-shell-badges {
    margin-top: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ltp-checkout-shell-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.34rem;
    border: 1px solid #e6dcc1;
    background: #fdfbf4;
    border-radius: 999px;
    padding: 0.28rem 0.64rem;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.65rem;
    letter-spacing: 0.02em;
    color: #6f6443;
}

.ltp-checkout-shell-badges span::before {
    content: "";
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 50%;
    background: #2e9e6b;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 0.48rem 0.48rem;
    mask-size: 0.48rem 0.48rem;
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>');
}

.ltp-checkout-shell-help {
    display: block;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(180deg, #fffdf8 0%, #fff 48%);
    border: 1px solid #e7dbbf;
    border-radius: 14px;
    padding: 1rem 1.05rem;
    box-shadow: 0 12px 22px -19px rgba(19, 19, 22, 0.52);
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.ltp-checkout-shell-help:hover {
    border-color: #d5bf85;
    transform: translateY(-1px);
}

.ltp-checkout-shell-help-label {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.67rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a8a90;
}

.ltp-checkout-shell-help-number {
    margin-top: 0.3rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.12rem;
    font-weight: 600;
    color: #15151a;
}

.ltp-checkout-shell-help-cta {
    margin-top: 0.34rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: #86672a;
}

.ltp-checkout-shell-body {
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
}

/* Checkout uses standard container width to match the rest of the site. */
.ltp-checkout-shell .ltp-container,
body.woocommerce-checkout .ltp-container {
    width: min(1240px, calc(100% - 3rem));
}

/* Checkout header: center logo only on active checkout steps, not on
   order-received where normal site navigation should remain available. */
body.woocommerce-checkout:not(.woocommerce-order-received) .ltp-header-inner {
    display: flex;
    justify-content: center;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .ltp-checkout-header-note {
    display: none;
}

.ltp-checkout-shell-body .ltp-content-body {
    margin: 0;
}

.ltp-checkout-shell .ltp-content-page,
.ltp-checkout-shell .ltp-page-title,
.ltp-checkout-shell .ltp-main > .ltp-container > h1 {
    margin-top: 0;
}

.woocommerce-checkout .ltp-main,
.woocommerce-cart .ltp-main {
    padding: 2.5rem 0 4rem;
}

.woocommerce-checkout .ltp-main {
    padding: 0;
}

.woocommerce-cart .ltp-content-page {
    margin-top: 1.25rem;
}

/* =========================================================
   Cart page (block-based Cart — woocommerce/cart/cart-empty.php has no
   effect here, see inc/tools.php for the [ltp_*] shortcodes used instead)
   ========================================================= */
.wc-block-cart__empty-cart__title.with-empty-cart-icon::before {
    height: 3.4em;
    width: 3.4em;
    margin: 0 auto 1.25em;
    background-color: var(--ltp-gold);
    border-radius: 50%;
    padding: 1em;
    box-sizing: border-box;
    mask-size: 1.7em;
}

.wc-block-cart__empty-cart__title {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.75rem !important;
    color: var(--ltp-text);
}

.ltp-empty-cart-subtext {
    max-width: 460px;
    margin: 0.625rem auto 1.5rem;
    color: #56565b;
    font-size: 0.9375rem;
}

.ltp-empty-cart-cta {
    display: table;
    margin: 0 auto 2.5rem;
    text-decoration: none;
}

.ltp-empty-cart-separator {
    margin-bottom: 2.5rem;
}

.wp-block-woocommerce-empty-cart-block > h2.wp-block-heading:not(.wc-block-cart__empty-cart__title) {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.5rem;
}

/* Coupon chip + apply button (Cart page only — checkout's coupon UI is
   left untouched per the existing upsell-styling boundary). */
.woocommerce-cart .wc-block-components-chip {
    background: #f6efd9;
    border: 1px solid rgba(194, 161, 77, 0.35);
    color: var(--ltp-text);
    font-weight: 600;
    font-size: 0.8125rem;
    padding: 0.3125rem 0.5rem 0.3125rem 0.75rem;
}

.woocommerce-cart .wc-block-components-chip__remove-icon {
    fill: #8a742f;
}

.woocommerce-cart .wc-block-components-chip__remove:hover .wc-block-components-chip__remove-icon {
    fill: #b03a26;
}

.woocommerce-cart .wc-block-components-totals-coupon__button {
    background: var(--ltp-dark) !important;
    color: #fff !important;
    border-radius: 9px !important;
}

.woocommerce-cart .wc-block-components-totals-coupon__button:hover {
    background: var(--ltp-gold) !important;
    color: var(--ltp-dark) !important;
}

.ltp-checkout-subtitle {
    margin-bottom: 0.95rem;
}

.woocommerce-checkout .ltp-checkout-subtitle {
    display: none !important;
}

.ltp-checkout-subtitle span {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.8125rem;
    color: #8a8a90;
}

.ltp-checkout-subtitle::after {
    content: "Secure checkout   •   Manual verification   •   Full TradingView access";
    display: inline-flex;
    margin-top: 0.62rem;
    border: 1px solid #e6dcc1;
    background: #fdfbf4;
    border-radius: 999px;
    padding: 0.28rem 0.72rem;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.64rem;
    letter-spacing: 0.02em;
    color: #6f6443;
    white-space: nowrap;
}

.ltp-checkout-shell .ltp-checkout-subtitle::after {
    content: none;
}

.ltp-checkout-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 0 auto 1.1rem;
}

.ltp-checkout-trust-strip span {
    display: inline-flex;
    align-items: center;
    gap: 0.34rem;
    border: 1px solid #e6dcc1;
    background: #fdfbf4;
    border-radius: 999px;
    padding: 0.28rem 0.62rem;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.66rem;
    letter-spacing: 0.02em;
    color: #6f6443;
}

.ltp-checkout-trust-strip span::before {
    content: "";
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 50%;
    background: #2e9e6b;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 0.48rem 0.48rem;
    mask-size: 0.48rem 0.48rem;
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>');
}

.woocommerce-checkout h1.ltp-page-title,
.woocommerce-checkout > .ltp-container > h1 {
    font-size: 2.125rem;
}

.ltp-checkout-shell .woocommerce-checkout > .ltp-container > h1,
.ltp-checkout-shell .woocommerce-checkout h1.ltp-page-title {
    display: none;
}

form.checkout.woocommerce-checkout {
    /* Sits inside .ltp-checkout-shell-body, which already centers and caps
       the width above — re-applying the same min() here only shrank it
       further for no reason. */
    width: 100%;
    margin: 0 auto;
}

.woocommerce-form-coupon-toggle {
    width: min(1240px, calc(100% - 3rem));
    margin: 0 auto 1.25rem;
}

.woocommerce-form-coupon-toggle .woocommerce-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.woocommerce-form-coupon-toggle a {
    color: var(--ltp-gold);
    font-weight: 600;
    text-decoration: none;
}

.checkout_coupon.woocommerce-form-coupon {
    width: min(1240px, calc(100% - 3rem));
    margin: 0 auto 1.25rem;
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.checkout_coupon.woocommerce-form-coupon p {
    margin: 0;
}

.checkout_coupon .input-text {
    min-width: 220px;
}

/* The coupon toggle + form are relocated into the order-summary card (see
   ltp_checkout_open_summary_card() in functions.php) — drop the page-width
   wrapper styling above and fit them to the card's own padding/border. */
.ltp-order-review-card .woocommerce-form-coupon-toggle {
    width: auto;
    margin: 0 0 1.25rem;
}

.ltp-order-review-card .checkout_coupon.woocommerce-form-coupon {
    width: auto;
    margin: 0 0 1.25rem;
    background: none;
    border: none;
    padding: 0;
}

.ltp-order-review-card .checkout_coupon .input-text {
    min-width: 0;
    flex: 1;
}

.ltp-checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.9fr);
    gap: 2.25rem;
    align-items: start;
}

.ltp-checkout-main {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ltp-checkout-sidebar {
    position: sticky;
    top: 1.25rem;
}

.ltp-checkout-card {
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 14px;
    padding: 1.75rem 1.9rem;
    display: flex;
    gap: 0.75rem;
    box-shadow: 0 10px 22px -20px rgba(19, 19, 22, 0.5);
}

#ltp-billing-card {
    padding: 1.75rem 2rem;
}

.ltp-checkout-card:not(.ltp-order-review-card) {
    align-items: flex-start;
}

.ltp-order-review-card {
    flex-direction: column;
    border-color: #e8debf;
    background: linear-gradient(180deg, #fffdf8 0%, #fff 36%);
}

.ltp-step-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--ltp-dark);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.ltp-step-body {
    flex: 1;
    min-width: 0;
}

/* WooCommerce renders a default h3#order_review_heading — we use our own h2, so hide the WC one. */
#order_review_heading {
    display: none;
}

.ltp-checkout-card-title {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0;
}

.ltp-order-review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.ltp-edit-cart-link {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ltp-gold-dark, #a8842f);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.15s;
}

.ltp-edit-cart-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.ltp-order-review-card > .ltp-checkout-card-title::before {
    content: "";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    vertical-align: -2px;
    background: #b6933c;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="9" cy="20" r="1"/><circle cx="18" cy="20" r="1"/><path d="M1 1h4l2.68 12.39a2 2 0 0 0 2 1.61h7.72a2 2 0 0 0 2-1.61L23 6H6"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="9" cy="20" r="1"/><circle cx="18" cy="20" r="1"/><path d="M1 1h4l2.68 12.39a2 2 0 0 0 2 1.61h7.72a2 2 0 0 0 2-1.61L23 6H6"/></svg>');
}

.ltp-checkout-card-title--summary {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.ltp-checkout-card-icon {
    width: 1rem;
    height: 1rem;
    background: #b6933c;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="9" cy="20" r="1"/><circle cx="18" cy="20" r="1"/><path d="M1 1h4l2.68 12.39a2 2 0 0 0 2 1.61h7.72a2 2 0 0 0 2-1.61L23 6H6"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="9" cy="20" r="1"/><circle cx="18" cy="20" r="1"/><path d="M1 1h4l2.68 12.39a2 2 0 0 0 2 1.61h7.72a2 2 0 0 0 2-1.61L23 6H6"/></svg>');
}

/* WooCommerce hardcodes this heading directly into form-checkout.php (no
   action to unhook) right before our own .ltp-checkout-card-title "Your
   order" heading — hide the duplicate rather than forking that template. */
#order_review_heading {
    display: none;
}

#customer_details .col2-set,
#customer_details {
    display: block;
}

#customer_details .col-2:empty {
    display: none;
}

/* Payment method list */
.wc_payment_methods.payment_methods.methods {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wc_payment_methods li.wc_payment_method {
    border: 1.5px solid var(--ltp-border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.wc_payment_methods li.wc_payment_method:hover {
    border-color: #d9c997;
}

.wc_payment_methods li.wc_payment_method:has(input:checked) {
    border-color: var(--ltp-gold);
    background: #fdfbf4;
    box-shadow: 0 0 0 2px #f7edd0;
}

.wc_payment_methods li.wc_payment_method label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    cursor: pointer;
    margin: 0;
    font-weight: 600;
    font-size: 0.92rem;
}

.wc_payment_methods input.input-radio {
    accent-color: var(--ltp-gold);
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.ltp-payment-label {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.ltp-payment-title {
    font-weight: 600;
    font-size: 0.906rem;
}

.ltp-payment-subtitle {
    font-weight: 500;
    font-size: 0.78rem;
    color: #6b6b70;
}

.ltp-payment-badge {
    margin-left: auto;
    flex-shrink: 0;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.656rem;
    letter-spacing: 0.06em;
    background: #eaf5ef;
    color: #2e9e6b;
    padding: 0.25rem 0.5625rem;
    border-radius: 6px;
}

.ltp-payment-badge--muted {
    background: #f1f0ea;
    color: #8a8a90;
}

.ltp-payment-whatsapp-cta {
    margin: 0.75rem 0 0 !important;
}

.ltp-payment-whatsapp-cta a {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.78rem;
    color: var(--ltp-gold-dark, #a8842f);
    text-decoration: none;
    font-weight: 600;
}

.wc_payment_methods .payment_box {
    padding: 0 1.125rem 1.25rem;
    font-size: 0.875rem;
    color: #56565b;
    background: #fdfbf4;
    border-top: 1px solid #f0e8cf;
}

.wc_payment_methods .payment_box p {
    margin: 0 0 0.75rem;
}

.wc_payment_methods .payment_box::before {
    border: none !important;
}

/* -------------------------------------------------------
   Checkout: Select2 / country & state dropdowns
   ------------------------------------------------------- */
.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0 2.5rem 0 0.9375rem;
    font-size: 0.875rem;
    font-family: "IBM Plex Sans", sans-serif;
    color: var(--ltp-text);
    line-height: 46px;
}

.select2-container .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 0.75rem;
    top: 0;
    width: 24px;
}

.select2-container .select2-selection--single .select2-selection__arrow b {
    border-color: #8a8a90 transparent transparent transparent;
    border-width: 5px 4px 0 4px;
    margin-top: -2px;
}

.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #8a8a90 transparent;
    border-width: 0 4px 5px 4px;
}

.select2-container--open .select2-selection--single {
    border-color: var(--ltp-gold) !important;
    box-shadow: 0 0 0 3px rgba(182, 147, 60, 0.16);
}

.select2-dropdown {
    border-color: #d9d6cc;
    border-radius: 10px;
    box-shadow: 0 8px 24px -8px rgba(19, 19, 22, 0.22);
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 0.875rem;
}

.select2-results__option {
    padding: 0.6rem 0.9375rem;
}

.select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--ltp-gold);
    color: var(--ltp-text);
}

.select2-search--dropdown .select2-search__field {
    border: 1px solid #d9d6cc;
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 0.85rem;
}

/* Native state select (shown when no Select2) */
.woocommerce-checkout select.state_select,
.woocommerce-checkout select.country_to_state {
    border: 1px solid #d9d6cc;
    border-radius: 10px;
    padding: 0.8125rem 0.9375rem;
    font-size: 0.875rem;
    font-family: "IBM Plex Sans", sans-serif;
    color: var(--ltp-text);
    background: #fff;
    appearance: auto;
    width: 100%;
    height: auto;
}

/* -------------------------------------------------------
   Checkout: Coupon field — equal height input + button
   ------------------------------------------------------- */
.ltp-order-review-card .checkout_coupon.woocommerce-form-coupon {
    align-items: stretch;
    gap: 0.5rem;
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}

.ltp-order-review-card .checkout_coupon .input-text {
    height: 40px;
    padding: 0 0.75rem;
    border: 1px solid #d9d6cc;
    border-radius: 8px;
    font-size: 0.84rem;
    flex: 1;
    min-width: 0;
}

.ltp-order-review-card .checkout_coupon .button {
    height: 40px;
    line-height: 40px;
    padding: 0 1rem;
    border-radius: 8px;
    font-size: 0.84rem;
    white-space: nowrap;
    flex-shrink: 0;
    background: var(--ltp-gold);
    color: var(--ltp-text);
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-family: "IBM Plex Sans", sans-serif;
}

.ltp-order-review-card .checkout_coupon .button:hover {
    background: #b9953f;
}

/* -------------------------------------------------------
   Checkout: Coupon section card (below order summary)
   ------------------------------------------------------- */
/* -------------------------------------------------------
   Checkout: Coupon section card — redesigned
   ------------------------------------------------------- */

/* Card: override the base flex-row to column */
.ltp-coupon-section-card {
    margin-top: 1rem;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 1.25rem 1.5rem !important;
}

/* Header row: icon + title */
.ltp-coupon-section-header {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    color: var(--ltp-text);
}

.ltp-coupon-section-header svg {
    flex-shrink: 0;
    color: var(--ltp-gold-dark, #a8842f);
}

.ltp-coupon-section-title {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ltp-text);
}

/* ── Coupon entry form (always visible, full-width) ── */
.ltp-coupon-section-card .woocommerce-form-coupon-toggle {
    display: none !important;
}

.ltp-coupon-form-slot {
    width: 100%;
    border-top: 1px solid #ede9de;
    padding-top: 1.1rem;
    margin-top: 1rem;
}

/* WC notice (success/error) inside the coupon form — force it to a full-width row */
.ltp-coupon-section-card .woocommerce-notices-wrapper,
.ltp-coupon-section-card form.checkout_coupon .woocommerce-message,
.ltp-coupon-section-card form.checkout_coupon .woocommerce-error,
.ltp-coupon-section-card form.checkout_coupon .woocommerce-info {
    width: 100%;
    flex-basis: 100%;
    flex-shrink: 0;
    order: -1;
    margin: 0 0 0.75rem;
    padding: 0.6rem 0.875rem;
    border-radius: 8px;
    font-size: 0.82rem;
    line-height: 1.5;
}

/* All coupon notices use the same green "success" treatment —
   in this context every message is informational, not a real error. */
.ltp-coupon-section-card .woocommerce-message,
.ltp-coupon-section-card .woocommerce-error,
.ltp-coupon-section-card .woocommerce-info {
    background: #f0f8f4;
    border: 1px solid #b0d9c0;
    color: #2a5a3c;
    list-style: none;
}

/* Re-injected coupon notice (capture-and-replay after WC fragment refresh) */
.ltp-coupon-notice {
    display: block !important;
    width: 100%;
    margin: 0 0 0.75rem;
    padding: 0.6rem 0.875rem;
    border-radius: 8px;
    font-size: 0.82rem;
    line-height: 1.5;
    background: #f0f8f4 !important;
    border: 1px solid #b0d9c0 !important;
    color: #2a5a3c !important;
    list-style: none;
}

.ltp-coupon-notice li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* WC checkout.js injects a .coupon-error-notice span inside p.form-row.
   Because p.form-row has display:contents, the span becomes a flex sibling
   of the input and renders inline beside it. Force it above the row. */
.ltp-coupon-section-card form.checkout_coupon .coupon-error-notice {
    order: -10;
    flex-basis: 100%;
    width: 100%;
    display: block;
    margin: 0 0 0.5rem;
    padding: 0.55rem 0.875rem;
    border-radius: 8px;
    font-size: 0.82rem;
    line-height: 1.5;
    background: #f0f8f4;
    border: 1px solid #b0d9c0;
    color: #2a5a3c;
}

/* Hide the redundant "Coupon:" label — placeholder communicates it */
.ltp-coupon-section-card form.checkout_coupon label[for="coupon_code"] {
    display: none;
}

.ltp-coupon-section-card form.checkout_coupon {
    display: flex !important;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.5rem;
    margin: 0;
    width: 100%;
}

/* Only flatten WC's field-row <p> wrappers — never notice <p> elements */
.ltp-coupon-section-card form.checkout_coupon p.form-row {
    display: contents;
    margin: 0;
}

/* Notices inside or before the form — always full-width block, above the input row */
.ltp-coupon-form-slot .woocommerce-message,
.ltp-coupon-form-slot .woocommerce-error,
.ltp-coupon-form-slot .woocommerce-info,
.ltp-coupon-form-slot ul.woocommerce-error,
.ltp-coupon-section-card form.checkout_coupon .woocommerce-message,
.ltp-coupon-section-card form.checkout_coupon .woocommerce-error,
.ltp-coupon-section-card form.checkout_coupon .woocommerce-info,
.ltp-coupon-section-card form.checkout_coupon ul.woocommerce-error {
    display: block !important;
    width: 100%;
    flex-basis: 100%;
    order: -1;
    list-style: none;
    margin: 0 0 0.75rem;
    padding: 0.6rem 0.875rem;
    border-radius: 8px;
    font-size: 0.82rem;
    line-height: 1.5;
    background: #f0f8f4;
    border: 1px solid #b0d9c0;
    color: #2a5a3c;
}

.ltp-coupon-form-slot ul.woocommerce-error li,
.ltp-coupon-section-card form.checkout_coupon ul.woocommerce-error li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ltp-coupon-section-card form.checkout_coupon .input-text {
    flex: 1;
    min-width: 0;
    height: 42px;
    padding: 0 0.875rem;
    border: 1px solid #d9d6cc;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: "IBM Plex Sans", sans-serif;
    color: var(--ltp-text);
    background: #fff;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.ltp-coupon-section-card form.checkout_coupon .input-text:focus {
    border-color: var(--ltp-gold);
    box-shadow: 0 0 0 3px rgba(182, 147, 60, 0.14);
}

.ltp-coupon-section-card form.checkout_coupon .button {
    height: 42px;
    padding: 0 1.1rem;
    border-radius: 8px;
    font-size: 0.84rem;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    background: var(--ltp-gold);
    color: var(--ltp-text);
    border: none;
    cursor: pointer;
    transition: background 0.13s;
    line-height: 42px;
}

.ltp-coupon-section-card form.checkout_coupon .button:hover {
    background: #b9953f;
}

/* ── Available coupon chips (quick-pick shortcuts) ── */
.ltp-available-coupons {
    margin-top: 0;
    margin-bottom: 0;
}

.ltp-available-coupons-label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #a0a0a8;
    margin: 0 0 0.6rem;
}

/* Chips in a wrapping row */
.ltp-coupon-chips {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ltp-coupon-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.7rem 0.35rem 0.6rem;
    background: #fdf8ea;
    border: 1.5px dashed #d4b96b;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.13s, background 0.13s, box-shadow 0.13s;
    width: auto;
}

.ltp-coupon-chip:hover {
    background: #f9f0d0;
    border-color: var(--ltp-gold);
    box-shadow: 0 2px 6px -2px rgba(182, 147, 60, 0.22);
}

.ltp-coupon-chip-code {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.775rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #5a4010;
}

.ltp-coupon-chip-discount {
    font-size: 0.72rem;
    font-weight: 600;
    color: #2a6e3f;
    background: #e0f2e9;
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
    line-height: 1.6;
}

/* Hide description — discount badge is sufficient */
.ltp-coupon-chip-desc {
    display: none;
}

/* -------------------------------------------------------
   Checkout: Upsell section card
   ------------------------------------------------------- */
.ltp-upsell-card {
    margin-top: 0.75rem;
    padding: 1.1rem 1.25rem 1rem;
    border: 1.5px solid #e8dfc8;
    background: linear-gradient(135deg, #fffdf5 0%, #fdfaf0 100%);
    flex-direction: column !important;
    gap: 0.75rem !important;
}

.ltp-upsell-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #b6933c;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ltp-upsell-icon {
    flex-shrink: 0;
    stroke: #b6933c;
}

.ltp-upsell-body {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.ltp-upsell-img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ede8d5;
    flex-shrink: 0;
}

.ltp-upsell-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.ltp-upsell-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ltp-text);
    line-height: 1.3;
}

.ltp-upsell-desc {
    font-size: 0.775rem;
    color: #7a7a82;
    line-height: 1.45;
}

.ltp-upsell-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.35rem;
    flex-wrap: wrap;
}

.ltp-upsell-price {
    font-size: 0.925rem;
    font-weight: 700;
    color: var(--ltp-text);
}

.ltp-upsell-price .woocommerce-Price-amount {
    font-weight: 700;
}

.ltp-upsell-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    background: var(--ltp-gold);
    color: var(--ltp-dark);
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s, transform 0.1s;
    font-family: inherit;
}

.ltp-upsell-add-btn:hover {
    background: #c8a04a;
    transform: translateY(-1px);
}

.ltp-upsell-add-btn:disabled {
    opacity: 0.65;
    cursor: wait;
    transform: none;
}

.ltp-upsell-nudge {
    font-size: 0.72rem;
    color: #9a9a9a;
    margin: 0;
    line-height: 1.4;
    border-top: 1px solid #ede8d5;
    padding-top: 0.65rem;
}

/* -------------------------------------------------------
   Checkout: Payment method radio — custom indicator
   ------------------------------------------------------- */
/* Hide native radio; use CSS ::before on label as the visual dot */
.wc_payment_methods li.wc_payment_method > input.input-radio {
    appearance: none;
    -webkit-appearance: none;
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.wc_payment_methods li.wc_payment_method label {
    padding-left: 3rem;
    position: relative;
    cursor: pointer;
}

.wc_payment_methods li.wc_payment_method label::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid #d9d6cc;
    border-radius: 50%;
    background: #fff;
    transition: border-color 0.15s, background 0.15s;
    flex-shrink: 0;
}

.wc_payment_methods li.wc_payment_method:has(input:checked) label::before {
    border-color: var(--ltp-gold);
    background: radial-gradient(circle, var(--ltp-gold) 45%, #fff 45%);
}

/* -------------------------------------------------------
   UPI v2 — compact step-based layout
   ------------------------------------------------------- */
.ltp-upi-v2 {
    margin: 0;
}

.ltp-upi-info-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem 1.25rem;
    padding: 0.75rem 1rem;
    background: #f5f1e6;
    border: 1px solid #e8dcb8;
    border-radius: 10px;
    margin-bottom: 1.25rem;
    font-size: 0.8rem;
    font-family: "IBM Plex Mono", monospace;
    color: #5a4e28;
}

.ltp-upi-info-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.ltp-upi-info-item strong {
    color: #3a3020;
    font-weight: 600;
}

.ltp-upi-step-block {
    border: 1px solid var(--ltp-border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.ltp-upi-step-header {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    background: #fafaf7;
    border-bottom: 1px solid var(--ltp-border);
    font-weight: 600;
    font-size: 0.875rem;
    font-family: "Space Grotesk", sans-serif;
}

.ltp-upi-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--ltp-gold);
    color: var(--ltp-text);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.ltp-upi-step-body {
    padding: 1rem;
}

.ltp-upi-qr-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.ltp-upi-qr-block img {
    width: 180px;
    height: 180px;
    border-radius: 8px;
    border: 1px solid var(--ltp-border);
}

/* Proof method tabs */
.ltp-proof-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

/* "Choose one method:" label above the tabs */
.ltp-proof-tabs-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #8a8a90;
    margin-bottom: 0.625rem;
}

.ltp-proof-tabs {
    align-items: center;
}

.ltp-proof-tab {
    padding: 0.45rem 0.9rem;
    border: 1.5px solid #d9d6cc;
    border-radius: 999px;
    font-size: 0.78rem;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 500;
    cursor: pointer;
    background: #fff;
    color: #9a9aa0;
    opacity: 0.65;
    transition: border-color 0.13s, background 0.13s, color 0.13s, opacity 0.13s;
}

.ltp-proof-tab:hover {
    border-color: #c9a84c;
    color: var(--ltp-text);
    opacity: 0.9;
}

.ltp-proof-tab.active {
    border-color: var(--ltp-gold);
    background: #fdf8ea;
    color: #5a4010;
    font-weight: 600;
    opacity: 1;
}

/* "or" separator between tabs */
.ltp-proof-tab-or {
    font-size: 0.7rem;
    font-style: italic;
    color: #bcbcc2;
    user-select: none;
}

.ltp-proof-panel {
    display: none;
    margin-top: 0.75rem;
}

.ltp-proof-panel.active {
    display: block;
}

/* UTR input — match theme input style */
.ltp-proof-panel[data-panel="utr"] input[type="text"] {
    width: 100%;
    border: 1px solid #d9d6cc;
    border-radius: 10px;
    padding: 0.8125rem 0.9375rem;
    font-size: 0.875rem;
    font-family: "IBM Plex Mono", monospace;
    color: var(--ltp-text);
    background: #fff;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.15s, box-shadow 0.15s;
    letter-spacing: 0.04em;
}

.ltp-proof-panel[data-panel="utr"] input[type="text"]:focus {
    border-color: var(--ltp-gold);
    box-shadow: 0 0 0 3px rgba(182, 147, 60, 0.16);
}

.ltp-proof-whatsapp-note {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    background: #f0f8f4;
    border: 1px solid #b0d9c0;
    border-radius: 10px;
    font-size: 0.84rem;
    color: #2a5a3c;
}

.ltp-proof-whatsapp-note strong {
    color: #1e5530;
}

/* UPI manual gateway box (plugin markup, theme-skinned). */
.ltp-upi-checkout-preview {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
}

.ltp-upi-checkout-preview h4 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.95rem;
}

.ltp-upi-checkout-instructions {
    background: #fdf8e7;
    border: 1px solid #ebdfae;
    border-radius: 10px;
    padding: 1.125rem 1.25rem;
}

.ltp-upi-checkout-instructions h4 {
    color: #8a6d1e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ltp-upi-checkout-instructions ol {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
    counter-reset: ltp-upi-step;
    display: flex;
    flex-direction: column;
    gap: 0.6875rem;
}

.ltp-upi-checkout-instructions ol li {
    counter-increment: ltp-upi-step;
    position: relative;
    padding-left: 2rem;
    color: #5a5440;
    font-size: 0.84rem;
    line-height: 1.5;
}

.ltp-upi-checkout-instructions ol li::before {
    content: counter(ltp-upi-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--ltp-gold);
    color: var(--ltp-text);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ltp-upi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
    margin: 1.125rem 0;
}

.ltp-upi-panel {
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 10px;
    padding: 1.25rem;
}

.ltp-upi-panel h4 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    margin: 0 0 1rem;
}

.ltp-upi-panel p {
    font-size: 0.875rem;
    margin: 0 0 0.625rem;
}

.ltp-upi-qr {
    text-align: center;
}

.ltp-upi-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem;
    border: 1px solid var(--ltp-border);
    background: #fff;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    text-align: left;
}

.ltp-upi-brand-text strong {
    display: block;
    font-size: 0.8125rem;
}

.ltp-upi-brand-text span {
    display: block;
    font-size: 0.6875rem;
    color: #8a8a90;
}

.ltp-upi-qr img {
    border-radius: 8px;
    border: 1px solid var(--ltp-border);
    max-width: 100%;
}

.ltp-upi-code {
    font-size: 0.6875rem;
    word-break: break-all;
    color: #9a9a9f;
}

.ltp-upi-checkout-proof {
    border-top: 1px solid var(--ltp-border);
    padding-top: 1rem;
}

.ltp-upi-checkout-proof h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.92rem;
}

.ltp-upi-checkout-proof input[type="text"] {
    border: 1px solid #d9d6cc;
    border-radius: 9px;
    padding: 0.8125rem 0.9375rem;
    font-size: 0.875rem;
    width: 100%;
    max-width: 460px;
}

/* Copy UPI ID button */
.ltp-copy-upi-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #f5f0e6;
    border: 1px solid #e0d4aa;
    border-radius: 6px;
    padding: 0.2rem 0.6rem;
    font-size: 0.72rem;
    font-family: "IBM Plex Mono", monospace;
    color: #7a6230;
    cursor: pointer;
    transition: background 0.13s, border-color 0.13s;
    vertical-align: middle;
    margin-left: 0.35rem;
}

.ltp-copy-upi-btn:hover {
    background: #eedcb3;
    border-color: #c9a84c;
}

.ltp-copy-upi-btn.copied {
    background: #e6f6ee;
    border-color: #91d4ae;
    color: #2e7a50;
}

/* Custom file upload dropzone */
.ltp-upi-dropzone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: 2px dashed #d4cbb0;
    border-radius: 10px;
    padding: 1.5rem 1.25rem;
    background: #fdfbf4;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    margin-top: 0.5rem;
    text-align: center;
}

.ltp-upi-dropzone:hover,
.ltp-upi-dropzone.dragover {
    border-color: var(--ltp-gold);
    background: #fdf8ea;
}

.ltp-upi-dropzone-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.ltp-upi-dropzone-icon {
    font-size: 1.6rem;
    line-height: 1;
}

.ltp-upi-dropzone-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #3a3a40;
}

.ltp-upi-dropzone-hint {
    font-size: 0.72rem;
    font-family: "IBM Plex Mono", monospace;
    color: #9a9a9f;
}

.ltp-upi-dropzone-preview {
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #f0f8f4;
    border: 1px solid #a8d9be;
    border-radius: 8px;
    padding: 0.5rem 0.875rem;
    font-size: 0.8rem;
    color: #2e7a50;
    width: 100%;
}

.ltp-upi-dropzone-preview-name {
    font-weight: 500;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Post-payment flow explanation */
.ltp-upi-post-payment-flow {
    background: #f0f8f4;
    border: 1px solid #b0d9c0;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.ltp-upi-post-payment-flow h4 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.875rem;
    color: #1e6640;
    margin: 0 0 0.625rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.ltp-upi-post-payment-flow h4::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #2e9e6b;
    color: #fff;
    border-radius: 50%;
    font-size: 0.6rem;
    font-weight: 700;
    flex-shrink: 0;
}

.ltp-post-payment-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    counter-reset: post-step;
}

.ltp-post-payment-steps li {
    counter-increment: post-step;
    position: relative;
    padding-left: 1.75rem;
    font-size: 0.82rem;
    color: #2a5a3c;
    line-height: 1.45;
}

.ltp-post-payment-steps li::before {
    content: counter(post-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(46, 158, 107, 0.2);
    color: #1e6640;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ltp-upi-upload-notice {
    border-radius: 8px;
    font-size: 0.8rem;
    padding: 0.625rem 0.875rem;
}

/* Order summary */
.ltp-order-items {
    display: flex;
    flex-direction: column;
    margin: 0 0 0.25rem;
}

.ltp-order-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ede9dc;
}

.ltp-order-item:last-child {
    margin-bottom: 0.35rem;
}

.ltp-order-item-thumb {
    width: 54px;
    height: 54px;
    border-radius: 9px;
    overflow: hidden;
    flex-shrink: 0;
    background: #131316;
}

.ltp-order-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ltp-order-item-info {
    flex: 1;
    min-width: 0;
}

.ltp-order-item-name {
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.3;
}

.ltp-order-item-meta {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    color: #8a8a90;
    margin-top: 0.1875rem;
}

.ltp-order-item-total {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.ltp-order-totals {
    display: flex;
    flex-direction: column;
    font-size: 0.875rem;
}

.ltp-order-totals-row {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    color: #56565b;
    padding: 0.34375rem 0;
}

.ltp-order-totals-discount {
    color: #2e9e6b;
}

.ltp-order-totals-total {
    border-top: 1px solid #ede9dc;
    margin-top: 0.5rem;
    padding: 1.125rem 0 0.5rem;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--ltp-text);
}

.ltp-order-totals-total span:last-child {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.375rem;
}

.ltp-order-review-card .wc-block-components-notice-banner,
.ltp-order-review-card .woocommerce-error,
.ltp-order-review-card .woocommerce-info {
    margin-top: 0;
}

.ltp-order-totals-tax-note {
    text-align: right;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    color: #8a8a90;
    margin-top: 0.375rem;
}

.ltp-place-order {
    margin-top: 0.5rem;
}

.woocommerce-terms-and-conditions-wrapper {
    margin-bottom: 1rem;
    font-size: 0.84rem;
}

#place_order {
    width: 100%;
    background: var(--ltp-gold);
    color: var(--ltp-text);
    font-weight: 600;
    font-size: 0.97rem;
    padding: 0.9375rem;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    font-family: "IBM Plex Sans", sans-serif;
    transition: transform 0.14s ease, box-shadow 0.14s ease, background-color 0.14s ease;
    box-shadow: 0 10px 18px -14px rgba(168, 132, 47, 0.9);
}

#place_order:hover {
    background: #b9953f;
    transform: translateY(-1px);
    box-shadow: 0 12px 20px -13px rgba(168, 132, 47, 0.95);
}

#place_order:focus-visible {
    outline: 2px solid #d2ba78;
    outline-offset: 2px;
}

.ltp-secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.875rem 0 0;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    color: #8a8a90;
}

/* Checkout-only header: secure checkout label instead of full nav */
.ltp-checkout-header-note {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #8a8a90;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0;
}

.ltp-checkout-header-note::before {
    content: "";
    display: inline-block;
    width: 0.82rem;
    height: 0.82rem;
    background-color: #2e9e6b;
    border-radius: 50%;
    flex-shrink: 0;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 0.52rem 0.52rem;
    mask-size: 0.52rem 0.52rem;
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="11" width="18" height="11" rx="2"/><path d="M7 11V7a5 5 0 0 1 10 0v4"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="11" width="18" height="11" rx="2"/><path d="M7 11V7a5 5 0 0 1 10 0v4"/></svg>');
}

/* Inline Place Order button — rendered at bottom of payment card in left column */
.ltp-place-order-inline {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--ltp-border);
}

.woocommerce-checkout .woocommerce-form-login-toggle,
.woocommerce-checkout .woocommerce-form-coupon-toggle {
    margin-bottom: 0.95rem;
}

.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info,
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
    border-radius: 10px;
    border-color: #e7dbc0;
    background: #fdfbf4;
}

@media (max-width: 900px) {
    .ltp-checkout-shell {
        padding: 1.45rem 0 2.5rem;
    }

    .ltp-checkout-shell-header {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .ltp-checkout-shell-copy .ltp-page-title {
        font-size: clamp(1.72rem, 6.1vw, 2.2rem);
    }

    .ltp-checkout-shell-body {
        padding: 0.95rem;
    }

    .ltp-checkout-subtitle::after {
        white-space: normal;
        line-height: 1.45;
        font-size: 0.6rem;
        padding: 0.24rem 0.52rem;
    }

    .ltp-checkout-trust-strip {
        gap: 0.4rem;
        margin-bottom: 0.95rem;
    }

    .ltp-checkout-trust-strip span {
        font-size: 0.62rem;
        padding: 0.24rem 0.52rem;
    }

    .ltp-checkout-grid {
        grid-template-columns: 1fr;
    }

    .ltp-checkout-sidebar {
        position: static;
    }

    .ltp-upi-grid {
        grid-template-columns: 1fr;
    }

    .ltp-upi-submitted-grid {
        grid-template-columns: 1fr;
    }

    .woocommerce-billing-fields__field-wrapper {
        grid-template-columns: 1fr;
        gap: 0.95rem 1.1rem;
    }

    .woocommerce-billing-fields__field-wrapper > .form-row,
    .woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_country_field,
    .woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_state_field,
    .woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_phone_field,
    .woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_whatsapp_number_field {
        grid-column: 1;
    }
}

/* =========================================================
   My Account
   ========================================================= */
.woocommerce-account .ltp-main {
    padding: 2.5rem 0 4rem;
}

.ltp-account-grid {
    width: min(1240px, calc(100% - 3rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2.25rem;
    align-items: start;
}

.ltp-account-sidebar {
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 14px;
    padding: 1.5rem;
    position: sticky;
    top: 1.25rem;
}

.ltp-account-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1.125rem;
    margin-bottom: 1.125rem;
    border-bottom: 1px solid #ede9dc;
}

.ltp-account-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ltp-dark);
    color: var(--ltp-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.ltp-account-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.ltp-account-username {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6875rem;
    color: #8a8a90;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.875rem;
}

.woocommerce-MyAccount-navigation a {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    padding: 0.625rem 0.75rem;
    border-radius: 8px;
    color: #56565b;
}

.woocommerce-MyAccount-navigation a::before {
    content: "";
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
}

.woocommerce-MyAccount-navigation-link--dashboard a::before {
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="7" height="7"/><rect x="14" y="3" width="7" height="7"/><rect x="14" y="14" width="7" height="7"/><rect x="3" y="14" width="7" height="7"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="7" height="7"/><rect x="14" y="3" width="7" height="7"/><rect x="14" y="14" width="7" height="7"/><rect x="3" y="14" width="7" height="7"/></svg>');
}

.woocommerce-MyAccount-navigation-link--orders a::before {
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"/><line x1="3" y1="6" x2="21" y2="6"/><path d="M16 10a4 4 0 0 1-8 0"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"/><line x1="3" y1="6" x2="21" y2="6"/><path d="M16 10a4 4 0 0 1-8 0"/></svg>');
}

.woocommerce-MyAccount-navigation-link--downloads a::before {
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><polyline points="7 10 12 15 17 10"/><line x1="12" y1="15" x2="12" y2="3"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><polyline points="7 10 12 15 17 10"/><line x1="12" y1="15" x2="12" y2="3"/></svg>');
}

.woocommerce-MyAccount-navigation-link--edit-address a::before {
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"/><circle cx="12" cy="10" r="3"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"/><circle cx="12" cy="10" r="3"/></svg>');
}

.woocommerce-MyAccount-navigation-link--edit-account a::before {
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>');
}

.woocommerce-MyAccount-navigation-link--customer-logout a::before {
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"/><polyline points="16 17 21 12 16 7"/><line x1="21" y1="12" x2="9" y2="12"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"/><polyline points="16 17 21 12 16 7"/><line x1="21" y1="12" x2="9" y2="12"/></svg>');
}

.woocommerce-MyAccount-navigation li.is-active a {
    background: #fdfbf4;
    color: var(--ltp-text);
    font-weight: 600;
}

.woocommerce-MyAccount-navigation-link--customer-logout a {
    color: #d6573d;
}

.woocommerce-MyAccount-content {
    min-width: 0;
}

.ltp-account-welcome {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.875rem;
    letter-spacing: -0.02em;
    margin: 0 0 0.375rem;
}

.ltp-account-welcome--icon {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.ltp-account-welcome--icon .ltp-icon {
    width: 24px;
    height: 24px;
    color: var(--ltp-gold);
    flex-shrink: 0;
}

.ltp-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    vertical-align: middle;
    display: inline-block;
}

.ltp-account-icon-row {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ltp-account-icon-row .ltp-icon {
    color: var(--ltp-gold);
}

.ltp-account-detail-label {
    display: flex;
    align-items: center;
    gap: 0.4375rem;
}

.ltp-account-detail-label .ltp-icon {
    color: #8a8a90;
    width: 14px;
    height: 14px;
}

.ltp-account-stat {
    position: relative;
}

.ltp-account-stat::before {
    content: "";
    position: absolute;
    top: 1.125rem;
    right: 1.125rem;
    width: 18px;
    height: 18px;
    background-color: #d8cfb0;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
}

.ltp-account-stat:nth-child(1)::before {
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16.5 9.4 7.5 4.21"/><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"/><polyline points="3.27 6.96 12 12.01 20.73 6.96"/><line x1="12" y1="22.08" x2="12" y2="12"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16.5 9.4 7.5 4.21"/><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"/><polyline points="3.27 6.96 12 12.01 20.73 6.96"/><line x1="12" y1="22.08" x2="12" y2="12"/></svg>');
}

.ltp-account-stat:nth-child(2)::before {
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"/><line x1="3" y1="6" x2="21" y2="6"/><path d="M16 10a4 4 0 0 1-8 0"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"/><line x1="3" y1="6" x2="21" y2="6"/><path d="M16 10a4 4 0 0 1-8 0"/></svg>');
}

.ltp-account-stat:nth-child(3)::before {
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><path d="m9 12 2 2 4-4"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><path d="m9 12 2 2 4-4"/></svg>');
}

.ltp-account-sub {
    font-size: 0.9375rem;
    color: #6b6b70;
    margin: 0 0 1.75rem;
}

.ltp-account-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.ltp-account-stat {
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 12px;
    padding: 1.25rem;
}

.ltp-account-stat-value {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.625rem;
}

.ltp-account-stat-label {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #83838a;
    margin-top: 0.25rem;
}

.ltp-account-card {
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 14px;
    overflow: hidden;
}

.ltp-account-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.125rem 1.375rem;
    border-bottom: 1px solid #ede9dc;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

.ltp-account-card-action {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #a8842f;
    text-decoration: none;
}

.ltp-account-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.ltp-account-detail-row {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1rem 1.375rem;
    border-bottom: 1px solid #f2efe7;
    font-size: 0.875rem;
}

.ltp-account-detail-row:nth-child(odd) {
    border-right: 1px solid #f2efe7;
}

.ltp-account-detail-row:last-child {
    border-bottom: none;
}

.ltp-account-detail-label {
    color: #8a8a90;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ltp-account-detail-value {
    font-weight: 600;
    color: var(--ltp-text);
    text-align: left;
}

.ltp-account-detail-value em {
    font-weight: 400;
    font-style: normal;
    color: #9a9a9f;
}

.ltp-account-tool-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.125rem 1.375rem;
    border-bottom: 1px solid #f2efe7;
}

.ltp-account-tool-row:last-child {
    border-bottom: none;
}

.ltp-account-tool-icon {
    width: 46px;
    height: 46px;
    border-radius: 9px;
    background: #131316;
    overflow: hidden;
    flex-shrink: 0;
}

.ltp-account-tool-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.ltp-account-tool-info {
    flex: 1;
    min-width: 0;
}

.ltp-account-tool-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.ltp-account-tool-meta {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    color: #8a8a90;
    margin-top: 0.2rem;
}

.ltp-account-tool-action {
    text-decoration: none;
    background: var(--ltp-dark);
    color: #fff;
    font-weight: 600;
    font-size: 0.8125rem;
    padding: 0.5625rem 1rem;
    border-radius: 8px;
    white-space: nowrap;
}

.ltp-account-empty {
    padding: 1.75rem 1.375rem;
    font-size: 0.9rem;
    color: #6b6b70;
    margin: 0;
}

.ltp-account-empty a {
    color: var(--ltp-gold);
    font-weight: 600;
    text-decoration: none;
}

.ltp-account-links {
    font-size: 0.84rem;
    color: #6b6b70;
    margin-top: 1.5rem;
}

.ltp-order-invoice-intro {
    margin-bottom: 1.4rem;
}

.ltp-order-invoice-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.875rem;
    padding: 1rem 1.25rem 1.25rem;
}

.ltp-order-kicker {
    display: block;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8a8a90;
    margin-bottom: 0.3rem;
}

.ltp-order-invoice-grid strong {
    font-size: 0.94rem;
}

.ltp-order-access-card {
    margin: 0 0 1.35rem;
}

.ltp-order-access-list {
    padding: 0.25rem 0;
}

.ltp-order-access-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.875rem;
    padding: 0.85rem 1.25rem;
    border-top: 1px solid #f2efe7;
}

.ltp-order-access-row:first-child {
    border-top: none;
}

.ltp-order-access-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.ltp-order-access-right {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.ltp-account-links a {
    color: var(--ltp-gold);
    text-decoration: none;
}

/* Logged-out My Account: pitch panel + auth card side by side. */
.ltp-account-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    padding: 3.5rem 0 5rem;
}

.ltp-account-pitch .ltp-kicker {
    margin-bottom: 1.125rem;
}

.ltp-account-pitch .ltp-page-title {
    font-size: 2.625rem;
    line-height: 1.08;
    margin-bottom: 1.125rem;
}

.ltp-account-pitch .ltp-lead {
    max-width: 440px;
    margin-bottom: 2rem;
}

.ltp-account-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 420px;
}

.ltp-account-feature {
    display: flex;
    gap: 0.8125rem;
    align-items: flex-start;
}

.ltp-account-feature-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--ltp-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ltp-gold);
    font-weight: 700;
    flex-shrink: 0;
}

.ltp-account-feature-title {
    font-weight: 600;
    font-size: 0.906rem;
}

.ltp-account-feature-body {
    font-size: 0.84rem;
    color: #6b6b70;
    margin-top: 0.125rem;
}

@media (max-width: 1024px) {
    .ltp-account-hero {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .ltp-account-hero {
        grid-template-columns: 1fr;
    }
}

/* Standalone auth pages (lost-password confirmation, set-new-password) that
   aren't part of the main login/register tabbed card. */
.ltp-auth-standalone {
    max-width: 460px;
    padding: 4rem 0 6rem;
}

/* Login / register auth card */
.ltp-auth-card {
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 18px;
    padding: 0.5rem;
    box-shadow: 0 24px 60px -34px rgba(20, 18, 10, 0.3);
}

.ltp-auth-tabs {
    display: flex;
    background: #f4f2ec;
    border-radius: 12px;
    padding: 0.3125rem;
}

.ltp-auth-tab {
    flex: 1;
    text-align: center;
    padding: 0.6875rem;
    border-radius: 9px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    background: transparent;
    color: #8a8a90;
    border: none;
    font-family: "IBM Plex Sans", sans-serif;
}

.ltp-auth-tab.is-active {
    background: #fff;
    color: var(--ltp-text);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.ltp-auth-tab:not(.is-active):hover {
    color: var(--ltp-text);
}

.ltp-auth-divider {
    text-align: center;
    margin: 1.125rem 0;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6875rem;
    text-transform: uppercase;
    color: #b0b0b5;
    letter-spacing: 0.05em;
}

.ltp-auth-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
}

.ltp-auth-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid #e2e0d8;
    background: #fff;
    border-radius: 10px;
    padding: 0.75rem;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    font-family: "IBM Plex Sans", sans-serif;
    color: var(--ltp-text);
}

.ltp-auth-social-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.ltp-auth-social-btn:hover {
    border-color: #c9c4b6;
}

.ltp-auth-panel {
    display: none;
    padding: 1.75rem 1.625rem 1.625rem;
}

.ltp-auth-card .woocommerce-notices-wrapper {
    padding: 1rem 1.625rem 0;
}

.ltp-auth-card .woocommerce-error,
.ltp-auth-card .woocommerce-message,
.ltp-auth-card .woocommerce-info {
    margin: 0;
    border-radius: 10px;
}

.ltp-auth-card .woocommerce-notices-wrapper:not(:empty) + .ltp-auth-panel {
    padding-top: 1.125rem;
}

.ltp-auth-panel.is-active {
    display: block;
}

.ltp-auth-panel h2 {
    font-size: 1.375rem;
    margin: 0 0 0.25rem;
}

.ltp-auth-sub {
    font-size: 0.84rem;
    color: #8a8a90;
    margin: 0 0 1.375rem;
}

.ltp-auth-row-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.ltp-auth-row-between label {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #56565b;
}

.ltp-auth-submit {
    width: 100%;
    background: var(--ltp-gold);
    color: var(--ltp-text);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.875rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    margin-top: 0.25rem;
    transition: filter 0.2s ease;
}

.ltp-auth-submit:hover {
    filter: brightness(0.96);
}

.ltp-auth-card input#username,
.ltp-auth-card input#user_login,
.ltp-auth-card input#reg_email {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%238a8a90" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="4" width="20" height="16" rx="2"/><path d="m22 6-10 7L2 6"/></svg>');
    background-repeat: no-repeat;
    background-position: 0.875rem center;
    background-size: 17px;
    padding-left: 2.75rem;
}

.ltp-auth-card input#reg_username {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%238a8a90" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>');
    background-repeat: no-repeat;
    background-position: 0.875rem center;
    background-size: 16px;
    padding-left: 2.75rem;
}

.ltp-auth-card input#password,
.ltp-auth-card input#reg_password {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%238a8a90" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"/><path d="M7 11V7a5 5 0 0 1 10 0v4"/></svg>');
    background-repeat: no-repeat;
    background-position: 0.875rem center;
    background-size: 16px;
    padding-left: 2.75rem;
}

.ltp-auth-fineprint {
    font-size: 0.72rem;
    color: #9a9a9f;
    line-height: 1.5;
    margin: 1rem 0 0;
    text-align: center;
}

.woocommerce-LostPassword {
    margin: 0;
    font-size: 0.8125rem;
}

.ltp-auth-link-btn {
    background: none;
    border: none;
    padding: 0;
    color: #a8842f;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8125rem;
    font-family: "IBM Plex Sans", sans-serif;
    cursor: pointer;
}

.ltp-auth-link-btn:hover {
    text-decoration: underline;
}

.ltp-auth-back {
    background: none;
    border: none;
    padding: 0;
    display: inline-flex;
    margin-top: 1.25rem;
    color: #56565b;
    font-weight: 500;
    font-size: 0.8125rem;
    font-family: "IBM Plex Sans", sans-serif;
    text-decoration: none;
    cursor: pointer;
}

.ltp-auth-back:hover {
    color: var(--ltp-text);
}

.ltp-auth-card.is-forgot-active .ltp-auth-tabs {
    display: none;
}

/* WooCommerce-injected register form extras that lost their styling along
   with the disabled bundled stylesheet. */
.woocommerce-privacy-policy-text {
    font-size: 0.78rem;
    color: #8a8a90;
    line-height: 1.5;
    margin: 0.5rem 0 0;
}

.woocommerce-privacy-policy-text p {
    margin: 0;
}

.woocommerce-privacy-policy-link {
    color: #a8842f;
}

wc-order-attribution-inputs {
    display: none;
}

.woocommerce-password-strength {
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    margin: -0.5rem 0 1rem;
    border: 1px solid var(--ltp-border);
    background: #fafaf7;
    color: #56565b;
}

.woocommerce-password-strength.short,
.woocommerce-password-strength.bad {
    background: #fceeea;
    border-color: #f1c3b6;
    color: #b3402c;
}

.woocommerce-password-strength.good {
    background: #f6efd9;
    border-color: #ebdfae;
    color: #8a6d1e;
}

.woocommerce-password-strength.strong {
    background: #eaf5ef;
    border-color: #bfe3cf;
    color: #1f5b3e;
}

/* =========================================================
   My Account sub-pages: Orders, single Order, Addresses,
   Account details. These are default WooCommerce templates we
   don't override — styled entirely through their existing
   classes, same approach as Shop/Product.
   ========================================================= */

/* Generic WooCommerce button fallback — covers order actions
   (Pay/View/Cancel), address Save, account Save changes, and the
   "Browse products" / empty-state notice buttons. */
.woocommerce a.button,
.woocommerce button.button,
a.woocommerce-Button,
button.woocommerce-Button,
.woocommerce-EditAccountForm button[type="submit"],
form.woocommerce-address-fields button[type="submit"],
.woocommerce-orders-table__cell-order-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--ltp-gold);
    color: var(--ltp-text);
    font-weight: 600;
    font-size: 0.84rem;
    padding: 0.625rem 1.125rem;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    font-family: "IBM Plex Sans", sans-serif;
    transition: filter 0.2s ease;
    margin-right: 0.5rem;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
a.woocommerce-Button:hover,
button.woocommerce-Button:hover {
    filter: brightness(0.96);
}

.woocommerce a.button.cancel,
.woocommerce-orders-table__cell-order-actions a.cancel {
    background: transparent;
    border: 1px solid var(--ltp-border);
    color: var(--ltp-text);
}

/* Orders list */
.woocommerce-orders-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 14px;
    overflow: hidden;
}

.woocommerce-orders-table thead th {
    text-align: left;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a8a90;
    padding: 1rem 1.25rem;
    background: #fafaf7;
    border-bottom: 1px solid var(--ltp-border);
}

.woocommerce-orders-table td,
.woocommerce-orders-table th[scope="row"] {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f2efe7;
    font-size: 0.875rem;
    vertical-align: middle;
}

.woocommerce-orders-table th[scope="row"] a {
    font-weight: 600;
    text-decoration: none;
    color: var(--ltp-text);
}

.woocommerce-orders-table tbody tr:last-child td,
.woocommerce-orders-table tbody tr:last-child th {
    border-bottom: none;
}

.woocommerce-orders-table__cell-order-status {
    font-weight: 600;
    font-size: 0.8125rem;
    border-radius: 8px;
}

.woocommerce-orders-table__row--status-completed .woocommerce-orders-table__cell-order-status,
.woocommerce-orders-table__row--status-upi-verified .woocommerce-orders-table__cell-order-status {
    color: #1f5b3e;
}

.woocommerce-orders-table__row--status-processing .woocommerce-orders-table__cell-order-status,
.woocommerce-orders-table__row--status-upi-verifying .woocommerce-orders-table__cell-order-status {
    color: #8a6d1e;
}

.woocommerce-orders-table__row--status-on-hold .woocommerce-orders-table__cell-order-status,
.woocommerce-orders-table__row--status-pending .woocommerce-orders-table__cell-order-status {
    color: #56565b;
}

.woocommerce-orders-table__row--status-cancelled .woocommerce-orders-table__cell-order-status,
.woocommerce-orders-table__row--status-failed .woocommerce-orders-table__cell-order-status,
.woocommerce-orders-table__row--status-upi-rejected .woocommerce-orders-table__cell-order-status {
    color: #b3402c;
}

.woocommerce-orders-table__row--status-refunded .woocommerce-orders-table__cell-order-status {
    color: #3a4a6b;
}

.ltp-orders-table-enhanced .woocommerce-orders-table__cell-order-products {
    min-width: 270px;
}

.ltp-orders-products-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.ltp-orders-products-list li {
    font-size: 0.84rem;
    line-height: 1.35;
    color: var(--ltp-text);
}

.ltp-orders-products-list a {
    text-decoration: none;
    color: var(--ltp-text);
    font-weight: 500;
}

.ltp-orders-products-list a:hover {
    text-decoration: underline;
}

.ltp-orders-qty,
.ltp-orders-more,
.ltp-orders-submeta {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.03em;
    color: #8a8a90;
}

.ltp-orders-submeta {
    margin-top: 0.25rem;
}

.ltp-orders-empty {
    color: #9a9aa1;
}

.ltp-orders-table-enhanced .woocommerce-orders-table__cell-order-actions {
    white-space: nowrap;
}

.ltp-orders-table-enhanced .woocommerce-orders-table__cell-order-actions .button {
    margin-right: 0;
}

.woocommerce-Pagination,
.woocommerce-pagination--without-numbers {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.75rem;
}

/* Single order view */
.woocommerce-order-details,
.woocommerce-customer-details {
    margin-top: 2rem;
}

.woocommerce-order-details__title,
.woocommerce-column__title {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0 0 1rem;
}

.woocommerce-column__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.woocommerce-column__title::before {
    content: "";
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background-color: var(--ltp-gold);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"/><circle cx="12" cy="10" r="3"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"/><circle cx="12" cy="10" r="3"/></svg>');
}

mark.order-number,
mark.order-date,
mark.order-status {
    background: #fafaf7;
    color: var(--ltp-text);
    font-weight: 600;
    padding: 0.1rem 0.4rem;
    border-radius: 5px;
}

table.woocommerce-table--order-details {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 14px;
    overflow: hidden;
}

table.woocommerce-table--order-details th,
table.woocommerce-table--order-details td {
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid #f2efe7;
    font-size: 0.875rem;
    text-align: left;
}

table.woocommerce-table--order-details thead th {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a8a90;
    background: #fafaf7;
}

table.woocommerce-table--order-details tfoot th {
    font-weight: 500;
    color: #56565b;
}

table.woocommerce-table--order-details tfoot tr:last-of-type th,
table.woocommerce-table--order-details tfoot tr:last-of-type td {
    border-bottom: none;
    font-weight: 600;
    font-size: 1rem;
}

table.woocommerce-table--order-details tbody tr:last-child td {
    border-bottom: none;
}

.woocommerce-OrderUpdates {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.woocommerce-OrderUpdate-inner {
    background: #fafaf7;
    border: 1px solid var(--ltp-border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
}

.woocommerce-OrderUpdate-meta {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.7rem;
    color: #8a8a90;
    margin: 0 0 0.375rem;
}

.woocommerce-OrderUpdate-description p {
    margin: 0;
    font-size: 0.875rem;
    color: #3a3a3d;
}

.woocommerce-columns--addresses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 0;
    list-style: none;
}

.woocommerce-column--billing-address,
.woocommerce-column--shipping-address {
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 14px;
    padding: 1.5rem;
}

.woocommerce-customer-details address {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #56565b;
    font-style: normal;
}

/* Downloads (My Account > Downloads + the "Downloads" box on the single
   Order view / thank-you page — both render the same shared WooCommerce
   template, order/order-downloads.php, so styling it once covers both). */
.woocommerce-order-downloads {
    margin: 2rem 0;
}

.woocommerce-order-downloads__title {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.woocommerce-order-downloads__title::before {
    content: "";
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background-color: var(--ltp-gold);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><polyline points="7 10 12 15 17 10"/><line x1="12" y1="15" x2="12" y2="3"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><polyline points="7 10 12 15 17 10"/><line x1="12" y1="15" x2="12" y2="3"/></svg>');
}

table.woocommerce-table--order-downloads {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 14px;
    overflow: hidden;
}

table.woocommerce-table--order-downloads thead th {
    text-align: left;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a8a90;
    padding: 1rem 1.25rem;
    background: #fafaf7;
    border-bottom: 1px solid var(--ltp-border);
}

table.woocommerce-table--order-downloads td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f2efe7;
    font-size: 0.875rem;
    vertical-align: middle;
}

table.woocommerce-table--order-downloads tbody tr:hover td {
    background: #fdfbf4;
}

table.woocommerce-table--order-downloads tbody tr:last-child td {
    border-bottom: none;
}

.ltp-download-product {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--ltp-text);
    text-decoration: none;
}

.ltp-download-product .ltp-icon {
    color: var(--ltp-gold);
}

a.ltp-download-product:hover {
    text-decoration: underline;
}

.download-expires time {
    color: #56565b;
}

.ltp-download-badge {
    display: inline-flex;
    align-items: center;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.25rem 0.625rem;
    border-radius: 20px;
    background: #f1f0eb;
    color: #56565b;
    white-space: nowrap;
}

.ltp-download-badge--unlimited {
    background: #eaf5ef;
    color: #1f5b3e;
}

.woocommerce-MyAccount-downloads-file.button {
    gap: 0.5rem;
}

@media (max-width: 680px) {
    table.woocommerce-table--order-downloads thead {
        display: none;
    }

    table.woocommerce-table--order-downloads,
    table.woocommerce-table--order-downloads tbody,
    table.woocommerce-table--order-downloads tr,
    table.woocommerce-table--order-downloads td {
        display: block;
        width: 100%;
    }

    table.woocommerce-table--order-downloads tr {
        padding: 1rem 1.25rem;
        border-bottom: 1px solid var(--ltp-border);
    }

    table.woocommerce-table--order-downloads td {
        border-bottom: none;
        padding: 0.375rem 0;
    }

    table.woocommerce-table--order-downloads td::before {
        content: attr(data-title) ": ";
        font-weight: 600;
        color: #8a8a90;
    }

    table.woocommerce-table--order-downloads td.download-file {
        padding-top: 0.75rem;
    }

    table.woocommerce-table--order-downloads td.download-file::before {
        content: none;
    }
}

/* UPI manual gateway box on the order-view / thank-you page (different
   markup than the checkout payment-method version, which is styled
   separately above). */
.ltp-upi-box {
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 14px;
    padding: 1.75rem;
    margin: 2rem 0;
}

.ltp-upi-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.ltp-upi-box-header h2 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0;
}

.ltp-upi-status-pill {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.3125rem 0.75rem;
    border-radius: 20px;
    white-space: nowrap;
    background: #f1f0eb;
    color: #56565b;
}

.ltp-upi-status-pill--upi-verified,
.ltp-upi-status-pill--completed,
.ltp-upi-status-pill--processing {
    background: #eaf5ef;
    color: #1f5b3e;
}

.ltp-upi-status-pill--upi-verifying,
.ltp-upi-status-pill--on-hold {
    background: #f6efd9;
    color: #8a6d1e;
}

.ltp-upi-status-pill--upi-rejected,
.ltp-upi-status-pill--cancelled,
.ltp-upi-status-pill--failed {
    background: #fceeea;
    color: #b3402c;
}

.ltp-upi-box h3 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 0 0.75rem;
}

.ltp-upi-box > p {
    font-size: 0.875rem;
    color: #56565b;
}

.ltp-upi-submitted {
    background: #fafaf7;
    border: 1px solid var(--ltp-border);
    border-radius: 12px;
    padding: 1.375rem;
    margin: 1.125rem 0;
}

.ltp-upi-submitted-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.125rem;
}

.ltp-upi-submitted-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.ltp-upi-submitted-field span {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #8a8a90;
}

.ltp-upi-submitted-field strong {
    font-size: 0.9375rem;
    color: var(--ltp-text);
}

.ltp-upi-screenshot {
    margin-bottom: 1rem;
}

.ltp-upi-screenshot-label {
    display: block;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #8a8a90;
    margin-bottom: 0.5rem;
}

.ltp-upi-screenshot img {
    max-width: 220px;
    max-height: 220px;
    width: auto;
    border-radius: 10px;
    border: 1px solid var(--ltp-border);
    cursor: zoom-in;
    display: block;
}

.ltp-upi-locked-note {
    font-size: 0.8125rem;
    color: #8a8a90;
    margin: 0;
}

.ltp-upi-reference {
    margin-top: 1.125rem;
}

.ltp-upi-reference summary {
    cursor: pointer;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #a8842f;
}

.ltp-upi-reference .ltp-upi-grid {
    margin-top: 1.125rem;
}

.ltp-upi-form-wrap {
    border-top: 1px solid var(--ltp-border);
    padding-top: 1.25rem;
    margin-top: 1.25rem;
}

.ltp-upi-form label {
    font-size: 0.78rem;
    color: #8a8a90;
    font-weight: 500;
    display: block;
    margin: 0.75rem 0 0.375rem;
}

.ltp-upi-form input[type="text"],
.ltp-upi-form input[type="file"] {
    border: 1px solid #d9d6cc;
    border-radius: 9px;
    padding: 0.75rem 0.9375rem;
    font-size: 0.875rem;
    width: 100%;
    max-width: 400px;
}

/* Addresses overview */
.woocommerce-Addresses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.woocommerce-Address {
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 14px;
    padding: 1.5rem;
}

.woocommerce-Address-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.875rem;
}

.woocommerce-Address-title h2 {
    font-size: 1.0625rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.woocommerce-Address-title h2::before {
    content: "";
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background-color: var(--ltp-gold);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"/><circle cx="12" cy="10" r="3"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"/><circle cx="12" cy="10" r="3"/></svg>');
}

.woocommerce-Address-title a.edit {
    font-size: 0.8125rem;
    color: #a8842f;
    text-decoration: none;
    font-weight: 600;
}

.woocommerce-Address address {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #56565b;
    font-style: normal;
}

/* Cart block styling (Access Cart page) */
.wp-block-woocommerce-cart {
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 16px;
    padding: 1.5rem;
}

/* Empty cart doesn't need the extra outer container visual box. */
.wp-block-woocommerce-cart.alignwide:has(.wp-block-woocommerce-empty-cart-block) {
    background: transparent;
    border: 0 !important;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.wp-block-woocommerce-cart .wc-block-cart,
.wp-block-woocommerce-cart .wc-block-cart__main,
.wp-block-woocommerce-cart .wc-block-cart__sidebar,
.wp-block-woocommerce-cart .wc-block-components-sidebar {
    font-family: "IBM Plex Sans", sans-serif;
}

.wp-block-woocommerce-cart .wc-block-cart__main,
.wp-block-woocommerce-cart .wc-block-cart__sidebar {
    background: transparent;
}

.wp-block-woocommerce-cart .wc-block-components-title,
.wp-block-woocommerce-cart .wc-block-components-totals-item__label,
.wp-block-woocommerce-cart .wc-block-components-product-name,
.wp-block-woocommerce-cart .wc-block-cart__totals-title {
    font-family: "Space Grotesk", sans-serif;
    color: var(--ltp-text);
}

.wp-block-woocommerce-cart .wc-block-components-product-name {
    font-weight: 600;
}

.wp-block-woocommerce-cart .wc-block-components-product-metadata,
.wp-block-woocommerce-cart .wc-block-components-product-price,
.wp-block-woocommerce-cart .wc-block-components-totals-item__value,
.wp-block-woocommerce-cart .wc-block-cart-item__prices,
.wp-block-woocommerce-cart .wc-block-formatted-money-amount {
    color: #3a3a3d;
}

.wp-block-woocommerce-cart .wc-block-components-totals-wrapper,
.wp-block-woocommerce-cart .wc-block-cart__totals-title,
.wp-block-woocommerce-cart .wc-block-components-panel,
.wp-block-woocommerce-cart .wc-block-components-panel__button,
.wp-block-woocommerce-cart .wc-block-components-totals-coupon,
.wp-block-woocommerce-cart .wc-block-cart-items,
.wp-block-woocommerce-cart .wc-block-cart-item {
    border-color: var(--ltp-border);
}

.wp-block-woocommerce-cart .wc-block-cart-item__product {
    padding: 0.85rem 0;
}

.wp-block-woocommerce-cart .wp-block-heading {
    font-family: "Space Grotesk", sans-serif;
    color: var(--ltp-text);
}

.wp-block-woocommerce-cart .wc-block-cart__empty-cart__title {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    margin-bottom: 0.75rem;
}

/* Supports both Woo's default empty title and custom markdown heading block. */
.wp-block-woocommerce-cart .wc-block-cart__empty-cart__title,
.wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block > h2.wp-block-heading {
    margin: 0 0 0.35rem !important;
    line-height: 1.25;
    font-size: clamp(1.2rem, 2vw, 1.5rem) !important;
}

.wp-block-woocommerce-cart .wc-block-cart__empty-cart__title.with-empty-cart-icon,
.wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block > h2.wp-block-heading {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.wp-block-woocommerce-cart .wc-block-cart__empty-cart__title.with-empty-cart-icon::before {
    font-size: 0.8em !important;
    margin-right: 0.2rem !important;
}

.wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block > h2.wp-block-heading img {
    width: 1rem;
    height: 1rem;
    vertical-align: middle;
}

.wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block > h2.wp-block-heading + p {
    margin-top: 0;
}

.wp-block-woocommerce-cart .is-style-dots {
    margin: 0.75rem auto 1rem;
}

.wp-block-woocommerce-cart .wc-block-components-product-badge,
.wp-block-woocommerce-cart .wc-block-components-sale-badge {
    background: #f6efd9;
    color: #8a6d1e;
    border-radius: 999px;
    border: 1px solid #ecdca6;
}

.wp-block-woocommerce-cart .wc-block-components-button,
.wp-block-woocommerce-cart .wc-block-cart__submit-button {
    border-radius: 10px;
    font-weight: 600;
    min-height: 46px;
}

.wp-block-woocommerce-cart .wc-block-cart__submit-button {
    background: var(--ltp-dark);
    color: #fff;
}

.wp-block-woocommerce-cart .wc-block-cart__submit-button:hover {
    background: #0f1117;
}

.wp-block-woocommerce-cart .wc-block-components-quantity-selector {
    border-color: #d9d6cc;
    border-radius: 9px;
}

.woocommerce-address-fields__field-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
    margin-top: 1.5rem;
}

.woocommerce-address-fields__field-wrapper .form-row-wide {
    grid-column: 1 / -1;
}

/* Account details form */
.form-row-first,
.form-row-last {
    width: calc(50% - 0.5rem);
}

.form-row-first {
    float: left;
}

.form-row-last {
    float: right;
}

.clear {
    clear: both;
}

.woocommerce-EditAccountForm fieldset {
    border: none;
    padding: 0;
    margin: 0.5rem 0 1.5rem;
}

.woocommerce-EditAccountForm legend {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    padding: 0;
    margin-bottom: 1rem;
    width: 100%;
}

.woocommerce-EditAccountForm legend::before {
    content: "";
    display: inline-block;
    vertical-align: -3px;
    margin-right: 0.5rem;
    width: 16px;
    height: 16px;
    background-color: var(--ltp-gold);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"/><path d="M7 11V7a5 5 0 0 1 10 0v4"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"/><path d="M7 11V7a5 5 0 0 1 10 0v4"/></svg>');
}

#account_display_name_description {
    display: block;
    font-size: 0.78rem;
    color: #8a8a90;
    margin-top: 0.375rem;
}

@media (max-width: 900px) {
    .ltp-account-grid {
        grid-template-columns: 1fr;
    }

    .ltp-account-sidebar {
        position: static;
    }

    .ltp-account-stats {
        grid-template-columns: 1fr;
    }

    .ltp-account-detail-grid {
        grid-template-columns: 1fr;
    }

    .ltp-account-detail-row:nth-child(odd) {
        border-right: none;
    }

    .woocommerce-columns--addresses,
    .woocommerce-Addresses {
        grid-template-columns: 1fr;
    }

    .form-row-first,
    .form-row-last {
        width: 100%;
        float: none;
    }

    .ltp-order-invoice-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .woocommerce-orders-table thead {
        display: none;
    }

    .woocommerce-orders-table,
    .woocommerce-orders-table tbody,
    .woocommerce-orders-table tr,
    .woocommerce-orders-table td,
    .woocommerce-orders-table th {
        display: block;
        width: 100%;
    }

    .woocommerce-orders-table tr {
        padding: 1rem 1.25rem;
        border-bottom: 1px solid var(--ltp-border);
    }

    .woocommerce-orders-table td,
    .woocommerce-orders-table th[scope="row"] {
        border-bottom: none;
        padding: 0.25rem 0;
    }

    .woocommerce-orders-table td::before,
    .woocommerce-orders-table th[scope="row"]::before {
        content: attr(data-title) ": ";
        font-weight: 600;
        color: #8a8a90;
    }

    .ltp-order-invoice-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .ltp-order-access-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .ltp-order-access-right {
        width: 100%;
        justify-content: flex-start;
    }

    .ltp-orders-table-enhanced .woocommerce-orders-table__cell-order-actions .button {
        margin-top: 0.4rem;
    }
}

/* =========================================================
   Blog
   ========================================================= */
.ltp-blog-featured {
    text-decoration: none;
    color: inherit;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: #16161a;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.ltp-blog-featured-content {
    padding: 3rem 2.75rem;
    color: #fff;
}

.ltp-blog-featured-tag {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--ltp-gold);
    color: var(--ltp-dark);
    padding: 0.3125rem 0.6875rem;
    border-radius: 20px;
    display: inline-block;
}

.ltp-blog-featured-content h2 {
    font-size: 1.875rem;
    letter-spacing: -0.01em;
    margin: 1.375rem 0 0.875rem;
    line-height: 1.15;
}

.ltp-blog-featured-content h2 a {
    color: inherit;
    text-decoration: none;
}

.ltp-blog-featured-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.ltp-blog-featured-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #b6b6bc;
    margin: 0 0 1.5rem;
    max-width: 440px;
}

.ltp-blog-featured-date {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.75rem;
    color: #9a9a9f;
}

.ltp-blog-featured-visual {
    background: #0e0e10;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    display: block;
    align-self: center;
}

.ltp-blog-featured-visual svg {
    width: 100%;
    height: 100%;
    display: block;
}

.ltp-post-visual {
    position: relative;
}

.ltp-post-visual-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.656rem;
    letter-spacing: 0.06em;
    background: var(--ltp-gold);
    color: var(--ltp-dark);
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
}

.ltp-newsletter-band {
    background: #fff;
    border: 1px solid var(--ltp-border);
    border-radius: 18px;
    padding: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.ltp-newsletter-band h2 {
    font-size: 1.625rem;
    margin-bottom: 0.5rem;
}

.ltp-newsletter-band p {
    font-size: 0.9rem;
    color: #6b6b70;
    margin: 0;
}

.ltp-newsletter-form .wpcf7-form p {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
}

.ltp-newsletter-form .wpcf7-form br {
    display: none;
}

.ltp-newsletter-form input[type="email"] {
    border: 1px solid #d9d6cc;
    border-radius: 9px;
    padding: 0.8125rem 1rem;
    font-size: 0.875rem;
    min-width: 240px;
}

.ltp-newsletter-form input[type="submit"] {
    background: var(--ltp-gold);
    color: var(--ltp-text);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.8125rem 1.5rem;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    font-family: "IBM Plex Sans", sans-serif;
}

.ltp-newsletter-form .wpcf7-response-output {
    width: 100%;
    margin: 0.5rem 0 0;
    font-size: 0.8rem;
}

@media (max-width: 680px) {
    .ltp-blog-featured {
        grid-template-columns: 1fr;
    }

    .ltp-blog-featured-visual {
        min-height: 200px;
        order: -1;
    }

    .ltp-blog-featured-content {
        padding: 1.75rem;
    }

    .ltp-newsletter-band {
        flex-direction: column;
        align-items: stretch;
        padding: 1.75rem;
    }

    .ltp-newsletter-form,
    .ltp-newsletter-form .wpcf7-form p,
    .ltp-newsletter-form .wpcf7-form-control-wrap {
        width: 100%;
    }

    .ltp-newsletter-form input[type="email"] {
        min-width: 0;
        width: 100%;
        flex: 1 1 160px;
    }
}

/* My Access (My Account tab) */
.ltp-my-access-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.ltp-my-access-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
    font-family: "IBM Plex Sans", sans-serif;
}

.ltp-my-access-table th,
.ltp-my-access-table td {
    text-align: left;
    padding: 0.62rem 0.8rem;
    border-bottom: 1px solid #f2efe7;
    vertical-align: middle;
}

.ltp-my-access-table th {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.66rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #7b7b83;
    background: #fbfaf7;
    white-space: nowrap;
}

.ltp-my-access-table td {
    font-size: 0.86rem;
    line-height: 1.3;
    color: var(--ltp-text);
}

.ltp-my-access-table td:first-child strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.25;
}

.ltp-my-access-table td:nth-child(2) a,
.ltp-my-access-table td:nth-child(6) a {
    font-size: 0.82rem;
    font-weight: 500;
}

.ltp-my-access-table tbody tr:hover {
    background: #fcfbf8;
}

.ltp-my-access-submeta {
    margin-top: 0.25rem;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.67rem;
    color: #8a8a90;
}

.ltp-muted {
    color: #95959c;
}

.ltp-my-access-table .ltp-account-tool-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.36rem 0.62rem;
    font-size: 0.74rem;
    letter-spacing: 0.01em;
    border-radius: 6px;
}

.ltp-upi-status-pill--pending {
    background: #f1f0eb;
    color: #56565b;
}

.ltp-upi-status-pill--active {
    background: #eaf5ef;
    color: #1f5b3e;
}

.ltp-upi-status-pill--expiring_soon {
    background: #f6efd9;
    color: #8a6d1e;
}

.ltp-upi-status-pill--expired,
.ltp-upi-status-pill--revoked {
    background: #fceeea;
    color: #b3402c;
}

@media (max-width: 860px) {
    .ltp-my-access-table {
        min-width: 0;
        border-collapse: separate;
        border-spacing: 0;
    }

    .ltp-my-access-table thead {
        display: none;
    }

    .ltp-my-access-table tbody,
    .ltp-my-access-table tr,
    .ltp-my-access-table td {
        display: block;
        width: 100%;
    }

    .ltp-my-access-table tr {
        border-bottom: 1px solid #f2efe7;
        padding: 0.5rem 0;
    }

    .ltp-my-access-table td {
        border-bottom: none;
        padding: 0.22rem 0.8rem;
    }

    .ltp-my-access-table td::before {
        content: attr(data-label);
        display: inline-block;
        min-width: 102px;
        margin-right: 0.5rem;
        font-family: "IBM Plex Mono", monospace;
        font-size: 0.62rem;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: #8a8a90;
    }
}

.woocommerce-MyAccount-navigation-link--my-access a::before {
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"/><path d="M7 11V7a5 5 0 0 1 10 0v4"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"/><path d="M7 11V7a5 5 0 0 1 10 0v4"/></svg>');
}
