/*
Theme Name: TLR COMPS LTD Theme
Author: TLR COMPS LTD
Description: Dark premium competition theme for TLR COMPS LTD.
Version: 1.1
*/

/* Typography & tokens */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #05060A;
    --bg-alt: #0B0E16;
    --card: #0F1321;
    --card-strong: #14192A;
    --border: #1F2536;
    --text: #F7F8FF;
    --muted: #A6ADC3;
    --accent: #8E5BFF;
    --accent-2: #B678FF;
    --accent-3: #D7A0FF;
    --shadow: 0 22px 50px rgba(0, 0, 0, 0.6);
    --radius: 18px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
}

a {
    color: var(--accent-3);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
    color: #fff;
    opacity: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.tlr-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header.site-header {
    --header-height: 94px;
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(7, 9, 14, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 32px 0 12px;
    display: flex;
    align-items: center;
    gap: 24px;
    height: var(--header-height);
    position: sticky;
}

header.site-header .logo {
    display: flex;
    align-items: center;
    padding: 12px 0;
}

header.site-header .logo img {
    height: 70px;
    width: auto;
    display: block;
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
}

.main-nav > a:not(.nav-cta):not(.nav-icon-btn),
.main-nav > .nav-item {
    display: flex;
    align-items: center;
    padding: 0 18px;
}

.main-nav a:not(.nav-cta):not(.nav-icon-btn) {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text);
    opacity: 0.8;
    padding-bottom: 6px;
    position: relative;
}

.main-nav a:not(.nav-cta):not(.nav-icon-btn)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-3));
    transition: width 0.2s ease;
}

.main-nav a:not(.nav-cta):not(.nav-icon-btn):hover {
    opacity: 1;
}

.main-nav a:not(.nav-cta):not(.nav-icon-btn):hover::after {
    width: 100%;
}

.main-nav a:not(.nav-cta):not(.nav-icon-btn).current-link {
    opacity: 1;
}

.main-nav a:not(.nav-cta):not(.nav-icon-btn).current-link::after {
    width: 100%;
    opacity: 1;
}

.main-nav a:not(.nav-cta):not(.nav-icon-btn).current-menu-item::after,
.main-nav a:not(.nav-cta):not(.nav-icon-btn).current_page_item::after,
.main-nav a:not(.nav-cta):not(.nav-icon-btn).current_page_parent::after {
    width: 100%;
    opacity: 1;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-item .nav-link {
    padding-bottom: 6px;
    position: relative;
}

.nav-item .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-3));
    transition: width 0.2s ease;
}

.nav-item:hover .nav-link::after {
    width: 100%;
}

.nav-item .nav-dropdown {
    position: absolute;
    top: 100%;
    margin-top: 10px;
    left: 0;
    display: none;
    flex-direction: column;
    background: #0B0E16;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
    min-width: 200px;
    z-index: 100;
}

.nav-item .nav-dropdown::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.nav-item .nav-dropdown a {
    padding: 8px 14px;
    letter-spacing: 0.08em;
    text-transform: none;
    opacity: 1;
    font-size: 0.85rem;
}

.nav-item .nav-dropdown a::after {
    display: none;
}

.nav-item .nav-dropdown a:hover {
    background: rgba(255, 255, 255, 0.06);
    opacity: 1;
}

.nav-item.has-dropdown:hover .nav-dropdown {
    display: flex;
}

.main-nav .nav-cta {
    padding: 12px 24px;
    margin: 0 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
    color: #0B0718 !important;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 0 18px rgba(182, 120, 255, 0.6);
    opacity: 1 !important;
}

.main-nav .nav-cta::after {
    display: none !important;
}

.main-nav .nav-cta:hover {
    opacity: 1 !important;
    box-shadow: 0 0 25px rgba(182, 120, 255, 0.8);
}

.nav-cart {
    position: relative;
}

.nav-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 28px;
    min-width: 85px;
    height: 100%;
    border-radius: 0;
    border: none;
    background: rgba(7, 9, 14, 0.92);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-icon-btn.nav-cart {
    margin-left: 0;
    margin-right: 0;
}

.nav-icon-btn.nav-account {
    margin-right: 0;
    margin-left: 0;
}

.nav-icon-btn .icon {
    width: 28px;
    height: 28px;
    stroke: #ffffff;
    transition: stroke 0.3s ease;
}

.nav-icon-btn .label {
    font-size: 0.8rem;
    display: none;
}

.nav-icon-btn .cart-count {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
    color: #0B0718;
    border-radius: 999px;
    min-width: 20px;
    height: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 0 12px rgba(182, 120, 255, 0.6);
}

.nav-icon-btn:hover {
    background: linear-gradient(135deg, rgba(142, 91, 255, 0.8), rgba(182, 120, 255, 0.7));
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(142, 91, 255, 0.5);
}

