:root {
    --tcg-ink: #f8f4e6;
    --tcg-muted: #c9c0ad;
    --tcg-border: rgba(255, 190, 56, 0.32);
    --tcg-panel: rgba(6, 6, 8, 0.94);
    --tcg-panel-solid: #07070a;
    --tcg-soft: #151319;
    --tcg-red: #ef2f22;
    --tcg-orange: #f37021;
    --tcg-yellow: #f6c744;
    --tcg-smoke: #746f66;
    --tcg-blue: #33a9d8;
    --tcg-green: #39b36f;
    --tcg-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
    --tcg-radius: 8px;
    --tcg-favicon: url("../favicons/favicon-32x32.png");
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--tcg-ink);
    background-color: #050506;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.58)),
        url("../pokemon_collage_background.png");
    background-position: top center;
    background-repeat: repeat;
    background-size: 1120px auto;
    background-attachment: fixed;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1240px, calc(100% - 40px));
    margin-inline: auto;
}

.screen-reader-text,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    z-index: 1000;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    background: var(--tcg-yellow);
    color: #09090c;
    border-radius: 6px;
}

.site-alert {
    color: #fff7db;
    background: #030304;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(246, 199, 68, 0.22);
}

.site-alert__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    background: rgba(5, 5, 6, 0.94);
    border-bottom: 1px solid rgba(246, 199, 68, 0.32);
    backdrop-filter: blur(16px);
    box-shadow: 0 15px 34px rgba(0, 0, 0, 0.38);
}

.header-main {
    min-height: 84px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.site-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
}

.site-logo-image {
    display: block;
    width: min(230px, 46vw);
    height: auto;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.75));
}

.site-title__mark {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--tcg-red), var(--tcg-blue));
    border: 3px solid var(--tcg-yellow);
    border-radius: 50%;
    font-size: 0.78rem;
    letter-spacing: 0;
}

.custom-logo {
    max-width: 240px;
    height: auto;
}

.main-navigation ul,
.collector-navigation ul,
.footer-navigation ul {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-navigation a,
.collector-navigation a,
.footer-navigation a {
    color: #fff7e2;
    font-weight: 700;
    text-decoration: none;
}

.main-navigation a:hover,
.collector-navigation a:hover,
.footer-navigation a:hover {
    color: var(--tcg-yellow);
}

.collector-navigation {
    border-top: 1px solid rgba(246, 199, 68, 0.18);
    background: rgba(7, 7, 10, 0.88);
    font-size: 0.9rem;
}

.collector-navigation .container {
    min-height: 44px;
    display: flex;
    align-items: center;
    overflow-x: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 12px;
}

.search-form {
    display: flex;
    min-width: 300px;
    border: 1px solid rgba(246, 199, 68, 0.32);
    border-radius: var(--tcg-radius);
    overflow: hidden;
    background: #0d0d12;
}

.search-field {
    min-width: 0;
    width: 100%;
    border: 0;
    padding: 11px 12px;
    background: transparent;
    color: #fff;
}

.search-field::placeholder {
    color: rgba(255, 247, 226, 0.58);
}

.search-submit,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    border: 0;
    border-radius: var(--tcg-radius);
    background: linear-gradient(180deg, var(--tcg-orange), var(--tcg-red));
    color: #fffbe8;
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
    cursor: pointer;
}

.search-submit:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: linear-gradient(180deg, var(--tcg-yellow), var(--tcg-orange));
    color: #130c05;
}

.button-primary {
    background: linear-gradient(180deg, var(--tcg-orange), var(--tcg-red));
}

.button-secondary {
    color: #fff7e2;
    background: #0d0d12;
    border: 1px solid var(--tcg-border);
}

.button-secondary:hover {
    background: var(--tcg-yellow);
    color: #110b04;
}

.header-cart {
    display: inline-flex;
    min-height: 64px;
    align-items: center;
    gap: 12px;
    padding: 9px 14px 9px 10px;
    color: #fff;
    background: transparent;
    border: 0;
    border-radius: var(--tcg-radius);
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.header-cart:hover {
    background: rgba(255, 255, 255, 0.06);
}

.header-cart__bag-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: #fff;
}

