:root {
    --tvf-red: #d71920;
    --tvf-red-dark: #b51218;
    --tvf-yellow: #ffd24a;
    --tvf-ink: #222222;
    --tvf-muted: #666666;
    --tvf-line: #e8e8e8;
    --tvf-bg: #f6f6f6;
    --tvf-white: #ffffff;
    --tvf-radius: 6px;
    --tvf-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--tvf-ink);
    background: var(--tvf-bg);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.top-bar {
    background: #2b2b2b;
    color: #ffffff;
    font-size: 13px;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 36px;
}

.top-links {
    display: flex;
    gap: 14px;
    margin-left: auto;
}

.top-links-logged-in {
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    text-align: right;
}

.top-user-greeting {
    display: block;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.25;
    white-space: nowrap;
}

.top-user-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    line-height: 1.25;
}

.header-main {
    display: grid;
    grid-template-columns: auto minmax(420px, 1fr) auto;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
}

.header-main-top,
.header-main-bottom {
    display: contents;
}

.site-header {
    background: var(--tvf-white);
    box-shadow: 0 1px 0 var(--tvf-line);
}

.site-title {
    display: inline-block;
    color: var(--tvf-red);
    font-size: 30px;
    font-weight: 800;
}

.custom-logo {
    max-height: 70px;
    width: auto;
}

.header-search {
    width: 100%;
    max-width: 640px;
    justify-self: stretch;
}

.account-link {
    display: none !important;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid var(--tvf-line);
    border-radius: var(--tvf-radius);
    background: #ffffff;
    color: var(--tvf-ink);
    font-size: 13px;
}

.account-link span {
    display: block;
    width: 18px;
    height: 18px;
    border: 2px solid var(--tvf-red);
    border-radius: 999px;
    position: relative;
}

.account-link span::after {
    content: "";
    position: absolute;
    left: -5px;
    right: -5px;
    bottom: -10px;
    height: 9px;
    border: 2px solid var(--tvf-red);
    border-bottom: 0;
    border-radius: 999px 999px 0 0;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 1px solid var(--tvf-line);
    border-radius: var(--tvf-radius);
    background: #ffffff;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--tvf-ink);
}

.search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    border: 2px solid var(--tvf-red);
    border-radius: var(--tvf-radius);
    overflow: hidden;
    background: #ffffff;
}

.search-form input[type="search"] {
    min-width: 0;
    height: 42px;
    padding: 0 14px;
    border: 0;
    outline: 0;
}

.search-form button,
.button,
.single_add_to_cart_button,
.added_to_cart {
    min-height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: var(--tvf-radius);
    background: var(--tvf-red);
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

.search-form button {
    border-radius: 0;
}

.header-cart {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) auto;
    align-items: center;
    gap: 6px 12px;
    min-width: 264px;
    padding: 12px 14px 10px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    background: #fff;
}

.header-cart:hover {
    border-color: #d8d8d8;
}

.header-cart .cart-icon {
    display: inline-block;
    width: 22px;
    height: 22px;
    position: relative;
    color: var(--tvf-red);
}

.header-cart .cart-icon::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 7px;
    width: 18px;
    height: 13px;
    border: 1.8px solid currentColor;
    border-radius: 3px 3px 4px 4px;
    box-sizing: border-box;
    background: #fff;
}

.header-cart .cart-icon::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 1px;
    width: 10px;
    height: 7px;
    border: 1.8px solid currentColor;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    box-sizing: border-box;
}

.cart-text {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    color: #111;
}

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: var(--tvf-red);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    margin-top: -2px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0 0;
    color: var(--tvf-muted);
    font-size: 13px;
}

.breadcrumb a {
    color: var(--tvf-red);
    font-weight: 700;
}

.breadcrumb-separator {
    color: #aaaaaa;
}

.cart-total {
    grid-column: 2 / -1;
    color: #444;
    font-size: 28px;
    line-height: 1.1;
    margin-top: -2px;
}

.main-nav {
    background: var(--tvf-red);
}

.main-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav a {
    display: block;
    padding: 13px 16px;
    color: #ffffff;
    font-weight: 700;
}

.main-nav .menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.main-nav .menu-item-has-children > a::after {
    display: none;
}

.main-nav .nav-arrow {
    flex: 0 0 auto;
    color: currentColor;
    font-size: 11px;
    line-height: 1;
}

.main-nav li:hover > a,
.main-nav .current-menu-item > a {
    background: var(--tvf-red-dark);
}

.main-nav .sub-menu {
    position: absolute;
    z-index: 20;
    display: none;
    min-width: 220px;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: var(--tvf-shadow);
}

.main-nav li {
    position: relative;
}

.main-nav li:hover > .sub-menu {
    display: block;
}

.main-nav .sub-menu a {
    color: var(--tvf-ink);
    border-bottom: 1px solid var(--tvf-line);
}

.main-nav .sub-menu .menu-item-has-children > a::after {
    border-top-color: var(--tvf-ink);
}

.hero-banner {
    min-height: 360px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #242424 0%, #555 100%);
    background-position: center;
    background-size: cover;
    color: #ffffff;
}

.hero-content {
    padding: 48px 0;
}

.hero-content h1 {
    max-width: 620px;
    margin: 0 0 12px;
    font-size: 46px;
    line-height: 1.1;
}

.hero-content p {
    max-width: 560px;
    margin: 0 0 22px;
    font-size: 18px;
}

.hero-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
}

.button-outline {
    border: 1px solid currentColor;
    background: #ffffff;
    color: var(--tvf-red);
}

.home-section,
.content-area,
.shop-main,
.product-main {
    padding: 34px 0;
}

.section-muted {
    background: #ffffff;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    border-bottom: 2px solid var(--tvf-red);
}

.section-heading h2 {
    margin: 0;
    padding: 10px 16px;
    background: var(--tvf-red);
    color: #ffffff;
    font-size: 20px;
}

.section-heading > a {
    color: var(--tvf-red);
    font-weight: 700;
}

.category-tiles {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.category-tile,
.product-card,
.entry-card,
.page-content,
.not-found {
    background: #ffffff;
    border: 1px solid var(--tvf-line);
    border-radius: var(--tvf-radius);
}

.category-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    max-width: none;
    min-height: 146px;
    padding: 12px 10px;
}

.category-thumb {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--tvf-radius);
    background: #f0f0f0;
}

.category-placeholder {
    color: var(--tvf-red);
    font-size: 24px;
    font-weight: 800;
}

.category-name {
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
}

.product-grid,
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none;
}

.woocommerce ul.products li.product,
.product-card {
    float: none;
    width: 100%;
    max-width: none;
    margin: 0;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--tvf-shadow);
}

.product-image {
    position: relative;
    display: block;
    aspect-ratio: 1;
    background: #f5f5f5;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 10px;
}

/* Checkout parity reset (2026-05-12): align to tvfshop checkout proportions */
.woocommerce-checkout .tvf-checkout-shell {
    max-width: 1340px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.woocommerce-checkout .checkout-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 420px !important;
    gap: 34px !important;
    align-items: start !important;
}

.woocommerce-checkout .checkout-fields {
    min-width: 0 !important;
}

.woocommerce-checkout .checkout-review {
    margin-top: 0 !important;
    padding-left: 30px !important;
    border-left: 1px solid #e1e1e1 !important;
}

.woocommerce-checkout .tvf-checkout-brand {
    margin: 0 0 18px !important;
    font-size: 46px !important;
    line-height: 1.1 !important;
    font-weight: 600 !important;
    color: #ff0000 !important;
    letter-spacing: 0 !important;
}

.woocommerce-checkout .tvf-checkout-step-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 20px !important;
    align-items: start !important;
    margin: 0 0 12px !important;
}

.woocommerce-checkout .tvf-checkout-step h3,
.woocommerce-checkout .tvf-checkout-payment-wrap > h3,
.woocommerce-checkout #order_review_heading {
    margin: 0 !important;
    font-size: 45px !important;
    line-height: 1.06 !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    letter-spacing: 0 !important;
}

.woocommerce-checkout .tvf-checkout-step-customer,
.woocommerce-checkout .tvf-checkout-step-shipping {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.woocommerce-checkout .tvf-checkout-login {
    font-size: 36px !important;
    line-height: 1.1 !important;
    color: #ff0000 !important;
    text-decoration: none !important;
}

.woocommerce-checkout .tvf-checkout-shipping-note {
    margin: 0 !important;
    padding: 14px 18px !important;
    border: 1px solid #bee5eb !important;
    border-radius: 4px !important;
    background: #d1ecf1 !important;
    color: #ff0000 !important;
    font-size: 48px !important;
    line-height: 1.06 !important;
    font-weight: 500 !important;
}

.woocommerce-checkout #customer_details {
    margin-top: 8px !important;
}

.woocommerce-checkout .form-row {
    margin: 0 0 12px !important;
}

.woocommerce-checkout .form-row label {
    margin-bottom: 5px !important;
    font-size: 18px !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
    color: #222 !important;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .select2-container .select2-selection--single {
    min-height: 58px !important;
    border: 1px solid #d9d9d9 !important;
    border-radius: 4px !important;
    background: #fff !important;
    padding: 14px 14px !important;
    font-size: 30px !important;
    line-height: 1.2 !important;
    color: #111 !important;
}

.woocommerce-checkout .form-row textarea {
    min-height: 118px !important;
    resize: vertical !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 0 !important;
    line-height: 28px !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    right: 10px !important;
}

.woocommerce-checkout .tvf-checkout-payment-wrap {
    margin-top: 16px !important;
}

.woocommerce-checkout #payment {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.woocommerce-checkout #payment ul.payment_methods {
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #d9d9d9 !important;
    border-radius: 4px !important;
    background: #fff !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
    padding: 14px 16px !important;
    font-size: 32px !important;
    line-height: 1.3 !important;
}

.woocommerce-checkout #payment div.payment_box {
    margin: 10px 0 0 !important;
    padding: 12px 14px !important;
    font-size: 24px !important;
    line-height: 1.35 !important;
}

.woocommerce-checkout #payment #place_order {
    float: right !important;
    width: auto !important;
    min-width: 250px !important;
    min-height: 74px !important;
    margin-top: 16px !important;
    padding: 0 28px !important;
    border: 0 !important;
    border-radius: 4px !important;
    background: #000 !important;
    color: #fff !important;
    font-size: 34px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    letter-spacing: 0 !important;
}

.woocommerce-checkout #order_review_heading {
    margin-bottom: 16px !important;
}

.woocommerce-checkout .tvf-checkout-coupon {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 160px !important;
    gap: 12px !important;
    margin: 14px 0 !important;
}

.woocommerce-checkout .tvf-checkout-coupon input[type="text"] {
    min-height: 56px !important;
    padding: 0 14px !important;
    font-size: 28px !important;
    border: 1px solid #d9d9d9 !important;
}

.woocommerce-checkout .tvf-checkout-coupon .button {
    min-height: 56px !important;
    border: 0 !important;
    border-radius: 4px !important;
    background: #646464 !important;
    color: #fff !important;
    font-size: 30px !important;
    font-weight: 600 !important;
}