.nav-icon-btn:hover .icon {
    stroke: #ffffff;
}

.nav-icon-btn:active {
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
    box-shadow: 0 0 30px rgba(182, 120, 255, 0.8);
}

.nav-icon-btn:active .icon {
    stroke: #ffffff;
}

.mobile-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: linear-gradient(160deg, #161922, #0c0f18);
    color: var(--text);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.55);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
    margin-left: auto;
}

.mobile-nav-toggle:hover {
    background: linear-gradient(160deg, #1d2230, #101321);
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
}

/* Buttons */
.tlr-cta,
.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.tlr-cta-primary,
.btn-primary {
    background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
    color: #0B0718 !important;
    box-shadow: 0 18px 40px rgba(182, 120, 255, 0.65);
}

.tlr-cta-primary:hover,
.btn-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 22px 46px rgba(215, 160, 255, 0.8);
    text-decoration: none;
}

.tlr-cta-ghost {
    color: var(--text);
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    font-weight: 600;
}

.tlr-cta-full {
    display: block;
    text-align: center;
    margin: 14px 0 0;
}

/* Hero */
.tlr-page {
    background: var(--bg);
}

.tlr-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 52px;
    background: radial-gradient(120% 120% at 20% 20%, rgba(67, 28, 127, 0.45), var(--bg) 60%);
}

.tlr-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 6%, rgba(182, 120, 255, 0.12), transparent 36%),
        radial-gradient(circle at 18% 40%, rgba(81, 34, 149, 0.35), transparent 52%);
    pointer-events: none;
}

.tlr-hero .tlr-container {
    position: relative;
    z-index: 1;
}

.tlr-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 42px;
    align-items: center;
}

.tlr-hero-text h1 {
    margin: 0 0 12px;
    font-size: 2.8rem;
    letter-spacing: -0.02em;
}

.tlr-hero-text h1 span {
    color: var(--accent-3);
}

.tlr-hero-text p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 640px;
}

.tlr-hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.tlr-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 14px;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.95rem;
}

.tlr-hero-meta span {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
}

.tlr-hero-card {
    background: linear-gradient(135deg, rgba(20, 23, 35, 0.94), rgba(10, 12, 20, 0.96));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 18px 20px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.tlr-comp-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(182, 120, 255, 0.2);
    border: 1px solid rgba(182, 120, 255, 0.5);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.tlr-hero-card img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    margin-bottom: 12px;
}

.tlr-hero-card h2 {
    margin: 10px 0 12px;
    font-size: 1.35rem;
}

.tlr-hero-card .tlr-cta {
    margin-top: 12px;
}

.tlr-comp-stats {
    list-style: none;
    padding: 0;
    margin: 10px 0 12px;
    display: grid;
    gap: 8px;
    color: var(--muted);
}

.tlr-comp-stats li strong {
    color: var(--text);
    font-weight: 700;
}

.tlr-progress {
    height: 8px;
    border-radius: 999px;
    background: #0D101A;
    overflow: hidden;
    border: 1px solid var(--border);
    margin: 12px 0 6px;
}

.tlr-progress-strong {
    height: 10px;
    border-color: rgba(182, 120, 255, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.tlr-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-3));
    border-radius: 999px;
}

.tlr-progress-label {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 0.95rem;
}

/* Status pills */
.tlr-status-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
}

.tlr-status-live {
    background: rgba(46, 200, 120, 0.18);
    border-color: rgba(46, 200, 120, 0.4);
}

.tlr-status-ending {
    background: #F5A623;
    border-color: #F5A623;
    color: #1A1102;
}

.tlr-status-ended {
    background: rgba(255, 75, 122, 0.18);
    border-color: rgba(255, 75, 122, 0.4);
}

.tlr-card-image,
.comp-card-image {
    position: relative;
}

.tlr-card-image .tlr-status-pill,
.comp-card-image .tlr-status-pill {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
}

.tlr-single-headline .tlr-status-pill {
    margin-bottom: 10px;
}

/* FAQs */
.tlr-faqs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

@media (max-width: 900px) {
    .tlr-faqs-grid {
        grid-template-columns: 1fr;
    }
}

/* Sections */
.tlr-section {
    padding: 44px 0 52px;
}

.tlr-section-dark {
    background: var(--bg);
}

.tlr-section-alt {
    background: var(--bg-alt);
}

.tlr-section-header {
    max-width: 1320px;
    margin: 0 auto 20px;
    padding: 0 24px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}

.tlr-section-header h2 {
    margin: 0;
    font-size: 1.7rem;
}

.tlr-section-header p {
    margin: 4px 0 0;
    color: var(--muted);
}

.tlr-link {
    font-size: 0.95rem;
    color: var(--accent-3);
    font-weight: 600;
}

