/*
Theme Name: JT Shooter
Theme URI: https://www.thunderarmory.lt/
Author: Vileikis
Description: Fast WooCommerce theme inspired by Thunder Armory visual language.
Version: 1.0.0
Text Domain: jtshooter
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
*/

:root {
    --ta-red: #c40505;
    --ta-red-dark: #9d0404;
    --ta-black: #020202;
    --ta-ink: #17130b;
    --ta-text: #515151;
    --ta-muted: #7d7d7d;
    --ta-line: #ececec;
    --ta-soft: #f7f7f7;
    --ta-white: #fff;
    --ta-width: 1180px;
    --ta-font-display: "Dosis", Arial, sans-serif;
    --ta-font-body: "Open Sans", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    color: var(--ta-text);
    background: #fff;
    font-family: var(--ta-font-display);
    font-size: 14px;
    line-height: 1.45;
}

a {
    color: var(--ta-red);
    text-decoration: none;
}

a:hover {
    color: var(--ta-red-dark);
    text-decoration: underline;
}

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

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

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

.container {
    width: min(var(--ta-width), calc(100% - 30px));
    margin: 0 auto;
}

.site-topline {
    background: var(--ta-black);
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
}

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

.site-topline a {
    color: #fff;
}

.site-header {
    background: var(--ta-black);
    color: #fff;
    position: relative;
    z-index: 20;
}

.site-header__main {
    height: 101px;
    display: grid;
    grid-template-columns: 257px minmax(260px, 1fr) auto;
    align-items: center;
    gap: 28px;
}

.site-branding img {
    width: 82px;
    height: 82px;
    object-fit: contain;
}

.site-branding__text {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.header-search form {
    display: flex;
    width: 100%;
    border: 1px solid #2a2a2a;
    background: #fff;
}

.header-search input[type="search"] {
    width: 100%;
    min-width: 0;
    height: 42px;
    padding: 0 16px;
    border: 0;
    color: var(--ta-ink);
    outline: 0;
}

.header-search button {
    width: 52px;
    border: 0;
    background: var(--ta-red);
    color: #fff;
    font-size: 0;
    cursor: pointer;
}

.header-search button::before {
    content: "⌕";
    font-size: 24px;
    line-height: 1;
}

.header-search--mobile {
    display: none;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-link,
.mini-cart-toggle,
.menu-toggle {
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
}

.mini-cart-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
}

.mini-cart-toggle__count {
    display: inline-grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: var(--ta-red);
    color: #fff;
    border-radius: 11px;
    font-size: 12px;
}

.menu-toggle {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid #333;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity .2s ease, transform .2s ease, border-color .2s ease, background .2s ease;
}

.site-header.is-scrolled .menu-toggle,
.menu-toggle[aria-expanded="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.menu-toggle svg {
    display: block;
    width: 24px;
    height: 24px;
}

.menu-toggle:hover,
.menu-toggle:focus {
    border-color: var(--ta-red);
    background: rgba(255, 255, 255, .06);
    outline: none;
}

.catalog-nav {
    background: #fff;
    border-bottom: 3px solid var(--ta-red);
}

.catalog-nav__backdrop,
.catalog-nav__sidebar-head {
    display: none;
}

.catalog-nav > .container {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.catalog-nav__home {
    width: 54px;
    min-height: 54px;
    display: grid;
    place-items: center;
    color: var(--ta-ink);
    border-left: 1px solid #ededed;
    border-right: 1px solid #ededed;
}

.catalog-nav__home svg {
    width: 22px;
    height: 22px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.catalog-nav__home:hover {
    background: var(--ta-red);
    color: #fff;
    text-decoration: none;
}

.catalog-nav .menu,
.catalog-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.catalog-nav > .container > ul,
.catalog-nav .menu {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.catalog-nav li {
    position: relative;
}

.catalog-nav a {
    position: relative;
    display: block;
    padding: 15px 13px;
    color: var(--ta-ink);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    transition: color .2s ease;
    isolation: isolate;
    z-index: 1;
}

.catalog-nav > .container > ul > li > a,
.catalog-nav .menu > li > a {
    overflow: hidden;
}

.catalog-nav > .container > ul > li > a::before,
.catalog-nav .menu > li > a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--ta-red);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .24s ease;
    z-index: -1;
}

.catalog-nav a:hover,
.catalog-nav .current-menu-item > a,
.catalog-nav .current-menu-ancestor > a {
    text-decoration: none;
}

.catalog-nav > .container > ul > li > a:hover,
.catalog-nav > .container > ul > li:hover > a,
.catalog-nav > .container > ul > .current-menu-item > a,
.catalog-nav > .container > ul > .current-menu-ancestor > a,
.catalog-nav .menu > li > a:hover,
.catalog-nav .menu > li:hover > a,
.catalog-nav .menu > .current-menu-item > a,
.catalog-nav .menu > .current-menu-ancestor > a {
    color: #fff;
}

.catalog-nav > .container > ul > li > a:hover::before,
.catalog-nav > .container > ul > li:hover > a::before,
.catalog-nav > .container > ul > .current-menu-item > a::before,
.catalog-nav > .container > ul > .current-menu-ancestor > a::before,
.catalog-nav .menu > li > a:hover::before,
.catalog-nav .menu > li:hover > a::before,
.catalog-nav .menu > .current-menu-item > a::before,
.catalog-nav .menu > .current-menu-ancestor > a::before {
    transform: scaleY(1);
}

.catalog-nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--ta-line);
    box-shadow: 1px 1px 9.5px .5px rgba(0, 0, 0, .1);
    z-index: 30;
}

.catalog-nav li:hover > .sub-menu {
    display: block;
}

.catalog-nav .sub-menu a {
    display: inline-block;
    padding: 8px 10px;
    font-size: 17px;
    font-weight: 400;
    text-transform: none;
}

.catalog-nav .sub-menu a::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 5px;
    height: 2px;
    background: var(--ta-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
}

.catalog-nav .sub-menu a:hover::after {
    transform: scaleX(1);
}

.catalog-menu-open {
    overflow: hidden;
}

.catalog-nav.is-open {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: block;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.catalog-nav.is-open .catalog-nav__backdrop {
    position: fixed;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, .62);
    cursor: pointer;
}

.catalog-nav.is-open > .container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: min(390px, 88vw);
    max-width: none;
    margin: 0;
    padding: 22px;
    display: block;
    overflow-y: auto;
    background: #080808;
    color: #fff;
    box-shadow: -18px 0 42px rgba(0, 0, 0, .34);
}

.admin-bar .catalog-nav.is-open > .container {
    top: 32px;
}

.catalog-nav.is-open .catalog-nav__sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #242424;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.catalog-nav__close {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border: 1px solid #333;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
}

.catalog-nav__close:hover,
.catalog-nav__close:focus {
    border-color: var(--ta-red);
    background: var(--ta-red);
    outline: none;
}

.catalog-nav.is-open .catalog-nav__home {
    width: 100%;
    min-height: 48px;
    margin-bottom: 8px;
    border: 1px solid #242424;
    color: #fff;
}

.catalog-nav.is-open > .container > ul,
.catalog-nav.is-open .menu {
    display: block;
}

.catalog-nav.is-open li {
    border-bottom: 1px solid #202020;
}

.catalog-nav.is-open a {
    padding: 15px 0;
    color: #fff;
    font-size: 16px;
}

.catalog-nav.is-open > .container > ul > li + li > a,
.catalog-nav.is-open .menu > li + li > a {
    border-left: 0;
}

.catalog-nav.is-open > .container > ul > li > a::before,
.catalog-nav.is-open .menu > li > a::before {
    display: none;
}

.catalog-nav.is-open .sub-menu {
    position: static;
    display: block;
    min-width: 0;
    padding: 0 0 10px 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.catalog-nav.is-open .sub-menu a {
    color: #c8c8c8;
    font-size: 14px;
}

.page-shell {
    padding: 24px 0 36px;
}

.breadcrumbs,
.woocommerce-breadcrumb {
    margin-bottom: 18px;
    color: var(--ta-muted);
    font-size: 12px;
}

.breadcrumbs a,
.woocommerce-breadcrumb a {
    color: var(--ta-muted);
}

h1,
h2,
h3,
h4,
.woocommerce-products-header__title {
    margin: 0 0 18px;
    color: #252525;
    font-family: var(--ta-font-display);
    font-weight: 700;
    line-height: 1.15;
}

h1,
.woocommerce-products-header__title {
    font-size: 24px;
}

.home-sections {
    display: grid;
    gap: 28px;
}

.home-hero {
    position: relative;
    overflow: hidden;
    min-height: 340px;
    padding: 52px;
    display: flex;
    align-items: flex-end;
    color: #fff;
    background: #111;
    border-bottom: 3px solid var(--ta-red);
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .22));
    z-index: 1;
}

.home-hero__slides,
.home-hero__slide {
    position: absolute;
    inset: 0;
}

.home-hero__slide {
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity .8s ease;
}

.home-hero__slide.is-active {
    opacity: 1;
}

.home-hero__content {
    position: relative;
    z-index: 2;
    max-width: 540px;
}

.home-hero__content[data-hero-content] {
    display: none;
}

.home-hero__content[data-hero-content].is-active {
    display: block;
}

.home-hero__dots {
    position: absolute;
    right: 28px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    gap: 8px;
}

.home-hero__dots span {
    width: 34px;
    height: 3px;
    background: rgba(255, 255, 255, .45);
}

.home-hero__dots span.is-active {
    background: var(--ta-red);
}