.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table {
    border: 1px solid #e1e1e1 !important;
    border-collapse: collapse !important;
}

.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table thead {
    display: none !important;
}

.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tbody tr.cart_item td {
    padding: 14px 0 !important;
    border-bottom: 1px solid #ececec !important;
    vertical-align: top !important;
}

.woocommerce-checkout .tvf-checkout-item {
    display: grid !important;
    grid-template-columns: 64px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: start !important;
}

.woocommerce-checkout .tvf-checkout-item-thumb {
    width: 64px !important;
    height: 64px !important;
    border: 1px solid #d5d5d5 !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    position: relative !important;
    background: #fff !important;
}

.woocommerce-checkout .tvf-checkout-item-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.woocommerce-checkout .tvf-checkout-item-title {
    font-size: 32px !important;
    line-height: 1.25 !important;
    font-weight: 500 !important;
    color: #222 !important;
}

.woocommerce-checkout .tvf-checkout-item-meta dl.variation {
    margin: 6px 0 0 !important;
    font-size: 26px !important;
    color: #666 !important;
}

.woocommerce-checkout .tvf-checkout-item-meta dl.variation dt,
.woocommerce-checkout .tvf-checkout-item-meta dl.variation dd {
    font-size: inherit !important;
    line-height: 1.25 !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .product-total {
    position: relative !important;
    white-space: nowrap !important;
    padding-left: 6px !important;
    font-size: 30px !important;
    color: #222 !important;
}

.woocommerce-checkout .tvf-checkout-qty-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 26px !important;
    height: 26px !important;
    border-radius: 50% !important;
    background: #ff0000 !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    margin-right: 8px !important;
    vertical-align: top !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
    padding: 14px 0 !important;
    font-size: 36px !important;
    line-height: 1.2 !important;
    color: #333 !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total td,
.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total .amount {
    font-size: 52px !important;
    font-weight: 700 !important;
    color: #ff0000 !important;
}

.woocommerce-checkout .tvf-checkout-back {
    margin-top: 16px !important;
}

.woocommerce-checkout .tvf-checkout-back a {
    color: #ff0000 !important;
    font-size: 30px !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
}

@media (max-width: 1199px) {
    .woocommerce-checkout .tvf-checkout-step-row {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
}

@media (max-width: 991px) {
    .woocommerce-checkout .checkout-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .woocommerce-checkout .checkout-review {
        border-left: 0 !important;
        border-top: 1px solid #e1e1e1 !important;
        padding-left: 0 !important;
        padding-top: 14px !important;
    }

    .woocommerce-checkout .tvf-checkout-brand {
        font-size: 34px !important;
    }

    .woocommerce-checkout .tvf-checkout-step h3,
    .woocommerce-checkout .tvf-checkout-payment-wrap > h3,
    .woocommerce-checkout #order_review_heading {
        font-size: 30px !important;
    }

    .woocommerce-checkout .tvf-checkout-login {
        font-size: 22px !important;
    }

    .woocommerce-checkout .tvf-checkout-shipping-note {
        font-size: 22px !important;
    }

    .woocommerce-checkout .form-row label {
        font-size: 15px !important;
    }

    .woocommerce-checkout .form-row input.input-text,
    .woocommerce-checkout .form-row textarea,
    .woocommerce-checkout .form-row select,
    .woocommerce-checkout .select2-container .select2-selection--single {
        min-height: 46px !important;
        font-size: 18px !important;
        padding: 10px 12px !important;
    }

    .woocommerce-checkout #payment ul.payment_methods li {
        font-size: 18px !important;
    }

    .woocommerce-checkout #payment #place_order {
        float: none !important;
        width: 100% !important;
        min-width: 0 !important;
        min-height: 46px !important;
        font-size: 18px !important;
        margin-top: 12px !important;
    }

    .woocommerce-checkout .tvf-checkout-item-title {
        font-size: 16px !important;
    }

    .woocommerce-checkout .tvf-checkout-item-meta dl.variation {
        font-size: 14px !important;
    }

    .woocommerce-checkout .woocommerce-checkout-review-order-table .product-total {
        font-size: 15px !important;
    }

    .woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th,
    .woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
        font-size: 18px !important;
    }

    .woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total th,
    .woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total td,
    .woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total .amount {
        font-size: 30px !important;
    }

    .woocommerce-checkout .tvf-checkout-back a {
        font-size: 16px !important;
    }
}

.woocommerce ul.products li.product:hover img,
.product-card:hover img,
.products .product:hover img,
.wc-block-grid__product:hover img {
    opacity: 1 !important;
    filter: none !important;
}

body.tvf-theme .woocommerce ul.products li.product:hover img,
body.tvf-theme .products .product:hover img,
body.tvf-theme .product-card:hover img,
body.tvf-theme .wc-block-grid__product:hover img,
body.tvf-theme .product:hover img {
    opacity: 1 !important;
    filter: none !important;
}

.product-badge {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--tvf-yellow);
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 800;
}

.product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 12px;
}

.product-title {
    min-height: 46px;
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.35;
}

.product-price {
    margin-bottom: 12px;
    color: var(--tvf-red);
    font-size: 17px;
    font-weight: 800;
}

.product-price del {
    margin-right: 6px;
    color: var(--tvf-muted);
    font-size: 13px;
    font-weight: 400;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: auto;
}

.product-actions .button,
.quick-view-link,
.added_to_cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 10px;
    border-radius: var(--tvf-radius);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.woocommerce ul.products li.product .button,
.product-card .button,
.product-card .added_to_cart,
.product-card .quick-view-link,
.wc-block-grid__product-add-to-cart .wp-block-button__link,
.wc-block-grid__product-add-to-cart .add_to_cart_button {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    min-width: 0;
    min-height: 36px;
    max-height: none;
    padding: 0 10px;
    margin: 0;
    border-radius: var(--tvf-radius);
    line-height: 1.2;
    white-space: normal;
}

.wc-block-grid__product-add-to-cart {
    margin-top: 14px;
    text-align: center;
}

.quick-view-link {
    border: 1px solid var(--tvf-line);
    background: #ffffff;
    color: var(--tvf-ink);
}

.shop-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 24px;
}

.shop-sidebar {
    align-self: start;
    padding: 20px 26px 24px;
    background: #ffffff;
    border: 0;
    border-radius: 0;
}

.shop-sidebar h3 {
    margin: 0 0 24px;
    color: var(--tvf-ink);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.shop-sidebar ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.shop-sidebar li {
    padding: 0;
    border-bottom: 0;
}

.shop-sidebar .product-categories > .cat-item {
    margin-bottom: 18px;
}

.shop-sidebar .product-categories .children {
    padding: 12px 0 0 14px;
}

.shop-sidebar .product-categories .children .cat-item {
    margin-bottom: 18px;
}

.shop-sidebar .product-categories .cat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.shop-sidebar .product-categories .cat-link {
    display: block;
    color: var(--tvf-ink);
    line-height: 1.45;
}

.shop-sidebar .product-categories .cat-parent > .cat-row .cat-link {
    flex: 1 1 auto;
}

.shop-sidebar .product-categories .cat-title {
    min-width: 0;
}

.shop-sidebar .product-categories .cat-arrow {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
}

.shop-sidebar .product-categories .cat-parent > .children {
    display: none;
}

.shop-sidebar .product-categories .cat-parent.is-open > .children {
    display: block;
}

.shop-sidebar .product-categories .cat-parent.is-open > .cat-row .cat-link {
    color: var(--tvf-red);
}

.shop-sidebar .product-categories .cat-parent.is-open > .cat-row .cat-arrow {
    transform: rotate(180deg);
}

.shop-content .page-title {
    margin-top: 0;
}

.shop-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.woocommerce-ordering select,
.woocommerce-result-count,
.woocommerce .quantity .qty,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.tvf-contact-placeholder input,
.tvf-contact-placeholder textarea {
    border: 1px solid var(--tvf-line);
    border-radius: var(--tvf-radius);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.tvf-contact-placeholder input,
.tvf-contact-placeholder textarea {
    width: 100%;
    min-height: 42px;
    padding: 9px 12px;
    background: #ffffff;
}

.tvf-contact-placeholder textarea {
    min-height: 130px;
    resize: vertical;
}

.single-product-layout {
    display: grid;
    grid-template-columns: minmax(0, 56%) minmax(0, 44%);
    gap: 34px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.single-product-summary .product_title {
    margin: 0 0 15px;
    font-size: 45px;
    line-height: 1.2;
    font-weight: 700;
}

.single-product-summary .price {
    color: var(--tvf-red);
    font-size: 30px;
    font-weight: 700;
}

.single-product-summary form.cart {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 10px;
}

.single-product-summary .quantity input {
    width: 78px;
    height: 42px;
    padding: 0 8px;
}

.zalo-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: var(--tvf-radius);
    background: #0068ff;
    color: #ffffff;
    font-weight: 800;
}

.single-product-tabs {
    grid-column: 1 / -1;
    margin-top: 20px;
}

.single-product .single-product-layout {
    grid-template-columns: minmax(0, 56%) minmax(0, 44%) !important;
    gap: 34px !important;
    border-radius: 0 !important;
    align-items: start !important;
}

.single-product .single-product-summary {
    text-align: left !important;
}

.single-product .single-product-gallery .woocommerce-product-gallery__image img {
    border: 0 !important;
    width: 100% !important;
    height: auto !important;
    object-fit: initial !important;
    object-position: bottom center !important;
}

.single-product .single-product-gallery .woocommerce-product-gallery__wrapper {
    border: 1px solid #ebebeb;
    background: #ffffff;
    width: 100%;
    height: auto !important;
}

.single-product .single-product-gallery .woocommerce-product-gallery__image {
    height: auto !important;
}

.single-product .single-product-gallery .flex-viewport {
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.single-product .single-product-gallery .flex-viewport[style] {
    height: auto !important;
    min-height: 0 !important;
}

.single-product .single-product-gallery .flex-viewport .slides {
    height: auto !important;
    min-height: 0 !important;
}

.single-product .single-product-gallery .flex-viewport .slides[style] {
    height: auto !important;
    min-height: 0 !important;
}

.single-product .single-product-gallery .flex-viewport .slides > li {
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.single-product .single-product-gallery .flex-viewport .slides > li {
    display: none !important;
}

.single-product .single-product-gallery .flex-viewport .slides > li.flex-active-slide {
    display: block !important;
}

.single-product .single-product-gallery .flex-control-thumbs {
    margin-top: 8px !important;
}

.single-product .single-product-gallery .flex-control-nav {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 90px));
    gap: 10px !important;
    margin-top: 14px !important;
    padding: 0 !important;
    list-style: none !important;
}

.single-product .single-product-gallery .flex-control-nav li {
    width: 90px !important;
    height: 90px !important;
    border: 1px solid #e5e5e5 !important;
    overflow: hidden;
}

.single-product .single-product-gallery .flex-control-nav img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: top center !important;
    display: block !important;
}

.single-product .single-product-summary .product_title {
    margin-bottom: 10px !important;
    font-size: 45px !important;
    font-weight: 700 !important;
    line-height: 1.18 !important;
}

.single-product .tvf-product-meta-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    font-size: 14px;
    color: #222;
}