.header-cart__bag {
    display: block;
    width: 42px;
    height: 42px;
}

.header-cart__count {
    position: absolute;
    top: -4px;
    right: -7px;
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: #ef3131;
    border: 2px solid #232323;
    border-radius: 50%;
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1;
}

.header-cart__summary {
    display: grid;
    gap: 2px;
    line-height: 1;
}

.header-cart__label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    font-weight: 800;
}

.header-cart__total {
    color: #fff;
    font-size: 1.55rem;
    font-weight: 950;
    letter-spacing: 0;
}

.header-cart__total .amount {
    color: inherit;
    font-weight: inherit;
}

.menu-toggle {
    display: none;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(246, 199, 68, 0.38);
    border-radius: 50%;
    background-color: #050506;
    background-image: url("../pokeball_menu.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 42px 43px;
    box-shadow: 0 0 0 4px rgba(239, 47, 34, 0.14), 0 12px 24px rgba(0, 0, 0, 0.45);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.menu-toggle__bar,
.menu-toggle__bar::before,
.menu-toggle__bar::after {
    display: none;
}

.menu-toggle[aria-expanded="true"] {
    transform: rotate(24deg) scale(1.04);
    box-shadow: 0 0 0 4px rgba(246, 199, 68, 0.18), 0 0 26px rgba(243, 112, 33, 0.42);
}

.site-main {
    min-height: 60vh;
}

.store-hero {
    overflow: hidden;
    background: transparent;
    padding-block: 34px;
}

.store-hero__grid {
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 42px;
    padding: clamp(24px, 5vw, 58px);
    background:
        linear-gradient(135deg, rgba(239, 47, 34, 0.18), transparent 38%),
        linear-gradient(315deg, rgba(246, 199, 68, 0.16), transparent 34%),
        var(--tcg-panel);
    border: 1px solid var(--tcg-border);
    border-radius: var(--tcg-radius);
    box-shadow: var(--tcg-shadow);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--tcg-yellow);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.store-hero h1,
.page-hero h1,
.shop-hero h1 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(2.3rem, 5vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: 0;
    color: #fff7e2;
    text-shadow: 0 4px 0 rgba(239, 47, 34, 0.38), 0 12px 30px rgba(0, 0, 0, 0.7);
}

.store-hero p {
    max-width: 680px;
    color: var(--tcg-muted);
    font-size: 1.12rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.hero-card-stack {
    position: relative;
    min-height: 430px;
}

.hero-card {
    position: absolute;
    width: min(260px, 52vw);
    aspect-ratio: 0.72;
    display: grid;
    align-items: end;
    padding: 18px;
    color: #fff;
    border: 10px solid rgba(255, 248, 226, 0.92);
    border-radius: 18px;
    box-shadow: var(--tcg-shadow);
}

.hero-card span {
    display: inline-flex;
    width: fit-content;
    padding: 7px 10px;
    color: #130c05;
    background: #fff5c6;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 900;
}

.hero-card--one {
    top: 24px;
    left: 30px;
    z-index: 3;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 38%),
        linear-gradient(155deg, var(--tcg-red), #7426a4);
    transform: rotate(-10deg);
}

.hero-card--two {
    top: 64px;
    right: 18px;
    z-index: 2;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 38%),
        linear-gradient(155deg, var(--tcg-blue), var(--tcg-green));
    transform: rotate(9deg);
}

.hero-card--three {
    right: 115px;
    bottom: 6px;
    z-index: 1;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 38%),
        linear-gradient(155deg, #2a2d39, var(--tcg-yellow));
    transform: rotate(2deg);
}

.section-heading {
    margin-bottom: 26px;
}

.section-heading h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.06;
}

.featured-categories,
.featured-products,
.trust-strip,
.page-content,
.content-layout,
.shop-layout {
    padding-block: 54px;
}

.featured-categories .container,
.featured-products .container,
.trust-strip__grid,
.content-layout,
.shop-layout {
    padding: clamp(18px, 3vw, 30px);
    background:
        linear-gradient(135deg, rgba(246, 199, 68, 0.1), transparent 28%),
        var(--tcg-panel);
    border: 1px solid var(--tcg-border);
    border-radius: var(--tcg-radius);
    box-shadow: var(--tcg-shadow);
}

.featured-categories .container,
.featured-products .container,
.shop-layout {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.trust-strip {
    background: transparent;
    color: #fff;
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.trust-strip strong,
.trust-strip span {
    display: block;
}

.trust-strip span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
}

.page-hero,
.shop-hero {
    background: transparent;
    padding-top: 34px;
}

.page-hero--compact .container,
.shop-hero__inner {
    padding: clamp(22px, 4vw, 52px);
    background:
        linear-gradient(135deg, rgba(239, 47, 34, 0.18), transparent 42%),
        var(--tcg-panel);
    border: 1px solid var(--tcg-border);
    border-radius: var(--tcg-radius);
    box-shadow: var(--tcg-shadow);
}

.shop-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
}

.shop-hero p {
    max-width: 660px;
    color: var(--tcg-muted);
}

.shop-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.shop-hero__category,
.product-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    color: #100d09;
    background: linear-gradient(180deg, #fff5c6, var(--tcg-yellow));
    border: 1px solid var(--tcg-border);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 900;
    text-decoration: none;
}

.shop-hero__category small {
    display: inline-flex;
    min-width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    padding-inline: 6px;
    color: #fff7e2;
    background: rgba(7, 7, 10, 0.78);
    border-radius: 999px;
    font-size: 0.72rem;
    line-height: 1;
}

.shop-hero__category:hover,
.shop-hero__category.is-active {
    color: #fff7e2;
    background: linear-gradient(180deg, var(--tcg-orange), var(--tcg-red));
    border-color: rgba(255, 255, 255, 0.22);
}

.shop-hero__category:hover small,
.shop-hero__category.is-active small {
    color: #130c05;
    background: var(--tcg-yellow);
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.shop-layout--no-sidebar {
    grid-template-columns: minmax(0, 1fr);
}

.shop-sidebar {
    position: sticky;
    top: 160px;
}

.widget,
.entry-card,
.post-card,
.empty-state,
.tcg-card-details,
.product-trust-notes {
    background: var(--tcg-panel);
    border: 1px solid var(--tcg-border);
    border-radius: var(--tcg-radius);
}

.widget {
    padding: 18px;
    margin-bottom: 16px;
}

.widget a {
    color: #fff7e2;
}

.widget-title {
    margin: 0 0 12px;
    font-size: 1rem;
}

.widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget li + li {
    margin-top: 9px;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
    gap: 22px;
    margin: 0;
    padding: 0;
    align-items: stretch;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce ul.products[class*="columns-"] li.product,
.woocommerce-page ul.products[class*="columns-"] li.product {
    position: relative;
    float: none;
    clear: none;
    width: 100%;
    max-width: none;
    min-width: 0;
    margin: 0;
    padding: 12px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
        var(--tcg-panel-solid);
    border: 1px solid var(--tcg-border);
    border-radius: var(--tcg-radius);
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.woocommerce ul.products[class*="columns-"] li.product.first,
.woocommerce-page ul.products[class*="columns-"] li.product.first {
    clear: none;
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
    display: grid;
    gap: 10px;
    text-decoration: none;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-3px);
    border-color: rgba(246, 199, 68, 0.68);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.44), 0 0 26px rgba(239, 47, 34, 0.16);
}

.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
    display: block;
    width: 100%;
    min-height: 260px;
    aspect-ratio: 0.72;
    object-fit: contain;
    margin: 0 0 14px;
    padding: 10px;
    background: #121218;
    border-radius: 6px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 2.7em;
    padding: 0;
    margin: 0 0 6px;
    color: #fff7e2;
    font-size: 1rem;
    line-height: 1.35;
}

.woocommerce ul.products li.product .price {
    display: block;
    margin: 0;
    color: var(--tcg-yellow);
    font-size: 1.08rem;
    font-weight: 900;
}

.tcg-loop-purchase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    margin-top: auto;
    padding: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(246, 199, 68, 0.22);
    border-radius: var(--tcg-radius);
}