.home-hero h1 {
    color: #fff;
    font-size: 46px;
    text-transform: uppercase;
}

.home-hero p {
    margin: 0 0 22px;
    font-family: var(--ta-font-body);
    font-size: 16px;
}

.button,
button.button,
input.button,
.wc-block-components-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    min-height: 42px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: var(--ta-red);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.button:hover,
button.button:hover,
input.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    background: var(--ta-red-dark);
    color: #fff;
    text-decoration: none;
}

.shop-archive__layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 24px;
}

.shop-sidebar {
    align-self: start;
    border: 1px solid var(--ta-line);
    background: #fff;
}

.shop-sidebar__title {
    margin: 0;
    padding: 14px 16px;
    background: var(--ta-black);
    color: #fff;
    font-size: 18px;
}

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

.shop-sidebar li {
    border-top: 1px solid var(--ta-line);
}

.shop-sidebar a {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
    color: var(--ta-ink);
    font-weight: 600;
}

.shop-sidebar a:hover {
    color: var(--ta-red);
    text-decoration: none;
}

.shop-archive__toolbar {
    margin-bottom: 16px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid var(--ta-line);
    border-bottom: 1px solid var(--ta-line);
}

.woocommerce-result-count {
    margin: 0;
}

.woocommerce-ordering {
    margin: 0;
}

.woocommerce-ordering select,
.woocommerce select,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    min-height: 34px;
    border: 1px solid #d2d3d3;
    border-radius: 0;
    background: #fff;
    color: #56584d;
    padding: 6px 10px;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    float: none;
    width: auto;
    margin: 0;
}

.product-card {
    min-height: 100%;
    position: relative;
    background: #fff;
    outline: 1px solid var(--ta-line);
    transition: box-shadow .2s ease, transform .2s ease;
}

.product-card:hover {
    box-shadow: 1px 1px 9.5px .5px rgba(0, 0, 0, .1);
}

.product-card__link {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    color: inherit;
}

.product-card__link:hover {
    text-decoration: none;
}

.product-card__image {
    aspect-ratio: 4 / 3;
    display: grid;
    place-items: center;
    border-bottom: 1px solid var(--ta-line);
    background: #fff;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    padding: 8px;
}

.product-card__body {
    padding: 14px 12px 18px;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-card h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 42px;
    margin: 0 0 8px;
    padding: 0;
    color: var(--ta-ink);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
}

.product-card:hover h2 {
    color: var(--ta-red);
}

.product-card__sku {
    min-height: 17px;
    margin-bottom: 10px;
    color: #858585;
    font-size: 12px;
    word-break: break-word;
}

.woocommerce ul.products li.product .price,
.product-card__price,
.product-card__price .amount {
    margin: 0 0 12px;
    color: var(--ta-ink);
    font-size: 20px;
    font-weight: 700;
}

.product-card__actions {
    margin-top: auto;
}

.product-card .button {
    min-height: 36px;
    padding: 0 16px;
    font-size: 13px;
}

.onsale,
.woocommerce span.onsale {
    min-width: 0;
    min-height: 0;
    padding: 5px 8px;
    top: 8px;
    left: 8px;
    right: auto;
    border-radius: 0;
    background: var(--ta-red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.product-single__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 34px;
}

.product-single__gallery-main {
    position: relative;
    border: 1px solid var(--ta-line);
    background: #fff;
}

.product-single__gallery-main img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    padding: 12px;
}

.product-single__thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.product-single__thumbs::-webkit-scrollbar {
    display: none;
}

.product-single__thumb {
    flex: 0 0 calc((100% - 48px) / 5);
    border: 1px solid var(--ta-line);
    background: #fff;
    scroll-snap-align: start;
}

.product-single__thumb img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    padding: 4px;
}

.product-single__summary h1 {
    margin-bottom: 8px;
    font-size: 24px;
    text-transform: uppercase;
}

.product-single__sku {
    color: #aaa;
    font-size: 12px;
}

.product-single__buybox {
    margin: 18px 0;
    padding: 22px;
    border: 1px solid var(--ta-line);
    background: #fff;
}

.training-archive {
    padding-top: 0;
    background: #f6f6f6;
}

.training-hero {
    min-height: 230px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .48), rgba(0, 0, 0, .22)),
        url("/wp-content/uploads/2026/06/ChatGPT-Image-Jun-30-2026-04_30_12-PM.png") center / cover;
    color: #fff;
}

.training-hero .breadcrumbs {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, .75);
}

.training-hero .breadcrumbs a {
    color: rgba(255, 255, 255, .82);
}

.training-hero h1 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(38px, 4.4vw, 58px);
    text-transform: uppercase;
}

.training-hero p {
    max-width: 620px;
    margin: 0;
    color: #f1f1f1;
    font-family: var(--ta-font-body);
    font-size: 16px;
}

.training-archive__shell {
    width: min(1320px, calc(100% - 32px));
    padding: 34px 0 0;
}

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

.training-card {
    min-height: 100%;
    background: #fff;
    outline: 1px solid var(--ta-line);
    transition: box-shadow .2s ease, transform .2s ease;
}

.training-card:hover {
    box-shadow: 1px 1px 9.5px .5px rgba(0, 0, 0, .1);
}

.training-card__link {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    color: inherit;
}

.training-card__link:hover {
    text-decoration: none;
}

.training-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    display: grid;
    place-items: center;
    border-bottom: 1px solid var(--ta-line);
    background: #fff;
    overflow: hidden;
}

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

.training-card__placeholder {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    background: var(--ta-red);
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
}

.training-card__availability {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.training-card__availability.is-available {
    background: #1f9d4c;
}

.training-card__availability.is-unavailable {
    background: var(--ta-red);
}

.training-card__body {
    padding: 18px 18px 20px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.training-card h2 {
    margin: 0 0 10px;
    color: var(--ta-ink);
    font-size: 22px;
    text-transform: uppercase;
}

.training-card:hover h2 {
    color: var(--ta-red);
}

.training-card p {
    margin: 0 0 18px;
    color: var(--ta-text);
    font-family: var(--ta-font-body);
    font-size: 14px;
}

.training-card__button {
    min-height: 36px;
    margin-top: auto;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    background: var(--ta-red);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.training-archive__empty {
    margin: 0;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--ta-line);
}

.course-single {
    background: #f6f6f6;
}

.course-single__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .8fr);
    align-items: start;
    gap: 34px;
}

.course-single__summary,
.course-single__content {
    background: #fff;
    border: 1px solid var(--ta-line);
}

.course-single__summary {
    position: sticky;
    top: 138px;
    padding: 28px;
}