.single-product .tvf-product-meta-line strong {
    color: #e31b23;
    font-weight: 400;
}

.single-product .tvf-meta-sep {
    color: #9b9b9b;
}

.single-product .woocommerce-product-rating {
    margin: 0 0 10px !important;
    font-size: 14px !important;
}

.single-product .woocommerce-product-rating .star-rating {
    color: #f4b400 !important;
    margin-right: 10px !important;
}

.single-product .single-product-summary .price {
    font-size: 30px !important;
    color: #ff0000 !important;
    line-height: 30px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
}

.single-product .single-product-summary .short-description {
    border-bottom: 0 !important;
    margin-bottom: 16px !important;
    padding-bottom: 0 !important;
    font-size: 14px !important;
    line-height: 24px !important;
    text-align: left !important;
}

.single-product .single-product-summary .short-description p,
.single-product .single-product-summary .short-description ul,
.single-product .single-product-summary .short-description ol,
.single-product .single-product-summary .short-description li {
    text-align: left !important;
}

.single-product .variations_form table.variations th.label {
    display: block !important;
    padding: 0 0 8px !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    font-weight: 700 !important;
}

.single-product .variations_form table.variations td.value {
    display: block !important;
    padding: 0 0 16px !important;
}

.single-product .tvf-variation-select-hidden {
    position: absolute !important;
    left: -9999px !important;
    visibility: hidden !important;
    display: block !important;
}

.single-product .tvf-variation-buttons {
    display: flex !important;
    flex-wrap: wrap;
    gap: 12px;
}

.single-product .tvf-var-server-buttons,
.single-product .tvf-variation-buttons {
    display: flex !important;
}

.single-product .variations_form table.variations td.value select {
    position: static !important;
    left: auto !important;
    visibility: visible !important;
    display: inline-block !important;
    min-height: 40px !important;
    min-width: 190px !important;
    border: 1px solid #d8d8d8 !important;
    background: #fff !important;
    color: #111 !important;
    padding: 0 12px !important;
    font-size: 14px !important;
}

.single-product .variations_form table.variations td.value select.tvf-variation-select-hidden {
    position: absolute !important;
    left: -9999px !important;
    visibility: hidden !important;
    display: none !important;
}

.single-product .tvf-variation-button {
    min-height: 48px;
    line-height: 46px;
    padding: 0 18px;
    border: 1px solid #111;
    background: #fff;
    color: #222;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
}

.single-product .tvf-variation-button.is-active {
    border-color: #e31b23;
    background: #e31b23;
    color: #fff;
}


.single-product .tvf-var-server-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 3;
}

.single-product .tvf-var-server-btn {
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid #111;
    background: #fff !important;
    color: #222 !important;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    pointer-events: auto;
}

.single-product .tvf-var-server-btn.is-active,
.single-product .tvf-var-server-btn[aria-pressed="true"] {
    border-color: #e31b23;
    background: #e31b23 !important;
    color: #fff !important;
}


.single-product .tvf-var-server-btn:not(.is-active):not([aria-pressed="true"]) {
    background: #fff !important;
    color: #222 !important;
}

.single-product .variations_form .reset_variations {
    display: none !important;
}

.single-product .variations_form .quantity,
.single-product form.cart:not(.variations_form) .quantity {
    display: inline-flex !important;
    align-items: stretch !important;
    margin-right: 8px !important;
    position: relative !important;
    width: 114px !important;
    height: 45px !important;
    vertical-align: top;
    margin-top: 30px !important;
}

.single-product .variations_form .quantity::before,
.single-product form.cart:not(.variations_form) .quantity::before {
    content: "S\1ed1\20 l\1b0\1ee3ng:";
    position: absolute;
    left: 0;
    top: -32px;
    font-size: 16px;
    color: #111;
    font-weight: 500;
}

.single-product .variations_form .quantity .qty,
.single-product form.cart:not(.variations_form) .quantity .qty {
    width: 90px !important;
    height: 45px !important;
    border: 1px solid #d8d8d8 !important;
    border-right: 0 !important;
    border-radius: 0 !important;
    text-align: center !important;
    font-size: 28px !important;
    font-weight: 400 !important;
    line-height: 45px !important;
    padding: 0 !important;
    appearance: textfield;
    -moz-appearance: textfield;
}

.single-product .tvf-qty-btn {
    width: 24px;
    height: 50%;
    border: 1px solid #d8d8d8;
    border-left: 0;
    background: #fff;
    color: #333;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    position: absolute;
    right: 0;
    text-align: center;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.single-product .variations_form .quantity .tvf-qty-btn::before,
.single-product form.cart:not(.variations_form) .quantity .tvf-qty-btn::before {
    content: none !important;
}

.single-product .tvf-qty-btn.minus {
    top: 22.5px;
    height: 22.5px;
    border-top: 0;
}

.single-product .tvf-qty-btn.plus {
    top: 0;
    height: 22.5px;
    border-bottom: 0;
}

.single-product .variations_form .quantity .qty::-webkit-outer-spin-button,
.single-product .variations_form .quantity .qty::-webkit-inner-spin-button,
.single-product form.cart:not(.variations_form) .quantity .qty::-webkit-outer-spin-button,
.single-product form.cart:not(.variations_form) .quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.single-product .single_add_to_cart_button {
    min-width: 210px !important;
    height: 45px !important;
    margin-top: 30px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #33363d !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
}

.single-product .single_add_to_cart_button:hover {
    background: #1f2228 !important;
    color: #fff !important;
}

.single-product .zalo-button {
    margin-top: 8px !important;
}

.single-product .woocommerce-tabs ul.tabs.wc-tabs li a {
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

.single-product .woocommerce-tabs ul.tabs.wc-tabs li.active a {
    color: #fff !important;
    background: #33363d !important;
    border-bottom-color: #33363d !important;
}

.single-product .woocommerce-tabs .woocommerce-Tabs-panel {
    border: 1px solid #e5e5e5 !important;
    border-top: 0 !important;
    padding: 25px !important;
    text-align: left !important;
}

.single-product .woocommerce-tabs .woocommerce-Tabs-panel p,
.single-product .woocommerce-tabs .woocommerce-Tabs-panel ul,
.single-product .woocommerce-tabs .woocommerce-Tabs-panel ol,
.single-product .woocommerce-tabs .woocommerce-Tabs-panel li,
.single-product .woocommerce-tabs .woocommerce-Tabs-panel h1,
.single-product .woocommerce-tabs .woocommerce-Tabs-panel h2,
.single-product .woocommerce-tabs .woocommerce-Tabs-panel h3,
.single-product .woocommerce-tabs .woocommerce-Tabs-panel h4 {
    text-align: left !important;
}

@media (max-width: 1199px) {
    .single-product .single-product-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        gap: 24px !important;
    }
}

@media (max-width: 767px) {
    .single-product .single-product-layout {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .single-product .single-product-gallery .flex-control-nav {
        grid-template-columns: repeat(4, minmax(0, 80px));
        gap: 8px !important;
    }

    .single-product .single-product-gallery .flex-control-nav li {
        width: 80px !important;
        height: 80px !important;
    }

    .single-product .single-product-summary .product_title {
        font-size: 36px !important;
        line-height: 1.18 !important;
        font-weight: 700 !important;
    }

    .single-product .single-product-summary .price {
        font-size: 26px !important;
        line-height: 28px !important;
    }
}

.site-footer {
    background: #252525;
    color: #f5f5f5;
}

.policy-strip {
    background: #ffffff;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.policy-item {
    padding: 16px;
    border: 1px solid var(--tvf-line);
    border-radius: var(--tvf-radius);
    background: #ffffff;
}

.policy-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: var(--tvf-red);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.policy-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

.policy-item p {
    margin: 0;
    color: var(--tvf-muted);
    font-size: 13px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 24px;
    padding: 34px 0;
}

.tvf-contact-placeholder {
    display: grid;
    gap: 12px;
}

.tvf-contact-placeholder button {
    min-height: 42px;
    border: 0;
    border-radius: var(--tvf-radius);
    background: var(--tvf-red);
    color: #ffffff;
    font-weight: 700;
}

.floating-contacts {
    position: fixed;
    z-index: 60;
    right: 16px;
    bottom: 18px;
    display: grid;
    gap: 8px;
}

.floating-contacts a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    min-height: 38px;
    padding: 0 10px;
    border-radius: 999px;
    box-shadow: var(--tvf-shadow);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

.float-call {
    background: var(--tvf-red);
}

.float-zalo {
    background: #0068ff;
}

.float-chat {
    background: #1877f2;
}

.tvf-cart-form,
.tvf-cart-collaterals,
.tvf-checkout {
    padding: 18px;
    border: 1px solid var(--tvf-line);
    border-radius: var(--tvf-radius);
    background: #ffffff;
}

.shop_table {
    width: 100%;
    border-collapse: collapse;
}

.shop_table th,
.shop_table td {
    padding: 12px;
    border-bottom: 1px solid var(--tvf-line);
    text-align: left;
}

.shop_table .product-thumbnail img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: var(--tvf-radius);
}

.shop_table .remove {
    color: var(--tvf-red);
    font-size: 24px;
    font-weight: 700;
}

.actions {
    text-align: right;
}

.coupon {
    display: inline-flex;
    gap: 8px;
    margin-right: 10px;
}

.coupon input {
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid var(--tvf-line);
    border-radius: var(--tvf-radius);
}

.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 24px;
}

.checkout-review {
    align-self: start;
    padding: 18px;
    border: 1px solid var(--tvf-line);
    border-radius: var(--tvf-radius);
    background: #ffffff;
}

.checkout-review h3 {
    margin-top: 0;
}

/* Checkout layout/style (classic checkout) */
.woocommerce-checkout .tvf-checkout {
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
}

.woocommerce-checkout .tvf-checkout-shell {
    padding: 0;
}

.woocommerce-checkout .tvf-checkout-brand {
    margin: 0 0 18px;
    color: #e31b23;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 500;
}

.woocommerce-checkout .checkout-grid,
.woocommerce-checkout form.checkout.woocommerce-checkout:not(.tvf-checkout) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 28px;
    align-items: start;
}

.woocommerce-checkout form.checkout.woocommerce-checkout:not(.tvf-checkout) {
    grid-template-areas:
        "intro reviewHeading"
        "customer review"
        "payment review";
}

.woocommerce-checkout form.checkout.woocommerce-checkout:not(.tvf-checkout) .tvf-checkout-classic-intro {
    grid-area: intro;
}

.woocommerce-checkout form.checkout.woocommerce-checkout:not(.tvf-checkout) #customer_details {
    grid-area: customer;
}