/* Competition grids */
.tlr-grid {
    display: grid;
    gap: 20px;
}

.tlr-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.tlr-card,
.comp-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tlr-card-image,
.comp-card-image {
    position: relative;
    overflow: hidden;
    background: #0B0E16;
    aspect-ratio: 16 / 9;
}

.tlr-card-image img,
.comp-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tlr-card-body,
.comp-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1 auto;
}

.tlr-card h3,
.comp-card h2,
.comp-card h3 {
    margin: 0;
    font-size: 1.05rem;
}

.tlr-price,
.comp-card .price {
    color: var(--text);
    font-weight: 700;
    margin: 6px 0;
}

.tlr-card .tlr-price,
.tlr-card p,
.comp-card .meta {
    color: var(--muted);
    margin: 0;
    font-size: 0.95rem;
}

.comp-card-footer {
    padding: 0 16px 16px;
}

.comps-grid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px 8px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.tlr-see-more {
    margin: 16px auto 0;
    text-align: center;
}

.tlr-shop-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 auto 18px;
    max-width: 1320px;
    padding: 0 24px;
}

.woocommerce-result-count {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.woocommerce-ordering {
    margin: 0;
}

.woocommerce-ordering select {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 8px 10px;
    border-radius: 10px;
}

@media (max-width: 720px) {
    .tlr-shop-controls {
        flex-direction: column;
        align-items: flex-start;
    }
    .woocommerce-ordering {
        width: 100%;
    }
    .woocommerce-ordering select {
        width: 100%;
    }
}

/* Ribbons / badges */
.tlr-ribbons {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    z-index: 2;
    max-width: calc(100% - 140px);
}

.tlr-ribbon {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}

.tlr-ribbon-featured { background: linear-gradient(90deg, #8E5BFF, #B678FF); }
.tlr-ribbon-new { background: linear-gradient(90deg, #3BB9FF, #7DD0FF); }
.tlr-ribbon-hot { background: linear-gradient(90deg, #FF6B6B, #FF8F70); }

/* Card refinements */
.tlr-card-body {
    gap: 10px;
}

.tlr-progress {
    background: rgba(255,255,255,0.06);
    border-radius: 999px;
    overflow: hidden;
    height: 9px;
}

.tlr-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-3));
}

.tlr-progress-label {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.tlr-cta-full {
    display: block;
    text-align: center;
    padding: 12px 14px;
}

/* Steps */
.tlr-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.tlr-step {
    background: var(--card-strong);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
    flex: 1 1 260px;
    max-width: 280px;
}

.tlr-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
    color: #0B0718;
    font-weight: 800;
    margin-bottom: 8px;
}

.tlr-step h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.tlr-step p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

/* Winners placeholder */
.tlr-winners-intro {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    color: var(--muted);
    font-size: 0.95rem;
}

/* CTA footer strip */
.tlr-section-cta {
    background: linear-gradient(135deg, #1E0F35, #0B0E16);
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

.tlr-section-cta-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.tlr-section-cta-inner h2 {
    margin: 0 0 6px;
}

.tlr-section-cta-inner p {
    margin: 0;
    color: var(--muted);
}

.tlr-how-page .tlr-how-hero {
    padding: 48px 0 32px;
    text-align: center;
    background: radial-gradient(120% 120% at 20% 20%, rgba(67, 28, 127, 0.35), var(--bg) 70%);
}

.tlr-how-hero h1 {
    margin: 0 0 8px;
    font-size: 2.2rem;
}

.tlr-how-hero p {
    margin: 0 0 14px;
    color: var(--muted);
}

.tlr-how-cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.tlr-how-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}

.tlr-how-card {
    background: var(--card-strong);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
    box-shadow: var(--shadow);
}

.tlr-how-card h3 {
    margin: 6px 0 6px;
}

.tlr-how-card p {
    margin: 0;
    color: var(--muted);
}

.tlr-how-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 20px;
    align-items: start;
}

.tlr-how-faq-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
}

.tlr-how-faq-links a {
    color: var(--accent-3);
}

.tlr-how-cta-wide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.tlr-how-cta-wide p {
    margin: 6px 0 0;
    color: var(--muted);
}

@media (max-width: 960px) {
    .tlr-how-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 760px;
    }
}

@media (max-width: 640px) {
    .tlr-how-steps-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
}

.tlr-small-print {
    font-size: 0.9rem;
    color: var(--muted);
}

.tlr-terms-page .tlr-terms-wrap {
    display: grid;
    gap: 12px;
}

.tlr-terms-page h1 {
    margin-top: 0;
    margin-bottom: 10px;
}

.tlr-terms-page h2 {
    margin: 12px 0 6px;
}

.tlr-terms-page h3 {
    margin: 10px 0 6px;
}

.tlr-terms-page ul {
    margin: 0 0 8px 18px;
    padding: 0;
}
/* Footer */
footer.site-footer {
    padding: 22px 32px;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--muted);
}

.tlr-footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 32px;
    align-items: flex-start;
    justify-content: space-between;
}