.course-single__badge {
    display: inline-flex;
    min-height: 28px;
    margin-bottom: 14px;
    padding: 0 12px;
    align-items: center;
    background: var(--ta-red);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.course-single__summary h1 {
    margin-bottom: 12px;
    font-size: 34px;
    text-transform: uppercase;
}

.course-single__excerpt {
    margin-bottom: 16px;
    color: var(--ta-text);
    font-family: var(--ta-font-body);
}

.course-single__price {
    margin-bottom: 22px;
    color: var(--ta-ink);
    font-size: 28px;
    font-weight: 700;
}

.course-booking {
    display: grid;
    gap: 20px;
}

.course-calendar {
    padding: 18px;
    border: 1px solid var(--ta-line);
}

.course-calendar h2,
.course-booking__times h2,
.course-single__content h2 {
    margin: 0 0 14px;
    font-size: 20px;
    text-transform: uppercase;
}

.course-calendar__header {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.course-calendar__header h2 {
    margin: 0;
    text-align: center;
}

.course-calendar__nav {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ta-line);
    background: #fff;
    color: var(--ta-ink);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.course-calendar__nav:hover:not(:disabled) {
    border-color: var(--ta-red);
    background: var(--ta-red);
    color: #fff;
}

.course-calendar__nav:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.course-calendar__weekdays,
.course-calendar__days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}

.course-calendar__weekdays {
    margin-bottom: 8px;
    color: var(--ta-muted);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.course-calendar__day,
.course-calendar__blank {
    aspect-ratio: 1;
    min-width: 0;
}

.course-calendar__day {
    display: grid;
    place-items: center;
    border: 1px solid var(--ta-line);
    background: #fff;
    color: var(--ta-ink);
    font-weight: 700;
}

button.course-calendar__day {
    cursor: pointer;
}

button.course-calendar__day:hover,
.course-calendar__day.is-selected,
.course-booking__time:hover,
.course-booking__time.is-selected {
    border-color: var(--ta-red);
    background: var(--ta-red);
    color: #fff;
}

.course-calendar__day.is-disabled {
    color: #bbb;
    background: #f5f5f5;
}

.course-booking__time-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.course-booking__time {
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid var(--ta-line);
    background: #fff;
    color: var(--ta-ink);
    font-weight: 700;
    cursor: pointer;
}

.course-booking__submit:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.course-booking__empty {
    margin: 0;
    padding: 18px;
    background: #f7f7f7;
    border-left: 4px solid var(--ta-red);
}

.course-single__content {
    padding: 28px;
}

.instructor-single {
    background: #f6f6f6;
}

.instructor-single__layout {
    display: grid;
    grid-template-columns: minmax(320px, .52fr) minmax(0, 1fr);
    align-items: start;
    gap: 34px;
}

.instructor-single__profile,
.instructor-single__content {
    background: #fff;
    border: 1px solid var(--ta-line);
}

.instructor-single__profile {
    position: sticky;
    top: 138px;
}

.instructor-single__image {
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    background: #111;
    color: #fff;
    overflow: hidden;
}

.instructor-single__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-single__image span {
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    background: var(--ta-red);
    color: #fff;
    font-size: 42px;
    font-weight: 800;
}

.instructor-single__profile-body {
    padding: 28px;
}

.instructor-single__badge {
    display: inline-flex;
    min-height: 28px;
    margin-bottom: 14px;
    padding: 0 12px;
    align-items: center;
    background: var(--ta-red);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.instructor-single__profile h1 {
    margin: 0 0 8px;
    font-size: 34px;
    text-transform: uppercase;
}

.instructor-single__role {
    margin: 0;
    color: var(--ta-muted);
    font-family: var(--ta-font-body);
    font-size: 16px;
}

.instructor-single__contacts {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
}

.instructor-single__contacts div {
    padding-top: 12px;
    border-top: 1px solid var(--ta-line);
}

.instructor-single__contacts dt {
    margin-bottom: 4px;
    color: var(--ta-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.instructor-single__contacts dd {
    margin: 0;
    color: var(--ta-ink);
    font-weight: 700;
}

.instructor-single__contacts a {
    color: inherit;
    text-decoration: none;
}

.instructor-single__contacts a:hover,
.instructor-single__list a:hover {
    color: var(--ta-red);
}

.instructor-single__content {
    padding: 28px;
}

.instructor-tabs__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.instructor-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--ta-line);
}

.instructor-tabs__nav label {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    border: 1px solid var(--ta-line);
    border-bottom: 0;
    background: #fff;
    color: var(--ta-ink);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.instructor-tabs__input:nth-of-type(1):checked ~ .instructor-tabs__nav label:nth-child(1),
.instructor-tabs__input:nth-of-type(2):checked ~ .instructor-tabs__nav label:nth-child(2),
.instructor-tabs__input:nth-of-type(3):checked ~ .instructor-tabs__nav label:nth-child(3),
.instructor-tabs__input:nth-of-type(4):checked ~ .instructor-tabs__nav label:nth-child(4) {
    background: var(--ta-red);
    border-color: var(--ta-red);
    color: #fff;
}

.instructor-tabs__panel {
    display: none;
}

.instructor-tabs__input:nth-of-type(1):checked ~ .instructor-tabs__panels .instructor-tabs__panel:nth-child(1),
.instructor-tabs__input:nth-of-type(2):checked ~ .instructor-tabs__panels .instructor-tabs__panel:nth-child(2),
.instructor-tabs__input:nth-of-type(3):checked ~ .instructor-tabs__panels .instructor-tabs__panel:nth-child(3),
.instructor-tabs__input:nth-of-type(4):checked ~ .instructor-tabs__panels .instructor-tabs__panel:nth-child(4) {
    display: block;
}

.instructor-tabs__panel h2 {
    margin: 0 0 18px;
    font-size: 26px;
    text-transform: uppercase;
}

.instructor-single__text,
.instructor-tabs__panel .entry-content {
    max-width: 780px;
    color: var(--ta-text);
    font-family: var(--ta-font-body);
    font-size: 17px;
    line-height: 1.75;
}

.instructor-single__list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.instructor-single__list li {
    position: relative;
    padding: 16px 18px 16px 44px;
    border: 1px solid var(--ta-line);
    background: #fbfbfb;
    color: var(--ta-ink);
    font-weight: 700;
}

.instructor-single__list li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 23px;
    width: 8px;
    height: 8px;
    background: var(--ta-red);
}

.instructor-single__list a {
    color: inherit;
    text-decoration: none;
}

.instructor-single__empty {
    margin: 0;
    padding: 18px;
    background: #f7f7f7;
    border-left: 4px solid var(--ta-red);
    color: var(--ta-muted);
    font-family: var(--ta-font-body);
}

.product-single__price-label {
    color: var(--ta-ink);
    font-size: 18px;
}

.product-single__price,
.product-single__price .amount {
    color: var(--ta-ink);
    font-size: 26px;
    font-weight: 700;
}

.product-single__stock {
    margin: 12px 0;
}

.product-single__stock .stock {
    margin: 0;
}

.product-single__buybox .cart {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.quantity .qty {
    width: 72px;
    height: 42px;
    border: 1px solid #d2d3d3;
    text-align: center;
}

.product-single__description {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--ta-line);
    font-family: var(--ta-font-body);
}

.product-single__after {
    margin-top: 28px;
}

.woocommerce-tabs {
    padding-top: 16px;
}

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

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    border-bottom-color: var(--ta-line);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border-radius: 0;
    border-color: var(--ta-line);
    background: #fff;
}

.woocommerce div.product .woocommerce-tabs .panel {
    padding: 18px;
    border: 1px solid var(--ta-line);
    border-top: 0;
}

.side-minicart {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
}

.side-minicart.is-open {
    pointer-events: auto;
}

.side-minicart__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .42);
    opacity: 0;
    transition: opacity .2s ease;
}

.side-minicart.is-open .side-minicart__backdrop {
    opacity: 1;
}

.side-minicart__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, 100%);
    height: 100%;
    padding: 22px;
    display: flex;
    flex-direction: column;
    background: #fff;
    transform: translateX(100%);
    transition: transform .2s ease;
}

.side-minicart.is-open .side-minicart__panel {
    transform: translateX(0);
}

.side-minicart__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--ta-line);
}

.side-minicart__header h2 {
    margin: 0;
}

.side-minicart__close {
    width: 34px;
    height: 34px;
    border: 1px solid var(--ta-line);
    background: #fff;
    cursor: pointer;
}

.side-minicart__content {
    overflow: auto;
    padding: 16px 0;
}

.woocommerce-mini-cart {
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce-mini-cart-item {
    position: relative;
    padding: 0 28px 14px 0;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--ta-line);
}

.side-minicart__item-link {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
    color: var(--ta-ink);
}

.side-minicart__item-image img {
    width: 74px;
    aspect-ratio: 1;
    object-fit: contain;
    border: 1px solid var(--ta-line);
}

.side-minicart__item-title {
    display: block;
    font-weight: 700;
}

.woocommerce-mini-cart-item .remove {
    position: absolute;
    right: 0;
    top: 0;
    color: var(--ta-red) !important;
}

.woocommerce-mini-cart__total {
    padding-top: 14px;
    border-top: 1px solid var(--ta-line);
    font-size: 18px;
}

.woocommerce-mini-cart__buttons {
    display: grid;
    gap: 10px;
}

.site-footer {
    margin-top: 30px;
    padding: 24px 0 16px;
    background: var(--ta-black);
    color: #ddd;
}

.site-footer a {
    color: #ddd;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.site-footer h3 {
    color: #fff;
    font-size: 20px;
}

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

.site-footer li {
    margin-bottom: 6px;
}

.site-footer__bottom {
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid #191919;
    font-size: 11px;
    text-transform: uppercase;
}

.woocommerce table.shop_table {
    border-radius: 0;
    border-color: var(--ta-line);
}

.woocommerce table.shop_table th {
    color: var(--ta-ink);
}

.woocommerce .quantity.jt-quantity {
    width: 118px;
    height: 44px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    align-items: stretch;
    border: 1px solid #d2d3d3;
    background: #fff;
}

.woocommerce .quantity.jt-quantity .qty {
    width: 100%;
    height: 42px;
    min-width: 0;
    padding: 0 4px;
    border: 0;
    border-left: 1px solid #d2d3d3;
    border-right: 1px solid #d2d3d3;
    text-align: center;
    appearance: textfield;
    -moz-appearance: textfield;
}

.woocommerce .quantity.jt-quantity .qty::-webkit-outer-spin-button,
.woocommerce .quantity.jt-quantity .qty::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.woocommerce .jt-quantity__button {
    width: 34px;
    min-height: 42px;
    padding: 0;
    border: 0;
    background: #fff;
    color: var(--ta-ink);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.woocommerce .jt-quantity__button:hover,
.woocommerce .jt-quantity__button:focus {
    color: var(--ta-red);
    outline: none;
}

.woocommerce-cart-form .product-quantity {
    min-width: 138px;
}

.woocommerce-cart .entry-content > .woocommerce {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 32px;
    align-items: start;
}

.woocommerce-cart .entry-content > .woocommerce > .woocommerce-notices-wrapper,
.woocommerce-cart .entry-content > .woocommerce > .woocommerce-message,
.woocommerce-cart .entry-content > .woocommerce > .woocommerce-info,
.woocommerce-cart .entry-content > .woocommerce > .woocommerce-error {
    grid-column: 1 / -1;
}

.woocommerce-cart .woocommerce-cart-form {
    grid-column: 1;
    width: 100%;
    min-width: 0;
}

.woocommerce-cart .woocommerce-cart-form.is-updating {
    opacity: .65;
    pointer-events: none;
}

.woocommerce-cart .cart-collaterals {
    grid-column: 2;
    width: 100%;
    min-width: 0;
}

.woocommerce-cart .cart-collaterals .cart_totals {
    float: none;
    width: auto;
}

.woocommerce-checkout form.checkout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
    column-gap: 32px;
    row-gap: 12px;
    align-items: start;
}

.woocommerce-checkout #customer_details {
    grid-column: 1;
    grid-row: 1;
    width: auto;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
    grid-column: 2;
    width: auto;
}

.woocommerce-checkout #order_review_heading {
    grid-row: 1;
    align-self: start;
    margin: 0 0 12px !important;
}

.woocommerce-checkout #order_review {
    grid-row: 1;
    align-self: start;
    margin-top: 58px !important;
    position: sticky;
    top: 124px;
}