.woocommerce-checkout form.checkout.woocommerce-checkout:not(.tvf-checkout) .tvf-checkout-payment-wrap {
    grid-area: payment;
}

.woocommerce-checkout form.checkout.woocommerce-checkout:not(.tvf-checkout) #order_review_heading {
    grid-area: reviewHeading;
}

.woocommerce-checkout form.checkout.woocommerce-checkout:not(.tvf-checkout) #order_review {
    grid-area: review;
}

.woocommerce-checkout .checkout-fields {
    min-width: 0;
}

.woocommerce-checkout .checkout-review,
.woocommerce-checkout form.checkout.woocommerce-checkout:not(.tvf-checkout) #order_review,
.woocommerce-checkout form.checkout.woocommerce-checkout:not(.tvf-checkout) #order_review_heading {
    border-left: 1px solid #e5e5e5;
    padding-left: 30px;
}

.woocommerce-checkout .tvf-checkout-step-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 26px;
    margin-bottom: 14px;
}

.woocommerce-checkout .tvf-checkout-step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.woocommerce-checkout .tvf-checkout-step h3,
.woocommerce-checkout .tvf-checkout-payment-wrap > h3,
.woocommerce-checkout #order_review_heading {
    margin: 0;
    color: #1f1f20;
    font-size: 37px;
    line-height: 1.2;
    font-weight: 700;
}

.woocommerce-checkout .tvf-checkout-login {
    color: #ff0000;
    font-size: 28px;
    font-weight: 500;
}

.woocommerce-checkout .tvf-checkout-login:hover {
    color: #d9151c;
}

.woocommerce-checkout .tvf-checkout-shipping-note {
    width: 100%;
    margin-top: 12px;
    padding: 12px 18px;
    border: 1px solid #a9d5df;
    border-radius: 4px;
    background: #bfe6ef;
    color: #e30000;
    font-size: 22px;
    line-height: 1.35;
}

.woocommerce-checkout #customer_details {
    margin-top: 8px;
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3 {
    display: none;
}

.woocommerce-checkout .form-row {
    margin: 0 0 12px;
}

.woocommerce-checkout .form-row label {
    margin-bottom: 6px;
    color: #222;
    font-size: 15px;
    font-weight: 500;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .select2-container .select2-selection--single {
    min-height: 50px;
    border: 1px solid #d9d9dc;
    border-radius: 4px;
    background: #fff;
    color: #222;
    font-size: 22px;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
    padding: 11px 14px;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 48px;
    padding-left: 14px;
    color: #222;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
}

.woocommerce-checkout .form-row textarea {
    min-height: 92px;
    resize: vertical;
}

.woocommerce-checkout .tvf-checkout-payment-wrap {
    margin-top: 12px;
}

.woocommerce-checkout #payment {
    margin-top: 12px;
    border: 1px solid #d9d9dc;
    border-radius: 4px;
    background: #fff;
}

.woocommerce-checkout #payment ul.payment_methods {
    margin: 0;
    padding: 13px 16px;
    border-bottom: 1px solid #ececef;
}

.woocommerce-checkout #payment ul.payment_methods li {
    font-size: 17px;
    font-weight: 500;
}

.woocommerce-checkout #payment div.payment_box {
    margin: 0;
    border-radius: 0;
    background: #f8f8f8;
}

.woocommerce-checkout #payment #place_order {
    float: none;
    width: 100%;
    min-height: 50px;
    border-radius: 7px;
    background: #111111;
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0;
}

.woocommerce-checkout #payment #place_order:hover {
    background: #000;
}

.woocommerce-checkout .checkout-review {
    padding: 0;
    background: transparent;
}

.woocommerce-checkout .checkout-review > h3 {
    margin: 0;
    padding: 0 0 16px;
}

.woocommerce-checkout .checkout-review #order_review,
.woocommerce-checkout form.checkout.woocommerce-checkout:not(.tvf-checkout) #order_review {
    padding-top: 4px;
}

.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table {
    margin: 0;
    border: 0;
    background: transparent;
}

.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table thead {
    display: none;
}

.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tbody tr.cart_item td {
    padding: 14px 0;
    vertical-align: top;
    border-bottom: 1px solid #ededed;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name {
    color: #202022;
    font-size: 17px;
    font-weight: 500;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name .product-quantity {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 19px;
    height: 19px;
    margin-right: 7px;
    border-radius: 999px;
    background: #ff0000;
    color: #fff;
    font-size: 11px;
    line-height: 1;
    vertical-align: middle;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
    padding: 11px 0;
    border-top: 0;
    border-bottom: 1px solid #ededed;
    font-size: 19px;
    font-weight: 500;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total td {
    border-bottom: 0;
    font-size: 40px;
    font-weight: 700;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total .amount {
    color: #ff0000;
}

.woocommerce-checkout .tvf-checkout-back {
    padding: 12px 0 18px;
}

.woocommerce-checkout .tvf-checkout-back a {
    color: #ff0000;
    font-size: 24px;
    font-weight: 500;
}

.woocommerce-checkout .woocommerce-checkout-payment {
    background: #fff;
}

/* Checkout override: match TVF checkout layout */
.woocommerce-checkout .tvf-checkout-shell {
    max-width: 1380px !important;
    margin: 0 auto !important;
}

.woocommerce-checkout .tvf-checkout-brand {
    margin: 0 0 14px !important;
    color: #e31b23 !important;
    font-size: 44px !important;
    font-weight: 500 !important;
    line-height: 1.1 !important;
}

.woocommerce-checkout .checkout-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 420px !important;
    gap: 28px !important;
    align-items: start !important;
}

.woocommerce-checkout .tvf-checkout-step-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
    margin-bottom: 14px !important;
}

.woocommerce-checkout .tvf-checkout-step {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.woocommerce-checkout .tvf-checkout-step h3,
.woocommerce-checkout .tvf-checkout-payment-wrap > h3,
.woocommerce-checkout #order_review_heading {
    margin: 0 !important;
    font-size: 38px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    color: #1e1f22 !important;
}

.woocommerce-checkout .tvf-checkout-login {
    color: #ff0000 !important;
    font-size: 28px !important;
    font-weight: 500 !important;
}

.woocommerce-checkout .tvf-checkout-shipping-note {
    width: 100% !important;
    margin-top: 10px !important;
    padding: 12px 18px !important;
    border: 1px solid #9ecfd8 !important;
    border-radius: 4px !important;
    background: #bfe6ef !important;
    color: #e30000 !important;
    font-size: 21px !important;
    line-height: 1.35 !important;
}

.woocommerce-checkout #customer_details {
    margin-top: 6px !important;
}

.woocommerce-checkout .form-row label {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #2a2a2a !important;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .select2-container .select2-selection--single {
    min-height: 50px !important;
    border: 1px solid #d9d9dc !important;
    border-radius: 4px !important;
    background: #fff !important;
    font-size: 22px !important;
    color: #222 !important;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
    padding: 11px 14px !important;
}

.woocommerce-checkout .form-row textarea {
    min-height: 92px !important;
}

.woocommerce-checkout .tvf-checkout-payment-wrap {
    margin-top: 12px !important;
}

.woocommerce-checkout #payment {
    margin-top: 10px !important;
    border: 1px solid #d9d9dc !important;
    border-radius: 4px !important;
    background: #fff !important;
}

.woocommerce-checkout #payment ul.payment_methods {
    margin: 0 !important;
    padding: 12px 14px !important;
    border-bottom: 1px solid #ececef !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
    font-size: 17px !important;
    font-weight: 500 !important;
}

.woocommerce-checkout #payment #place_order {
    float: none !important;
    width: 100% !important;
    min-height: 50px !important;
    border-radius: 6px !important;
    background: #111 !important;
    color: #fff !important;
    font-size: 33px !important;
    font-weight: 700 !important;
}

.woocommerce-checkout .checkout-review {
    align-self: start !important;
    padding-left: 30px !important;
    border-left: 1px solid #e5e5e5 !important;
    background: transparent !important;
}

.woocommerce-checkout .checkout-review > h3,
.woocommerce-checkout #order_review_heading {
    margin: 0 0 14px !important;
}

.woocommerce-checkout .tvf-checkout-coupon {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 112px !important;
    gap: 12px !important;
    margin: 8px 0 14px !important;
}

.woocommerce-checkout .tvf-checkout-coupon input[type="text"] {
    min-height: 48px !important;
    border: 1px solid #d9d9dc !important;
    border-radius: 6px !important;
    padding: 10px 14px !important;
    font-size: 16px !important;
}