.tlr-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.tlr-footer-links a {
    color: var(--muted);
    font-size: 0.85rem;
}

.tlr-footer-links a:hover {
    color: var(--text);
}

.tlr-footer-meta p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.85rem;
}

/* ===== Single product / competition page ===== */
.tlr-single-hero {
    position: relative;
    padding: 40px 0 44px;
    background: var(--bg);
}

.tlr-single-headline {
    text-align: center;
    margin-bottom: 22px;
}

.tlr-single-headline h1 {
    margin: 0 0 6px;
    font-size: 2rem;
}

.tlr-headline-meta {
    margin: 0;
    color: var(--muted);
}

.tlr-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.tlr-col-left .tlr-single-media {
    background: linear-gradient(135deg, rgba(20, 23, 35, 0.85), rgba(12, 15, 25, 0.92));
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow);
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    min-height: 540px;
    max-height: 640px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tlr-custom-gallery img {
    width: 100%;
    border-radius: 12px;
    filter: brightness(1.06) contrast(1.04);
    display: block;
    object-fit: cover;
}

.tlr-gallery-main {
    width: 100%;
    margin-bottom: 10px;
}

.tlr-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
}

.tlr-gallery-thumb img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.tlr-single-info-card {
    background: linear-gradient(145deg, rgba(20, 23, 35, 0.92), rgba(12, 15, 25, 0.98));
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 540px;
}

.tlr-single-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tlr-deals {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 12px;
}

.tlr-deal-btn {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
}

.tlr-deal-btn:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

.tlr-inline-cart {
    margin-top: 12px;
}

.tlr-inline-cart .tlr-cta-full {
    width: 100%;
}

.tlr-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(182, 120, 255, 0.2);
    border: 1px solid rgba(182, 120, 255, 0.5);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.04em;
    font-size: 0.78rem;
    margin-bottom: 10px;
}

.tlr-single-summary h1 {
    margin: 0 0 8px;
    font-size: 2rem;
    letter-spacing: -0.01em;
}

.tlr-single-subtitle {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 1rem;
}

.tlr-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 8px 0 12px;
}

.tlr-price-label {
    color: var(--muted);
    font-size: 0.95rem;
}

.tlr-price-value {
    font-size: 1.3rem;
    font-weight: 800;
}

.tlr-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin: 8px 0 14px;
}

.tlr-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin: 6px 0 12px;
}

.tlr-metric {
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.tlr-metric .label {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
}

.tlr-metric .value {
    display: block;
    font-weight: 700;
    font-size: 1rem;
}

.tlr-countdown-inline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 6px 0 12px;
}

.tlr-countdown-inline .tlr-countdown-unit {
    text-align: center;
    background: #0b0f1b;
    border-radius: 10px;
    padding: 8px;
    border: 1px solid var(--border);
}

.tlr-countdown-inline .value {
    display: block;
    font-size: 1rem;
    font-weight: 800;
}

.tlr-countdown-inline .label {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
}

.tlr-skill-inline {
    margin: 14px 0 10px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
}

.tlr-skill-inline-head {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--muted);
}

.tlr-skill-inline-head .label {
    color: var(--text);
    font-weight: 700;
}

.tlr-skill-inline-question {
    margin: 8px 0;
    font-weight: 600;
}

.tlr-skill-inline-options {
    display: grid;
    gap: 8px;
}

.tlr-skill-text {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #0b0f1b;
    color: var(--text);
}

.tlr-add-to-cart form.cart {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin: 12px 0;
}

.tlr-add-to-cart .quantity input.qty {
    background: #0b0e16;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 12px;
    padding: 10px 12px;
    min-width: 90px;
}

.tlr-add-to-cart .single_add_to_cart_button {
    background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
    color: #0b0718 !important;
    border-radius: 999px;
    padding: 12px 26px;
    font-weight: 800;
    box-shadow: 0 18px 40px rgba(182, 120, 255, 0.65);
    border: none;
}

.tlr-add-to-cart .single_add_to_cart_button:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.tlr-add-to-cart .single_add_to_cart_button.is-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    filter: none;
}

.tlr-qty-slider-wrap {
    margin: 12px 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
}

.tlr-qty-head {
    font-weight: 700;
    margin-bottom: 6px;
}

.tlr-qty-display {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.tlr-qty-slider {
    width: 100%;
    accent-color: var(--accent-2);
    height: 6px;
}

.tlr-usp-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.95rem;
    margin-top: 10px;
}