.tcg-loop-purchase .price {
    grid-column: 1 / -1;
    display: flex;
    align-items: baseline;
    gap: 6px;
    min-height: 34px;
    padding: 6px 9px;
    background: rgba(246, 199, 68, 0.1);
    border-radius: 6px;
}

.tcg-loop-purchase .price del {
    color: rgba(255, 247, 226, 0.48);
    font-size: 0.85rem;
    font-weight: 700;
}

.tcg-loop-purchase .price ins {
    text-decoration: none;
}

.tcg-loop-qty {
    display: grid;
    grid-template-columns: 34px 44px 34px;
    align-items: center;
    height: 44px;
    overflow: hidden;
    background: #08080b;
    border: 1px solid rgba(246, 199, 68, 0.28);
    border-radius: var(--tcg-radius);
}

.tcg-loop-qty__button,
.tcg-loop-qty__input {
    width: 100%;
    height: 100%;
    border: 0;
    color: #fff7e2;
    background: transparent;
    text-align: center;
}

.tcg-loop-qty__button {
    color: #130c05;
    background: var(--tcg-yellow);
    font-size: 1.15rem;
    font-weight: 900;
    cursor: pointer;
}

.tcg-loop-qty__input {
    appearance: textfield;
    font-weight: 900;
}

.tcg-loop-qty__input::-webkit-outer-spin-button,
.tcg-loop-qty__input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.woocommerce ul.products li.product .tcg-loop-purchase .button,
.woocommerce-page ul.products li.product .tcg-loop-purchase .button {
    min-height: 44px;
    margin: 0;
    padding-inline: 12px;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(239, 47, 34, 0.22);
}