.woocommerce-checkout .tvf-checkout-coupon .button {
    min-height: 48px !important;
    border-radius: 6px !important;
    background: #6b6b6b !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}

.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table {
    margin: 0 !important;
    border: 0 !important;
}

.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table thead {
    display: none !important;
}

.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tbody tr.cart_item td {
    padding: 12px 0 !important;
    border-bottom: 1px solid #ededed !important;
    vertical-align: top !important;
}

.woocommerce-checkout .tvf-checkout-item {
    display: grid !important;
    grid-template-columns: 58px minmax(0, 1fr) !important;
    gap: 12px !important;
}

.woocommerce-checkout .tvf-checkout-item-thumb img {
    width: 58px !important;
    height: 58px !important;
    object-fit: cover !important;
    border-radius: 6px !important;
}

.woocommerce-checkout .tvf-checkout-item-title {
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
}

.woocommerce-checkout .tvf-checkout-item-meta dl.variation {
    margin: 4px 0 0 !important;
    font-size: 14px !important;
    color: #666 !important;
}

.woocommerce-checkout .tvf-checkout-item-meta dl.variation dd,
.woocommerce-checkout .tvf-checkout-item-meta dl.variation dt {
    margin: 0 !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .product-total {
    text-align: right !important;
    white-space: nowrap !important;
    font-size: 30px !important;
    font-weight: 500 !important;
}

.woocommerce-checkout .tvf-checkout-qty-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 20px !important;
    height: 20px !important;
    margin-right: 8px !important;
    border-radius: 999px !important;
    background: #ff0000 !important;
    color: #fff !important;
    font-size: 12px !important;
    line-height: 1 !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
    padding: 10px 0 !important;
    border-bottom: 1px solid #ededed !important;
    font-size: 30px !important;
    font-weight: 500 !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total td {
    border-bottom: 0 !important;
    font-size: 42px !important;
    font-weight: 700 !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total .amount {
    color: #ff0000 !important;
}

.woocommerce-checkout .tvf-checkout-back {
    padding: 10px 0 0 !important;
}

.woocommerce-checkout .tvf-checkout-back a {
    color: #ff0000 !important;
    font-size: 24px !important;
    font-weight: 500 !important;
}

/* WooCommerce Cart Block: style to match classic TVF cart look */
.woocommerce-cart .wp-block-woocommerce-cart {
    padding: 18px;
    border: 1px solid var(--tvf-line);
    border-radius: var(--tvf-radius);
    background: #ffffff;
}

.woocommerce-cart .wc-block-components-sidebar-layout {
    gap: 20px;
}

.woocommerce-cart .wc-block-cart-items {
    border: 1px solid var(--tvf-line);
}

.woocommerce-cart .wc-block-cart-items__header,
.woocommerce-cart .wc-block-cart-items__row {
    border-bottom: 1px solid var(--tvf-line);
}

.woocommerce-cart .wc-block-cart-items__row {
    padding: 14px 12px;
}

.woocommerce-cart .wc-block-components-product-image img {
    border-radius: 4px;
}

.woocommerce-cart .wc-block-components-product-name {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

.woocommerce-cart .wc-block-components-product-price,
.woocommerce-cart .wc-block-components-formatted-money-amount {
    color: #111;
    font-weight: 600;
}

.woocommerce-cart .wc-block-components-totals-wrapper,
.woocommerce-cart .wc-block-cart__totals-title,
.woocommerce-cart .wc-block-components-totals-item,
.woocommerce-cart .wc-block-components-panel {
    border-color: var(--tvf-line) !important;
}

.woocommerce-cart .wc-block-cart__submit-container {
    margin-top: 14px;
}

.woocommerce-cart .wc-block-cart__submit-button,
.woocommerce-cart .wc-block-components-button {
    border-radius: 0 !important;
    min-height: 42px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
}

.woocommerce-cart .wc-block-cart__submit-button {
    background: #33363d !important;
    color: #fff !important;
}

.woocommerce-cart .wc-block-cart__submit-button:hover {
    background: #1f2228 !important;
}

.woocommerce-cart .wc-block-components-totals-coupon__input {
    min-height: 42px;
    border-radius: 0 !important;
}

.woocommerce-cart .wc-block-components-totals-coupon__button {
    min-height: 42px;
    border-radius: 0 !important;
    background: var(--tvf-red) !important;
    color: #fff !important;
}

.woocommerce-cart .wc-block-cart__empty-cart__title {
    font-size: 28px;
    margin-bottom: 10px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
    padding: 34px 0;
}

.footer-grid h3 {
    margin: 0 0 12px;
    color: #ffffff;
}

.footer-grid p {
    margin: 0 0 8px;
    color: #d6d6d6;
}

.footer-grid ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-grid li {
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-links a {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--tvf-radius);
}

.footer-bottom {
    padding: 12px 0;
    background: #1b1b1b;
    color: #cccccc;
    font-size: 13px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.entry-card,
.page-content,
.not-found {
    padding: 24px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 920px) {
    .top-bar {
        font-size: 12px;
    }

    .top-bar-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        column-gap: 18px;
        row-gap: 6px;
        align-items: center;
        padding: 10px 0;
        min-height: 0;
    }

    .top-bar-inner > span {
        display: block;
        line-height: 1.35;
        color: rgba(255, 255, 255, 0.95);
    }

    .top-bar-inner > span:nth-of-type(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .top-bar-inner > span:nth-of-type(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .top-links {
        grid-column: 2;
        grid-row: 1 / span 2;
        width: auto;
        margin-left: 0;
        display: grid;
        grid-template-columns: auto auto;
        justify-content: end;
        column-gap: 14px;
        row-gap: 6px;
    }

    .top-links a {
        line-height: 1.3;
        white-space: nowrap;
        color: rgba(255, 255, 255, 0.88);
        font-weight: 600;
    }

    .top-links a:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .top-links a:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .top-links a:nth-child(3) {
        grid-column: 1 / span 2;
        grid-row: 2;
        justify-self: end;
    }

    .top-links-logged-in {
        grid-column: 2;
        grid-row: 1 / span 2;
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        row-gap: 6px;
        align-self: center;
        justify-items: end;
        max-width: 190px;
    }

    .top-user-greeting {
        width: 100%;
        max-width: 190px;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: right;
        font-size: 11px;
        line-height: 1.25;
        text-transform: none;
    }

    .top-user-actions {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: center;
        gap: 12px;
        width: 100%;
        white-space: nowrap;
    }

    .top-user-actions a {
        color: rgba(255, 255, 255, 0.9);
        font-size: 11px;
        font-weight: 700;
        line-height: 1.25;
    }

    .top-links a:nth-child(4) {
        display: none;
    }

    .header-main {
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-areas:
            "toggle brand cart"
            "search search search";
        align-items: center;
        gap: 10px 12px;
    }

    .site-branding-wrap {
        grid-area: brand;
        min-width: 0;
    }

    .menu-toggle {
        grid-area: toggle;
        display: block;
        position: relative;
        z-index: 30;
        touch-action: manipulation;
    }

    .account-link {
        display: none;
    }

    .header-search {
        grid-area: search;
        min-width: 0;
    }

    .header-cart {
        grid-area: cart;
        align-self: start;
    }

    .main-nav {
        display: none;
    }

    .main-nav.is-open,
    .nav-open .main-nav {
        display: block;
    }

    .main-nav ul {
        display: block;
    }

    .main-nav .sub-menu {
        position: static;
        display: block;
        box-shadow: none;
    }

    .main-nav .sub-menu a {
        padding-left: 28px;
        background: #ffffff;
    }

    .category-tiles,
    .product-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .single-product .related ul.products,
    .single-product .up-sells ul.products {
        grid-template-columns: minmax(0, 1fr) !important;
        justify-items: stretch !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
    }

    .single-product .related ul.products li.product,
    .single-product .up-sells ul.products li.product {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .single-product .related .product-image img,
    .single-product .up-sells .product-image img {
        padding: 0 !important;
    }

    .shop-layout,
    .single-product-layout,
    .footer-grid,
    .policy-grid,
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        display: none;
    }

    .woocommerce-checkout .tvf-checkout-brand {
        font-size: 34px;
    }

    .woocommerce-checkout form.checkout.woocommerce-checkout:not(.tvf-checkout) {
        grid-template-columns: 1fr;
        grid-template-areas:
            "intro"
            "customer"
            "payment"
            "reviewHeading"
            "review";
        gap: 16px;
    }

    .woocommerce-checkout form.checkout.woocommerce-checkout:not(.tvf-checkout) #order_review_heading {
        padding: 12px 14px;
    }

    .woocommerce-checkout .checkout-review,
    .woocommerce-checkout form.checkout.woocommerce-checkout:not(.tvf-checkout) #order_review,
    .woocommerce-checkout form.checkout.woocommerce-checkout:not(.tvf-checkout) #order_review_heading {
        border-left: 0;
        padding-left: 0;
    }

    .woocommerce-checkout .tvf-checkout-step-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .woocommerce-checkout .tvf-checkout-step h3,
    .woocommerce-checkout .tvf-checkout-payment-wrap > h3,
    .woocommerce-checkout #order_review_heading {
        font-size: 30px;
    }

    .woocommerce-checkout .tvf-checkout-login {
        font-size: 22px;
    }

    .woocommerce-checkout .tvf-checkout-shipping-note {
        font-size: 18px;
    }

    .woocommerce-checkout .form-row input.input-text,
    .woocommerce-checkout .form-row textarea,
    .woocommerce-checkout .form-row select {
        font-size: 18px;
    }

    .woocommerce-checkout #payment ul.payment_methods li {
        font-size: 16px;
    }

    .woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th,
    .woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td,
    .woocommerce-checkout .tvf-checkout-back a {
        font-size: 18px;
    }

    .woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total th,
    .woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total td {
        font-size: 28px;
    }

    .woocommerce-checkout #payment #place_order {
        min-height: 50px;
        font-size: 24px;
    }

    .single-product .single-product-summary .product_title {
        font-size: 34px !important;
        font-weight: 700 !important;
    }

    .single-product .single-product-summary .price {
        font-size: 40px !important;
    }

    .single-product .single-product-summary .short-description {
        font-size: 22px !important;
    }

    .single-product .tvf-product-meta-line {
        font-size: 20px;
        flex-wrap: wrap;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 20px, 1180px);
    }

    .header-main {
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-areas:
            "toggle brand cart"
            "search search search";
    }

    .header-cart {
        position: relative;
        grid-template-columns: 24px minmax(0, 1fr);
        min-width: 52px;
    }

    .cart-total {
        grid-column: auto;
        justify-self: end;
        font-size: 14px;
    }

    .cart-text {
        font-size: 16px;
    }

    .hero-banner {
        min-height: 300px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .section-heading {
        align-items: stretch;
    }

    .section-heading h2 {
        font-size: 18px;
    }

    .category-tiles {
        grid-template-columns: 1fr;
    }

    .product-grid,
    .woocommerce ul.products {
        gap: 10px;
    }

    .woocommerce ul.products li.product,
    .product-card {
        width: 100% !important;
        margin: 0 !important;
    }

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

    .product-image img {
        padding: 8px;
    }

    .product-body {
        padding: 10px;
    }

    .product-actions {
        grid-template-columns: 1fr;
    }

    .single-product-layout {
        padding: 14px;
    }

    .single-product .single-product-summary .product_title {
        font-size: 28px !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
    }

    .single-product .single-product-summary .price {
        font-size: 32px !important;
    }

    .single-product .single-product-summary .short-description,
    .single-product .tvf-product-meta-line {
        font-size: 18px !important;
    }

    .single-product .single_add_to_cart_button {
        min-width: 160px !important;
    }

    .single-product .single-product-gallery .flex-control-nav li {
        flex-basis: 74px !important;
    }

    .woocommerce-checkout .tvf-checkout-brand {
        font-size: 28px;
    }

    .woocommerce-checkout .tvf-checkout-step h3,
    .woocommerce-checkout .tvf-checkout-payment-wrap > h3,
    .woocommerce-checkout #order_review_heading {
        font-size: 24px;
    }

    .woocommerce-checkout .tvf-checkout-login {
        font-size: 18px;
    }

    .woocommerce-checkout .tvf-checkout-shipping-note,
    .woocommerce-checkout .form-row input.input-text,
    .woocommerce-checkout .form-row textarea,
    .woocommerce-checkout .form-row select,
    .woocommerce-checkout #payment ul.payment_methods li,
    .woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th,
    .woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td,
    .woocommerce-checkout .tvf-checkout-back a {
        font-size: 16px;
    }

    .woocommerce-checkout .form-row input.input-text,
    .woocommerce-checkout .form-row textarea,
    .woocommerce-checkout .form-row select,
    .woocommerce-checkout .select2-container .select2-selection--single {
        min-height: 44px;
    }

    .woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total th,
    .woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total td {
        font-size: 24px;
    }

    .woocommerce-checkout #payment #place_order {
        font-size: 20px;
    }

    .footer-bottom .container {
        flex-direction: column;
    }
}