.tlr-single-details {
    background: var(--bg);
    padding: 40px 0 50px;
}

.tlr-single-details-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
    gap: 22px;
    align-items: start;
}

.tlr-single-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tlr-single-panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
}

.tlr-single-panel-compact {
    padding: 16px;
}

.tlr-single-panel h2,
.tlr-single-panel h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.tlr-single-content p:last-child {
    margin-bottom: 0;
}

.tlr-skill-question {
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
}

.tlr-skill-options {
    margin-top: 10px;
    display: grid;
    gap: 8px;
}

.tlr-skill-option {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    background: #0b0f1b;
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 0.95rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.tlr-skill-option input {
    accent-color: var(--accent-2);
    width: 16px;
    height: 16px;
}

.tlr-skill-option .option-letter {
    font-weight: 800;
    color: var(--accent-3);
}

.tlr-skill-option input:checked ~ span,
.tlr-skill-option input:checked ~ .option-letter {
    color: var(--text);
    font-weight: 700;
}

.tlr-skill-option input[type="radio"]:checked {
    box-shadow: 0 0 0 4px rgba(182, 120, 255, 0.25);
}

.tlr-skill-option:hover {
    border-color: var(--accent-2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.tlr-skill-note {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.tlr-related-header h3 {
    margin: 16px 0 10px;
}

.tlr-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
}

.tlr-mini-card {
    background: var(--card-strong);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--shadow);
}

.tlr-mini-thumb img {
    border-radius: 10px;
}

.tlr-mini-body h4 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.tlr-mini-body .tlr-price {
    margin: 0;
}

.tlr-rules {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.tlr-rules-accordion {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--card);
    box-shadow: var(--shadow);
    padding: 12px 14px;
}

.tlr-rules-accordion summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    outline: none;
}

.tlr-rules-accordion[open] summary {
    margin-bottom: 8px;
}

.tlr-rules-body p {
    margin: 6px 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.tlr-entry-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
    max-height: 160px;
    overflow-y: auto;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #0b0f1b;
}

.tlr-entry-name {
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: inline-block;
}

/* Hide default page/archive/category widget lists */
.widget_pages,
.widget_archive,
.widget_categories,
.wp-block-archives,
.wp-block-page-list,
.wp-block-categories {
    display: none;
}

/* Hide breadcrumbs/meta on product pages */
body.single-product .woocommerce-breadcrumb,
body.single-product .product_meta,
body.single-product .page-links {
    display: none !important;
}

/* Extra hide for widget blocks on product pages (search, pages, archives, categories, latest posts/comments) */
body.single-product .widget,
body.single-product .wp-block-search,
body.single-product .wp-block-archives,
body.single-product .wp-block-page-list,
body.single-product .wp-block-categories,
body.single-product .wp-block-latest-posts,
body.single-product .wp-block-latest-comments {
    display: none !important;
}

body.single-product #secondary,
body.single-product .sidebar,
body.single-product aside {
    display: none !important;
}

/* Woo messages tidy inside dark theme */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    background: var(--card);
    border-color: var(--border);
    color: var(--text);
}

/* My Account */
.tlr-my-account {
    padding: 32px 0 48px;
}

.tlr-my-account .tlr-container {
    max-width: 760px;
}

.tlr-generic-page .tlr-container {
    max-width: 960px;
}

.tlr-generic-page h1 {
    margin-top: 0;
}

/* Cart */
.tlr-cart-page {
    padding: 32px 0 52px;
}

.tlr-cart-page .tlr-cart-panel {
    margin-top: 10px;
}

.tlr-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
    gap: 24px;
    align-items: start;
}

.tlr-cart-page .woocommerce-notices-wrapper {
    margin-bottom: 16px;
}

.tlr-cart-page .woocommerce-cart-form {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

.tlr-cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tlr-cart-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 16px;
    align-items: start;
}

.tlr-cart-thumb img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.tlr-cart-page img.attachment-woocommerce_thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.tlr-cart-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tlr-cart-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.tlr-cart-title {
    font-weight: 700;
    font-size: 1.05rem;
}

.tlr-cart-title a {
    color: var(--text);
}

.tlr-cart-subtotal {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text);
    background: rgba(182, 120, 255, 0.12);
    border: 1px solid rgba(182, 120, 255, 0.35);
    padding: 6px 12px;
    border-radius: 999px;
    white-space: nowrap;
}

.tlr-cart-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
}

.tlr-cart-meta-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 12px;
}

.tlr-cart-meta-label {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.tlr-cart-meta-value {
    color: var(--text);
    font-weight: 600;
    word-break: break-word;
}

.tlr-qty {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
}

.tlr-qty-input .qty {
    border: none;
    background: transparent;
    min-width: 70px;
    text-align: center;
    padding: 0;
}

.tlr-qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.tlr-qty-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(182, 120, 255, 0.5);
}