.admin-bar.woocommerce-checkout #order_review {
    top: 156px;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
    float: none;
    width: 100%;
}

.woocommerce-checkout .col2-set .col-2 {
    margin-top: 24px;
}

.woocommerce-checkout form .form-row {
    margin-bottom: 14px;
}

.woocommerce-checkout form .form-row-wide,
.woocommerce-checkout form .form-row-first,
.woocommerce-checkout form .form-row-last {
    float: none;
    width: 100%;
}

.woocommerce-cart-form .product-thumbnail img,
.woocommerce table.shop_table .product-thumbnail img {
    width: 82px;
    height: 82px;
    object-fit: contain;
    background: #f7f7f7;
}

.woocommerce-cart-form .product-name a,
.woocommerce-checkout-review-order-table .product-name {
    color: var(--ta-ink);
    font-weight: 700;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields {
    border: 1px solid var(--ta-line);
    background: #fff;
    padding: 24px;
}

.woocommerce .cart-collaterals .cart_totals h2,
.woocommerce-checkout h3 {
    margin-top: 0;
    color: var(--ta-ink);
    font-size: 22px;
    text-transform: uppercase;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    min-height: 44px;
    border: 1px solid #d6d6d6;
    color: var(--ta-ink);
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout #payment #place_order {
    width: 100%;
    height: 56px;
    min-height: 56px;
    box-sizing: border-box;
    padding: 0 24px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: var(--ta-red);
    font-size: 18px;
    line-height: 56px !important;
    text-align: center;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button br {
    display: none !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:focus,
.woocommerce-checkout #payment #place_order:hover,
.woocommerce-checkout #payment #place_order:focus {
    background: #050505;
    color: #fff;
}

.woocommerce-cart table.cart td.actions .coupon {
    width: min(100%, 650px) !important;
    max-width: 650px;
    display: flex !important;
    align-items: stretch;
    gap: 10px;
    float: none !important;
    text-align: left;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
    width: auto !important;
    flex: 1 1 360px;
    min-width: 0;
    height: 44px;
    padding: 0 14px;
    float: none !important;
}

.woocommerce-cart table.cart td.actions .coupon .button {
    flex: 0 0 auto;
    height: 44px;
    min-height: 44px;
    padding: 0 26px;
    float: none !important;
    white-space: nowrap;
}

.woocommerce-cart table.cart td.product-quantity .quantity {
    width: 118px !important;
    height: 44px !important;
    display: inline-flex !important;
    flex-flow: row nowrap !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    border: 1px solid #d2d3d3 !important;
    background: #fff;
    vertical-align: middle;
    overflow: hidden;
}

.woocommerce-cart table.cart td.product-quantity .quantity > * {
    position: static !important;
    margin: 0 !important;
}

.woocommerce-cart table.cart td.product-quantity .quantity .qty,
.woocommerce-cart table.cart td.product-quantity .quantity input.qty {
    order: 2;
    width: 50px !important;
    flex: 0 0 50px !important;
    height: 42px !important;
    min-height: 42px;
    padding: 0 !important;
    border: 0 !important;
    border-left: 1px solid #d2d3d3 !important;
    border-right: 1px solid #d2d3d3 !important;
    box-shadow: none !important;
    text-align: center;
}

.woocommerce-cart table.cart td.product-quantity .quantity button,
.woocommerce-cart table.cart td.product-quantity .quantity .jt-quantity__button {
    width: 34px !important;
    flex: 0 0 34px !important;
    height: 42px !important;
    min-height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    border: 0 !important;
    background: #fff !important;
    color: var(--ta-ink) !important;
    line-height: 1 !important;
}

.woocommerce-cart table.cart td.product-quantity .quantity [data-quantity-action="decrease"] {
    order: 1;
}

.woocommerce-cart table.cart td.product-quantity .quantity [data-quantity-action="increase"] {
    order: 3;
}

.woocommerce-cart table.cart td.product-quantity .quantity .screen-reader-text {
    position: absolute !important;
}

.woocommerce-cart table.cart td.actions > .button {
    display: none !important;
    float: right;
    height: 44px;
    min-height: 44px;
    padding: 0 26px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-top-color: var(--ta-red);
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--ta-red);
}

.woocommerce-pagination {
    margin-top: 24px;
}

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

.woocommerce nav.woocommerce-pagination ul li {
    border: 1px solid var(--ta-line);
    margin-right: 5px;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    min-width: 36px;
    min-height: 36px;
    display: grid;
    place-items: center;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--ta-red);
    color: #fff;
}

/* Front page tactical redesign */
.site-topline {
    border-bottom: 1px solid #191919;
    background: #050505;
    color: #bdbdbd;
}

.site-topline__inner {
    min-height: 36px;
    font-size: 11px;
    letter-spacing: .02em;
}

.site-topline__benefits,
.site-topline__links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-topline__benefits span {
    position: relative;
    padding-left: 18px;
}

.site-topline__benefits span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border: 1px solid var(--ta-red);
    transform: translateY(-50%) rotate(45deg);
}

.site-topline a,
.site-topline__links {
    color: #d7d7d7;
}

.site-header {
    background: radial-gradient(circle at 50% 0, #171717, #050505 58%);
    border-bottom: 1px solid #1d1d1d;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.admin-bar .site-header {
    top: 32px;
}

.site-header__main {
    height: 92px;
    grid-template-columns: 270px minmax(320px, 1fr) auto;
}

.site-branding {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.site-branding img {
    width: 150px;
    height: auto;
    max-height: 78px;
}

.site-branding__text {
    letter-spacing: .08em;
}

.header-search form {
    overflow: hidden;
    border: 1px solid #333;
    border-radius: 24px;
    background: #111;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.header-search input[type="search"] {
    height: 48px;
    padding: 0 22px;
    background: transparent;
    color: #fff;
}

.header-search input[type="search"]::placeholder {
    color: #9c9c9c;
}

.header-search button {
    width: 62px;
    background: linear-gradient(135deg, var(--ta-red-dark), var(--ta-red));
}

.header-search button::before {
    content: "⌕";
    font-size: 23px;
}

.site-header__actions {
    gap: 24px;
}

.header-account,
.mini-cart-toggle {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-align: left;
}

.header-account:hover,
.mini-cart-toggle:hover {
    color: #fff;
    text-decoration: none;
}

.header-account__icon,
.mini-cart-toggle__icon {
    width: 30px;
    height: 30px;
    position: relative;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.header-account__icon svg,
.mini-cart-toggle__icon svg {
    width: 30px;
    height: 30px;
    display: block;
}

.header-account strong,
.mini-cart-toggle__label strong {
    display: block;
    color: #fff;
    font-size: 13px;
    line-height: 1.1;
}

.header-account small,
.mini-cart-toggle__label small {
    display: block;
    margin-top: 3px;
    color: #a7a7a7;
    font-family: var(--ta-font-body);
    font-size: 11px;
    font-weight: 400;
    text-transform: none;
}

.mini-cart-toggle__count {
    position: absolute;
    top: -7px;
    left: 22px;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--ta-red);
    font-size: 10px;
}

.catalog-nav {
    border-bottom: 0;
    box-shadow: 0 1px 14px rgba(0, 0, 0, .08);
}

.catalog-nav a {
    padding: 18px 24px;
    font-size: 18px;
    letter-spacing: .02em;
}

.catalog-nav .catalog-nav__home {
    width: 56px;
    min-height: 56px;
    padding: 0;
    flex: 0 0 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.catalog-nav > .container > ul > li + li > a,
.catalog-nav .menu > li + li > a {
    border-left: 1px solid #ededed;
}

.page-shell--home {
    padding-top: 0;
    background: linear-gradient(180deg, #f5f5f5, #fff 460px);
}

.page-shell--home .container {
    width: min(1320px, calc(100% - 32px));
}

.home-sections {
    gap: 34px;
    padding: 28px 0 0;
}

.home-hero {
    height: 420px;
    min-height: 420px;
    padding: 0;
    align-items: center;
    border-bottom: 0;
    touch-action: pan-y;
    user-select: none;
}

.home-hero::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .62) 33%, rgba(0, 0, 0, .18) 100%);
}

.home-hero__inner {
    position: relative;
    z-index: 2;
}

.home-hero__content {
    max-width: 520px;
    padding: 64px 0;
}

.home-hero__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--ta-red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.home-hero h1 {
    margin-bottom: 4px;
    font-size: clamp(48px, 6vw, 76px);
    letter-spacing: .02em;
}

.home-hero__lead {
    margin: 0 0 18px;
    color: var(--ta-red);
    font-family: var(--ta-font-display);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.05;
    text-transform: uppercase;
}

.home-hero p:not(.home-hero__lead) {
    max-width: 420px;
    color: #e8e8e8;
    font-size: 16px;
}

.button--outline {
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, .86);
    background: transparent;
    color: #fff;
}

.button--outline:hover {
    border-color: var(--ta-red);
    background: var(--ta-red);
}

.home-hero__dots {
    right: 50%;
    bottom: 22px;
    transform: translateX(50%);
}

.home-hero__dots span {
    width: 9px;
    height: 9px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    background: transparent;
}

.home-hero__dots span.is-active {
    border-color: var(--ta-red);
    background: var(--ta-red);
}

.home-hero__arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: #fff;
    color: #111;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 1;
    transform: translateY(-50%);
    transition: background .2s ease, color .2s ease;
}