@media (max-width: 991px) {
    .woocommerce-checkout .checkout-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .woocommerce-checkout .checkout-review {
        padding-left: 0 !important;
        border-left: 0 !important;
    }

    .woocommerce-checkout .tvf-checkout-step-row {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .woocommerce-checkout .tvf-checkout-brand {
        font-size: 32px !important;
    }

    .woocommerce-checkout .tvf-checkout-step h3,
    .woocommerce-checkout .tvf-checkout-payment-wrap > h3,
    .woocommerce-checkout #order_review_heading {
        font-size: 26px !important;
    }

    .woocommerce-checkout .tvf-checkout-login {
        font-size: 18px !important;
    }

    .woocommerce-checkout .tvf-checkout-shipping-note {
        font-size: 16px !important;
    }

    .woocommerce-checkout .form-row input.input-text,
    .woocommerce-checkout .form-row textarea,
    .woocommerce-checkout .form-row select,
    .woocommerce-checkout .select2-container .select2-selection--single {
        font-size: 16px !important;
        min-height: 44px !important;
    }

    .woocommerce-checkout #payment #place_order {
        font-size: 22px !important;
        min-height: 46px !important;
    }

    .woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th,
    .woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
        font-size: 17px !important;
    }

    .woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total th,
    .woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total td {
        font-size: 26px !important;
    }

    .woocommerce-checkout .tvf-checkout-back a {
        font-size: 17px !important;
    }
}

/* Checkout final reset (stable layout) */
.woocommerce-checkout .tvf-checkout-shell {
    max-width: 1180px !important;
    margin: 0 auto !important;
}

.woocommerce-checkout .checkout-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 360px !important;
    gap: 28px !important;
    align-items: start !important;
}

.woocommerce-checkout .checkout-review {
    border-left: 1px solid #e5e7eb !important;
    padding-left: 28px !important;
    margin-top: 0 !important;
}

.woocommerce-checkout .tvf-checkout-brand {
    margin: 0 0 18px !important;
    font-size: 42px !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    color: #ef1515 !important;
}

.woocommerce-checkout .tvf-checkout-step-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 18px !important;
    margin: 0 0 16px !important;
    align-items: start !important;
}

.woocommerce-checkout .tvf-checkout-step-customer {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.woocommerce-checkout .tvf-checkout-step-shipping {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.woocommerce-checkout .tvf-checkout-step h3,
.woocommerce-checkout .tvf-checkout-payment-wrap > h3,
.woocommerce-checkout #order_review_heading {
    margin: 0 !important;
    font-size: 40px !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;
    color: #111827 !important;
}

.woocommerce-checkout .tvf-checkout-login {
    font-size: 30px !important;
    line-height: 1 !important;
}

.woocommerce-checkout .tvf-checkout-shipping-note {
    display: block !important;
    flex: 1 1 auto !important;
    margin: 0 !important;
    padding: 12px 18px !important;
    background: #c8e8f2 !important;
    border: 0 !important;
    border-radius: 4px !important;
    color: #ef1515 !important;
    font-size: 38px !important;
    font-weight: 500 !important;
    line-height: 1.15 !important;
}

.woocommerce-checkout #customer_details {
    margin-top: 8px !important;
}

.woocommerce-checkout .form-row {
    margin: 0 0 10px !important;
}

.woocommerce-checkout .form-row label {
    margin-bottom: 4px !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
    color: #111827 !important;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .select2-container .select2-selection--single {
    min-height: 44px !important;
    border: 1px solid #d1d5db !important;
    border-radius: 3px !important;
    padding: 10px 12px !important;
    font-size: 15px !important;
    line-height: 1.3 !important;
}

.woocommerce-checkout .form-row textarea {
    min-height: 76px !important;
    resize: vertical !important;
}

.woocommerce-checkout #payment {
    margin-top: 16px !important;
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
}

.woocommerce-checkout #payment ul.payment_methods {
    border: 1px solid #d1d5db !important;
    border-radius: 4px !important;
    background: #fff !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
    font-size: 15px !important;
}

.woocommerce-checkout #payment #place_order {
    float: right !important;
    width: auto !important;
    min-width: 160px !important;
    min-height: 48px !important;
    padding: 0 24px !important;
    background: #111111 !important;
    color: #fff !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    border-radius: 4px !important;
}

.woocommerce-checkout .checkout-review > h3,
.woocommerce-checkout #order_review_heading {
    margin-bottom: 12px !important;
}

.woocommerce-checkout .tvf-checkout-coupon {
    margin: 14px 0 !important;
}

.woocommerce-checkout .tvf-checkout-coupon input[type="text"] {
    min-height: 46px !important;
}

.woocommerce-checkout .tvf-checkout-coupon .button {
    min-height: 46px !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
    font-size: 32px !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total td,
.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total .amount {
    font-size: 52px !important;
    font-weight: 700 !important;
    color: #ef1515 !important;
}

.woocommerce-checkout .tvf-checkout-back {
    margin-top: 16px !important;
}

.woocommerce-checkout .tvf-checkout-back a {
    font-size: 18px !important;
    color: #ef1515 !important;
}

@media (max-width: 1200px) {
    .woocommerce-checkout .tvf-checkout-step-row {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .woocommerce-checkout .tvf-checkout-step-shipping {
        align-items: flex-start !important;
    }
}

@media (max-width: 991px) {
    .woocommerce-checkout .checkout-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .woocommerce-checkout .checkout-review {
        border-left: 0 !important;
        border-top: 1px solid #e5e7eb !important;
        padding-left: 0 !important;
        padding-top: 18px !important;
    }

    .woocommerce-checkout .tvf-checkout-brand {
        font-size: 34px !important;
    }

    .woocommerce-checkout .tvf-checkout-step h3,
    .woocommerce-checkout .tvf-checkout-payment-wrap > h3,
    .woocommerce-checkout #order_review_heading {
        font-size: 30px !important;
    }

    .woocommerce-checkout .tvf-checkout-login {
        font-size: 24px !important;
    }

    .woocommerce-checkout .tvf-checkout-shipping-note {
        font-size: 24px !important;
        padding: 10px 14px !important;
    }

    .woocommerce-checkout #payment #place_order {
        width: 100% !important;
        float: none !important;
        min-height: 44px !important;
        font-size: 18px !important;
    }

    .woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th,
    .woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
        font-size: 24px !important;
    }

    .woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total th,
    .woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total td,
    .woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total .amount {
        font-size: 36px !important;
    }
}

/* Checkout native fallback (disable oversized custom checkout styling) */
.woocommerce-checkout .tvf-checkout-shell {
    max-width: 1140px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.woocommerce-checkout .checkout-grid {
    grid-template-columns: minmax(0, 1fr) 380px !important;
    gap: 28px !important;
}

.woocommerce-checkout .checkout-review {
    border-left: 1px solid #e5e7eb !important;
    padding-left: 24px !important;
}

.woocommerce-checkout .tvf-checkout-brand {
    font-size: 34px !important;
    line-height: 1.15 !important;
    margin-bottom: 12px !important;
}

.woocommerce-checkout .tvf-checkout-step h3,
.woocommerce-checkout .tvf-checkout-payment-wrap > h3,
.woocommerce-checkout #order_review_heading {
    font-size: 34px !important;
    line-height: 1.15 !important;
}

.woocommerce-checkout .tvf-checkout-login {
    font-size: 20px !important;
}

.woocommerce-checkout .tvf-checkout-shipping-note {
    font-size: 18px !important;
    line-height: 1.3 !important;
    padding: 10px 12px !important;
}

.woocommerce-checkout .form-row label {
    font-size: 14px !important;
    line-height: 1.3 !important;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .select2-container .select2-selection--single {
    min-height: 44px !important;
    padding: 10px 12px !important;
    font-size: 15px !important;
    line-height: 1.3 !important;
}

.woocommerce-checkout .form-row textarea {
    min-height: 90px !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
    font-size: 15px !important;
}

.woocommerce-checkout #payment #place_order {
    min-height: 46px !important;
    min-width: 170px !important;
    font-size: 16px !important;
    padding: 0 18px !important;
}

.woocommerce-checkout .tvf-checkout-item-title {
    font-size: 15px !important;
    line-height: 1.3 !important;
}

.woocommerce-checkout .tvf-checkout-item-meta dl.variation,
.woocommerce-checkout .woocommerce-checkout-review-order-table .product-total,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
    font-size: 14px !important;
    line-height: 1.4 !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total td,
.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total .amount {
    font-size: 24px !important;
}

.woocommerce-checkout .tvf-checkout-back a {
    font-size: 14px !important;
}

@media (max-width: 991px) {
    .woocommerce-checkout .checkout-grid {
        grid-template-columns: 1fr !important;
    }

    .woocommerce-checkout .checkout-review {
        border-left: 0 !important;
        border-top: 1px solid #e5e7eb !important;
        padding-left: 0 !important;
        padding-top: 16px !important;
    }

    .woocommerce-checkout .tvf-checkout-brand {
        font-size: 28px !important;
    }

    .woocommerce-checkout .tvf-checkout-step h3,
    .woocommerce-checkout .tvf-checkout-payment-wrap > h3,
    .woocommerce-checkout #order_review_heading {
        font-size: 24px !important;
    }
}