.tlr-cart-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 12px;
}

.tlr-cart-summary .cart_totals {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
}

.tlr-cart-page a.remove {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 12px 4px 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text) !important;
    border: 1px solid var(--border);
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
    line-height: 1;
    font-size: 0;
    width: auto;
    height: auto;
}

.tlr-cart-page a.remove::before {
    content: "×";
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1rem;
    line-height: 1;
    box-sizing: border-box;
}

.tlr-cart-page a.remove::after {
    content: "Remove";
    font-size: 0.85rem;
    color: var(--muted);
}

.tlr-cart-page a.remove:hover {
    border-color: rgba(255, 59, 122, 0.65);
    background: rgba(255, 59, 122, 0.08);
    color: #ff3b7a !important;
}

.tlr-cart-page a.remove:hover::before {
    border-color: #ff3b7a;
    color: #ff3b7a;
    background: rgba(255, 59, 122, 0.12);
}

.tlr-cart-page a.remove:hover::after {
    color: #ff8cb1;
}

.tlr-cart-page .quantity .qty {
    background: #0b0e16;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 12px;
    padding: 8px 10px;
    min-width: 90px;
}

.tlr-cart-page .coupon {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tlr-cart-page .coupon input.input-text,
.tlr-cart-page .woocommerce select {
    background: #0b0f1b;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 10px;
    padding: 8px 10px;
}

.tlr-cart-page .woocommerce button.button,
.tlr-cart-page .woocommerce a.button {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 700;
    box-shadow: none;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.tlr-cart-page .woocommerce button.button:hover,
.tlr-cart-page .woocommerce a.button:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
    border-color: rgba(182, 120, 255, 0.5);
}

.tlr-cart-page .woocommerce .checkout-button {
    background: linear-gradient(135deg, #d9b6ff, #f0d2ff);
    color: #1a0f2f !important;
    border: none;
    box-shadow: 0 18px 40px rgba(217, 182, 255, 0.55);
    font-weight: 800;
    padding: 12px 22px;
}

.tlr-cart-page a.checkout-button.alt.wc-forward {
    background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
    color: #0B0718 !important;
    box-shadow: 0 18px 40px rgba(182, 120, 255, 0.65);
    border: none;
}

.tlr-cart-page .cart_totals h2 {
    margin-top: 0;
}

.tlr-cart-page .cart_totals table {
    border: none;
    margin: 0 0 12px;
}

.tlr-cart-page .cart_totals th,
.tlr-cart-page .cart_totals td {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
}

.tlr-cart-page .cart_totals tr.order-total th,
.tlr-cart-page .cart_totals tr.order-total td {
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 700;
}

.tlr-cart-page .cart-empty {
    margin: 0;
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--card);
}

.tlr-cart-page .cart-empty.woocommerce-info::before {
    display: none;
}

.tlr-cart-page .cart-empty.woocommerce-info {
    padding-left: 24px;
}

.tlr-my-account .woocommerce-info::before {
    display: none;
}

.tlr-my-account .woocommerce-info {
    padding-left: 24px;
}

.tlr-my-account a.woocommerce-button.wc-forward.button,
.tlr-my-account a.woocommerce-Button.button {
    margin-top: 10px;
    display: inline-flex;
}

/* Contact form */
.tlr-contact-form {
    margin-top: 22px;
    display: grid;
    gap: 14px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
}

.tlr-contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.tlr-contact-form input,
.tlr-contact-form textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #0b0f1b;
    color: var(--text);
    padding: 10px 12px;
}

.tlr-form-notice {
    border-radius: 12px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
}

.tlr-form-notice.is-success {
    border-color: rgba(46, 200, 120, 0.5);
    background: rgba(46, 200, 120, 0.12);
}

.tlr-form-notice.is-error {
    border-color: rgba(255, 75, 122, 0.5);
    background: rgba(255, 75, 122, 0.12);
}

.tlr-form-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}
/* 404 */
.tlr-404 {
    min-height: calc(100vh - 120px);
}

.tlr-404-hero {
    position: relative;
    padding: 80px 0 96px;
    background: radial-gradient(120% 120% at 20% 20%, rgba(88, 54, 168, 0.45), var(--bg) 60%);
    overflow: hidden;
}

.tlr-404-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 20%, rgba(182, 120, 255, 0.18), transparent 45%),
        radial-gradient(circle at 20% 70%, rgba(60, 40, 120, 0.4), transparent 55%);
    pointer-events: none;
}

.tlr-404-card {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(145deg, rgba(20, 23, 35, 0.95), rgba(12, 15, 25, 0.98));
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 36px 32px;
    box-shadow: var(--shadow);
}

.tlr-404-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(182, 120, 255, 0.18);
    border: 1px solid rgba(182, 120, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text);
}