.woocommerce ul.products li.product .tcg-loop-purchase .button.added,
.woocommerce-page ul.products li.product .tcg-loop-purchase .button.added {
    display: none;
}

.woocommerce ul.products li.product .tcg-loop-purchase a.added_to_cart,
.woocommerce-page ul.products li.product .tcg-loop-purchase a.added_to_cart {
    grid-column: 1 / -1;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    color: #130c05;
    background: var(--tcg-yellow);
    border-radius: var(--tcg-radius);
    font-weight: 900;
    text-decoration: none;
}

.woocommerce span.onsale {
    top: 10px;
    left: 10px;
    right: auto;
    min-width: 0;
    min-height: 0;
    padding: 6px 9px;
    background: linear-gradient(180deg, var(--tcg-orange), var(--tcg-red));
    border-radius: 999px;
    line-height: 1;
    font-weight: 900;
}

.product-badges {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    gap: 6px;
    justify-items: end;
    max-width: calc(100% - 24px);
}

.product-badges span {
    border-color: rgba(0, 0, 0, 0.28);
    box-shadow: 0 7px 16px rgba(0, 0, 0, 0.24);
}

.product-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin: 0 0 8px;
    color: var(--tcg-muted);
    font-size: 0.85rem;
    font-weight: 700;
}

.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
    color: var(--tcg-muted);
}

.woocommerce .woocommerce-ordering select {
    min-height: 42px;
    padding: 8px 36px 8px 10px;
    color: #fff7e2;
    border: 1px solid var(--tcg-border);
    border-radius: var(--tcg-radius);
    background: #0d0d12;
}

.woocommerce nav.woocommerce-pagination ul {
    border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: 0;
    margin: 3px;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    min-width: 40px;
    border-radius: 6px;
    border: 1px solid var(--tcg-border);
    color: #fff7e2;
    background: #0d0d12;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    color: #130c05;
    background: var(--tcg-yellow);
}