/* TVF_COMPACT_CATEGORY_TILES_20260518 */
/* TVF_CAT_LAYOUT_3_2_20260518 */
@media (max-width: 920px) {
  .home-main .category-tiles {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-top: 14px !important;
  }

  .home-main .category-tile {
    grid-column: span 2 !important;
    min-height: 176px !important;
    padding: 8px 6px 5px !important;
    border-radius: 8px !important;
    border: 1px solid #e8edf5 !important;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;
    background: #ffffff !important;
  }

  .home-main .category-thumb {
    width: 112px !important;
    height: 112px !important;
    border-radius: 10px !important;
    margin-bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #e9f0ff !important;
    overflow: hidden !important;
  }

  .home-main .category-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .home-main .category-name {
    margin-top: 6px !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    width: 100% !important;
    font-size: 16px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    max-width: 100% !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .home-main .category-tile:nth-child(4) {
    grid-column: 2 / span 2 !important;
  }

  .home-main .category-tile:nth-child(5) {
    grid-column: 4 / span 2 !important;
  }
}

@media (max-width: 560px) {
  .home-main .category-tiles {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .home-main .category-tile {
    min-height: 164px !important;
    padding: 8px 6px 5px !important;
  }

  .home-main .category-thumb {
    width: 100px !important;
    height: 100px !important;
    border-radius: 10px !important;
  }

  .home-main .category-name {
    margin-top: 6px !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
  }
}

/* TVF_FORCE_HOME_CATEGORY_ROW_DESKTOP_20260519 */
@media (min-width: 921px) {
  .home-main .category-tiles {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 16px !important;
    width: 100% !important;
    justify-items: stretch !important;
    align-items: stretch !important;
  }

  .home-main .category-tile {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
  }
}

/* TVF_MOBILE_PRODUCT_GALLERY_SLIDER_20260521 */
@media (max-width: 767px) {
  body.single-product .single-product-gallery,
  body.single-product .single-product-gallery .woocommerce-product-gallery,
  body.single-product .single-product-gallery .woocommerce-product-gallery__wrapper,
  body.single-product .single-product-gallery .flex-viewport,
  body.single-product .single-product-gallery .flex-viewport .slides,
  body.single-product .single-product-gallery .flex-viewport .slides > li,
  body.single-product .single-product-gallery .woocommerce-product-gallery__image,
  body.single-product .single-product-gallery .woocommerce-product-gallery__image > a {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  body.single-product .single-product-gallery .flex-viewport {
    overflow: hidden !important;
    border: 0 !important;
  }

  body.single-product .single-product-gallery .woocommerce-product-gallery__image img,
  body.single-product .single-product-gallery .flex-viewport .slides > li img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  body.single-product .single-product-gallery .flex-control-thumbs,
  body.single-product .single-product-gallery .flex-control-nav.flex-control-thumbs {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 12px 0 0 !important;
    padding: 0 2px 2px !important;
    list-style: none !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x proximity !important;
  }

  body.single-product .single-product-gallery .flex-control-thumbs li,
  body.single-product .single-product-gallery .flex-control-nav.flex-control-thumbs li {
    flex: 0 0 84px !important;
    width: 84px !important;
    min-width: 84px !important;
    max-width: 84px !important;
    margin: 0 !important;
    padding: 0 !important;
    scroll-snap-align: start !important;
  }

  body.single-product .single-product-gallery .flex-control-thumbs li img,
  body.single-product .single-product-gallery .flex-control-nav.flex-control-thumbs li img {
    width: 100% !important;
    height: 84px !important;
    margin: 0 !important;
    object-fit: cover !important;
    object-position: center center !important;
    border: 2px solid #e6e6e6 !important;
    border-radius: 6px !important;
    cursor: pointer !important;
  }

body.single-product .single-product-gallery .flex-control-thumbs li img.flex-active,
  body.single-product .single-product-gallery .flex-control-nav.flex-control-thumbs li img.flex-active {
    border-color: #e30613 !important;
  }
}

/* TVF_PRODUCT_TITLE_STRONG_20260525 */
html body.single-product .single-product-summary h1.product_title.entry-title {
  font-size: 45px !important;
  line-height: 1.18 !important;
  font-weight: 700 !important;
}

@media (max-width: 767px) {
  html body.single-product .single-product-summary h1.product_title.entry-title {
    font-size: 24px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
  }
}

/* TVF_COMPACT_PRODUCT_ORDER_UI_20260708 */
html body.single-product .single-product-summary form.cart,
html body.single-product .single-product-summary form.cart .single_variation_wrap {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 0 8px !important;
  width: 300px !important;
  max-width: 100% !important;
}

html body.single-product .single-product-summary form.cart .woocommerce-variation-add-to-cart {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 8px 8px !important;
  width: 300px !important;
  max-width: 100% !important;
}

html body.single-product .single-product-summary form.cart .variations {
  margin-bottom: 8px !important;
}

html body.single-product .single-product-summary form.cart .variations,
html body.single-product .single-product-summary form.cart .single_variation,
html body.single-product .single-product-summary form.cart .woocommerce-variation {
  width: 100% !important;
  flex: 0 0 100% !important;
}

html body.single-product .single-product-summary form.cart .quantity::before {
  content: none !important;
}

html body.single-product .single-product-summary form.cart .quantity,
html body.single-product .single-product-summary form.cart .quantity.tvf-qty-pill-ready {
  flex: 0 0 112px !important;
  width: 112px !important;
  min-width: 112px !important;
  max-width: 112px !important;
  height: 36px !important;
  margin: 0 !important;
  align-self: center !important;
}

html body.single-product .single-product-summary form.cart .tvf-inline-stock,
html body.single-product .single-product-summary form.cart .tvf-inline-stock p,
html body.single-product .single-product-summary form.cart .tvf-inline-stock-text,
html body.single-product .single-product-summary form.cart .stock {
  flex: 1 1 150px !important;
  width: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 36px !important;
  color: #111 !important;
  font-size: 16px !important;
  white-space: nowrap !important;
}

html body.single-product .single-product-summary form.cart .tvf-buy-row-break {
  display: block !important;
  flex: 0 0 100% !important;
  width: 100% !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

html body.single-product .single-product-summary form.cart .single_add_to_cart_button,
html body.single-product .single-product-summary form.cart .tvf-buy-now-button {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  width: auto !important;
  height: 45px !important;
  margin: 0 !important;
  border-radius: 5px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

html body.single-product .single-product-summary form.cart .tvf-buy-now-button {
  order: 20 !important;
  background: #fff6ea !important;
  border: 1px solid #f3d9b7 !important;
  color: #3b281d !important;
}

html body.single-product .single-product-summary form.cart .tvf-buy-now-button:active,
html body.single-product .single-product-summary form.cart .tvf-buy-now-button:focus {
  background: #3b302b !important;
  border-color: #3b302b !important;
  color: #fff !important;
}

html body.single-product .single-product-summary form.cart .single_add_to_cart_button:not(.tvf-buy-now-button) {
  order: 21 !important;
  background: #fff8ee !important;
  border: 1px solid #f3d9b7 !important;
  color: #3b281d !important;
}

html body.single-product .single-product-summary form.cart .single_add_to_cart_button:not(.tvf-buy-now-button):hover,
html body.single-product .single-product-summary form.cart .tvf-buy-now-button:hover {
  background: #fff1df !important;
  color: #3b281d !important;
}

html body.single-product .single-product-summary form.cart .zalo-button {
  flex: 0 0 100% !important;
  width: max-content !important;
  margin-top: 4px !important;
}

@media (max-width: 480px) {
  html body.single-product .single-product-summary form.cart,
  html body.single-product .single-product-summary form.cart .single_variation_wrap,
  html body.single-product .single-product-summary form.cart .woocommerce-variation-add-to-cart {
    width: 100% !important;
  }

  html body.single-product .single-product-summary form.cart .tvf-inline-stock,
  html body.single-product .single-product-summary form.cart .tvf-inline-stock p,
  html body.single-product .single-product-summary form.cart .tvf-inline-stock-text,
  html body.single-product .single-product-summary form.cart .stock {
    font-size: 15px !important;
  }
}

/* Product image lightbox. */
body.single-product .woocommerce-product-gallery__image a,
body.single-product .tvf-mobile-gallery-main-image {
  cursor: zoom-in;
}

body.tvf-lightbox-open {
  overflow: hidden !important;
}

.tvf-product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 56px 24px 24px;
  background: rgba(0, 0, 0, 0.92);
  box-sizing: border-box;
}

.tvf-product-lightbox.is-open {
  display: flex;
}

.tvf-product-lightbox__image {
  display: block;
  width: auto;
  height: auto;
  max-width: min(94vw, 1400px);
  max-height: calc(100vh - 80px);
  object-fit: contain;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.32);
}

.tvf-product-lightbox__close {
  position: fixed;
  top: 12px;
  right: 16px;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 38px;
  text-align: center;
  cursor: pointer;
}

.tvf-product-lightbox__close:hover,
.tvf-product-lightbox__close:focus-visible {
  border-color: #fff;
  background: #e11b22;
  outline: none;
}

.tvf-product-lightbox__nav {
  position: fixed;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 66px;
  margin: 0;
  padding: 0 0 5px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.tvf-product-lightbox__nav--previous {
  left: 18px;
}

.tvf-product-lightbox__nav--next {
  right: 18px;
}

.tvf-product-lightbox__nav:hover,
.tvf-product-lightbox__nav:focus-visible {
  border-color: #fff;
  background: #e11b22;
  outline: none;
}

.tvf-product-lightbox__nav[hidden] {
  display: none !important;
}

@media (max-width: 767px) {
  .tvf-product-lightbox {
    padding: 52px 10px 12px;
  }

  .tvf-product-lightbox__image {
    max-width: calc(100vw - 20px);
    max-height: calc(100vh - 64px);
  }

  .tvf-product-lightbox__close {
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    font-size: 28px;
    line-height: 36px;
  }

  .tvf-product-lightbox__nav {
    width: 42px;
    height: 54px;
    padding-bottom: 4px;
    font-size: 40px;
  }

  .tvf-product-lightbox__nav--previous {
    left: 6px;
  }

  .tvf-product-lightbox__nav--next {
    right: 6px;
  }
}

/* ===== WOOCOMMERCE CART PAGE v3 ===== */
.woocommerce-cart body,
.woocommerce-cart .site-main { background: #f5f5f5 !important; }
.woocommerce-cart .container.content-area { padding: 0 !important; }
.woocommerce-cart article.page-content { padding: 0 !important; margin: 0 !important; }
.woocommerce-cart article.page-content > h1 { display: none !important; }

.woocommerce-cart .woocommerce {
    display: grid !important;
    grid-template-columns: 1fr 340px !important;
    column-gap: 16px !important;
    row-gap: 0 !important;
    align-items: start !important;
    padding: 20px 20px 32px !important;
    float: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
.woocommerce-cart .woocommerce > .woocommerce-notices-wrapper {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
}
.woocommerce-cart .woocommerce > .tvf-cart-back {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
}
.woocommerce-cart .woocommerce > .woocommerce-cart-form {
    grid-column: 1 !important;
    grid-row: 2 !important;
    background: #fff !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}
.woocommerce-cart .woocommerce > .cart-collaterals {
    grid-column: 2 !important;
    grid-row: 2 !important;
    float: none !important;
    width: auto !important;
    background: #fff !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}
.tvf-cart-back {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    color: var(--tvf-red) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    padding: 0 0 12px !important;
    margin-bottom: 0 !important;
}
.tvf-cart-back:hover { opacity: .85 !important; }
.tvf-free-ship {
    text-align: center !important;
    color: var(--tvf-red) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    padding: 10px 16px !important;
    border-bottom: 1px solid #f0f0f0 !important;
}
.tvf-cart-header-row {
    display: flex !important;
    align-items: center !important;
    padding: 10px 16px !important;
    border-bottom: 1px solid #f0f0f0 !important;
}
.tvf-select-all-wrap {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 13px !important;
    color: #333 !important;
    cursor: pointer !important;
}
.tvf-select-all-wrap input[type=checkbox] {
    width: 20px !important;
    height: 20px !important;
    accent-color: var(--tvf-red) !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}
.tvf-col-hdr { font-size: 13px !important; color: #888 !important; font-weight: 400 !important; flex-shrink: 0 !important; text-align: center !important; }
.tvf-hdr-price { width: 110px !important; }
.tvf-hdr-qty { width: 120px !important; }
.tvf-hdr-sub { width: 100px !important; text-align: right !important; }
.tvf-hdr-del { width: 36px !important; }
.woocommerce-cart table.shop_table.cart {
    display: block !important;
    border: none !important;
    margin: 0 !important;
    width: 100% !important;
}
.woocommerce-cart table.shop_table.cart thead { display: none !important; }
.woocommerce-cart table.shop_table.cart tbody,
.woocommerce-cart table.shop_table.cart tfoot { display: block !important; }
.woocommerce-cart table.shop_table.cart tbody tr.cart_item {
    display: flex !important;
    align-items: center !important;
    padding: 14px 16px !important;
    gap: 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    border-right: none !important;
    border-left: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
.woocommerce-cart table.shop_table.cart tbody td {
    padding: 0 !important;
    border: none !important;
    display: block !important;
}
.tvf-row-chk { width: 24px !important; flex-shrink: 0 !important; margin-right: 10px !important; }
.tvf-row-chk input[type=checkbox] {
    width: 20px !important;
    height: 20px !important;
    accent-color: var(--tvf-red) !important;
    cursor: pointer !important;
    display: block !important;
    margin: 0 !important;
}
.woocommerce-cart td.product-thumbnail { width: 72px !important; flex-shrink: 0 !important; margin-right: 12px !important; }
.woocommerce-cart td.product-thumbnail a { display: block !important; }
.woocommerce-cart td.product-thumbnail img { width: 70px !important; height: 70px !important; object-fit: cover !important; border-radius: 4px !important; display: block !important; }
.woocommerce-cart td.product-name { flex: 1 !important; text-align: left !important; min-width: 0 !important; padding-right: 8px !important; }
.woocommerce-cart td.product-name a { color: #222 !important; font-size: 14px !important; font-weight: 400 !important; text-decoration: none !important; display: block !important; line-height: 1.4 !important; margin-bottom: 4px !important; }
.woocommerce-cart td.product-name a:hover { color: var(--tvf-red) !important; }
.woocommerce-cart td.product-name .variation { margin: 0 !important; }
.woocommerce-cart td.product-name .variation dt,
.woocommerce-cart td.product-name .variation dd { display: inline !important; margin: 0 !important; font-size: 12px !important; color: #999 !important; }
.woocommerce-cart td.product-price { width: 110px !important; flex-shrink: 0 !important; text-align: center !important; }
.woocommerce-cart td.product-price .woocommerce-Price-amount { color: var(--tvf-red) !important; font-weight: 500 !important; font-size: 14px !important; }
.woocommerce-cart td.product-quantity { width: 120px !important; flex-shrink: 0 !important; text-align: center !important; }
.woocommerce-cart td.product-quantity .quantity { display: inline-flex !important; align-items: center !important; border: 1px solid #d8d8d8 !important; border-radius: 999px !important; height: 34px !important; overflow: hidden !important; }
.woocommerce-cart td.product-quantity .quantity input.qty { width: 38px !important; text-align: center !important; border: none !important; border-left: 1px solid #d8d8d8 !important; border-right: 1px solid #d8d8d8 !important; padding: 0 2px !important; font-size: 14px !important; font-weight: 500 !important; height: 100% !important; background: #fff !important; box-sizing: border-box !important; -moz-appearance: textfield !important; appearance: textfield !important; outline: none !important; }
.woocommerce-cart td.product-quantity .quantity input.qty::-webkit-inner-spin-button,
.woocommerce-cart td.product-quantity .quantity input.qty::-webkit-outer-spin-button { -webkit-appearance: none !important; margin: 0 !important; }
.woocommerce-cart td.product-quantity .quantity .tvf-cart-minus,
.woocommerce-cart td.product-quantity .quantity .tvf-cart-plus { width: 34px !important; height: 34px !important; border: none !important; background: #fff !important; color: #555 !important; font-size: 18px !important; font-weight: 300 !important; cursor: pointer !important; flex-shrink: 0 !important; display: inline-flex !important; align-items: center !important; justify-content: center !important; transition: color .15s !important; line-height: 1 !important; }
.woocommerce-cart td.product-quantity .quantity .tvf-cart-minus:hover,
.woocommerce-cart td.product-quantity .quantity .tvf-cart-plus:hover { color: var(--tvf-red) !important; }
.woocommerce-cart td.product-subtotal { width: 100px !important; flex-shrink: 0 !important; text-align: right !important; }
.woocommerce-cart td.product-subtotal .woocommerce-Price-amount { color: var(--tvf-red) !important; font-weight: 500 !important; font-size: 14px !important; }
.woocommerce-cart td.product-remove { width: 36px !important; flex-shrink: 0 !important; text-align: center !important; }
.woocommerce-cart td.product-remove a.remove { display: inline-flex !important; align-items: center !important; justify-content: center !important; width: 28px !important; height: 28px !important; border-radius: 50% !important; background: transparent !important; color: #bbb !important; font-size: 0 !important; border: none !important; cursor: pointer !important; transition: color .2s !important; text-decoration: none !important; }
.woocommerce-cart td.product-remove a.remove:hover { color: var(--tvf-red) !important; }
.woocommerce-cart table.cart tfoot tr { display: block !important; }
.woocommerce-cart table.cart tfoot .actions { display: none !important; }
.woocommerce-cart .cart_totals { float: none !important; width: 100% !important; padding: 20px !important; }
.woocommerce-cart .cart_totals > h2 { display: none !important; }
.tvf-voucher-wrap { padding-bottom: 16px !important; margin-bottom: 16px !important; border-bottom: 1px solid #eee !important; }
.tvf-voucher-label { display: block !important; font-size: 14px !important; color: #333 !important; font-weight: 500 !important; margin-bottom: 10px !important; }
.tvf-voucher-row { display: flex !important; gap: 8px !important; }
.tvf-voucher-input { flex: 1 !important; padding: 9px 12px !important; border: 1px solid #ddd !important; border-radius: 6px !important; font-size: 13px !important; color: #333 !important; outline: none !important; background: #fafafa !important; }
.tvf-voucher-input::placeholder { color: #aaa !important; }
.tvf-voucher-input:focus { border-color: var(--tvf-red) !important; }
.tvf-voucher-btn { padding: 9px 14px !important; border: 1.5px solid var(--tvf-red) !important; border-radius: 6px !important; background: #fff !important; color: var(--tvf-red) !important; font-size: 13px !important; font-weight: 600 !important; cursor: pointer !important; white-space: nowrap !important; transition: all .2s !important; }
.tvf-voucher-btn:hover { background: var(--tvf-red) !important; color: #fff !important; }
.woocommerce-cart .cart_totals table.shop_table { border: none !important; width: 100% !important; display: block !important; margin: 0 !important; }
.woocommerce-cart .cart_totals table.shop_table tbody { display: block !important; }
.woocommerce-cart .cart_totals table.shop_table tr { display: flex !important; justify-content: space-between !important; align-items: center !important; padding: 8px 0 !important; border: none !important; }
.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td { display: block !important; padding: 0 !important; border: none !important; font-size: 14px !important; }
.woocommerce-cart .cart_totals table.shop_table th { color: #555 !important; font-weight: 400 !important; }
.woocommerce-cart .cart_totals table.shop_table td { text-align: right !important; color: #333 !important; }
.woocommerce-cart .cart_totals .tvf-disc-row th { color: #555 !important; font-weight: 400 !important; }
.woocommerce-cart .cart_totals .tvf-disc-row td { color: var(--tvf-red) !important; }
.woocommerce-cart .cart_totals table.shop_table .order-total { border-top: 1px solid #eee !important; margin-top: 6px !important; padding-top: 14px !important; }
.woocommerce-cart .cart_totals table.shop_table .order-total th { font-size: 15px !important; font-weight: 700 !important; color: #222 !important; }
.woocommerce-cart .cart_totals table.shop_table .order-total .woocommerce-Price-amount { color: var(--tvf-red) !important; font-size: 22px !important; font-weight: 700 !important; }
.woocommerce-cart .cart_totals tr.shipping,
.woocommerce-cart .cart_totals .shipping-calculator-button,
.woocommerce-cart .cart_totals .shipping-calculator-form { display: none !important; }
.woocommerce-cart .wc-proceed-to-checkout { padding: 16px 0 0 !important; }
.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.button.alt { display: block !important; width: 100% !important; padding: 14px !important; background: var(--tvf-red) !important; color: #fff !important; border: none !important; border-radius: 999px !important; font-size: 16px !important; font-weight: 600 !important; text-align: center !important; text-decoration: none !important; cursor: pointer !important; transition: opacity .2s !important; box-sizing: border-box !important; }
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover { opacity: .88 !important; }
.tvf-scallop { height: 16px !important; display: block !important; background-image: radial-gradient(circle at 10px 0, #f5f5f5 8px, #fff 9px) !important; background-size: 20px 16px !important; background-repeat: repeat-x !important; background-position: left top !important; background-color: #fff !important; margin-top: 16px !important; }
.woocommerce-cart a.tvf-cart-continue,
.woocommerce-cart .return-to-shop { display: none !important; }

.woocommerce-cart table.cart tfoot,
.woocommerce-cart table.cart tfoot tr,
.woocommerce-cart table.cart tfoot td,
.woocommerce-cart table.cart tfoot td.actions,
.woocommerce-cart .woocommerce-cart-form .actions,
.woocommerce-cart .woocommerce-cart-form .coupon,
.woocommerce-cart .woocommerce-cart-form input[name="coupon_code"],
.woocommerce-cart .woocommerce-cart-form button[name="apply_coupon"],
.woocommerce-cart .woocommerce-cart-form button[name="update_cart"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}
.woocommerce-cart .woocommerce-cart-form input[name="coupon_code"],
.woocommerce-cart .woocommerce-cart-form button[name="apply_coupon"],
.woocommerce-cart .woocommerce-cart-form button[name="update_cart"] {
    display: block !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.tvf-disc-voucher-real { display: flex !important; justify-content: space-between !important; padding: 8px 0 !important; border: none !important; }
.tvf-disc-voucher-real th { color: #555 !important; font-weight: 400 !important; font-size: 14px !important; padding: 0 !important; border: none !important; display: block !important; }
.tvf-disc-voucher-real td { color: var(--tvf-red) !important; font-size: 14px !important; padding: 0 !important; border: none !important; display: block !important; text-align: right !important; }
.tvf-disc-voucher-real td .woocommerce-Price-amount { color: var(--tvf-red) !important; font-weight: 500 !important; }
.tvf-disc-voucher-real th a { color: var(--tvf-red) !important; text-decoration: none !important; font-size: 12px !important; margin-left: 4px !important; }
.tvf-disc-voucher-real th a:hover { text-decoration: underline !important; }
.cart_totals .tvf-disc-row td,
.cart_totals .tvf-disc-row td *,
.cart_totals .tvf-disc-direct td,
.cart_totals .tvf-disc-direct td *,
.cart_totals .tvf-disc-voucher-real td,
.cart_totals .tvf-disc-voucher-real td * { color: var(--tvf-red) !important; font-weight: 500 !important; }
#tvf-update-cart-bottom,
button#tvf-update-cart-bottom,
.woocommerce-cart #tvf-update-cart-bottom { display: none !important; visibility: hidden !important; position: absolute !important; left: -99999px !important; top: -99999px !important; width: 0 !important; height: 0 !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }

@media (max-width: 860px) {
    .woocommerce-cart .woocommerce { grid-template-columns: 1fr !important; padding: 12px 12px 24px !important; }
    .woocommerce-cart .woocommerce > .cart-collaterals { grid-column: 1 !important; grid-row: 3 !important; }
}