.home-hero__arrow:hover,
.home-hero__arrow:focus {
    background: var(--ta-red);
    color: #fff;
    outline: none;
}

.home-hero__arrow--prev {
    left: 24px;
}

.home-hero__arrow--next {
    right: 24px;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.section-heading h2 {
    position: relative;
    margin: 0;
    padding-right: 58px;
    color: #171717;
    font-size: 23px;
    text-transform: uppercase;
}

.section-heading h2::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 42px;
    height: 2px;
    background: var(--ta-red);
}

.section-heading a {
    color: #191919;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.woocommerce ul.products {
    gap: 24px;
}

.product-card {
    min-height: 0;
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid #e6e6e6;
    outline: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .035);
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, .11);
}

.product-card__image {
    aspect-ratio: 1.18 / 1;
    border-bottom: 0;
}

.product-card__link {
    min-height: 0;
    flex: 0 0 auto;
    display: block;
}

.product-card__content {
    padding: 10px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: contain;
    object-position: center center;
}

.product-card__body {
    padding: 0;
    flex: 1;
    display: block;
    align-items: flex-start;
    text-align: left;
}

.product-card h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 0;
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.25;
}

.product-card__sku {
    min-height: 0;
    margin-bottom: 7px;
    color: #858585;
    font-family: var(--ta-font-body);
    font-size: 11px;
    line-height: 1.25;
}

.woocommerce ul.products li.product .price,
.product-card__price,
.product-card__price .amount {
    margin: 0;
    font-size: 19px;
    line-height: 1.2;
}

.product-card__price del {
    margin: 0 8px 0 0;
    position: relative;
    display: inline-block;
    color: #999;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    vertical-align: middle;
    text-decoration: none;
}

.product-card__price del::after {
    content: "";
    position: absolute;
    top: 59%;
    right: 0;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: translateY(-50%);
    pointer-events: none;
}

.product-card__price del .amount {
    font-size: 16px;
    line-height: 1;
    vertical-align: middle;
}

.product-card__price ins {
    text-decoration: none;
    vertical-align: middle;
}

.product-card__actions {
    margin-top: auto;
    padding-top: 0;
    display: block;
}

.product-card .button {
    width: 100%;
    min-height: 34px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    background: #050505;
    font-size: 13px;
    line-height: 1;
    text-align: center;
}

.woocommerce ul.products li.product .product-card__actions .button {
    width: 100%;
    height: 34px;
    min-height: 34px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.product-card .button:hover {
    background: var(--ta-red);
}

.onsale,
.woocommerce span.onsale {
    top: 12px;
    left: 12px;
    background: var(--ta-red);
}

.home-trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #ded8ce;
    background: #f2eee8;
}

.home-trust-strip div {
    padding: 18px 22px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 3px;
    border-left: 1px solid #ded8ce;
}

.home-trust-strip div:first-child {
    border-left: 0;
}

.home-trust-strip strong {
    color: #191919;
    font-size: 13px;
    text-transform: uppercase;
}

.home-trust-strip span,
.home-trust-strip a {
    color: #6b6259;
    font-family: var(--ta-font-body);
    font-size: 12px;
}

.trust-strip__icon {
    width: 28px;
    height: 28px;
    color: var(--ta-red);
}

.trust-strip__icon--image {
    display: block;
    object-fit: contain;
}

.trust-strip__text {
    display: grid;
    gap: 3px;
}

.home-testimonials,
.home-partners {
    overflow: hidden;
}

.home-testimonials__slider {
    position: relative;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 14px;
}

.home-testimonials__viewport {
    overflow: hidden;
}

.home-testimonials__track {
    display: flex;
    gap: 18px;
    transition: transform .35s ease;
}

.home-testimonials__arrow {
    width: 44px;
    height: 44px;
    border: 1px solid var(--ta-red);
    background: #fff;
    color: var(--ta-red);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.home-testimonials__arrow:hover,
.home-testimonials__arrow:focus {
    background: var(--ta-red);
    color: #fff;
}

.home-carousel {
    position: relative;
    overflow: hidden;
}

.home-carousel::before,
.home-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 88px;
    pointer-events: none;
}

.home-carousel::before {
    left: 0;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.home-carousel::after {
    right: 0;
    background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.home-carousel__track {
    width: max-content;
    display: flex;
}

.home-carousel__set {
    display: flex;
    gap: 24px;
    padding-right: 24px;
}

.home-partners__carousel .home-carousel__track.is-ready {
    animation: home-carousel-scroll 34s linear infinite;
}

.home-partners__carousel:hover .home-carousel__track.is-ready {
    animation-play-state: paused;
}

.home-testimonial {
    position: relative;
    width: calc((100% - 36px) / 3);
    min-width: calc((100% - 36px) / 3);
    min-height: 240px;
    padding: 28px 26px 24px;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    align-items: center;
    border: 1px solid #d9d2ca;
    border-top: 4px solid var(--ta-red);
    background: linear-gradient(180deg, #fff, #fbfaf8);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .07);
}

.home-testimonial__quote {
    position: absolute;
    top: 16px;
    right: 22px;
    color: rgba(196, 5, 5, .13);
    font-family: Georgia, serif;
    font-size: 86px;
    line-height: .7;
}

.home-testimonial p {
    position: relative;
    z-index: 1;
    max-width: none;
    margin: 0;
    color: #3f3933;
    font-family: var(--ta-font-body);
    font-size: 14px;
    line-height: 1.7;
    align-self: center;
}

.home-testimonial strong {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: var(--ta-ink);
    font-size: 14px;
    text-transform: uppercase;
}

.home-testimonial strong::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--ta-red);
}

.home-partner {
    width: 210px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e2e2;
    background: #fff;
}

.home-partner span {
    color: var(--partner-color, var(--ta-red));
    filter: grayscale(1);
    opacity: .48;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}

.home-partner img {
    display: block;
    max-width: 78%;
    max-height: 58px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .68;
    transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}

.home-partner:nth-child(6n + 1) {
    --partner-color: #0073cf;
}

.home-partner:nth-child(6n + 2) {
    --partner-color: var(--ta-red);
}

.home-partner:nth-child(6n + 3) {
    --partner-color: #0055a5;
}

.home-partner:nth-child(6n + 4) {
    --partner-color: #6f6f6f;
}

.home-partner:nth-child(6n + 5) {
    --partner-color: #111;
}

.home-partner:nth-child(6n + 6) {
    --partner-color: #0b8f49;
}

.home-partner:hover span {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-1px);
}

.home-partner:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-1px);
}

@keyframes home-carousel-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.home-news-social {
    display: grid;
    grid-template-columns: 1.2fr .9fr;
    background: #080808;
    color: #fff;
}

.home-newsletter,
.home-social {
    padding: 32px 38px;
}

.home-social {
    border-left: 1px solid #2b2b2b;
}

.home-news-social h2,
.shop-news-social h2 {
    margin-bottom: 8px;
    color: #fff;
    font-size: 21px;
    text-transform: uppercase;
}

.home-news-social p,
.shop-news-social p {
    margin: 0 0 18px;
    color: #bfbfbf;
    font-family: var(--ta-font-body);
}

.home-newsletter form {
    display: grid;
    grid-template-columns: 1fr auto;
    max-width: 580px;
}

.home-newsletter__notice {
    max-width: 580px;
    margin: 0 0 14px;
    padding: 11px 14px;
    border-left: 4px solid var(--ta-red);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-family: var(--ta-font-body);
    font-size: 14px;
}

.home-newsletter__notice--success {
    border-left-color: #2fbd5b;
}

.home-newsletter input {
    min-height: 48px;
    border: 0;
    padding: 0 16px;
}

.home-newsletter button {
    min-height: 48px;
    border: 0;
    padding: 0 24px;
    background: linear-gradient(135deg, var(--ta-red-dark), var(--ta-red));
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.home-social__links {
    display: flex;
    gap: 12px;
}

.home-social__links a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #1d1d1d;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.home-social__links a svg {
    width: 18px;
    height: 18px;
    display: block;
}

.home-faq {
    padding: 26px 30px 30px;
    border: 1px solid #ececec;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .035);
}

.home-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.home-faq details {
    border: 1px solid #e6e6e6;
    background: #fafafa;
}

.home-faq summary {
    position: relative;
    padding: 15px 42px 15px 16px;
    color: #171717;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    list-style: none;
    text-transform: uppercase;
}

.home-faq summary::-webkit-details-marker {
    display: none;
}

.home-faq summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 16px;
    color: var(--ta-red);
    font-size: 24px;
    line-height: 1;
    transform: translateY(-50%);
}

.home-faq details[open] summary::after {
    content: "-";
}

.home-faq p {
    margin: 0;
    padding: 0 16px 16px;
    color: #5f5f5f;
    font-family: var(--ta-font-body);
}

/* Shop archive and single product redesign */
.shop-archive,
.product-single {
    padding-top: 0;
    background: #f6f6f6;
}

.shop-hero {
    min-height: 285px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .46), rgba(0, 0, 0, .18)),
        url("/wp-content/uploads/2026/06/ChatGPT-Image-Jun-30-2026-04_30_12-PM.png") center / cover;
    color: #fff;
}

.shop-hero .breadcrumbs,
.shop-hero .woocommerce-breadcrumb {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, .75);
}

.shop-hero .breadcrumbs a,
.shop-hero .woocommerce-breadcrumb a {
    color: rgba(255, 255, 255, .82);
}

.shop-hero h1 {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(44px, 5vw, 66px);
    letter-spacing: .03em;
    text-transform: uppercase;
}