.tlr-404-card h1 {
    font-size: 4.2rem;
    margin: 12px 0 10px;
    letter-spacing: 0.08em;
}

.tlr-404-card p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.tlr-404-actions {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

@media (max-width: 700px) {
    .tlr-404-card {
        padding: 28px 22px;
    }

    .tlr-404-card h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 980px) {
    .tlr-cart-page {
        padding-bottom: 140px;
    }

    .tlr-cart-page .cart_totals {
        position: fixed;
        left: 50%;
        bottom: 16px;
        transform: translateX(-50%);
        width: min(560px, calc(100% - 32px));
        z-index: 90;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
        padding: 12px 14px;
    }

    .tlr-cart-page .cart_totals h2 {
        display: none;
    }

    .tlr-cart-page .cart_totals table {
        margin: 0 0 8px;
    }

    .tlr-cart-page .cart_totals table tr:not(.order-total) {
        display: none;
    }

    .tlr-cart-page .cart_totals tr.order-total th,
    .tlr-cart-page .cart_totals tr.order-total td {
        border-bottom: none;
        padding: 4px 0 8px;
    }

    .tlr-cart-layout {
        grid-template-columns: 1fr;
    }

    .tlr-cart-card {
        grid-template-columns: 48px 1fr;
        gap: 12px;
    }

    .tlr-cart-page img.attachment-woocommerce_thumbnail {
        width: 48px;
        height: 48px;
        border-radius: 10px;
    }

    .tlr-cart-meta {
        grid-template-columns: 1fr;
    }
}

/* About page alignment */
.tlr-page-about .tlr-single-panel,
.tlr-page-about .tlr-single-content,
body.page-about .tlr-generic-page .tlr-single-panel,
body.page-about .tlr-generic-page .tlr-single-content {
    text-align: center;
}

.tlr-page-about .tlr-single-content ul,
.tlr-page-about .tlr-single-content ol,
body.page-about .tlr-generic-page .tlr-single-content ul,
body.page-about .tlr-generic-page .tlr-single-content ol {
    display: inline-block;
    text-align: left;
    margin: 12px auto 0;
    padding-left: 0;
}

.tlr-page-about .tlr-single-content ul,
body.page-about .tlr-generic-page .tlr-single-content ul {
    list-style: none;
}

.tlr-page-about .tlr-single-content ul li,
body.page-about .tlr-generic-page .tlr-single-content ul li {
    position: relative;
    padding-left: 22px;
    margin: 8px 0;
}

.tlr-page-about .tlr-single-content ul li::before,
body.page-about .tlr-generic-page .tlr-single-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.9em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
    box-shadow: 0 0 12px rgba(182, 120, 255, 0.35);
    transform: translateY(-50%);
}

.tlr-page-about .tlr-single-content ol,
body.page-about .tlr-generic-page .tlr-single-content ol {
    list-style: none;
    counter-reset: tlr-step;
    padding-left: 0;
}

.tlr-page-about .tlr-single-content ol li,
body.page-about .tlr-generic-page .tlr-single-content ol li {
    counter-increment: tlr-step;
    position: relative;
    padding-left: 38px;
    margin: 10px 0;
}

.tlr-page-about .tlr-single-content ol li::before,
body.page-about .tlr-generic-page .tlr-single-content ol li::before {
    content: counter(tlr-step);
    position: absolute;
    left: 0;
    top: 0.9em;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
    color: #0B0718;
    font-weight: 800;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 14px rgba(182, 120, 255, 0.35);
    transform: translateY(-50%);
}

.tlr-page-about .tlr-single-content hr,
body.page-about .tlr-generic-page .tlr-single-content hr {
    margin: 22px auto;
    max-width: 520px;
    border: 0;
    border-top: 1px solid var(--border);
}

.tlr-coming-soon {
    margin-top: 18px;
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(20, 23, 35, 0.92), rgba(10, 12, 20, 0.9));
    box-shadow: var(--shadow);
}

.tlr-coming-soon-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.tlr-coming-soon .eyebrow {
    display: inline-block;
    margin: 0 0 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(182, 120, 255, 0.15);
    border: 1px solid rgba(182, 120, 255, 0.35);
    color: var(--text);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
}

.tlr-coming-soon h2 {
    margin: 6px 0 10px;
}

.tlr-coming-soon p {
    margin: 0;
    color: var(--muted);
}

.tlr-coming-list-title {
    margin: 12px 0 6px;
    color: var(--muted);
}

.tlr-coming-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-grid;
    gap: 6px;
    text-align: left;
}

.tlr-coming-list li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
}

.tlr-coming-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
    transform: translateY(-50%);
}