.single-product-wrap {
    padding-block: 42px 64px;
}

.woocommerce div.product {
    width: min(1240px, calc(100% - 40px));
    margin-inline: auto;
    padding: clamp(18px, 3vw, 30px);
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(22px, 4vw, 54px);
    align-items: start;
    background:
        linear-gradient(135deg, rgba(239, 47, 34, 0.12), transparent 34%),
        var(--tcg-panel);
    border: 1px solid var(--tcg-border);
    border-radius: var(--tcg-radius);
    box-shadow: var(--tcg-shadow);
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
    float: none;
    width: 100%;
    margin-bottom: 32px;
}

.woocommerce div.product div.images {
    grid-column: 1;
}

.woocommerce div.product div.summary {
    grid-column: 2;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
    background: var(--tcg-panel-solid);
    border: 1px solid var(--tcg-border);
    border-radius: var(--tcg-radius);
}

.woocommerce div.product div.images img {
    display: block;
    width: 100%;
    max-height: 680px;
    object-fit: contain;
    padding: clamp(12px, 2vw, 22px);
}

.woocommerce div.product .product_title {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--tcg-yellow);
    font-size: 1.7rem;
    font-weight: 900;
}

.woocommerce div.product form.cart {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 16px;
    background: #121218;
    border-radius: var(--tcg-radius);
}

.woocommerce .quantity .qty {
    width: 76px;
    min-height: 44px;
    padding: 8px 10px;
    border: 1px solid var(--tcg-border);
    border-radius: 6px;
    background: #07070a;
    color: #fff7e2;
    caret-color: var(--tcg-yellow);
    font-weight: 900;
    text-align: center;
}

.woocommerce .quantity .qty:focus {
    outline: 2px solid var(--tcg-yellow);
    outline-offset: 2px;
}

.woocommerce .quantity .qty::placeholder {
    color: rgba(255, 247, 226, 0.52);
}

.woocommerce .quantity .qty::-webkit-outer-spin-button,
.woocommerce .quantity .qty::-webkit-inner-spin-button {
    opacity: 1;
}

.tcg-card-details,
.product-trust-notes {
    padding: 18px;
    margin: 18px 0;
}

.tcg-card-details h2 {
    margin: 0 0 12px;
    font-size: 1.1rem;
}

.tcg-card-details dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.tcg-card-details div {
    min-width: 0;
}

.tcg-card-details dt {
    color: var(--tcg-yellow);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.tcg-card-details dd {
    margin: 2px 0 0;
    font-weight: 800;
}

.product-trust-notes {
    display: grid;
    gap: 12px;
}

.product-trust-notes strong,
.product-trust-notes span {
    display: block;
}

.product-trust-notes span {
    color: var(--tcg-muted);
}

.woocommerce-tabs,
.related.products,
.upsells.products {
    width: min(1240px, calc(100% - 40px));
    margin-inline: auto;
    padding: clamp(18px, 3vw, 30px);
    background: var(--tcg-panel);
    border: 1px solid var(--tcg-border);
    border-radius: var(--tcg-radius);
    box-shadow: var(--tcg-shadow);
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related.products,
.woocommerce div.product .upsells.products {
    grid-column: 1 / -1;
    width: 100%;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border-radius: 6px 6px 0 0;
}

.entry-card,
.empty-state {
    padding: clamp(20px, 4vw, 42px);
}

.entry-content {
    max-width: 860px;
}

.entry-content > *:first-child {
    margin-top: 0;
}

.entry-featured-image {
    margin: 0 0 24px;
}

.entry-featured-image img {
    border-radius: var(--tcg-radius);
}

.content-feed {
    display: grid;
    gap: 20px;
}

.post-card {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    overflow: hidden;
}

.post-card__image {
    min-height: 100%;
    background: #121218;
}

.post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card__body {
    padding: 24px;
}

.post-card h2 {
    margin: 0 0 10px;
}

.post-card h2 a,
.text-link {
    text-decoration: none;
}

.text-link {
    color: var(--tcg-yellow);
    font-weight: 900;
}

.site-footer {
    color: #fff;
    background: transparent;
    padding-bottom: 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.8fr) auto;
    gap: 30px;
    padding: 34px;
    background: var(--tcg-panel);
    border: 1px solid var(--tcg-border);
    border-radius: var(--tcg-radius);
    box-shadow: var(--tcg-shadow);
}

.footer-brand h2,
.footer-widget-title {
    margin-top: 0;
}

.footer-brand p,
.footer-bottom,
.footer-widget {
    color: rgba(255, 255, 255, 0.72);
}

.store-address {
    margin: 14px 0 0;
    color: #fff7e2;
    font-style: normal;
    font-weight: 800;
}

.store-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.store-social-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    color: #130c05;
    background: linear-gradient(180deg, var(--tcg-yellow), var(--tcg-orange));
    border-radius: var(--tcg-radius);
    font-weight: 900;
    text-decoration: none;
}