.shop-hero__description {
    max-width: 560px;
    color: #f1f1f1;
    font-family: var(--ta-font-body);
    font-size: 17px;
}

.shop-archive__shell,
.product-single > .container {
    width: min(1320px, calc(100% - 32px));
}

.shop-archive__shell {
    padding: 34px 0 0;
}

.shop-archive__layout {
    grid-template-columns: 285px minmax(0, 1fr);
    gap: 42px;
}

.shop-sidebar {
    border: 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
}

.shop-filter {
    padding: 22px 20px;
    border-bottom: 1px solid #ececec;
}

.shop-filter__title {
    position: relative;
    margin: 0 0 18px;
    padding-right: 48px;
    color: #171717;
    font-size: 17px;
    text-transform: uppercase;
}

.shop-filter__title::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 38px;
    height: 2px;
    background: var(--ta-red);
}

.shop-filter__list,
.shop-check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.shop-filter__list li,
.shop-check-list li {
    margin-bottom: 10px;
}

.shop-filter__list a {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: #252525;
    font-family: var(--ta-font-body);
    font-size: 14px;
}

.shop-filter__list a span:last-child {
    color: #888;
}

.shop-check-list label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #252525;
    font-family: var(--ta-font-body);
    font-size: 14px;
}

.shop-check-list input {
    width: 14px;
    height: 14px;
    accent-color: var(--ta-red);
}

.shop-price-filter > span {
    display: block;
    margin-bottom: 18px;
    color: #252525;
    font-weight: 700;
}

.shop-price-filter__track {
    position: relative;
    height: 18px;
    margin: 0 0 14px;
    background: linear-gradient(
        to right,
        #d8d0c7 0 var(--price-start, 0%),
        var(--ta-red) var(--price-start, 0%) var(--price-end, 100%),
        #d8d0c7 var(--price-end, 100%) 100%
    );
    background-clip: content-box;
    padding: 7px 0;
}

.shop-price-filter__track input[type="range"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 18px;
    margin: 0;
    appearance: none;
    background: transparent;
    pointer-events: none;
}

.shop-price-filter__track input[type="range"]::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
    border: 2px solid var(--ta-red);
    border-radius: 50%;
    background: #fff;
    appearance: none;
    cursor: pointer;
    pointer-events: auto;
}

.shop-price-filter__track input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border: 2px solid var(--ta-red);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    pointer-events: auto;
}

.shop-price-filter__track input[type="range"]::-moz-range-track {
    background: transparent;
    border: 0;
}

.shop-price-filter__inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.shop-price-filter__inputs span {
    color: #888;
    font-family: var(--ta-font-body);
    font-size: 12px;
}

.shop-price-filter__inputs span:last-child {
    text-align: right;
}

.shop-price-filter__submit {
    width: 100%;
    min-height: 34px;
    margin-top: 14px;
    border: 0;
    background: var(--ta-red);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.shop-price-filter__submit:hover {
    background: var(--ta-red-dark);
}

.shop-filter__reset {
    min-height: 48px;
    margin: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050505;
    color: #fff !important;
    font-weight: 700;
    text-transform: uppercase;
}

.shop-filter__reset:hover {
    background: var(--ta-red);
    color: #fff !important;
    text-decoration: none;
}

.shop-archive__toolbar {
    margin: 0 0 24px;
    padding: 0;
    border: 0;
}

.shop-archive__tools {
    display: flex;
    align-items: center;
    gap: 18px;
}

.shop-archive__toolbar .woocommerce-result-count {
    color: #555;
    font-family: var(--ta-font-body);
}

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

.shop-archive__toolbar select {
    min-width: 210px;
    min-height: 42px;
    border-color: #e1e1e1;
}

.woocommerce nav.woocommerce-pagination {
    margin-top: 30px;
}

.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    justify-content: center;
    gap: 8px;
}

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

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    min-width: 34px;
    min-height: 34px;
    background: #fff;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--ta-red);
}

.shop-trust-strip {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #ded8ce;
    background: #f2eee8;
}

.shop-trust-strip div {
    padding: 20px 26px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 4px;
    border-left: 1px solid #ded8ce;
}

.shop-trust-strip div:first-child {
    border-left: 0;
}

.shop-trust-strip strong {
    color: #191919;
    font-size: 14px;
    text-transform: uppercase;
}

.shop-trust-strip span {
    color: #6b6259;
    font-family: var(--ta-font-body);
    font-size: 12px;
}

.shop-news-social {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1.2fr .9fr;
    background: #080808;
    color: #fff;
}

.contact-page {
    padding-top: 0;
}

.contact-hero {
    padding: 54px 0 46px;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .54)),
        #080808;
    color: #fff;
}

.contact-hero .woocommerce-breadcrumb,
.contact-hero .breadcrumbs {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .72);
}

.contact-hero .woocommerce-breadcrumb a,
.contact-hero .breadcrumbs a {
    color: #fff;
}

.contact-hero__eyebrow,
.contact-card__label {
    margin: 0 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ta-red);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-hero__eyebrow::after,
.contact-card__label::after {
    content: "";
    width: 42px;
    height: 2px;
    background: var(--ta-red);
}

.contact-hero h1 {
    max-width: 720px;
    margin: 0 0 16px;
    color: #fff;
    font-size: 46px;
    line-height: 1.05;
    text-transform: uppercase;
}

.contact-hero p:last-child {
    max-width: 680px;
    margin: 0;
    color: #d8d8d8;
    font-family: var(--ta-font-body);
    font-size: 16px;
    line-height: 1.75;
}

.contact-page__grid {
    padding: 48px 0 64px;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 28px;
}

.contact-card {
    border: 1px solid #dedede;
    background: #fff;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .055);
}

.contact-card--info {
    padding: 34px;
    border-top: 4px solid var(--ta-red);
}

.contact-card--form {
    padding: 34px 38px;
}

.contact-card h2 {
    margin: 0 0 24px;
    color: var(--ta-ink);
    font-size: 28px;
    text-transform: uppercase;
}

.contact-card__details {
    margin: -12px 0 24px;
    color: var(--ta-muted);
    font-family: var(--ta-font-body);
    font-size: 15px;
    line-height: 1.5;
}

.contact-list {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 18px;
    list-style: none;
}

.contact-list li {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.contact-list__icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(196, 5, 5, .25);
    background: rgba(196, 5, 5, .06);
    color: var(--ta-red);
    font-weight: 700;
    text-transform: uppercase;
}

.contact-list__icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.contact-list strong {
    display: block;
    margin-bottom: 3px;
    color: var(--ta-muted);
    font-family: var(--ta-font-body);
    font-size: 12px;
    text-transform: uppercase;
}

.contact-list a {
    color: var(--ta-ink);
    font-size: 18px;
    font-weight: 700;
}

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

.contact-form__row {
    display: grid;
    gap: 7px;
}

.contact-form__row--split {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form__row--split span {
    display: grid;
    gap: 7px;
}

.contact-form label {
    color: var(--ta-ink);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d6d6d6;
    background: #fff;
    color: var(--ta-ink);
    font-family: var(--ta-font-body);
    font-size: 14px;
    outline: 0;
}

.contact-form input {
    height: 46px;
    padding: 0 14px;
}

.contact-form input[type="file"] {
    height: auto;
    padding: 12px 14px;
}

.contact-form textarea {
    min-height: 150px;
    padding: 13px 14px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--ta-red);
    box-shadow: 0 0 0 3px rgba(196, 5, 5, .1);
}

.contact-form__submit {
    width: fit-content;
    min-width: 190px;
    height: 48px;
}

.contact-form__notice {
    margin: 0 0 18px;
    padding: 12px 14px;
    border-left: 4px solid var(--ta-red);
    background: #f7f7f7;
    font-family: var(--ta-font-body);
}

.contact-form__notice--success {
    border-left-color: #249b3a;
}

.custom-contact-form__hint {
    margin: -2px 0 0;
    color: var(--ta-muted);
    font-family: var(--ta-font-body);
    font-size: 13px;
}

.product-single {
    padding-top: 34px;
}

.product-single__article > .woocommerce-breadcrumb {
    margin-bottom: 22px;
}

.product-single__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
    gap: 46px;
    align-items: start;
}

.product-single__gallery-main {
    border: 1px solid #e5e5e5;
    background: #fff;
}

.product-single__gallery-main img {
    width: 100%;
    aspect-ratio: 1.18 / 1;
    object-fit: contain;
    padding: 28px;
}

.product-single__thumbs {
    gap: 12px;
}

.product-single__thumbs-slider {
    position: relative;
    margin-top: 10px;
}

.product-single__thumbs-arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    display: none;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8d8d8;
    border-radius: 50%;
    background: #fff;
    color: #171717;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .12);
    font-size: 24px;
    font-family: Arial, sans-serif;
    font-weight: 400;
    line-height: 18px;
    cursor: pointer;
    transform: translateY(-50%);
}

.product-single__thumbs-slider.is-scrollable .product-single__thumbs-arrow {
    display: flex;
}

.product-single__thumbs-slider.is-scrollable .product-single__thumbs-arrow:disabled {
    display: none;
}

.product-single__thumbs-arrow--previous {
    left: -12px;
}

.product-single__thumbs-arrow--next {
    right: -12px;
}

.product-single__thumb {
    border: 1px solid #e5e5e5;
    background: #fff;
}

.product-single__thumb.is-active {
    border-color: var(--ta-red);
}

.product-single__summary {
    padding-top: 36px;
}