.tlr-my-account .tlr-single-panel {
    background: linear-gradient(135deg, rgba(20, 23, 35, 0.95), rgba(10, 12, 20, 0.96));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 24px 28px;
    box-shadow: var(--shadow);
}

.tlr-my-account .woocommerce form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 18px 12px;
    display: grid;
    gap: 12px;
}

.tlr-my-account .woocommerce form h2 {
    margin: 0 0 10px;
}

.tlr-my-account .woocommerce form .form-row {
    margin: 0;
}

.tlr-my-account .woocommerce form label {
    color: var(--text);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}

.tlr-my-account .woocommerce form .input-text {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #0c0f18;
    color: var(--text);
}

.tlr-my-account .woocommerce form .input-text:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(142, 91, 255, 0.3);
}

.tlr-my-account .woocommerce form .lost_password a {
    color: var(--accent-3);
}

.tlr-my-account .woocommerce form .woocommerce-form__label-for-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
}

.tlr-my-account .woocommerce form .woocommerce-form__input-checkbox {
    accent-color: var(--accent);
}

.tlr-my-account .woocommerce form .button,
.tlr-my-account .woocommerce form button[type="submit"],
.tlr-my-account .woocommerce a.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
    color: #0B0718 !important;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 12px 26px rgba(182, 120, 255, 0.55);
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.2s ease, filter 0.12s ease;
}

.tlr-my-account .woocommerce form .button:hover,
.tlr-my-account .woocommerce form button[type="submit"]:hover,
.tlr-my-account .woocommerce a.button:hover {
    filter: brightness(1.03);
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(182, 120, 255, 0.75);
}

.tlr-my-account .woocommerce-table--downloads .download-file .button {
    margin: 6px 0;
    padding: 10px 18px;
}

.tlr-my-account .woocommerce .woocommerce-MyAccount-navigation {
    margin-bottom: 16px;
}

.tlr-my-account .woocommerce .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 8px;
}

.tlr-my-account .woocommerce .woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.tlr-my-account .woocommerce .woocommerce-MyAccount-navigation li.is-active a,
.tlr-my-account .woocommerce .woocommerce-MyAccount-navigation li a:hover {
    border-color: var(--accent);
    background: rgba(182, 120, 255, 0.08);
}

.tlr-account-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 14px;
    flex-wrap: wrap;
}

.tlr-account-header h1 {
    margin: 0 0 4px;
}

.tlr-account-sub {
    margin: 0;
    color: var(--muted);
}

.tlr-account-inline-cta {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tlr-account-inline-cta p {
    margin: 0;
    color: var(--muted);
}

/* Related / upsell grid alignment */
.related.products ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.related.products ul.products li.product {
    margin: 0;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
    header.site-header {
        --header-height: 88px;
        padding: 12px 20px;
    }

    .tlr-hero-inner {
        grid-template-columns: 1fr;
    }

    .tlr-single-hero-grid,
    .tlr-two-col {
        grid-template-columns: 1fr;
        gap: 22px;
        justify-items: center;
    }
}

@media (max-width: 860px) {
    header.site-header {
        --header-height: 82px;
    }

    .mobile-nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        height: calc(100vh - var(--header-height));
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 16px 16px 24px;
        background: rgba(7, 9, 14, 0.98);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 16px 30px rgba(0, 0, 0, 0.55);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 120;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav > a:not(.nav-icon-btn),
    .main-nav > .nav-item {
        width: 100%;
        padding: 10px 6px;
    }

    .main-nav a:not(.nav-icon-btn) {
        width: 100%;
    }

    .nav-item.has-dropdown .nav-dropdown {
        position: static;
        display: none;
        box-shadow: none;
        padding: 4px 0 0;
        border: none;
        background: transparent;
    }

    .nav-item.has-dropdown.dropdown-open .nav-dropdown {
        display: flex;
    }

    .main-nav .nav-cta {
        width: 100%;
        margin: 8px 0;
        padding: 14px 20px;
        text-align: center;
    }

    .nav-icon-btn {
        width: 100%;
        min-width: 0;
        height: 48px;
        justify-content: flex-start;
        border-radius: 12px;
        padding: 0 14px;
        clip-path: none;
        border: 1px solid var(--border);
        background: linear-gradient(160deg, #161922, #0c0f18);
        gap: 12px;
    }

    .nav-icon-btn .label {
        display: inline;
        font-size: 0.85rem;
    }

    .nav-icon-btn.nav-cart,
    .nav-icon-btn.nav-account {
        border-left: 1px solid var(--border);
        border-right: 1px solid var(--border);
    }

    header.site-header {
        justify-content: center;
    }

    .tlr-section-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .tlr-single-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .tlr-hero {
        padding: 56px 0 40px;
    }

    .tlr-hero-text h1 {
        font-size: 2.2rem;
    }

    .tlr-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .tlr-countdown-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