.store-social-link--directions {
    color: #fff7e2;
    background: #0d0d12;
    border: 1px solid var(--tcg-border);
}

.store-social-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.32);
}

.footer-navigation ul {
    display: grid;
    gap: 10px;
}

.footer-navigation a {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 16px;
    padding: 18px;
    background: rgba(6, 6, 8, 0.9);
    border: 1px solid rgba(246, 199, 68, 0.18);
    border-radius: var(--tcg-radius);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    width: min(1240px, calc(100% - 40px));
    margin-inline: auto;
    border-top-color: var(--tcg-blue);
    border-radius: var(--tcg-radius);
    color: #fff7e2;
    background: var(--tcg-panel);
}

@media (max-width: 1100px) {
    .header-main {
        grid-template-columns: auto auto;
    }

    .menu-toggle {
        display: inline-grid;
        place-items: center;
        justify-self: end;
    }

    .main-navigation {
        display: none;
        grid-column: 1 / -1;
    }

.main-navigation.is-open {
        display: block;
        padding: 14px;
        background: rgba(7, 7, 10, 0.98);
        border: 1px solid rgba(246, 199, 68, 0.22);
        border-radius: var(--tcg-radius);
        box-shadow: var(--tcg-shadow);
    }

    .main-navigation ul {
        display: grid;
        gap: 8px;
    }

    .main-navigation a {
        display: block;
        padding: 10px 12px;
        border-radius: 6px;
    }

    .main-navigation a:hover {
        background: rgba(246, 199, 68, 0.12);
    }

    .header-actions {
        grid-column: 1 / -1;
        justify-content: stretch;
        padding-bottom: 16px;
    }

    .search-form {
        min-width: 0;
        flex: 1 1 auto;
    }

    .store-hero__grid,
    .shop-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
    }

    .woocommerce ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    body {
        background-size: 860px auto;
        background-attachment: scroll;
    }

    .container,
    .woocommerce div.product,
    .woocommerce-tabs,
    .related.products,
    .upsells.products,
    .woocommerce-error,
    .woocommerce-info,
    .woocommerce-message {
        width: min(100% - 24px, 1240px);
    }

    .woocommerce div.product {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .woocommerce div.product div.images,
    .woocommerce div.product div.summary,
    .woocommerce div.product .woocommerce-tabs,
    .woocommerce div.product .related.products,
    .woocommerce div.product .upsells.products {
        grid-column: 1;
    }

    .woocommerce div.product div.images {
        margin-bottom: 0;
    }

    .woocommerce div.product div.images img {
        max-height: 520px;
    }

    .site-alert__inner,
    .shop-hero__inner,
    .trust-strip__grid,
    .footer-bottom {
        display: grid;
        grid-template-columns: 1fr;
    }

    .shop-hero__stats {
        justify-content: flex-start;
    }

    .store-social-links {
        display: grid;
        grid-template-columns: 1fr;
    }

    .header-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .site-alert {
        display: none;
    }

    .site-header {
        position: sticky;
    }

    .header-main {
        min-height: 72px;
        gap: 12px;
        padding-block: 8px;
    }

    .site-logo-image,
    .custom-logo {
        max-width: none;
        width: min(188px, 54vw);
    }

    .menu-toggle {
        width: 50px;
        height: 50px;
        background-size: 39px 40px;
    }

    .header-cart {
        width: fit-content;
        min-height: 58px;
        justify-content: flex-start;
        padding: 7px 10px 7px 6px;
        justify-self: start;
    }

    .header-cart__bag-wrap {
        width: 42px;
        height: 42px;
    }

    .header-cart__bag {
        width: 38px;
        height: 38px;
    }

    .header-cart__count {
        width: 26px;
        height: 26px;
        font-size: 0.86rem;
    }

    .header-cart__label {
        font-size: 0.92rem;
    }

    .header-cart__total {
        font-size: 1.35rem;
    }

    .store-hero__grid {
        min-height: 0;
        gap: 20px;
        padding: 24px 16px;
    }

    .store-hero,
    .featured-categories,
    .featured-products,
    .trust-strip,
    .page-content,
    .content-layout,
    .shop-layout {
        padding-block: 16px;
    }

    .store-hero h1,
    .page-hero h1,
    .shop-hero h1 {
        font-size: clamp(2rem, 12vw, 3.2rem);
        line-height: 1;
        text-shadow: 0 3px 0 rgba(239, 47, 34, 0.38), 0 8px 22px rgba(0, 0, 0, 0.7);
    }

    .store-hero p,
    .shop-hero p {
        font-size: 1rem;
    }

    .hero-card-stack {
        min-height: 260px;
    }

    .hero-card {
        width: min(180px, 54vw);
        padding: 12px;
        border-width: 7px;
    }

    .hero-card--one {
        left: 0;
    }

    .hero-card--two {
        right: 0;
    }

    .hero-card--three {
        right: 72px;
    }

    .woocommerce ul.products {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product,
    .woocommerce ul.products[class*="columns-"] li.product,
    .woocommerce-page ul.products[class*="columns-"] li.product {
        width: 100%;
        padding: 14px;
    }

    .woocommerce ul.products li.product a img,
    .woocommerce-page ul.products li.product a img {
        min-height: 320px;
        max-height: 440px;
        padding: 14px;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        min-height: auto;
        font-size: 1.35rem;
    }

    .woocommerce ul.products li.product .price {
        font-size: 1.55rem;
    }

    .tcg-loop-purchase {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px;
    }

    .tcg-loop-purchase .price {
        justify-content: center;
        min-height: 46px;
        text-align: center;
    }

    .tcg-loop-qty {
        grid-template-columns: 48px minmax(0, 1fr) 48px;
        height: 52px;
    }

    .woocommerce ul.products li.product .button,
    .woocommerce-page ul.products li.product .button,
    .woocommerce ul.products li.product .tcg-loop-purchase .button,
    .woocommerce-page ul.products li.product .tcg-loop-purchase .button {
        width: 100%;
        min-height: 54px;
        font-size: 1.08rem;
    }

    .product-badges {
        position: static;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        margin: -4px 0 8px;
    }

    .tcg-card-details dl,
    .post-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        background-size: 720px auto;
    }

    .search-form {
        display: grid;
    }

    .woocommerce ul.products li.product a img,
    .woocommerce-page ul.products li.product a img {
        min-height: 285px;
        max-height: 390px;
    }

    .featured-categories .container,
    .featured-products .container,
    .trust-strip__grid,
    .content-layout,
    .shop-layout,
    .footer-grid,
    .page-hero--compact .container,
    .shop-hero__inner {
        padding: 16px;
    }

    .hero-actions .button,
    .hero-actions .woocommerce a.button {
        width: 100%;
    }

    .tcg-loop-qty {
        grid-template-columns: 46px minmax(0, 1fr) 46px;
    }
}