.product-single__badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 8px;
    background: var(--ta-red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-single__summary h1 {
    margin-bottom: 14px;
    color: #171717;
    font-size: clamp(34px, 4vw, 46px);
    text-transform: none;
}

.product-single__rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.product-single__rating-row .star-rating {
    color: var(--ta-red);
}

.product-single__sku,
.product-single__brand,
.product-single__meta-line,
.product-single__excerpt {
    color: #555;
    font-family: var(--ta-font-body);
}

.product-single__brand {
    margin-bottom: 18px;
}

.product-single__brand a {
    color: var(--ta-red);
    font-weight: 700;
}

.product-single__meta-line {
    display: flex;
    gap: 24px;
    margin-bottom: 22px;
    font-weight: 700;
}

.product-single__meta-line .is-in-stock,
.product-single__meta-line .in-stock,
.product-single__meta-line .is-out-of-stock,
.product-single__meta-line .out-of-stock,
.product-single__delivery-note {
    font-family: var(--ta-font-body);
    font-size: 16px;
    font-weight: 400;
}

.product-single__meta-line .is-in-stock,
.product-single__meta-line .in-stock {
    color: #249b3a;
}

.product-single__meta-line .is-out-of-stock,
.product-single__meta-line .out-of-stock {
    color: #c40505;
}

.product-single__delivery-note {
    color: #333;
}

/* The stock message above the price is the only availability message shown. */
.product-single__buybox .stock {
    display: none;
}

.product-single__meta-line .is-out-of-stock + .product-single__delivery-note,
.product-single__meta-line .out-of-stock + .product-single__delivery-note {
    color: #c40505;
}

.product-single__price,
.product-single__price .amount {
    margin-bottom: 18px;
    color: #171717;
    font-size: 34px;
    font-weight: 700;
}

.product-single__price del {
    margin-right: 12px;
    color: #999;
    font-size: 22px;
    font-weight: 400;
    vertical-align: middle;
    text-decoration-thickness: 1px;
    text-decoration-skip-ink: none;
}

.product-single__price del .amount {
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    vertical-align: middle;
}

.product-single__price ins {
    text-decoration: none;
    vertical-align: middle;
}

.jt-gift-voucher-price-label {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    color: var(--ta-red);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-single__excerpt {
    max-width: 590px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.product-single__buybox {
    margin: 0 0 20px;
    padding: 0;
    border: 0;
    background: transparent;
}

.jt-gift-voucher-field {
    grid-column: 1 / -1;
    display: grid;
    gap: 8px;
    margin-bottom: 4px;
}

.jt-gift-voucher-field__label {
    color: var(--ta-ink);
    font-weight: 700;
    text-transform: uppercase;
}

.jt-gift-voucher-field__options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.jt-gift-voucher-field__option {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 44px;
    margin: 0;
    padding: 0 14px;
    border: 1px solid #d4d4d4;
    background: #fff;
    color: var(--ta-ink);
    cursor: pointer;
    font-family: var(--ta-font-body);
    font-weight: 700;
}

.jt-gift-voucher-field__option:has(input:checked) {
    border-color: var(--ta-red);
    box-shadow: 0 0 0 2px rgba(196, 5, 5, .1);
}

.jt-gift-voucher-field__option input {
    accent-color: var(--ta-red);
}

.jt-gift-voucher-field__input {
    width: 100%;
    height: 48px;
    border: 1px solid #d4d4d4;
    padding: 0 14px;
    background: #fff;
    color: var(--ta-ink);
    font-family: var(--ta-font-body);
    font-size: 15px;
    outline: 0;
}

.jt-gift-voucher-field__input:focus {
    border-color: var(--ta-red);
    box-shadow: 0 0 0 3px rgba(196, 5, 5, .1);
}

.jt-gift-voucher-field__hint,
.jt-gift-voucher-order-note {
    margin: 0;
    color: var(--ta-muted);
    font-family: var(--ta-font-body);
    font-size: 14px;
    line-height: 1.55;
}

.jt-gift-voucher-preview-link {
    width: max-content;
    margin: 4px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ta-red);
    cursor: pointer;
    font-family: var(--ta-font-body);
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.jt-gift-voucher-preview-link:hover,
.jt-gift-voucher-preview-link:focus {
    color: var(--ta-ink);
    outline: none;
}

.product-single__buybox .cart {
    display: grid;
    grid-template-columns: 120px minmax(220px, 1fr);
    align-items: stretch;
    gap: 12px;
    max-width: 440px;
}

/* Variable-product attributes sit above the quantity and add-to-cart controls. */
.product-single__buybox form.variations_form.cart {
    display: block;
    max-width: 440px;
}

.product-single__buybox .variations {
    width: 100%;
    margin: 0 0 16px;
    border: 0;
}

.product-single__buybox .variations tbody {
    display: grid;
    gap: 12px;
}

.product-single__buybox .variations tr {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: center;
    gap: 8px;
}

.product-single__buybox .variations th,
.product-single__buybox .variations td {
    display: block;
    padding: 0;
    text-align: left;
}

.product-single__buybox .variations th {
    min-height: 48px;
    display: flex;
    align-items: center;
    align-self: start;
}

.product-single__buybox .variations label {
    margin: 0;
    color: var(--ta-ink);
    font-family: var(--ta-font-body);
    font-size: 15px;
    font-weight: 700;
}

.product-single__buybox .variations select {
    width: 100%;
    min-height: 48px;
    margin: 0;
    padding: 0 38px 0 14px;
    border: 1px solid #d4d4d4;
    background-color: #fff;
    color: var(--ta-ink);
    font-family: var(--ta-font-body);
    font-size: 15px;
}

.product-single__buybox .variations .reset_variations {
    display: inline-block;
    margin-top: 7px;
    color: var(--ta-red);
    font-family: var(--ta-font-body);
    font-size: 13px;
}

.product-single__buybox .single_variation_wrap {
    margin-top: 16px;
}

.product-single__buybox .woocommerce-variation-price {
    margin: 0 0 18px;
}

.product-single__buybox .woocommerce-variation-price .price,
.product-single__buybox .woocommerce-variation-price .amount {
    color: #171717;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
}

.product-single__buybox .woocommerce-variation-price del {
    margin-right: 12px;
    color: #999;
    font-size: 22px;
    font-weight: 400;
    vertical-align: middle;
    text-decoration-thickness: 1px;
    text-decoration-skip-ink: none;
}

.product-single__buybox .woocommerce-variation-price del .amount {
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    vertical-align: middle;
}

.product-single__buybox .woocommerce-variation-price ins {
    text-decoration: none;
    vertical-align: middle;
}

.product-single__buybox .woocommerce-variation-add-to-cart {
    display: grid;
    grid-template-columns: 120px minmax(220px, 1fr);
    align-items: stretch;
    gap: 12px;
}

.product-single__buybox .quantity.jt-quantity {
    height: 48px;
}

.product-single__buybox .quantity.jt-quantity .qty {
    height: 46px;
}

.product-single__buybox .jt-quantity__button {
    min-height: 46px;
}

.product-single__buybox .single_add_to_cart_button {
    height: 48px;
    min-height: 48px;
    background: var(--ta-red);
}

.product-single__buybox .single_add_to_cart_button:hover {
    background: var(--ta-red-dark);
}

.product-single__production-note {
    margin: 14px 0 0;
    color: #c40505;
    font-family: var(--ta-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.woocommerce .product-single__buybox .single_add_to_cart_button.button.alt,
.woocommerce .product-single__buybox button.single_add_to_cart_button.button.alt {
    background: var(--ta-red) !important;
    color: #fff !important;
}

.woocommerce .product-single__buybox .single_add_to_cart_button.button.alt:hover,
.woocommerce .product-single__buybox button.single_add_to_cart_button.button.alt:hover {
    background: var(--ta-red-dark) !important;
    color: #fff !important;
}

.jt-gift-voucher-thankyou,
.jt-gift-voucher-download-card {
    margin: 24px 0;
    padding: 24px;
    border: 1px solid var(--ta-line);
    background: #fff;
}

.jt-gift-voucher-download-card h3 {
    margin: 0 0 14px;
    color: var(--ta-ink);
    font-size: 22px;
    text-transform: uppercase;
}

.jt-gift-voucher-download-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-single__made-in {
    margin-top: 24px;
    padding: 18px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-top: 1px dashed #cfcfcf;
    background: transparent;
}

.product-single__made-in img {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    object-fit: contain;
}

.product-single__made-in strong {
    color: #171717;
    font-size: 18px;
    text-transform: uppercase;
}

.product-single__custom {
    margin-top: 14px;
    padding: 20px;
    border: 1px solid #ded8ce;
    background: #fff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .035);
}

.product-single__custom h2 {
    margin: 0 0 10px;
    color: #171717;
    font-size: 20px;
    text-transform: uppercase;
}

.product-single__custom p,
.product-single__custom li {
    color: #4f4f4f;
    font-family: var(--ta-font-body);
}

.product-single__custom p {
    margin: 0 0 10px;
}

.product-single__custom p:last-child {
    margin-bottom: 0;
    font-weight: 700;
}

.product-single__custom ul {
    margin: 0 0 12px;
    padding-left: 18px;
}

.product-single__details {
    margin-top: 44px;
}

.product-single__tabs {
    display: flex;
    gap: 36px;
    border-bottom: 1px solid #dedede;
}

.product-single__tabs span {
    position: relative;
    padding: 0 0 16px;
    color: #171717;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-single__tabs span:first-child::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background: var(--ta-red);
}

.product-single__details-grid {
    padding-top: 24px;
}

.product-single__description {
    margin: 0;
    padding: 0;
    border: 0;
    color: #333;
    font-family: var(--ta-font-body);
    line-height: 1.8;
}

.product-single__related {
    margin-top: 46px;
}

.product-single__related > h2 {
    display: none;
}

.site-footer {
    margin-top: 0;
    padding: 0;
    background: #080808;
    color: #bcbcbc;
}

.site-footer__top {
    grid-template-columns: 1.25fr repeat(4, 1fr);
    gap: 34px;
    padding: 36px 0;
}

.site-footer__logo img {
    width: 105px;
    height: auto;
    margin-bottom: 16px;
}

.site-footer h3 {
    margin-bottom: 14px;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
}

.site-footer p,
.site-footer li {
    color: #bcbcbc;
    font-family: var(--ta-font-body);
    font-size: 13px;
}

.site-footer li {
    margin-bottom: 8px;
}

.site-footer a {
    color: #bcbcbc;
}

.site-footer a:hover {
    color: #fff;
}

.site-footer__social-links {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.site-footer__social-links a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid #404040;
    border-radius: 50%;
    color: #fff;
}

.site-footer__social-links a:hover {
    border-color: var(--ta-red);
    background: var(--ta-red);
    text-decoration: none;
}

.site-footer__social-links svg {
    width: 18px;
    height: 18px;
    display: block;
}

.site-footer__bottom {
    margin-top: 0;
    padding: 16px 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #242424;
    color: #8c8c8c;
    font-family: var(--ta-font-body);
    text-transform: none;
}

.site-footer__bottom p {
    margin: 0;
    font-size: 12px;
}

@media (max-width: 959px) {
    .site-topline__benefits,
    .header-search--desktop {
        display: none;
    }

    .site-topline__inner {
        justify-content: flex-end;
    }

    .woocommerce-cart .entry-content > .woocommerce,
    .woocommerce-checkout form.checkout {
        grid-template-columns: 1fr;
    }

    .woocommerce-cart .woocommerce-cart-form,
    .woocommerce-cart .cart-collaterals,
    .woocommerce-checkout #customer_details,
    .woocommerce-checkout #order_review_heading,
    .woocommerce-checkout #order_review {
        grid-column: 1;
    }

    .woocommerce-checkout #customer_details {
        grid-row: auto;
    }

    .woocommerce-checkout #order_review {
        position: static;
        margin-top: 0 !important;
    }

    .site-header__main {
        height: auto;
        min-height: 76px;
        grid-template-columns: 1fr auto;
        gap: 14px;
        padding: 12px 0;
    }

    .site-branding img {
        width: 150px;
        height: 56px;
    }

    .header-account {
        display: none;
    }

    .menu-toggle {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .catalog-nav {
        display: none;
    }

    .catalog-nav:not(.is-open) > .container {
        display: block;
    }

    .catalog-nav:not(.is-open) .catalog-nav__home {
        width: 100%;
        min-height: 48px;
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid #ededed;
    }

    .catalog-nav:not(.is-open) > .container > ul,
    .catalog-nav:not(.is-open) .menu {
        display: block;
    }

    .catalog-nav:not(.is-open) .sub-menu {
        position: static;
        display: block;
        padding: 0 0 0 16px;
        box-shadow: none;
        border: 0;
    }

    .catalog-nav.is-open .header-search--mobile {
        display: block;
        margin: 0 0 18px;
    }

    .shop-archive__layout,
    .product-single__layout,
    .course-single__layout,
    .instructor-single__layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        order: 2;
    }

    .shop-archive__products {
        order: 1;
    }

    .product-single__summary {
        padding-top: 0;
    }

    .course-single__summary {
        position: static;
        top: auto;
    }

    .instructor-single__profile {
        position: static;
        top: auto;
    }

    .woocommerce ul.products[class*="columns-"] li.product,
    .woocommerce-page ul.products[class*="columns-"] li.product {
        float: none !important;
        width: 100% !important;
        margin: 0 !important;
    }

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

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

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

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

    .home-trust-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-news-social {
        grid-template-columns: 1fr;
    }

    .home-carousel::before,
    .home-carousel::after {
        width: 48px;
    }

    .home-testimonials__slider {
        grid-template-columns: 40px minmax(0, 1fr) 40px;
        gap: 10px;
    }

    .home-testimonials__arrow {
        width: 40px;
        height: 40px;
    }

    .home-testimonial {
        width: calc((100% - 18px) / 2);
        min-width: calc((100% - 18px) / 2);
        min-height: 220px;
        padding: 28px;
    }

    .home-partner {
        width: 180px;
    }

    .shop-news-social {
        grid-template-columns: 1fr;
    }

    .home-social {
        border-top: 1px solid #2b2b2b;
        border-left: 0;
    }

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

@media (max-width: 640px) {
    .instructor-single__profile-body,
    .instructor-single__content {
        padding: 22px;
    }

    .instructor-single__profile h1 {
        font-size: 28px;
    }

    .instructor-tabs__nav {
        display: grid;
        grid-template-columns: 1fr;
        border-bottom: 0;
    }

    .instructor-tabs__nav label {
        border: 1px solid var(--ta-line);
    }

    .woocommerce-cart table.cart td.actions .coupon {
        flex-direction: column;
    }

    .woocommerce-cart table.cart td.actions .coupon .input-text,
    .woocommerce-cart table.cart td.actions .coupon .button {
        width: 100% !important;
        flex-basis: auto;
    }
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }

    .admin-bar .catalog-nav.is-open > .container {
        top: 46px;
    }
}

@media (max-width: 767px) {
    .site-topline__inner {
        align-items: stretch;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 8px;
        padding: 8px 0;
    }

    .site-topline__benefits,
    .site-topline__links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 16px;
    }

    .site-header__main {
        grid-template-columns: 1fr auto;
    }

    .header-search {
        grid-column: 1 / -1;
        order: 3;
    }

    .mini-cart-toggle__label {
        display: none;
    }

    .home-hero {
        height: 420px;
        min-height: 420px;
        padding: 0;
        align-items: center;
    }

    .home-hero__dots {
        right: 50%;
        left: auto;
        bottom: 20px;
        transform: translateX(50%);
    }

    .home-hero h1 {
        font-size: 46px;
    }

    .home-hero__lead {
        font-size: 28px;
    }

    .home-hero__content {
        padding: 54px 26px;
    }

    .home-hero__arrow {
        width: 28px;
        height: 28px;
        font-size: 24px;
    }

    .home-hero__arrow--prev {
        left: 12px;
    }

    .home-hero__arrow--next {
        right: 12px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .home-trust-strip {
        grid-template-columns: 1fr;
    }

    .home-trust-strip div {
        border-top: 1px solid #ded8ce;
        border-left: 0;
    }

    .home-trust-strip div:first-child {
        border-top: 0;
    }

    .home-carousel__set {
        gap: 14px;
        padding-right: 14px;
    }

    .home-carousel::before,
    .home-carousel::after {
        width: 28px;
    }

    .home-testimonials__slider {
        grid-template-columns: 34px minmax(0, 1fr) 34px;
        gap: 8px;
    }

    .home-testimonials__arrow {
        width: 34px;
        height: 34px;
        font-size: 26px;
    }

    .home-testimonial {
        width: 100%;
        min-width: 100%;
        min-height: 210px;
        padding: 24px 22px;
    }

    .home-testimonial p {
        font-size: 14px;
    }

    .home-testimonial__quote {
        right: 18px;
        font-size: 64px;
    }

    .home-partner {
        width: 150px;
        height: 78px;
    }

    .home-partner span {
        font-size: 22px;
    }

    .home-newsletter,
    .home-social {
        padding: 26px 22px;
    }

    .home-newsletter form {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        padding: 38px 0 34px;
    }

    .contact-hero h1 {
        font-size: 34px;
    }

    .contact-page__grid {
        padding: 32px 0 44px;
    }

    .contact-card--info,
    .contact-card--form {
        padding: 24px 22px;
    }

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

    .contact-list a {
        font-size: 16px;
        overflow-wrap: anywhere;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .shop-archive__toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .shop-hero {
        min-height: 240px;
    }

    .shop-hero h1 {
        font-size: 42px;
    }

    .course-single__summary,
    .course-single__content {
        padding: 22px;
    }

    .course-single__summary h1 {
        font-size: 30px;
    }

    .training-hero {
        min-height: 220px;
    }

    .training-hero h1 {
        font-size: 36px;
    }

    .shop-archive__tools,
    .product-single__rating-row,
    .product-single__meta-line {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .shop-trust-strip {
        grid-template-columns: 1fr;
    }

    .shop-trust-strip div {
        border-top: 1px solid #ded8ce;
        border-left: 0;
    }

    .shop-trust-strip div:first-child {
        border-top: 0;
    }

    .product-single__buybox .cart {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .product-single__buybox .variations tr,
    .product-single__buybox .woocommerce-variation-add-to-cart {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .product-single__tabs {
        gap: 18px;
        overflow-x: auto;
    }

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

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

    .training-grid {
        grid-template-columns: 1fr;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .site-footer__top {
        grid-template-columns: 1fr;
    }

    .home-faq {
        padding: 22px 16px;
    }

    .home-faq__grid {
        grid-template-columns: 1fr;
    }

    .course-calendar {
        padding: 12px;
    }

    .course-calendar__weekdays,
    .course-calendar__days {
        gap: 4px;
    }

    .course-calendar__day {
        font-size: 12px;
    }
}
