:root {
    --ts-bg: #ffffff;
    --ts-soft: #f6f8fb;
    --ts-card: #ffffff;
    --ts-text: #172033;
    --ts-muted: #637083;
    --ts-border: #dfe7f0;
    --ts-blue: #1769e0;
    --ts-green: #14a46c;
    --ts-shadow: 0 18px 50px rgba(30, 48, 80, 0.08);
    --ts-radius: 8px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--ts-bg);
    color: var(--ts-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

body:not(.wp-admin) {
    overflow-x: hidden;
}

a {
    color: var(--ts-header-accent);
    text-decoration: none;
}

a:hover {
    color: #0d4fb3;
}

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

.ts-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--ts-border);
    box-shadow: 0 10px 30px rgba(23, 32, 51, 0.07);
}

.ts-nav {
    display: grid;
    grid-template-columns: minmax(180px, auto) minmax(280px, 720px) auto;
    align-items: center;
    gap: 24px;
    max-width: 1480px;
    margin: 0 auto;
    padding: 16px clamp(16px, 4vw, 48px) 12px;
}

.ts-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ts-text);
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
}

.ts-logo-mark {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 12px;
    background: var(--ts-header-accent);
    color: #fff;
    font-size: 0.92rem;
    box-shadow: 0 10px 22px rgba(15, 157, 122, 0.24);
}

.ts-logo-image {
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 16px;
    background: transparent;
    box-shadow: none;
}

.ts-logo-image .custom-logo-link {
    display: inline-flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.ts-logo-image .custom-logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ts-logo-text {
    display: grid;
    gap: 0;
    line-height: 1.1;
}

.ts-logo-text strong {
    font-size: 1rem;
}

.ts-logo-text small {
    color: var(--ts-muted);
    font-size: 0.76rem;
    font-weight: 650;
}

.ts-nav-menu-row {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px) 12px;
}

.ts-menu ul,
.ts-menu__fallback {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ts-menu li {
    margin: 0;
}

.ts-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 13px;
    border-radius: 999px;
    color: var(--ts-text);
    font-size: 0.95rem;
    font-weight: 750;
}

.ts-menu a:hover,
.ts-menu a.is-active,
.ts-menu .current-menu-item > a {
    background: #eaf7f2;
    color: var(--ts-header-accent);
}

.ts-menu-toggle {
    display: none;
}

.ts-search {
    display: flex;
    min-width: 0;
    width: 100%;
    border: 1px solid var(--ts-border);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(23, 32, 51, 0.05);
    overflow: hidden;
}

.ts-search input[type="search"] {
    width: 100%;
    min-width: 0;
    border: 0;
    border-radius: 999px 0 0 999px;
    padding: 14px 18px;
    background: #fff;
    font: inherit;
    outline: none;
}

.ts-search input[type="search"]:focus {
    box-shadow: inset 0 0 0 2px rgba(15, 157, 122, 0.18);
}

.ts-search button,
.ts-button,
.button,
button,
input[type="submit"] {
    border: 0;
    border-radius: var(--ts-radius);
    background: var(--ts-header-accent);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 750;
    padding: 11px 16px;
}

.ts-search button {
    min-width: 104px;
    border-radius: 999px;
    margin: 4px;
    padding: 10px 18px;
}

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

.ts-icon-link,
.ts-cart-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    border: 1px solid var(--ts-border);
    border-radius: 999px;
    background: #fff;
    color: var(--ts-text);
    font-weight: 750;
}

.ts-icon-link:hover,
.ts-cart-link:hover {
    border-color: rgba(15, 157, 122, 0.32);
    background: #f2faf7;
    color: var(--ts-header-accent);
}

.ts-icon-link svg,
.ts-cart-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.ts-cart-link {
    gap: 8px;
    padding: 0 12px;
}

.ts-cart-count {
    display: inline-grid;
    min-width: 24px;
    min-height: 24px;
    place-items: center;
    border-radius: 999px;
    background: var(--ts-green);
    color: #fff;
    font-size: 0.8rem;
}

.ts-main {
    min-height: 70vh;
}

.ts-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
    padding: clamp(48px, 8vw, 96px) clamp(16px, 4vw, 48px);
    background:
        radial-gradient(circle at 80% 10%, rgba(20, 164, 108, 0.14), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.ts-hero-slider {
    position: relative;
    min-height: 560px;
    isolation: isolate;
    overflow: hidden;
    background: #f8fbff;
    border-bottom: 1px solid var(--ts-border);
}

.ts-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    min-height: 560px;
    padding: 68px clamp(16px, 4vw, 48px);
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(255, 255, 255, 0.24) 68%, rgba(255, 255, 255, 0.05) 100%),
        var(--slide-image);
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 700ms ease, transform 700ms ease;
    pointer-events: none;
}

.ts-slide.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.ts-slide__content {
    width: min(640px, 100%);
    padding: 34px;
    border: 1px solid rgba(223, 231, 240, 0.82);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 24px 70px rgba(30, 48, 80, 0.14);
    backdrop-filter: blur(14px);
}

.ts-slide h1,
.ts-slide h2 {
    max-width: 760px;
    margin: 10px 0 16px;
    color: var(--ts-text);
    font-size: 4.1rem;
    line-height: 1.03;
    letter-spacing: 0;
}

.ts-slide p {
    max-width: 620px;
    margin: 0;
    color: var(--ts-muted);
    font-size: 1.08rem;
}

.ts-slider-controls {
    position: absolute;
    z-index: 3;
    bottom: 24px;
    left: clamp(16px, 4vw, 48px);
    display: flex;
    gap: 10px;
}

.ts-slider-controls button {
    width: 42px;
    height: 5px;
    padding: 0;
    border-radius: 999px;
    background: rgba(23, 32, 51, 0.26);
    transition: width 180ms ease, background 180ms ease;
}

.ts-slider-controls button.is-active {
    width: 68px;
    background: var(--ts-header-accent);
}

.ts-hero h1 {
    max-width: 760px;
    margin: 10px 0 16px;
    color: var(--ts-text);
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.ts-hero p {
    max-width: 640px;
    margin: 0;
    color: var(--ts-muted);
    font-size: 1.08rem;
}

.ts-eyebrow {
    color: var(--ts-green);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ts-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.ts-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ts-button--secondary {
    background: #fff;
    color: var(--ts-header-accent);
    border: 1px solid var(--ts-border);
}

.ts-hero__panel {
    padding: 28px;
    border: 1px solid var(--ts-border);
    border-radius: var(--ts-radius);
    background: #fff;
    box-shadow: var(--ts-shadow);
}

.ts-hero__panel span,
.ts-hero__panel p {
    color: var(--ts-muted);
}

.ts-hero__panel strong {
    display: block;
    margin: 8px 0;
    color: var(--ts-header-accent);
    font-size: 4rem;
    line-height: 1;
}

.ts-section,
.ts-page-shell,
.ts-info-grid {
    padding: clamp(42px, 7vw, 82px) clamp(16px, 4vw, 48px);
}

.ts-page-shell {
    max-width: 1480px;
    margin: 0 auto;
    width: 100%;
}

.ts-section--soft {
    background: var(--ts-soft);
}

.ts-section__heading {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 26px;
}

.ts-section__heading h2,
.ts-info-grid h2 {
    margin: 4px 0 0;
    color: var(--ts-text);
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    line-height: 1.12;
}

.ts-section__heading p,
.ts-info-grid p {
    max-width: 560px;
    margin: 0;
    color: var(--ts-muted);
}

.ts-category-grid,
.ts-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.ts-category-card,
.ts-product-card,
.ts-info-grid article,
.woocommerce-cart-form,
.cart_totals,
.woocommerce-checkout-review-order,
.woocommerce form.checkout,
.woocommerce div.product {
    border: 1px solid var(--ts-border);
    border-radius: var(--ts-radius);
    background: var(--ts-card);
    box-shadow: 0 12px 30px rgba(30, 48, 80, 0.06);
}

.ts-category-card {
    display: grid;
    gap: 14px;
    padding: 18px;
    color: var(--ts-text);
    min-height: 230px;
    align-content: start;
}

.ts-category-card__image {
    display: grid;
    width: 100%;
    height: 132px;
    place-items: center;
    overflow: hidden;
    border-radius: var(--ts-radius);
    background: #f8fafc;
    color: var(--ts-header-accent);
    font-size: 1.5rem;
    font-weight: 850;
}

.ts-category-card__image img {
    width: 100%;
    height: 100%;
    padding: 22px;
    object-fit: contain;
}

.ts-category-card strong {
    font-size: 1rem;
}

.ts-category-card small {
    color: var(--ts-muted);
}

.ts-product-card {
    overflow: hidden;
}

.ts-product-card__image {
    display: grid;
    min-height: 220px;
    place-items: center;
    padding: 18px;
    background: #f8fafc;
}

.ts-product-card__image img {
    width: 100%;
    max-height: 210px;
    object-fit: contain;
}

.ts-product-card__body {
    padding: 18px;
}

.ts-product-card__category {
    color: var(--ts-green);
    font-size: 0.78rem;
    font-weight: 800;
}

.ts-product-card h3 {
    margin: 8px 0 10px;
    font-size: 1.03rem;
    line-height: 1.35;
}

.ts-product-card h3 a {
    color: var(--ts-text);
}

.ts-product-card__price {
    min-height: 28px;
    color: var(--ts-text);
    font-size: 1.06rem;
    font-weight: 850;
}

.ts-product-card__actions {
    margin-top: 14px;
}

.ts-empty-state {
    padding: 28px;
    border: 1px dashed var(--ts-border);
    border-radius: var(--ts-radius);
    background: #fff;
    color: var(--ts-muted);
    text-align: center;
}

.ts-section:has(.products li) > .ts-empty-state,
.ts-section:has(.product-category) > .ts-empty-state {
    display: none;
}

.ts-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    background: var(--ts-soft);
}

.ts-info-grid article {
    padding: clamp(24px, 4vw, 42px);
}

.ts-footer {
    padding: 42px clamp(16px, 4vw, 48px) 24px;
    background: #f8fafc;
    border-top: 1px solid var(--ts-border);
}

.ts-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 28px;
}

.ts-footer h2 {
    margin: 0 0 12px;
    font-size: 1rem;
}

.ts-footer a {
    display: block;
    margin: 7px 0;
}

.ts-footer p {
    color: var(--ts-muted);
}

.ts-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid var(--ts-border);
    color: var(--ts-muted);
}

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

.woocommerce ul.products li.product {
    display: flex;
    flex-direction: column;
    width: auto !important;
    margin: 0 !important;
    min-width: 0;
    overflow: hidden;
    padding: 0 !important;
    border: 1px solid var(--ts-border);
    border-radius: var(--ts-radius);
    background: #fff;
    box-shadow: 0 12px 30px rgba(30, 48, 80, 0.06);
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
    text-align: left;
}

.woocommerce ul.products li.product::before,
.woocommerce ul.products li.product::after,
.woocommerce li::marker,
.woocommerce-page li::marker {
    content: none !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-3px);
    border-color: #cbd9ea;
    box-shadow: 0 18px 44px rgba(30, 48, 80, 0.10);
}

.woocommerce ul.products li.product img {
    display: block;
    width: 100%;
    height: 230px;
    margin: 0;
    padding: 22px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: #f8fafc;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 48px;
    margin: 0;
    padding: 16px 18px 6px;
    color: var(--ts-text);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
    text-align: left;
}

.woocommerce ul.products li.product .price {
    display: block;
    margin: auto 18px 0;
    color: var(--ts-text);
    font-size: 1.05rem;
    font-weight: 850;
}

.woocommerce ul.products li.product .button {
    align-self: flex-start;
    margin: 14px 18px 18px;
}

.woocommerce .woocommerce-result-count {
    margin: 0 0 18px;
    color: var(--ts-muted);
}

.woocommerce .woocommerce-ordering {
    margin: 0 0 22px;
}

.woocommerce .woocommerce-ordering select {
    min-width: 220px;
    border: 1px solid var(--ts-border);
    border-radius: var(--ts-radius);
    background: #fff;
    padding: 11px 12px;
}

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

.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
}

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

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: grid;
    min-width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--ts-border);
    border-radius: var(--ts-radius);
    background: #fff;
    color: var(--ts-text);
    font-weight: 800;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
    background: var(--ts-header-accent);
    color: #fff;
}

.woocommerce table.shop_table,
.woocommerce-cart-form,
.cart_totals,
.woocommerce-checkout-review-order,
.woocommerce form.checkout {
    border: 1px solid var(--ts-border);
    border-radius: var(--ts-radius);
    background: #fff;
    box-shadow: 0 12px 30px rgba(30, 48, 80, 0.06);
}

.woocommerce div.product {
    display: grid;
    grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(28px, 4vw, 58px);
    align-items: start;
    padding: clamp(20px, 4vw, 40px);
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}

.woocommerce div.product div.images {
    position: sticky;
    top: 126px;
}

.woocommerce div.product div.images img {
    border-radius: var(--ts-radius);
    background: transparent;
}

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

.woocommerce div.product div.images .woocommerce-product-gallery__image {
    display: grid !important;
    min-height: auto;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--ts-border);
    border-radius: var(--ts-radius);
    background: #f8fafc;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child {
    min-height: 520px;
    padding: 28px;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image img {
    width: 100%;
    max-height: 460px;
    object-fit: contain;
    padding: 0;
}

.woocommerce div.product div.images .flex-control-thumbs {
    display: flex;
    gap: 10px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    overflow-x: auto;
    scrollbar-width: thin;
}

.woocommerce div.product div.images .flex-control-thumbs li {
    flex: 0 0 80px;
    width: 80px !important;
    float: none !important;
    margin: 0 !important;
    list-style: none;
}

.woocommerce div.product div.images .flex-control-thumbs img {
    width: 80px;
    height: 80px;
    padding: 7px;
    border: 1px solid var(--ts-border);
    border-radius: var(--ts-radius);
    background: #f8fafc;
    object-fit: contain;
    opacity: 1 !important;
    cursor: pointer;
}

.woocommerce div.product div.images .flex-control-thumbs img.flex-active,
.woocommerce div.product div.images .flex-control-thumbs img:hover {
    border-color: var(--ts-header-accent);
    background: #eaf7f2;
}

.woocommerce div.product .summary {
    padding: 4px 0;
}

.woocommerce div.product .product_title {
    margin: 0 0 14px;
    color: var(--ts-text);
    font-size: clamp(1.9rem, 3vw, 3.1rem);
    line-height: 1.1;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--ts-header-accent);
    font-size: 1.75rem;
    font-weight: 900;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    margin: 18px 0;
    color: #3b4556;
    font-size: 1rem;
}

.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce div.product .woocommerce-product-details__short-description p,
.woocommerce div.product .woocommerce-tabs .panel,
.woocommerce div.product .woocommerce-tabs .panel p,
.woocommerce div.product .woocommerce-tabs .panel li {
    color: #3b4556;
}

.woocommerce div.product .stock {
    display: inline-flex;
    align-items: center;
    margin: 10px 0 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eafaf2;
    color: var(--ts-green);
    font-size: 0.9rem;
    font-weight: 850;
}

.woocommerce div.product .stock.out-of-stock {
    background: #fff1f2;
    color: #be123c;
}

.woocommerce div.product form.cart {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    align-items: center;
    margin: 24px 0;
}

.woocommerce .quantity .qty {
    width: 82px;
    min-height: 48px;
    border: 1px solid var(--ts-border);
    border-radius: var(--ts-radius);
    text-align: center;
    font-weight: 800;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
    min-height: 48px;
    padding-inline: 28px;
    border-radius: var(--ts-radius);
    background: var(--ts-header-accent);
    box-shadow: 0 12px 24px rgba(15, 157, 122, 0.18);
}

.woocommerce div.product .product_meta {
    display: grid;
    gap: 8px;
    margin-top: 20px;
    padding: 18px;
    border: 1px solid var(--ts-border);
    border-radius: var(--ts-radius);
    background: #f8fafc;
    color: var(--ts-muted);
    font-size: 0.94rem;
}

.woocommerce div.product .product_meta a,
.woocommerce div.product .product_meta .sku {
    color: var(--ts-text);
    font-weight: 750;
}

.woocommerce div.product .woocommerce-tabs {
    grid-column: 1 / -1;
    margin-top: 36px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    display: flex;
    gap: 10px;
    margin: 0 0 18px;
    padding: 0;
    border-bottom: 1px solid var(--ts-border);
    list-style: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #f8fafc !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: #eaf7f2 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    padding: 11px 18px !important;
    color: var(--ts-text);
    font-weight: 800;
}

.woocommerce div.product .woocommerce-tabs .panel {
    margin: 0;
    padding: clamp(20px, 3vw, 30px);
    border: 1px solid var(--ts-border);
    border-radius: var(--ts-radius);
    background: #fff;
    box-shadow: 0 12px 30px rgba(30, 48, 80, 0.05);
}

.woocommerce .related.products,
.woocommerce .up-sells.products {
    grid-column: 1 / -1;
    margin-top: 42px;
}

.woocommerce .related.products h2,
.woocommerce .up-sells.products h2 {
    margin: 0 0 20px;
    color: var(--ts-text);
    font-size: 1.65rem;
}

.woocommerce .related.products ul.products,
.woocommerce .up-sells.products ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.woocommerce .related.products ul.products li.product,
.woocommerce .up-sells.products ul.products li.product {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select {
    min-height: 44px;
    border: 1px solid var(--ts-border);
    border-radius: var(--ts-radius);
    padding: 10px 12px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border: 1px solid var(--ts-border);
    border-radius: var(--ts-radius);
    background: #f8fbff;
    color: var(--ts-text);
}

.woocommerce-cart-form,
.cart_totals,
.woocommerce form.checkout,
.woocommerce-checkout-review-order {
    padding: 22px;
}

.woocommerce table.shop_table {
    overflow: hidden;
    border-collapse: collapse !important;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    border: 0 !important;
    border-bottom: 1px solid var(--ts-border) !important;
    padding: 16px !important;
    vertical-align: middle;
}

.woocommerce table.shop_table thead th {
    background: #f8fafc;
    color: var(--ts-text);
    font-size: 0.86rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.woocommerce-cart table.cart img {
    width: 112px;
    max-width: 112px;
    border-radius: var(--ts-radius);
    background: #f8fafc;
    object-fit: contain;
}

.woocommerce-cart table.cart td.product-name a {
    color: var(--ts-text);
    font-weight: 800;
}

.woocommerce-cart table.cart td.actions {
    background: #fff;
}

.woocommerce-cart table.cart td.actions .coupon {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.woocommerce-cart table.cart td.actions .input-text {
    width: min(100%, 260px) !important;
}

.cart_totals {
    margin-top: 18px;
}

.cart_totals h2,
.woocommerce-checkout h3 {
    margin-top: 0;
}

.woocommerce form.checkout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 24px;
    align-items: start;
}

.woocommerce form.checkout #customer_details,
.woocommerce form.checkout #order_review_heading,
.woocommerce form.checkout #order_review {
    float: none !important;
    width: auto !important;
}

.woocommerce form.checkout #customer_details {
    grid-column: 1;
}

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

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

.woocommerce #payment {
    border: 1px solid var(--ts-border);
    border-radius: var(--ts-radius);
    background: #fff;
}

.woocommerce #payment ul.payment_methods {
    padding: 16px;
    border-bottom: 1px solid var(--ts-border);
}

.woocommerce #payment ul.payment_methods li {
    margin: 0 0 10px;
    list-style: none;
}

.woocommerce #payment div.form-row {
    padding: 16px;
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    border-radius: var(--ts-radius);
    background: var(--ts-header-accent);
    color: #fff;
    font-weight: 850;
    transition: transform 150ms ease, background 150ms ease;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    background: #0d58c8;
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 1080px) {
    .ts-nav {
        grid-template-columns: minmax(160px, auto) 1fr auto;
        gap: 14px;
    }

    .ts-menu-toggle {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        min-width: 44px;
        min-height: 44px;
        padding: 0;
        border: 1px solid var(--ts-border);
        border-radius: 999px;
        background: #fff;
        color: var(--ts-text);
    }

    .ts-menu-toggle span {
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
    }

    .ts-nav-menu-row {
        padding-bottom: 0;
    }

    .ts-menu {
        display: none;
        padding: 0 clamp(16px, 4vw, 48px) 14px;
        border-top: 1px solid var(--ts-border);
        background: #fff;
    }

    .ts-menu.is-open {
        display: block;
    }

    .ts-menu ul,
    .ts-menu__fallback {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
        padding: 12px 0;
    }

    .ts-menu a {
        justify-content: center;
        width: 100%;
    }

    .ts-category-grid,
    .ts-product-grid,
    .woocommerce ul.products,
    .woocommerce .related.products ul.products,
    .woocommerce .up-sells.products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .woocommerce div.product,
    .woocommerce form.checkout {
        grid-template-columns: 1fr;
    }

    .woocommerce div.product div.images {
        position: static;
    }

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

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

    .ts-slide h1,
    .ts-slide h2 {
        font-size: 3.2rem;
    }
}

@media (max-width: 720px) {
    .ts-section__heading,
    .ts-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .ts-nav {
        grid-template-columns: 1fr auto;
        gap: 12px;
        padding-top: 12px;
    }

    .ts-search {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .ts-header-actions {
        gap: 6px;
    }

    .ts-icon-link,
    .ts-cart-link,
    .ts-menu-toggle {
        min-width: 40px;
        min-height: 40px;
    }

    .ts-cart-link {
        padding: 0 10px;
    }

    .ts-cart-link span:not(.ts-cart-count) {
        display: none;
    }

    .ts-logo-mark {
        width: 40px;
        height: 40px;
    }

    .ts-logo-text small {
        display: none;
    }

    .ts-hero,
    .ts-info-grid,
    .ts-footer__grid {
        grid-template-columns: 1fr;
    }

    .ts-hero-slider,
    .ts-slide {
        min-height: 590px;
    }

    .ts-slide {
        align-items: flex-end;
        padding: 42px 16px 70px;
        background-image:
            linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.74) 42%, rgba(255, 255, 255, 0.98) 100%),
            var(--slide-image);
        background-position: center top;
    }

    .ts-slide__content {
        padding: 22px;
    }

    .ts-slide h1,
    .ts-slide h2 {
        font-size: 2.35rem;
    }

    .ts-slider-controls {
        bottom: 22px;
        left: 16px;
    }

    .ts-category-grid,
    .ts-product-grid,
    .woocommerce ul.products,
    .woocommerce .related.products ul.products,
    .woocommerce .up-sells.products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .woocommerce div.product {
        padding: 16px;
    }

    .woocommerce div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child {
        min-height: 340px;
        padding: 16px;
    }

    .woocommerce div.product div.images .woocommerce-product-gallery__image {
        min-height: auto;
    }

    .woocommerce div.product div.images .flex-control-thumbs {
        gap: 8px;
    }

    .woocommerce div.product div.images .flex-control-thumbs li,
    .woocommerce div.product div.images .flex-control-thumbs img {
        width: 70px !important;
        height: 70px;
        flex-basis: 70px;
    }

    .woocommerce div.product form.cart {
        align-items: stretch;
        flex-direction: column;
    }

    .woocommerce div.product form.cart .quantity,
    .woocommerce div.product form.cart .quantity .qty,
    .woocommerce div.product form.cart .single_add_to_cart_button {
        width: 100%;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs {
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs li {
        flex: 0 0 auto;
    }

    .woocommerce table.shop_table thead {
        display: none;
    }

    .woocommerce-cart table.cart td,
    .woocommerce table.shop_table_responsive tr td {
        display: block;
        text-align: right !important;
    }

    .woocommerce-cart table.cart td.product-thumbnail {
        text-align: center !important;
    }
}

/* Premium shop archive. */
.post-type-archive-product .ts-main {
    background: #f6f8fc;
}

.ts-shop-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px clamp(16px, 4vw, 48px);
    background:
        radial-gradient(circle at 80% 18%, rgba(37, 99, 235, 0.22), transparent 28%),
        linear-gradient(135deg, #eaf7f2 0%, #ffffff 50%, #e8f7ff 100%);
    border-bottom: 1px solid var(--ts-border);
}

.ts-shop-hero h1 {
    margin: 8px 0 6px;
    color: #0f172a;
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1;
}

.ts-shop-hero p {
    margin: 0;
    color: #526176;
    font-size: 1.05rem;
}

.ts-breadcrumb {
    display: flex;
    gap: 8px;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 700;
}

.ts-shop-hero__stat {
    min-width: 190px;
    padding: 18px 20px;
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.ts-shop-hero__stat strong {
    display: block;
    color: #0f9d7a;
    font-size: 2rem;
    line-height: 1;
}

.ts-shop-hero__stat span {
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-size: 0.9rem;
}

.ts-shop-shell {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 26px clamp(16px, 4vw, 48px) 40px;
}

.ts-shop-filters,
.ts-shop-toolbar,
.ts-shop-card,
.ts-trust-grid article,
.ts-newsletter {
    border: 1px solid rgba(203, 213, 225, 0.82);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
}

.ts-shop-filters {
    position: sticky;
    top: 126px;
    align-self: start;
    max-height: calc(100vh - 150px);
    overflow: auto;
    padding: 20px;
}

.ts-filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.ts-filter-head h2,
.ts-filter-group h3 {
    margin: 0;
    color: #0f172a;
}

.ts-filter-head h2 {
    font-size: 1.2rem;
}

.ts-filter-head a {
    font-size: 0.88rem;
    font-weight: 800;
}

.ts-filter-group {
    padding: 16px 0;
    border-top: 1px solid #e5edf6;
}

.ts-filter-group h3 {
    margin-bottom: 10px;
    font-size: 0.92rem;
}

.ts-filter-group label {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 9px 0;
    color: #475569;
    font-size: 0.94rem;
    font-weight: 650;
}

.ts-filter-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #0f9d7a;
}

.ts-filter-group input:disabled + span,
.ts-filter-group input:disabled {
    opacity: 0.55;
}

.ts-filter-prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ts-filter-prices h3 {
    grid-column: 1 / -1;
}

.ts-filter-prices input,
.ts-shop-toolbar input,
.ts-shop-toolbar select,
.ts-newsletter input {
    min-height: 46px;
    border: 1px solid #dbe5f0;
    border-radius: 999px;
    background: #fff;
    padding: 0 15px;
    color: #0f172a;
    font: inherit;
    outline: none;
}

.ts-shop-main {
    min-width: 0;
}

.ts-shop-toolbar {
    position: sticky;
    top: 78px;
    z-index: 25;
    display: grid;
    grid-template-columns: auto minmax(220px, 1fr) auto auto auto;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 12px;
}

.ts-shop-toolbar > span {
    color: #475569;
    font-weight: 800;
    white-space: nowrap;
}

.ts-shop-toolbar input {
    width: 100%;
}

.ts-shop-toolbar select {
    min-width: 190px;
}

.ts-filter-toggle,
.ts-view-toggle button {
    min-height: 42px;
    border: 1px solid #dbe5f0;
    border-radius: 999px;
    background: #fff;
    color: #0f172a;
    font-weight: 850;
}

.ts-filter-toggle {
    display: none;
}

.ts-view-toggle {
    display: inline-flex;
    gap: 4px;
    padding: 4px;
    border: 1px solid #dbe5f0;
    border-radius: 999px;
    background: #f8fafc;
}

.ts-view-toggle button {
    min-width: 38px;
    min-height: 34px;
    padding: 0;
}

.ts-view-toggle button.is-active {
    background: #0f9d7a;
    color: #fff;
}

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

.ts-shop-grid.is-list {
    grid-template-columns: 1fr;
}

.ts-shop-grid.is-list .ts-shop-card {
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: 0;
}

.ts-shop-grid.is-list .ts-shop-card__media {
    min-height: 100%;
}

.ts-shop-card {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    min-width: 0;
    overflow: hidden;
    border-radius: 18px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.ts-shop-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.28);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.ts-shop-card__media {
    position: relative;
    display: grid;
    min-height: 292px;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc, #eef4fb);
}

.ts-shop-card__media img {
    width: 100%;
    height: 280px;
    padding: 28px;
    object-fit: contain;
    transition: transform 180ms ease;
}

.ts-shop-card:hover .ts-shop-card__media img {
    transform: scale(1.04);
}

.ts-shop-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    background: #0f9d7a;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 900;
}

.ts-shop-card__tools {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: grid;
    gap: 8px;
}

.ts-shop-card__tools a {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid #dbe5f0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    font-weight: 900;
}

.ts-shop-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.ts-shop-card__brand {
    color: #059669;
    font-size: 0.74rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ts-shop-card h2 {
    display: -webkit-box;
    min-height: 44px;
    margin: 0;
    overflow: hidden;
    color: #0f172a;
    font-size: 1.08rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ts-shop-card h2 a {
    color: inherit;
}

.ts-shop-card__rating,
.ts-stars {
    color: #f59e0b;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
}

.ts-shop-card__price {
    color: #0f172a;
    font-size: 1.28rem;
    font-weight: 950;
}

.ts-shop-card__price del {
    margin-right: 6px;
    color: #94a3b8;
    font-size: 0.95rem;
}

.ts-specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 4px;
}

.ts-specs span {
    max-width: 100%;
    min-width: 0;
    padding: 7px 9px;
    border: 1px solid #c9f0e0;
    border-radius: 12px;
    background: #eaf7f2;
    color: #0a5c48;
    font-size: 0.72rem;
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ts-shop-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 8px;
}

.ts-stock {
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 900;
}

.ts-stock.is-in {
    background: #dcfce7;
    color: #15803d;
}

.ts-stock.is-out {
    background: #fee2e2;
    color: #b91c1c;
}

.ts-shop-card .button {
    margin: 0 !important;
    border-radius: 999px !important;
    background: #0f9d7a !important;
    color: #fff !important;
    padding: 10px 13px !important;
    font-size: 0.86rem !important;
}

.ts-shop-pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.ts-shop-pagination ul {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ts-shop-pagination a,
.ts-shop-pagination span {
    display: grid;
    min-width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 999px;
    background: #fff;
    color: #0f172a;
    font-weight: 900;
}

.ts-shop-pagination .current,
.ts-shop-pagination a:hover {
    background: #0f9d7a;
    color: #fff;
}

.ts-shop-extra,
.ts-trust-grid,
.ts-newsletter {
    max-width: 1540px;
    margin: 0 auto;
    padding: 20px clamp(16px, 4vw, 48px) 44px;
}

.ts-recent-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 1fr);
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.ts-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.ts-trust-grid article {
    padding: 22px;
}

.ts-trust-grid strong {
    color: #0f172a;
    font-size: 1.05rem;
}

.ts-trust-grid p {
    margin: 8px 0 0;
    color: #64748b;
}

.ts-newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 44px;
    padding: 30px clamp(18px, 4vw, 34px);
    background:
        radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.18), transparent 26%),
        #fff;
}

.ts-newsletter h2 {
    margin: 4px 0 0;
    color: #0f172a;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.ts-newsletter form {
    display: flex;
    width: min(100%, 480px);
    gap: 10px;
}

.ts-newsletter input {
    width: 100%;
}

.ts-newsletter button {
    border-radius: 999px;
    background: #0f9d7a;
    white-space: nowrap;
}

.post-type-archive-product .ts-footer {
    background: #0f172a;
    color: #e2e8f0;
    border-top: 0;
}

.post-type-archive-product .ts-footer a {
    color: #bfdbfe;
}

.post-type-archive-product .ts-footer p,
.post-type-archive-product .ts-footer__bottom {
    color: #94a3b8;
    border-color: rgba(148, 163, 184, 0.22);
}

@media (max-width: 1180px) {
    .ts-shop-shell {
        grid-template-columns: 1fr;
    }

    .ts-filter-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .ts-shop-filters {
        position: fixed;
        inset: 0 auto 0 0;
        z-index: 2000;
        width: min(88vw, 340px);
        max-height: none;
        border-radius: 0 20px 20px 0;
        transform: translateX(-105%);
        transition: transform 180ms ease;
    }

    body.ts-filter-open .ts-shop-filters {
        transform: translateX(0);
    }

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

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

@media (max-width: 760px) {
    .ts-shop-hero,
    .ts-newsletter {
        align-items: flex-start;
        flex-direction: column;
    }

    .ts-shop-toolbar {
        grid-template-columns: 1fr 1fr;
        top: 137px;
    }

    .ts-shop-toolbar > span,
    .ts-shop-toolbar input {
        grid-column: 1 / -1;
    }

    .ts-shop-toolbar select {
        min-width: 0;
        width: 100%;
    }

    .ts-view-toggle {
        justify-self: end;
    }

    .ts-shop-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ts-shop-grid.is-list .ts-shop-card {
        grid-template-columns: 1fr;
    }

    .ts-shop-card__media {
        min-height: 250px;
    }

    .ts-shop-card__media img {
        height: 230px;
        padding: 22px;
    }

    .ts-shop-card__body {
        padding: 16px;
    }

    .ts-specs {
        grid-template-columns: 1fr;
    }

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

    .ts-shop-card .button {
        width: 100%;
        text-align: center;
    }

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

    .ts-newsletter form {
        flex-direction: column;
    }
}

/* Single product page final layout overrides. */
.single-product .ts-page-shell {
    max-width: 1440px;
}

.single-product .woocommerce div.product {
    position: relative;
    display: grid !important;
    grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr) !important;
    gap: clamp(28px, 4vw, 58px) !important;
    overflow: visible;
}

.single-product .woocommerce div.product > .onsale {
    position: absolute !important;
    top: 24px !important;
    left: 24px !important;
    z-index: 10;
    min-height: auto;
    min-width: auto;
    margin: 0 !important;
    padding: 7px 12px !important;
    border-radius: 999px !important;
    background: #0f9d7a !important;
    color: #fff !important;
    font-size: 0.78rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

.single-product .woocommerce div.product div.images {
    grid-column: 1;
    grid-row: 1;
    display: block;
}

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

.single-product .woocommerce div.product div.images .woocommerce-product-gallery {
    display: block;
}

.single-product .woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
    display: block;
    width: 100%;
}

.single-product .woocommerce div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:not(:first-child) {
    display: none !important;
}

.single-product .woocommerce div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child {
    display: grid !important;
    width: 100%;
    min-height: 500px;
    padding: 24px;
    place-items: center;
}

.single-product .woocommerce div.product div.images .woocommerce-product-gallery__image a {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
}

.single-product .woocommerce div.product div.images .woocommerce-product-gallery__image img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-height: 430px;
    object-fit: contain;
}

.single-product .woocommerce div.product div.images .flex-control-thumbs {
    display: flex !important;
    width: 100%;
    max-width: 100%;
    gap: 10px;
    margin: 12px 0 0 !important;
    padding: 0 !important;
    overflow-x: auto;
    list-style: none !important;
}

.single-product .woocommerce div.product div.images .flex-control-thumbs li {
    flex: 0 0 78px;
    width: 78px !important;
    height: 78px;
}

.single-product .woocommerce div.product div.images .flex-control-thumbs img {
    width: 78px !important;
    height: 78px !important;
    max-height: none;
}

.single-product .woocommerce div.product div.summary {
    max-width: 640px;
}

.single-product .woocommerce div.product form.cart::before,
.single-product .woocommerce div.product form.cart::after,
.single-product .woocommerce .related.products ul.products::before,
.single-product .woocommerce .related.products ul.products::after {
    display: none !important;
    content: none !important;
}

.single-product .woocommerce .related.products,
.single-product .woocommerce .up-sells.products {
    display: none !important;
}

.single-product .woocommerce .related.products ul.products,
.single-product .woocommerce .up-sells.products ul.products {
    display: grid !important;
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 22px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.single-product .woocommerce .related.products ul.products li.product,
.single-product .woocommerce .up-sells.products ul.products li.product {
    position: relative;
    display: flex !important;
    width: auto !important;
    min-width: 0;
    max-width: none !important;
    margin: 0 !important;
    float: none !important;
    overflow: hidden;
    border-radius: 18px;
    border-color: #dbe5f0;
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.single-product .woocommerce .related.products ul.products li.product:hover,
.single-product .woocommerce .up-sells.products ul.products li.product:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.12);
}

.single-product .woocommerce .related.products ul.products li.product .woocommerce-loop-product__link,
.single-product .woocommerce .up-sells.products ul.products li.product .woocommerce-loop-product__link {
    display: flex;
    flex: 1;
    flex-direction: column;
    color: inherit;
}

.single-product .woocommerce .related.products ul.products li.product img,
.single-product .woocommerce .up-sells.products ul.products li.product img {
    width: 100%;
    height: 245px;
    margin: 0;
    padding: 30px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef4fb 100%);
    object-fit: contain;
    transition: transform 180ms ease;
}

.single-product .woocommerce .related.products ul.products li.product:hover img,
.single-product .woocommerce .up-sells.products ul.products li.product:hover img {
    transform: scale(1.04);
}

.single-product .woocommerce .related.products .ts-loop-badge,
.single-product .woocommerce .up-sells.products .ts-loop-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    background: #0f9d7a;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
}

.single-product .woocommerce .related.products .ts-loop-brand,
.single-product .woocommerce .up-sells.products .ts-loop-brand {
    order: 1;
    display: block;
    margin: 18px 20px 6px;
    color: #059669;
    font-size: 0.74rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.single-product .woocommerce .related.products ul.products li.product .woocommerce-loop-product__title,
.single-product .woocommerce .up-sells.products ul.products li.product .woocommerce-loop-product__title {
    order: 2;
    display: -webkit-box;
    min-height: 48px;
    margin: 0;
    padding: 0 20px;
    overflow: hidden;
    color: #0f172a;
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.35;
    word-break: normal;
    overflow-wrap: break-word;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.single-product .woocommerce .related.products ul.products li.product .star-rating,
.single-product .woocommerce .up-sells.products ul.products li.product .star-rating {
    order: 3;
    margin: 10px 20px 0;
}

.single-product .woocommerce .related.products ul.products li.product .price,
.single-product .woocommerce .up-sells.products ul.products li.product .price {
    order: 4;
    margin: 12px 20px 0;
    color: #0f172a;
    font-size: 1.22rem;
    font-weight: 950;
}

.single-product .woocommerce .related.products ul.products li.product .button,
.single-product .woocommerce .up-sells.products ul.products li.product .button {
    width: calc(100% - 40px);
    margin: 16px 20px 20px !important;
    border-radius: 999px !important;
    background: #0f9d7a !important;
    text-align: center;
}

@media (max-width: 1080px) {
    .single-product .woocommerce .related.products ul.products,
    .single-product .woocommerce .up-sells.products ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 720px) {
    .single-product .woocommerce div.product div.summary {
        max-width: none;
    }

    .single-product .woocommerce div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child {
        min-height: 330px;
        padding: 14px;
    }

    .single-product .woocommerce div.product div.images .woocommerce-product-gallery__image img {
        max-height: 290px;
    }

    .single-product .woocommerce .related.products ul.products,
    .single-product .woocommerce .up-sells.products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .single-product .woocommerce .related.products ul.products li.product img,
    .single-product .woocommerce .up-sells.products ul.products li.product img {
        height: 190px;
        padding: 22px;
    }
}

.ts-related-carousel {
    grid-column: 1 / -1;
    margin: 52px calc(clamp(16px, 4vw, 48px) * -1) 0;
    padding: 80px clamp(16px, 4vw, 48px);
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.ts-related-carousel__head,
.ts-related-carousel__track {
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
}

.ts-related-carousel__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.ts-related-carousel__head h2 {
    margin: 8px 0 8px;
    color: #0f172a;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
}

.ts-related-carousel__head p {
    margin: 0;
    color: #64748b;
    font-size: 1.05rem;
}

.ts-related-carousel__arrows {
    display: flex;
    gap: 10px;
}

.ts-related-carousel__arrows button {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    border: 1px solid #dbe5f0;
    border-radius: 999px;
    background: #fff;
    color: #0f172a;
    font-size: 1.55rem;
    line-height: 1;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.ts-related-carousel__arrows button:hover {
    background: #0f9d7a;
    color: #fff;
}

.ts-related-carousel__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 72px) / 4);
    gap: 24px;
    overflow-x: auto;
    padding: 4px 2px 18px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.ts-related-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #dbe5f0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
    scroll-snap-align: start;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.ts-related-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.32);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
}

.ts-related-card__media {
    position: relative;
    display: grid;
    height: 220px;
    place-items: center;
    overflow: hidden;
    background: #eef2f7;
}

.ts-related-card__media img {
    width: 75%;
    height: 75%;
    object-fit: contain;
    transition: transform 180ms ease;
}

.ts-related-card:hover .ts-related-card__media img {
    transform: scale(1.06);
}

.ts-related-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 11px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0f9d7a, #14a46c);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 950;
}

.ts-related-card__tools {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: grid;
    gap: 8px;
}

.ts-related-card__tools button {
    display: grid;
    width: 34px;
    height: 34px;
    padding: 0;
    place-items: center;
    border: 1px solid #dbe5f0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #0f172a;
    font-weight: 900;
}

.ts-related-card__tools button.is-active {
    background: #fee2e2;
    color: #dc2626;
}

.ts-related-card__content {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 18px;
}

.ts-related-card__brand {
    color: #059669;
    font-size: 0.74rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ts-related-card h3 {
    display: -webkit-box;
    min-height: 46px;
    margin: 0;
    overflow: hidden;
    color: #0f172a;
    font-size: 1.06rem;
    font-weight: 950;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ts-related-card h3 a {
    color: inherit;
}

.ts-related-card__rating,
.ts-related-card__rating .star-rating,
.ts-related-card__rating .ts-stars {
    color: #f59e0b;
    font-size: 0.84rem;
}

.ts-related-card__price {
    color: #0f172a;
    font-size: 1.2rem;
    font-weight: 950;
}

.ts-related-card__price del {
    margin-right: 6px;
    color: #94a3b8;
    font-size: 0.95rem;
}

.ts-related-card__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 2px;
}

.ts-related-card__specs span {
    padding: 6px 9px;
    border: 1px solid #c9f0e0;
    border-radius: 999px;
    background: #eaf7f2;
    color: #0a5c48;
    font-size: 0.72rem;
    font-weight: 850;
}

.ts-related-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 8px;
}

.ts-related-card__actions .button,
.ts-related-card__details {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    border-radius: 999px !important;
    font-size: 0.88rem;
    font-weight: 900;
    text-align: center;
}

.ts-related-card__actions .button {
    background: linear-gradient(135deg, #0f9d7a, #0b7a5f) !important;
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.2);
}

.ts-related-card__details {
    border: 1px solid #dbe5f0;
    background: #fff;
    color: #0f172a;
}

.ts-preview-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.52);
}

.ts-preview-modal[hidden] {
    display: none;
}

.ts-preview-modal__panel {
    position: relative;
    width: min(760px, 100%);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.ts-preview-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    width: 38px;
    height: 38px;
    padding: 0;
    place-items: center;
    border-radius: 999px;
    background: #f1f5f9;
    color: #0f172a;
    font-size: 1.4rem;
}

.ts-preview-product {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    padding: 34px;
}

.ts-preview-product img {
    width: 100%;
    height: 240px;
    padding: 22px;
    border-radius: 16px;
    background: #f8fafc;
    object-fit: contain;
}

.ts-preview-product span {
    color: #059669;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ts-preview-product h3 {
    margin: 8px 0;
    color: #0f172a;
    font-size: 1.6rem;
}

.ts-preview-product p {
    color: #64748b;
}

@media (max-width: 1080px) {
    .single-product .woocommerce div.product {
        grid-template-columns: 1fr !important;
    }

    .single-product .woocommerce div.product div.images,
    .single-product .woocommerce div.product div.summary {
        grid-column: 1;
        grid-row: auto;
    }

    .ts-related-carousel__track {
        grid-auto-columns: calc((100% - 24px) / 2);
    }
}

@media (max-width: 720px) {
    .ts-related-carousel {
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .ts-related-carousel__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .ts-related-carousel__track {
        grid-auto-columns: 100%;
    }

    .ts-related-card__actions,
    .ts-preview-product {
        grid-template-columns: 1fr;
    }
}

.ts-category-page-hero {
    padding: clamp(42px, 7vw, 78px) clamp(16px, 4vw, 48px);
    background:
        radial-gradient(circle at 78% 18%, rgba(37, 99, 235, 0.18), transparent 28%),
        linear-gradient(135deg, #eaf7f2 0%, #ffffff 56%, #effaf6 100%);
    border-bottom: 1px solid #e2e8f0;
}

.ts-category-page-hero h1 {
    max-width: 760px;
    margin: 12px 0 10px;
    color: #0f172a;
    font-size: clamp(2.3rem, 5vw, 4.6rem);
    line-height: 1;
}

.ts-category-page-hero p {
    max-width: 680px;
    margin: 0;
    color: #64748b;
    font-size: 1.08rem;
}

.ts-category-page {
    padding: clamp(42px, 7vw, 80px) clamp(16px, 4vw, 48px);
    background: #f8fafc;
}

.ts-category-page__grid {
    display: grid;
    max-width: 1440px;
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ts-category-page-card {
    display: grid;
    overflow: hidden;
    min-height: 290px;
    border: 1px solid #dbe5f0;
    border-radius: 20px;
    background: #fff;
    color: #0f172a;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.ts-category-page-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.32);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}

.ts-category-page-card__image {
    display: grid;
    height: 190px;
    place-items: center;
    background: linear-gradient(180deg, #ffffff, #eef4fb);
}

.ts-category-page-card__image img {
    width: 76%;
    height: 76%;
    object-fit: contain;
}

.ts-category-page-card__body {
    display: grid;
    gap: 6px;
    padding: 22px;
}

.ts-category-page-card strong {
    font-size: 1.22rem;
}

.ts-category-page-card small {
    color: #64748b;
    font-weight: 750;
}

@media (max-width: 1080px) {
    .ts-category-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .ts-category-page__grid {
        grid-template-columns: 1fr;
    }
}

.ts-info-hero {
    padding: clamp(42px, 7vw, 86px) clamp(16px, 4vw, 48px);
    border-bottom: 1px solid #e2e8f0;
    background:
        radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.16), transparent 28%),
        linear-gradient(135deg, #f8fbff 0%, #ffffff 52%, #eef7ff 100%);
}

.ts-info-hero__grid,
.ts-info-section,
.ts-info-band,
.ts-contact-section {
    max-width: 1440px;
    margin: 0 auto;
}

.ts-info-hero__grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: clamp(24px, 5vw, 72px);
}

.ts-info-hero h1 {
    max-width: 850px;
    margin: 14px 0;
    color: #0f172a;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 0.98;
}

.ts-info-hero p {
    max-width: 720px;
    margin: 0;
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
}

.ts-info-hero__panel {
    display: grid;
    gap: 12px;
    padding: 28px;
    border: 1px solid #dbe5f0;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

.ts-info-hero__panel strong {
    color: #0f172a;
    font-size: 1.35rem;
}

.ts-info-hero__panel span {
    color: #64748b;
    line-height: 1.6;
}

.ts-info-section,
.ts-contact-section {
    padding: clamp(44px, 7vw, 86px) clamp(16px, 4vw, 48px);
}

.ts-info-grid,
.ts-contact-grid {
    display: grid;
    gap: 24px;
}

.ts-info-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ts-info-card,
.ts-contact-form {
    border: 1px solid #dbe5f0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
}

.ts-info-card {
    padding: 28px;
}

.ts-info-card span {
    display: inline-flex;
    margin-bottom: 16px;
    color: #0f9d7a;
    font-size: 0.8rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ts-info-card h2 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    line-height: 1.15;
}

.ts-info-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}

.ts-info-band {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 32px;
    padding: clamp(38px, 6vw, 72px) clamp(16px, 4vw, 48px);
    border-top: 1px solid #e2e8f0;
}

.ts-info-band h2 {
    max-width: 620px;
    margin: 10px 0 0;
    color: #0f172a;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
}

.ts-info-list {
    display: grid;
    gap: 14px;
}

.ts-info-list p {
    margin: 0;
    padding: 18px 20px;
    border: 1px solid #dbe5f0;
    border-radius: 16px;
    background: #f8fafc;
    color: #334155;
    font-weight: 750;
}

.ts-contact-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
}

.ts-contact-cards {
    display: grid;
    gap: 18px;
}

.ts-contact-form {
    display: grid;
    gap: 18px;
    padding: 30px;
}

.ts-contact-form h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.ts-contact-form label {
    display: grid;
    gap: 8px;
    color: #0f172a;
    font-weight: 850;
}

.ts-contact-form input,
.ts-contact-form textarea {
    width: 100%;
    border: 1px solid #dbe5f0;
    border-radius: 14px;
    background: #f8fafc;
    color: #0f172a;
    font: inherit;
}

.ts-contact-form input {
    min-height: 52px;
    padding: 0 16px;
}

.ts-contact-form textarea {
    padding: 14px 16px;
    resize: vertical;
}

.ts-contact-form input:focus,
.ts-contact-form textarea:focus {
    border-color: #0f9d7a;
    outline: 3px solid rgba(37, 99, 235, 0.12);
}

.ts-contact-form button {
    justify-self: start;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    background: #0f9d7a;
    color: #fff;
    font-weight: 950;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
}

@media (max-width: 980px) {
    .ts-info-hero__grid,
    .ts-info-grid--three,
    .ts-info-band,
    .ts-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .ts-info-hero__panel,
    .ts-info-card,
    .ts-contact-form {
        border-radius: 16px;
        padding: 22px;
    }
}

.woocommerce-account .ts-page-shell {
    max-width: none;
    padding: 0;
    background: #f8fafc;
}

.woocommerce-account .ts-page-shell > article > h1 {
    display: none;
}

.ts-account-shell {
    padding: clamp(24px, 5vw, 54px) clamp(16px, 4vw, 48px) clamp(54px, 7vw, 90px);
    background: #f8fafc;
}

.ts-account-header,
.ts-account-layout {
    max-width: 1440px;
    margin: 0 auto;
}

.ts-account-header {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    margin-bottom: 24px;
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid #dbe5f0;
    border-radius: 24px;
    background:
        radial-gradient(circle at 85% 10%, rgba(37, 99, 235, 0.16), transparent 25%),
        #fff;
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
}

.ts-account-header__identity {
    display: flex;
    align-items: center;
    gap: 18px;
}

.ts-account-avatar {
    display: grid;
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    place-items: center;
    border-radius: 22px;
    background: linear-gradient(135deg, #0f9d7a, #14a46c);
    color: #fff;
    font-size: 2rem;
    font-weight: 950;
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.24);
}

.ts-account-header h1 {
    margin: 8px 0 2px;
    color: #0f172a;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
}

.ts-account-header p {
    margin: 0;
    color: #64748b;
    font-weight: 750;
}

.ts-account-header__summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(110px, 1fr));
    gap: 12px;
}

.ts-account-header__summary span {
    display: grid;
    gap: 2px;
    padding: 16px 18px;
    border: 1px solid #dbe5f0;
    border-radius: 18px;
    background: rgba(248, 250, 252, 0.92);
    color: #64748b;
    font-size: 0.86rem;
    font-weight: 800;
}

.ts-account-header__summary strong {
    color: #0f9d7a;
    font-size: 1.75rem;
    line-height: 1;
}

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

.ts-account-nav {
    position: sticky;
    top: 126px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid #dbe5f0;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
}

.ts-account-nav__label {
    padding: 6px 10px 10px;
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ts-account-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 10px 12px;
    border-radius: 14px;
    color: #334155;
    font-weight: 900;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.ts-account-nav a:hover,
.ts-account-nav .is-active a,
.ts-account-nav a.is-active,
.ts-account-nav .woocommerce-MyAccount-navigation-link.is-active a {
    background: #eaf7f2;
    color: #0f9d7a;
    transform: translateX(2px);
}

.ts-account-nav__icon,
.ts-account-stat__icon {
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: #eaf7f2;
}

.ts-account-nav__icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
}

.ts-account-nav__icon::before,
.ts-account-stat__icon::before {
    color: #0f9d7a;
    font-weight: 950;
}

.ts-account-nav__icon--home::before { content: "H"; }
.ts-account-nav__icon--box::before { content: "O"; }
.ts-account-nav__icon--download::before { content: "D"; }
.ts-account-nav__icon--pin::before { content: "A"; }
.ts-account-nav__icon--user::before { content: "P"; }
.ts-account-nav__icon--logout::before { content: "L"; }
.ts-account-nav__icon--heart::before { content: "W"; }
.ts-account-nav__icon--lock::before { content: "S"; }
.ts-account-nav__icon--dot::before { content: "-"; }

.ts-account-content,
.ts-account-panel,
.ts-account-stat,
.ts-account-product {
    border: 1px solid #dbe5f0;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
}

.ts-account-content {
    overflow: hidden;
    padding: clamp(18px, 3vw, 28px);
}

.ts-account-dashboard {
    display: grid;
    gap: 24px;
}

.ts-account-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ts-account-stat {
    display: grid;
    gap: 8px;
    padding: 22px;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.ts-account-stat:hover,
.ts-account-product:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 64px rgba(15, 23, 42, 0.11);
}

.ts-account-stat__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 6px;
}

.ts-account-stat__icon--orders::before { content: "O"; }
.ts-account-stat__icon--wishlist::before { content: "W"; }
.ts-account-stat__icon--addresses::before { content: "A"; }
.ts-account-stat__icon--status::before { content: "V"; }

.ts-account-stat strong {
    color: #0f172a;
    font-size: 1.45rem;
    line-height: 1.1;
}

.ts-account-stat small {
    color: #64748b;
    font-weight: 800;
}

.ts-account-panel {
    padding: clamp(20px, 3vw, 28px);
}

.ts-account-panel__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.ts-account-panel__head h2 {
    margin: 6px 0 0;
    color: #0f172a;
    font-size: clamp(1.45rem, 3vw, 2.15rem);
    line-height: 1.1;
}

.ts-account-panel__head > a,
.ts-account-small-button,
.ts-account-actions a,
.ts-account-empty a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #eaf7f2;
    color: #0f9d7a;
    font-weight: 950;
}

.ts-account-panel__head > a,
.ts-account-small-button,
.ts-account-empty a {
    min-height: 38px;
    padding: 0 16px;
}

.ts-account-orders {
    overflow-x: auto;
}

.ts-account-orders table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.ts-account-orders th,
.ts-account-orders td {
    padding: 16px 14px;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
}

.ts-account-orders th {
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ts-account-orders td {
    color: #0f172a;
    font-weight: 800;
}

.ts-order-status {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eaf7f2;
    color: #0f9d7a;
    font-size: 0.82rem;
    font-weight: 950;
}

.ts-order-status--completed {
    background: #ecfdf5;
    color: #047857;
}

.ts-order-status--cancelled,
.ts-order-status--failed {
    background: #fff1f2;
    color: #be123c;
}

.ts-account-product-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ts-account-product {
    overflow: hidden;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.ts-account-product__image {
    display: grid;
    height: 190px;
    place-items: center;
    background: #f8fafc;
}

.ts-account-product__image img {
    width: 82%;
    height: 82%;
    object-fit: contain;
}

.ts-account-product > div {
    display: grid;
    gap: 8px;
    padding: 18px;
}

.ts-account-product h3 {
    min-height: 48px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.25;
}

.ts-account-product h3 a {
    color: #0f172a;
}

.ts-account-product__price {
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 950;
}

.ts-account-product .button {
    justify-self: start;
    min-height: 38px !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
    background: #0f9d7a !important;
    color: #fff !important;
    font-size: 0.86rem !important;
}

.ts-account-bottom-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
}

.ts-account-timeline {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ts-account-timeline li {
    position: relative;
    padding: 14px 16px 14px 42px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #f8fafc;
    color: #334155;
    font-weight: 800;
}

.ts-account-timeline li::before {
    position: absolute;
    top: 18px;
    left: 16px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #0f9d7a;
    content: "";
}

.ts-account-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.ts-account-actions a {
    min-height: 50px;
    padding: 0 16px;
    border: 1px solid #dbe5f0;
    background: #fff;
}

.ts-account-actions a:hover,
.ts-account-panel__head > a:hover,
.ts-account-small-button:hover,
.ts-account-empty a:hover {
    background: #0f9d7a;
    color: #fff;
}

.ts-account-empty {
    display: grid;
    justify-items: center;
    gap: 14px;
    padding: 34px;
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
    background: #f8fafc;
    color: #64748b;
    text-align: center;
}

.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation {
    float: none !important;
    width: auto !important;
}

.woocommerce-account .ts-account-content > p:first-child {
    margin-top: 0;
}

.woocommerce-account .woocommerce-MyAccount-content table,
.woocommerce-account .woocommerce-orders-table,
.woocommerce-account table.shop_table {
    overflow: hidden;
    width: 100%;
    border: 1px solid #dbe5f0 !important;
    border-radius: 18px !important;
    border-collapse: separate !important;
    border-spacing: 0;
    background: #fff;
}

.woocommerce-account .woocommerce-MyAccount-content th,
.woocommerce-account .woocommerce-MyAccount-content td {
    padding: 15px !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

.woocommerce-account .woocommerce-MyAccount-content input,
.woocommerce-account .woocommerce-MyAccount-content select,
.woocommerce-account .woocommerce-MyAccount-content textarea {
    border: 1px solid #dbe5f0;
    border-radius: 12px;
}

.woocommerce-account .woocommerce-MyAccount-content .button {
    border-radius: 999px !important;
    background: #0f9d7a !important;
    color: #fff !important;
    font-weight: 950 !important;
}

@media (max-width: 1180px) {
    .ts-account-cards,
    .ts-account-product-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .ts-account-header,
    .ts-account-layout,
    .ts-account-bottom-grid {
        grid-template-columns: 1fr;
    }

    .ts-account-nav {
        position: static;
    }
}

@media (max-width: 640px) {
    .ts-account-header__identity {
        align-items: flex-start;
        flex-direction: column;
    }

    .ts-account-header__summary,
    .ts-account-cards,
    .ts-account-product-row,
    .ts-account-actions {
        grid-template-columns: 1fr;
    }
}

.ts-auth-page {
    display: grid;
    min-height: calc(100vh - 150px);
    grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
    gap: clamp(28px, 6vw, 90px);
    padding: clamp(36px, 6vw, 84px) clamp(16px, 5vw, 72px);
    background:
        radial-gradient(circle at 18% 20%, rgba(37, 99, 235, 0.12), transparent 28%),
        linear-gradient(135deg, #f8fafc 0%, #ffffff 54%, #eaf7f2 100%);
}

.ts-auth-intro {
    position: relative;
    display: grid;
    align-content: center;
    gap: 34px;
    max-width: 780px;
}

.ts-auth-logo {
    align-self: start;
    font-weight: 500;
}

.ts-auth-page .ts-logo strong,
.ts-auth-page strong {
    font-weight: 500;
}

.ts-auth-copy span,
.ts-auth-badge {
    color: #0f9d7a;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ts-auth-copy h1 {
    max-width: 680px;
    margin: 14px 0 16px;
    color: #0f172a;
    font-size: clamp(2.35rem, 5vw, 4.7rem);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.02;
}

.ts-auth-copy p,
.ts-auth-benefits p,
.ts-auth-card__head p,
.ts-auth-note {
    color: #64748b;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
}

.ts-auth-copy p {
    max-width: 590px;
    margin: 0;
    font-size: 1.05rem;
}

.ts-auth-benefits {
    display: grid;
    max-width: 620px;
    gap: 14px;
}

.ts-auth-benefits article {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(219, 229, 240, 0.9);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
}

.ts-auth-benefits article > span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 999px;
    background: #eaf7f2;
    color: #0f9d7a;
    font-size: 0.82rem;
    font-weight: 500;
}

.ts-auth-benefits h2 {
    margin: 0 0 4px;
    color: #0f172a;
    font-size: 1.02rem;
    font-weight: 500;
}

.ts-auth-benefits p {
    margin: 0;
    font-size: 0.94rem;
}

.ts-auth-illustration {
    position: absolute;
    right: 0;
    bottom: 8px;
    width: min(300px, 40%);
    min-width: 220px;
    opacity: 0.9;
    pointer-events: none;
}

.ts-auth-laptop {
    position: relative;
    height: 172px;
    border: 1px solid #dbe5f0;
    border-radius: 22px;
    background: linear-gradient(145deg, #ffffff, #d9f2ea);
    box-shadow: 0 28px 80px rgba(37, 99, 235, 0.14);
}

.ts-auth-laptop::before {
    position: absolute;
    inset: 24px 34px 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #172033, #0f9d7a);
    content: "";
}

.ts-auth-laptop::after {
    position: absolute;
    right: 44px;
    bottom: 26px;
    left: 44px;
    height: 10px;
    border-radius: 999px;
    background: #cbd5e1;
    content: "";
}

.ts-auth-chip {
    position: absolute;
    display: inline-flex;
    padding: 8px 13px;
    border: 1px solid #dbe5f0;
    border-radius: 999px;
    background: #fff;
    color: #334155;
    font-size: 0.82rem;
    font-weight: 500;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.ts-auth-chip--one {
    top: -12px;
    left: -18px;
}

.ts-auth-chip--two {
    right: -10px;
    bottom: 16px;
}

.ts-auth-card-wrap {
    display: grid;
    align-items: center;
    justify-items: center;
}

.ts-auth-card {
    width: min(450px, 100%);
    padding: clamp(26px, 4vw, 38px);
    border: 1px solid rgba(219, 229, 240, 0.9);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 28px 90px rgba(15, 23, 42, 0.12);
}

.ts-auth-card__head {
    margin-bottom: 24px;
}

.ts-auth-card__head h2 {
    margin: 10px 0 8px;
    color: #0f172a;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.15;
}

.ts-auth-card__head p {
    margin: 0;
    font-size: 16px;
}

.ts-auth-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ts-auth-social button {
    min-height: 48px;
    border: 1px solid #dbe5f0;
    border-radius: 999px;
    background: #fff;
    color: #334155;
    font: inherit;
    font-weight: 500;
    cursor: not-allowed;
    opacity: 0.68;
}

.ts-auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0;
    color: #94a3b8;
    font-size: 0.86rem;
    font-weight: 400;
}

.ts-auth-divider::before,
.ts-auth-divider::after {
    height: 1px;
    flex: 1;
    background: #e2e8f0;
    content: "";
}

.ts-auth-form {
    display: grid;
    gap: 16px;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

.ts-auth-form p {
    margin: 0;
}

.ts-auth-form label {
    display: block;
    margin-bottom: 7px;
    color: #475569;
    font-size: 0.92rem;
    font-weight: 400;
}

.ts-auth-form input.input-text {
    width: 100%;
    height: 56px;
    padding: 0 16px;
    border: 1px solid #dbe5f0;
    border-radius: 16px;
    background: #f8fafc;
    color: #0f172a;
    font: inherit;
    font-weight: 400;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.ts-auth-form input.input-text:focus {
    border-color: #0f9d7a;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
    outline: 0;
}

.ts-password-control {
    position: relative;
    display: block;
}

.ts-password-control input.input-text {
    padding-right: 78px;
}

.ts-password-control button {
    position: absolute;
    top: 50%;
    right: 8px;
    min-width: 58px;
    height: 40px;
    padding: 0 12px;
    border-radius: 999px;
    background: transparent;
    color: #0f9d7a;
    font-size: 0.88rem;
    font-weight: 500;
    transform: translateY(-50%);
}

.ts-auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 2px;
}

.ts-auth-options a,
.ts-auth-register button {
    color: #0f9d7a;
    font: inherit;
    font-weight: 500;
}

.ts-auth-switch {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    margin: 0 !important;
    color: #475569 !important;
    font-weight: 400 !important;
}

.ts-auth-switch input {
    width: 40px;
    height: 22px;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    appearance: none;
    background: #e2e8f0;
    cursor: pointer;
    transition: background 160ms ease;
}

.ts-auth-switch input::before {
    display: block;
    width: 16px;
    height: 16px;
    margin: 2px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.22);
    content: "";
    transition: transform 160ms ease;
}

.ts-auth-switch input:checked {
    background: #0f9d7a;
}

.ts-auth-switch input:checked::before {
    transform: translateX(18px);
}

.ts-auth-submit,
.woocommerce .ts-auth-submit {
    width: 100% !important;
    height: 56px !important;
    margin-top: 4px !important;
    border-radius: 999px !important;
    background: #0f9d7a !important;
    color: #fff !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.24);
}

.ts-auth-register {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.ts-auth-register button {
    background: transparent;
}

.ts-auth-register-form {
    margin-top: 20px !important;
}

.ts-auth-register-form[hidden] {
    display: none !important;
}

.ts-auth-register-form h3 {
    margin: 0;
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 500;
}

.ts-auth-note {
    margin: 18px 0 0;
    font-size: 0.94rem;
}

.woocommerce-account .ts-auth-page .woocommerce-error,
.woocommerce-account .ts-auth-page .woocommerce-message,
.woocommerce-account .ts-auth-page .woocommerce-info {
    border-radius: 16px;
    font-weight: 400;
}

@media (max-width: 1080px) {
    .ts-auth-page {
        grid-template-columns: 1fr;
    }

    .ts-auth-intro {
        max-width: none;
    }

    .ts-auth-illustration {
        display: none;
    }
}

@media (max-width: 580px) {
    .ts-auth-page {
        padding: 28px 16px 44px;
    }

    .ts-auth-social,
    .ts-auth-options {
        grid-template-columns: 1fr;
    }

    .ts-auth-options {
        align-items: flex-start;
        flex-direction: column;
    }

    .ts-auth-card {
        border-radius: 20px;
        padding: 24px;
    }
}

/* Minimal premium account refinement */
.woocommerce-account .ts-account-shell {
    padding-top: clamp(34px, 5vw, 68px);
    background: #f8fafc;
}

.woocommerce-account .ts-account-header,
.woocommerce-account .ts-account-content,
.woocommerce-account .ts-account-panel,
.woocommerce-account .ts-account-product {
    border: 0;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.055);
}

.woocommerce-account .ts-account-header {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    max-width: 1360px;
    padding: clamp(30px, 5vw, 54px);
    border-radius: 28px;
    background: #fff;
}

.woocommerce-account .ts-account-avatar {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
    border-radius: 20px;
    font-size: 1.55rem;
    font-weight: 500;
    box-shadow: 0 16px 28px rgba(37, 99, 235, 0.16);
}

.woocommerce-account .ts-account-header h1 {
    max-width: 920px;
    font-size: clamp(2rem, 4vw, 36px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.12;
}

.woocommerce-account .ts-account-header p,
.woocommerce-account .ts-account-header__summary span,
.woocommerce-account .ts-account-panel p,
.woocommerce-account .ts-account-empty,
.woocommerce-account .ts-account-orders td {
    font-weight: 400;
}

.woocommerce-account .ts-account-header__summary {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: none;
    gap: 10px;
}

.woocommerce-account .ts-account-header__summary span {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.9rem;
}

.woocommerce-account .ts-account-layout {
    max-width: 1360px;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
}

.woocommerce-account .ts-account-nav {
    border: 0;
    border-radius: 24px;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.052);
}

.woocommerce-account .ts-account-nav__label,
.woocommerce-account .ts-section-kicker {
    font-weight: 500;
    letter-spacing: 0.08em;
}

.woocommerce-account .ts-account-nav a {
    min-height: 46px;
    color: #475569;
    font-weight: 400;
}

.woocommerce-account .ts-account-nav a:hover,
.woocommerce-account .ts-account-nav .is-active a,
.woocommerce-account .ts-account-nav a.is-active,
.woocommerce-account .ts-account-nav .woocommerce-MyAccount-navigation-link.is-active a {
    background: #f1f6ff;
    color: #0f9d7a;
    transform: none;
}

.woocommerce-account .ts-account-nav__icon::before,
.woocommerce-account .ts-account-stat__icon::before {
    display: none;
}

.ts-line-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.woocommerce-account .ts-account-nav__icon .ts-line-icon {
    width: 18px;
    height: 18px;
    color: #0f9d7a;
}

.woocommerce-account .ts-account-header__summary .ts-line-icon {
    width: 17px;
    height: 17px;
    color: #0f9d7a;
}

.woocommerce-account .ts-account-content {
    padding: clamp(24px, 4vw, 42px);
    border-radius: 28px;
}

.ts-account-quiet-hero {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 28px;
    padding: 0 0 18px;
}

.ts-account-quiet-hero h2,
.woocommerce-account .ts-account-panel__head h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0 0;
    color: #0f172a;
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.15;
}

.ts-account-quiet-hero p {
    max-width: 680px;
    margin: 12px 0 0;
    color: #64748b;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
}

.woocommerce-account .ts-account-dashboard {
    gap: 34px;
}

.woocommerce-account .ts-account-panel {
    padding: clamp(24px, 4vw, 36px);
    border-radius: 26px;
}

.woocommerce-account .ts-account-panel__head {
    align-items: center;
    margin-bottom: 24px;
}

.woocommerce-account .ts-account-panel__head > a,
.woocommerce-account .ts-account-small-button,
.woocommerce-account .ts-account-actions a,
.woocommerce-account .ts-account-empty a {
    min-height: 42px;
    background: #f1f6ff;
    color: #0f9d7a;
    font-weight: 500;
}

.woocommerce-account .ts-account-orders table {
    min-width: 680px;
    border: 0;
    border-collapse: collapse;
}

.woocommerce-account .ts-account-orders th {
    padding: 0 16px 14px;
    border-bottom: 1px solid #e2e8f0;
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.woocommerce-account .ts-account-orders td {
    padding: 20px 16px;
    border-bottom: 1px solid #edf2f7;
    color: #334155;
}

.woocommerce-account .ts-order-status {
    font-weight: 500;
}

.woocommerce-account .ts-account-product-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.woocommerce-account .ts-account-product {
    border-radius: 24px;
}

.woocommerce-account .ts-account-product__image {
    height: 230px;
    background: linear-gradient(180deg, #fbfdff, #f1f5f9);
}

.woocommerce-account .ts-account-product > div {
    padding: 22px;
}

.woocommerce-account .ts-account-product h3 {
    min-height: 44px;
    font-size: 1.02rem;
    font-weight: 500;
}

.woocommerce-account .ts-account-product h3 a {
    font-weight: 500;
}

.woocommerce-account .ts-account-product__price {
    font-size: 1.04rem;
    font-weight: 500;
}

.woocommerce-account .ts-account-product .button {
    font-weight: 500 !important;
}

.woocommerce-account .ts-account-actions--compact {
    align-self: end;
    grid-template-columns: 1fr;
}

.woocommerce-account .ts-account-actions--compact a {
    gap: 10px;
    justify-content: flex-start;
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.woocommerce-account .ts-account-actions--compact .ts-line-icon,
.woocommerce-account .ts-account-panel__head h2 .ts-line-icon {
    color: #0f9d7a;
}

@media (max-width: 1180px) {
    .woocommerce-account .ts-account-product-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .woocommerce-account .ts-account-layout,
    .ts-account-quiet-hero {
        grid-template-columns: 1fr;
    }

    .woocommerce-account .ts-account-nav {
        position: static;
    }
}

@media (max-width: 640px) {
    .woocommerce-account .ts-account-product-row {
        grid-template-columns: 1fr;
    }

    .ts-account-quiet-hero h2,
    .woocommerce-account .ts-account-panel__head h2 {
        font-size: 2rem;
    }
}

.woocommerce-account .ts-account-shell--profile {
    padding-top: clamp(22px, 4vw, 44px);
}

.woocommerce-account .ts-account-shell--profile .ts-account-layout {
    max-width: 1100px;
}

.woocommerce-account .ts-account-shell--profile .ts-account-content {
    max-width: 800px;
    width: 100%;
    justify-self: start;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.ts-profile-center {
    display: grid;
    gap: 22px;
    max-width: 800px;
}

.ts-profile-header,
.ts-profile-card {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}

.ts-profile-header {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    padding: 24px;
}

.ts-profile-header__identity {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ts-profile-avatar {
    display: grid;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #0f9d7a, #14a46c);
    color: #fff;
    font-size: 1.45rem;
    font-weight: 600;
}

.ts-profile-header h1 {
    margin: 6px 0 4px;
    color: #0f172a;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.1;
}

.ts-profile-header p,
.ts-profile-card__head p,
.ts-profile-grid p > span,
.ts-password-strength small {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.ts-profile-actions {
    display: grid;
    gap: 10px;
}

.ts-profile-actions a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 9px;
    justify-content: flex-start;
    padding: 0 14px;
    border-radius: 999px;
    background: #f1f6ff;
    color: #0f9d7a;
    font-size: 14px;
    font-weight: 500;
}

.ts-profile-actions .ts-line-icon {
    width: 18px;
    height: 18px;
}

.ts-profile-form {
    display: grid;
    gap: 22px;
    margin: 0 !important;
}

.ts-profile-card {
    padding: 26px;
}

.ts-profile-card__head {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
}

.ts-profile-card__head > .ts-line-icon {
    width: 24px;
    height: 24px;
    color: #0f9d7a;
}

.ts-profile-card__head h2 {
    margin: 0 0 4px;
    color: #0f172a;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.18;
}

.ts-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ts-profile-grid .form-row {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}

.ts-profile-grid .form-row-wide {
    grid-column: 1 / -1;
}

.ts-profile-grid label {
    display: block;
    margin: 0 0 8px;
    color: #334155;
    font-size: 14px;
    font-weight: 500;
}

.woocommerce-account .ts-profile-grid input.input-text {
    width: 100%;
    height: 52px;
    padding: 0 15px;
    border: 1px solid #dbe5f0;
    border-radius: 14px;
    background: #f8fafc;
    color: #0f172a;
    font-size: 15px;
    font-weight: 400;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.woocommerce-account .ts-profile-grid input.input-text:focus {
    border-color: #0f9d7a;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
    outline: 0;
}

.ts-profile-grid .ts-password-control button {
    font-weight: 500;
}

.ts-password-strength {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.ts-password-strength::before {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: #e2e8f0;
    content: "";
}

.ts-password-strength span {
    display: block;
    width: 0;
    height: 8px;
    margin-top: -16px;
    border-radius: 999px;
    background: #94a3b8;
    transition: width 160ms ease, background 160ms ease;
}

.ts-password-strength[data-score="1"] span {
    background: #ef4444;
}

.ts-password-strength[data-score="2"] span,
.ts-password-strength[data-score="3"] span {
    background: #f59e0b;
}

.ts-password-strength[data-score="4"] span {
    background: #10b981;
}

.ts-profile-submit {
    display: flex;
    justify-content: flex-end;
}

.woocommerce-account .ts-profile-save {
    min-width: 170px !important;
    height: 48px !important;
    padding: 0 24px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #0f9d7a, #0b7a5f) !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.22);
}

@media (max-width: 900px) {
    .woocommerce-account .ts-account-shell--profile .ts-account-content {
        max-width: none;
    }
}

@media (max-width: 680px) {
    .ts-profile-header,
    .ts-profile-header__identity {
        align-items: flex-start;
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .ts-profile-grid {
        grid-template-columns: 1fr;
    }

    .ts-profile-header h1 {
        font-size: 2rem;
    }

    .ts-profile-submit {
        justify-content: stretch;
    }

    .woocommerce-account .ts-profile-save {
        width: 100% !important;
    }
}

.ts-address-center {
    display: grid;
    gap: 24px;
}

.ts-address-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.ts-address-header h1 {
    margin: 6px 0;
    color: #0f172a;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.15;
}

.ts-address-header p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    font-weight: 400;
}

.ts-address-header > a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 9px;
    padding: 0 14px;
    border-radius: 999px;
    background: #f1f6ff;
    color: #0f9d7a;
    font-size: 15px;
    font-weight: 500;
}

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

.ts-address-card {
    display: grid;
    gap: 22px;
    min-height: 360px;
    padding: 24px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.ts-address-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 64px rgba(15, 23, 42, 0.09);
}

.ts-address-card__head {
    display: flex;
    gap: 14px;
}

.ts-address-card__icon {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    border-radius: 16px;
    background: #f1f6ff;
    color: #0f9d7a;
}

.ts-address-card__icon .ts-line-icon {
    width: 22px;
    height: 22px;
}

.ts-address-card h2 {
    margin: 0 0 4px;
    color: #0f172a;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0;
}

.ts-address-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.ts-address-lines {
    display: grid;
    align-content: start;
    gap: 8px;
    color: #475569;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
}

.ts-address-lines strong {
    color: #0f172a;
    font-size: 16px;
    font-weight: 600;
}

.ts-address-empty {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 10px;
    min-height: 170px;
    padding: 24px;
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
    background: #f8fafc;
    text-align: center;
}

.ts-address-empty .ts-line-icon {
    width: 34px;
    height: 34px;
    color: #0f9d7a;
}

.ts-address-empty strong {
    color: #0f172a;
    font-size: 16px;
    font-weight: 600;
}

.ts-address-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: end;
    flex-wrap: wrap;
}

.ts-address-primary,
.ts-address-secondary {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
}

.ts-address-primary {
    background: linear-gradient(135deg, #0f9d7a, #0b7a5f);
    color: #fff;
    box-shadow: 0 14px 26px rgba(37, 99, 235, 0.2);
}

.ts-address-primary:hover {
    color: #fff;
}

.ts-address-secondary {
    background: #f1f6ff;
    color: #0f9d7a;
}

.woocommerce-account .addresses,
.woocommerce-account .woocommerce-Address {
    display: none !important;
}

@media (max-width: 900px) {
    .ts-address-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .ts-address-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .ts-address-grid {
        grid-template-columns: 1fr;
    }
}

.woocommerce-cart .ts-page-shell {
    max-width: none;
    padding: 0;
    background: #f8fafc;
}

.woocommerce-cart .ts-page-shell > article > h1 {
    display: none;
}

.ts-premium-cart {
    padding: clamp(28px, 5vw, 64px) clamp(16px, 4vw, 48px) clamp(56px, 7vw, 92px);
    background: #f8fafc;
}

.ts-cart-hero,
.ts-cart-layout,
.ts-cart-recommended {
    max-width: 1440px;
    margin: 0 auto;
}

.ts-cart-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.ts-cart-hero h1 {
    max-width: 760px;
    margin: 8px 0;
    color: #0f172a;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.12;
}

.ts-cart-hero p {
    max-width: 680px;
    margin: 0;
    color: #64748b;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
}

.ts-cart-hero > a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 9px;
    padding: 0 16px;
    border-radius: 999px;
    background: #fff;
    color: #0f9d7a;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.ts-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.34fr);
    gap: 28px;
    align-items: start;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.ts-cart-items {
    display: grid;
    gap: 18px;
}

.ts-cart-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 2px;
}

.ts-cart-section-head h2 {
    margin: 0;
    color: #0f172a;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0;
}

.ts-cart-section-head span,
.ts-cart-section-head a {
    color: #64748b;
    font-size: 15px;
    font-weight: 500;
}

.ts-cart-item,
.ts-cart-summary__card,
.ts-cart-rec-card,
.ts-cart-empty-card {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}

.ts-cart-item {
    display: grid;
    grid-template-columns: 172px minmax(0, 1fr) minmax(190px, auto);
    gap: 22px;
    align-items: center;
    padding: 22px;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.ts-cart-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 64px rgba(15, 23, 42, 0.09);
}

.ts-cart-item__image {
    display: grid;
    width: 172px;
    height: 156px;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(180deg, #fbfdff, #eef3f8);
}

.ts-cart-item__image img {
    width: 86%;
    height: 86%;
    object-fit: contain;
}

.ts-cart-item__brand {
    color: #0f9d7a;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ts-cart-item h3 {
    margin: 5px 0 12px;
    color: #0f172a;
    font-size: 1.18rem;
    font-weight: 600;
    line-height: 1.25;
}

.ts-cart-item h3 a {
    color: inherit;
}

.ts-cart-specs {
    display: grid;
    gap: 5px;
    margin: 0;
    padding: 0;
    color: #64748b;
    font-size: 15px;
    font-weight: 400;
    list-style: none;
}

.ts-cart-specs li::before {
    margin-right: 8px;
    color: #0f9d7a;
    content: "•";
}

.ts-cart-item__meta {
    display: grid;
    justify-items: end;
    gap: 16px;
}

.ts-cart-price {
    display: grid;
    gap: 2px;
    text-align: right;
}

.ts-cart-price span {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 400;
}

.ts-cart-price strong {
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 600;
}

.ts-cart-qty {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    height: 44px;
    border: 1px solid #dbe5f0;
    border-radius: 999px;
    background: #f8fafc;
}

.ts-cart-qty button {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    border-radius: 999px;
    background: transparent;
    color: #0f9d7a;
    font-size: 1.15rem;
    font-weight: 500;
}

.woocommerce .ts-cart-qty .quantity .qty {
    width: 54px;
    min-height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #0f172a;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

.ts-cart-item__links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.ts-cart-remove,
.ts-cart-wishlist {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.ts-cart-remove:hover {
    color: #dc2626;
}

.ts-cart-update {
    justify-self: start;
    min-height: 42px !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
    background: #d9f2ea !important;
    color: #0f9d7a !important;
    font-size: 15px !important;
    font-weight: 500 !important;
}

.ts-cart-summary {
    position: sticky;
    top: 132px;
}

.ts-cart-summary__card {
    display: grid;
    gap: 22px;
    padding: 24px;
}

.ts-cart-summary__card h2 {
    margin: 0;
    color: #0f172a;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0;
}

.ts-cart-totals {
    display: grid;
    gap: 14px;
}

.ts-cart-totals > div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #edf2f7;
    color: #64748b;
    font-size: 15px;
    font-weight: 400;
}

.ts-cart-totals strong {
    color: #0f172a;
    font-weight: 500;
    text-align: right;
}

.ts-cart-totals .ts-cart-total {
    padding: 4px 0 0;
    border-bottom: 0;
    color: #0f172a;
    font-size: 1.12rem;
}

.ts-cart-totals .ts-cart-total strong {
    color: #0f9d7a;
    font-size: 1.55rem;
    font-weight: 600;
}

.ts-cart-shipping ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ts-cart-shipping li {
    margin: 0 0 8px;
}

.ts-cart-shipping label {
    color: #334155;
    font-size: 14px;
    font-weight: 400;
}

.ts-cart-coupon {
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 18px;
    background: #f8fafc;
}

.ts-cart-coupon label {
    color: #334155;
    font-size: 14px;
    font-weight: 500;
}

.ts-cart-coupon > div {
    position: relative;
}

.ts-cart-coupon .ts-line-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    width: 18px;
    height: 18px;
    color: #94a3b8;
    transform: translateY(-50%);
}

.ts-cart-coupon input {
    width: 100%;
    height: 48px;
    padding: 0 14px 0 42px;
    border: 1px solid #dbe5f0;
    border-radius: 999px;
    background: #fff;
    color: #0f172a;
    font-size: 15px;
    font-weight: 400;
}

.ts-cart-coupon input:focus {
    border-color: #0f9d7a;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
    outline: 0;
}

.ts-cart-coupon button {
    height: 42px !important;
    border-radius: 999px !important;
    background: #d9f2ea !important;
    color: #0f9d7a !important;
    font-size: 15px !important;
    font-weight: 500 !important;
}

.ts-cart-checkout {
    display: inline-flex;
    width: 100%;
    height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #0f9d7a, #0b7a5f);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.24);
}

.ts-cart-checkout:hover {
    color: #fff;
}

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

.ts-cart-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 14px;
    font-weight: 400;
}

.ts-cart-trust .ts-line-icon {
    width: 17px;
    height: 17px;
    color: #10b981;
}

.ts-cart-recommended {
    margin-top: clamp(36px, 5vw, 62px);
}

.ts-cart-recommended__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 18px;
}

.ts-cart-rec-card {
    overflow: hidden;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.ts-cart-rec-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 64px rgba(15, 23, 42, 0.09);
}

.ts-cart-rec-card__image {
    display: grid;
    height: 230px;
    place-items: center;
    background: linear-gradient(180deg, #fbfdff, #eef3f8);
}

.ts-cart-rec-card__image img {
    width: 84%;
    height: 84%;
    object-fit: contain;
}

.ts-cart-rec-card > div {
    display: grid;
    gap: 10px;
    padding: 22px;
}

.ts-cart-rec-card h3 {
    min-height: 44px;
    margin: 0;
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.25;
}

.ts-cart-rec-card h3 a {
    color: inherit;
}

.ts-cart-rec-card strong {
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 600;
}

.ts-cart-rec-card .button {
    justify-self: start;
    min-height: 42px !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
    background: #0f9d7a !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
}

.ts-cart-empty-card {
    display: grid;
    max-width: 560px;
    margin: 0 auto;
    justify-items: center;
    gap: 14px;
    padding: 46px;
    text-align: center;
}

.ts-cart-empty-card .ts-line-icon {
    width: 46px;
    height: 46px;
    color: #0f9d7a;
}

.ts-cart-empty-card h1 {
    margin: 0;
    color: #0f172a;
    font-size: 36px;
    font-weight: 600;
}

.ts-cart-empty-card p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    font-weight: 400;
}

.ts-cart-empty-card a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    margin-top: 8px;
    padding: 0 22px;
    border-radius: 999px;
    background: #0f9d7a;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.woocommerce-cart .cart-empty,
.woocommerce-cart .return-to-shop {
    display: none !important;
}

.ts-premium-cart--empty {
    display: grid;
    min-height: calc(100vh - 250px);
    place-items: center;
    padding: clamp(36px, 6vw, 82px) clamp(16px, 4vw, 48px);
    background:
        radial-gradient(circle at 18% 12%, rgba(37, 99, 235, 0.1), transparent 30%),
        radial-gradient(circle at 82% 18%, rgba(14, 165, 233, 0.12), transparent 28%),
        #f8fafc;
}

.ts-cart-empty-wrap {
    display: grid;
    width: min(100%, 1160px);
    gap: 22px;
}

.ts-premium-cart--empty .ts-cart-empty-card {
    position: relative;
    overflow: hidden;
    max-width: none;
    min-height: 430px;
    padding: clamp(34px, 5vw, 64px);
    border: 1px solid #dbe5f0;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94)),
        #fff;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.1);
}

.ts-premium-cart--empty .ts-cart-empty-card::after {
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    content: "";
}

.ts-cart-empty-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 112px;
    height: 112px;
    place-items: center;
    border: 1px solid #c9f0e0;
    border-radius: 32px;
    background: linear-gradient(135deg, #eaf7f2, #fff);
    color: #0f9d7a;
    box-shadow: 0 18px 46px rgba(37, 99, 235, 0.12);
}

.ts-cart-empty-icon svg {
    width: 72px;
    height: 72px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ts-premium-cart--empty .ts-section-kicker,
.ts-premium-cart--empty h1,
.ts-premium-cart--empty p,
.ts-cart-empty-actions,
.ts-cart-empty-trust {
    position: relative;
    z-index: 1;
}

.ts-premium-cart--empty h1 {
    max-width: 680px;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.04;
}

.ts-premium-cart--empty p {
    max-width: 620px;
    font-size: 16px;
    line-height: 1.7;
}

.ts-cart-empty-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.ts-cart-empty-actions .ts-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.ts-cart-empty-actions .ts-button--primary {
    background: linear-gradient(135deg, #0f9d7a, #0b7a5f);
    color: #fff;
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.22);
}

.ts-cart-empty-actions .ts-button--secondary {
    border: 1px solid #dbe5f0;
    background: #fff;
    color: #0f9d7a;
}

.ts-cart-empty-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
}

.ts-cart-empty-trust span {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    gap: 8px;
    padding: 0 13px;
    border: 1px solid #dbe5f0;
    border-radius: 999px;
    background: #fff;
    color: #475569;
    font-size: 14px;
    font-weight: 400;
}

.ts-cart-empty-trust .ts-line-icon {
    width: 17px;
    height: 17px;
    color: #10b981;
}

.ts-cart-empty-categories {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ts-cart-empty-category {
    display: grid;
    gap: 10px;
    padding: 24px;
    border: 1px solid #dbe5f0;
    border-radius: 22px;
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.ts-cart-empty-category:hover {
    border-color: #bfdbfe;
    transform: translateY(-3px);
    box-shadow: 0 26px 64px rgba(15, 23, 42, 0.1);
}

.ts-cart-empty-category span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 16px;
    background: #eaf7f2;
    color: #0f9d7a;
}

.ts-cart-empty-category .ts-line-icon {
    width: 23px;
    height: 23px;
}

.ts-cart-empty-category strong {
    font-size: 17px;
    font-weight: 600;
}

.ts-cart-empty-category small {
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
}

@media (max-width: 1120px) {
    .ts-cart-layout {
        grid-template-columns: 1fr;
    }

    .ts-cart-summary {
        position: static;
    }
}

@media (max-width: 860px) {
    .ts-cart-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .ts-cart-item {
        grid-template-columns: 140px minmax(0, 1fr);
    }

    .ts-cart-item__image {
        width: 140px;
        height: 140px;
    }

    .ts-cart-item__meta {
        grid-column: 1 / -1;
        justify-items: start;
    }

    .ts-cart-price {
        text-align: left;
    }

    .ts-cart-item__links {
        justify-content: flex-start;
    }

    .ts-cart-recommended__grid {
        grid-template-columns: 1fr;
    }

    .ts-cart-empty-categories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .ts-cart-item {
        grid-template-columns: 1fr;
    }

    .ts-cart-item__image {
        width: 100%;
        height: 180px;
    }

    .ts-cart-trust {
        grid-template-columns: 1fr;
    }

    .ts-cart-hero h1,
    .ts-cart-empty-card h1 {
        font-size: 2rem;
    }
}

/* Premium two-row ecommerce header. */
.ts-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5eaf2;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.07);
    backdrop-filter: blur(14px);
}

.ts-header-top {
    background: #fff;
}

.ts-header .ts-nav {
    display: grid;
    grid-template-columns: minmax(250px, 320px) minmax(420px, 700px) minmax(230px, auto);
    min-height: 80px;
    max-width: 1400px;
    align-items: center;
    gap: 28px;
    margin: 0 auto;
    padding: 10px 24px;
}

.ts-header .ts-logo {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 13px;
    color: #0f172a;
    text-decoration: none;
    justify-self: start;
}

.ts-header .ts-logo-image,
.ts-header .ts-logo-mark {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 16px;
}

.ts-header .ts-logo-image {
    overflow: hidden;
    background: transparent;
}

.ts-header .ts-logo-image .custom-logo {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
}

.ts-header .ts-logo-image .custom-logo {
    display: block;
    object-fit: contain;
}

.ts-header .ts-logo-text {
    display: grid;
    min-width: 0;
    gap: 3px;
    line-height: 1.1;
}

.ts-header .ts-logo-text strong {
    color: #0f172a;
    font-size: 1.06rem;
    font-weight: 600;
    letter-spacing: 0;
}

.ts-header .ts-logo-text small {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 400;
    white-space: normal;
}

.ts-header .ts-search {
    position: relative;
    display: grid;
    grid-template-columns: 150px 42px minmax(0, 1fr) auto;
    width: 100%;
    max-width: 700px;
    min-height: 52px;
    align-items: center;
    overflow: hidden;
    border: 1px solid #dbe5f0;
    border-radius: 14px;
    background: #f8fafc;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.ts-search-category {
    width: 150px;
    height: 100%;
    border: 0;
    border-right: 1px solid #e5e7eb;
    border-radius: 0;
    background: #fff;
    padding: 0 12px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 500;
    outline: 0;
}

.ts-search-icon {
    display: grid;
    height: 100%;
    place-items: center;
    color: #94a3b8;
}

.ts-search-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.ts-header .ts-search input[type="search"] {
    height: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0 12px 0 0;
    color: #0f172a;
    font-size: 15px;
    font-weight: 400;
    outline: 0;
}

.ts-header .ts-search input[type="search"]::placeholder {
    color: #94a3b8;
}

.ts-header .ts-search:focus-within {
    border-color: #0f9d7a;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.ts-header .ts-search input[type="search"]:focus {
    box-shadow: none;
}

.ts-header .ts-search button {
    min-width: 104px;
    height: 42px;
    margin: 5px;
    border-radius: 12px;
    background: #0f9d7a;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

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

.ts-header .ts-icon-link,
.ts-header .ts-cart-link,
.ts-header .ts-menu-toggle {
    position: relative;
    display: inline-flex;
    height: 46px;
    min-width: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbe5f0;
    border-radius: 999px;
    background: #fff;
    color: #0f172a;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.ts-action-count {
    position: absolute;
    top: -6px;
    right: -6px;
    display: inline-grid;
    min-width: 20px;
    height: 20px;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 999px;
    background: #0f9d7a;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
}

.ts-account-menu {
    position: relative;
}

.ts-account-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 20;
    display: grid !important;
    min-width: 180px;
    padding: 8px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.14);
    opacity: 0;
    transform: translateY(8px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
}

.ts-account-menu:hover .ts-account-dropdown,
.ts-account-menu:focus-within .ts-account-dropdown {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

.ts-account-dropdown a {
    padding: 10px 12px;
    border-radius: 10px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.ts-account-dropdown a:hover {
    background: #eaf7f2;
    color: #0f9d7a;
}

.ts-header .ts-icon-link:hover,
.ts-header .ts-cart-link:hover,
.ts-header .ts-menu-toggle:hover {
    border-color: rgba(37, 99, 235, 0.34);
    background: #eaf7f2;
    color: #0f9d7a;
}

.ts-header .ts-cart-link {
    gap: 8px;
    border-color: rgba(37, 99, 235, 0.34);
    background: #eaf7f2;
    padding: 0 16px;
    color: #0b7a5f;
    font-size: 15px;
    font-weight: 600;
}

.ts-header .ts-cart-count {
    min-width: 23px;
    min-height: 23px;
    background: #0f9d7a;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
}

.ts-header .ts-nav-menu-row {
    min-height: 60px;
    border-top: 1px solid #edf2f7;
    background: #fff;
    padding: 0 24px;
}

.ts-nav-menu-inner {
    display: flex;
    max-width: 1400px;
    min-height: 60px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 0 auto;
}

.ts-header .ts-menu__fallback {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.ts-header .ts-menu a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding: 0 15px;
    border-radius: 999px;
    color: #172033;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.ts-header .ts-menu a:hover {
    background: #eaf7f2;
    color: #0f9d7a;
}

.ts-header .ts-menu a.is-active,
.ts-header .ts-menu .current-menu-item > a {
    background: #0f9d7a;
    color: #fff;
}

.ts-nav-badge {
    display: none !important;
}

.ts-header-service {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    white-space: nowrap;
}

.ts-header-service span,
.ts-header-service a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border-radius: 999px;
    color: #475569;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.ts-header-service span {
    padding: 0 12px;
    background: #f1f6ff;
    color: #0f9d7a;
}

.ts-header-service a {
    color: #0f172a;
}

.home .ts-hero-slider {
    min-height: 500px;
    background: #f8fafc;
}

.home .ts-slide {
    min-height: 500px;
    padding: 54px clamp(18px, 5vw, 72px);
    background-image:
        linear-gradient(90deg, rgba(248, 250, 252, 0.98) 0%, rgba(248, 250, 252, 0.9) 42%, rgba(248, 250, 252, 0.38) 72%, rgba(248, 250, 252, 0.08) 100%),
        var(--slide-image);
    background-position: center right;
}

.home .ts-slide__content {
    width: min(620px, 100%);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.home .ts-slide h1,
.home .ts-slide h2 {
    margin: 12px 0 18px;
    color: #0f172a;
    font-size: clamp(2.45rem, 5.2vw, 4.6rem);
    font-weight: 600;
    line-height: 1.02;
}

.home .ts-slide p {
    max-width: 560px;
    color: #475569;
    font-size: 1.08rem;
    font-weight: 400;
    line-height: 1.7;
}

.home .ts-eyebrow {
    color: #0f9d7a;
    font-weight: 600;
}

.home .ts-hero__actions .ts-button {
    min-height: 48px;
    border-radius: 999px;
    padding: 0 22px;
    font-weight: 500;
}

.home .ts-hero__actions .ts-button--secondary {
    background: #fff;
    color: #0f172a;
    border-color: #e5e7eb;
}

@media (max-width: 1120px) {
    .ts-header .ts-nav {
        grid-template-columns: minmax(210px, auto) minmax(300px, 1fr) auto;
        gap: 16px;
    }

    .ts-header-service {
        display: none;
    }

    .ts-nav-menu-inner {
        justify-content: center;
    }
}

@media (max-width: 860px) {
    .ts-header .ts-nav {
        grid-template-columns: 1fr auto;
        min-height: auto;
        padding: 10px 16px;
    }

    .ts-header .ts-search {
        grid-column: 1 / -1;
        grid-row: 2;
        grid-template-columns: 132px 40px minmax(0, 1fr) auto;
        max-width: none;
        min-height: 48px;
        order: 3;
    }

    .ts-header .ts-logo-image,
    .ts-header .ts-logo-mark {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .ts-header .ts-logo-text small {
        display: none;
    }

    .ts-header .ts-menu-toggle {
        display: inline-flex;
        flex-direction: column;
        gap: 4px;
        padding: 0;
    }

    .ts-header .ts-menu-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
    }

    .ts-header .ts-nav-menu-row {
        padding: 0 16px;
    }

    .ts-nav-menu-inner {
        display: block;
        min-height: 0;
    }

    .ts-header .ts-menu {
        display: none;
        padding: 10px 0 14px;
    }

    .ts-header .ts-menu.is-open {
        display: block;
    }

    .ts-header .ts-menu__fallback {
        display: grid;
        gap: 8px;
    }

    .ts-header .ts-menu a {
        width: 100%;
        justify-content: center;
    }

    .home .ts-hero-slider,
    .home .ts-slide {
        min-height: 520px;
    }

    .home .ts-slide {
        align-items: flex-end;
        background-image:
            linear-gradient(180deg, rgba(248, 250, 252, 0.28) 0%, rgba(248, 250, 252, 0.82) 45%, #f8fafc 100%),
            var(--slide-image);
    }
}

@media (max-width: 520px) {
    .ts-header .ts-logo-text strong {
        font-size: 0.96rem;
    }

    .ts-header .ts-icon-link {
        display: none;
    }

    .ts-header .ts-cart-link span:not(.ts-cart-count) {
        display: none;
    }

    .ts-header .ts-search {
        grid-template-columns: 38px minmax(0, 1fr) auto;
    }

    .ts-search-category {
        display: none;
    }

    .ts-header .ts-search button {
        min-width: 78px;
        padding: 0 12px;
    }

    .home .ts-slide h1,
    .home .ts-slide h2 {
        font-size: 2.25rem;
    }
}

.woocommerce-checkout .ts-page-shell {
    max-width: none;
    padding: 0;
    background: #f8fafc;
}

.woocommerce-checkout .ts-page-shell > article > h1 {
    display: none;
}

.ts-premium-checkout {
    padding: clamp(28px, 5vw, 64px) clamp(16px, 4vw, 48px) clamp(56px, 7vw, 92px);
    background: #f8fafc;
}

.ts-checkout-hero,
.ts-checkout-layout {
    max-width: 1440px;
    margin: 0 auto;
}

.ts-checkout-progress {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.ts-checkout-progress span {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    gap: 8px;
    padding: 0 13px;
    border-radius: 999px;
    background: #fff;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
}

.ts-checkout-progress span.is-active {
    background: #d9f2ea;
    color: #0f9d7a;
}

.ts-checkout-progress .ts-line-icon {
    width: 16px;
    height: 16px;
}

.ts-checkout-hero__main {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.ts-checkout-hero h1 {
    margin: 8px 0;
    color: #0f172a;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.12;
}

.ts-checkout-hero p {
    max-width: 660px;
    margin: 0;
    color: #64748b;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
}

.ts-checkout-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.ts-checkout-trust-badges span {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
}

.ts-checkout-trust-badges .ts-line-icon {
    width: 17px;
    height: 17px;
    color: #10b981;
}

.woocommerce form.checkout.ts-checkout-layout {
    display: grid;
    grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
    gap: 28px;
    align-items: start;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.ts-checkout-main,
.ts-checkout-sidebar {
    min-width: 0;
}

.ts-checkout-sidebar {
    position: sticky;
    top: 132px;
    min-width: 0;
}

.ts-checkout-card,
.ts-checkout-summary-card {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}

.ts-checkout-card {
    padding: clamp(22px, 3vw, 30px);
}

.ts-checkout-summary-card {
    display: grid;
    gap: 22px;
    padding: 24px;
}

.ts-checkout-card__head {
    display: flex;
    gap: 13px;
    margin-bottom: 24px;
}

.ts-checkout-card__head > .ts-line-icon {
    width: 25px;
    height: 25px;
    color: #0f9d7a;
}

.ts-checkout-card__head h2 {
    margin: 0 0 5px;
    color: #0f172a;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.16;
}

.ts-checkout-card__head p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.ts-checkout-fields {
    display: grid;
    gap: 26px;
}

.ts-checkout-fields section > h3,
.woocommerce-checkout .woocommerce-billing-fields > h3,
.woocommerce-checkout .woocommerce-shipping-fields > h3,
.woocommerce-checkout .woocommerce-additional-fields > h3 {
    margin: 0 0 16px;
    color: #0f172a;
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: 0;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.woocommerce-checkout form .form-row {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce-checkout form .form-row-wide,
.woocommerce-checkout #billing_address_1_field,
.woocommerce-checkout #billing_address_2_field,
.woocommerce-checkout #shipping_address_1_field,
.woocommerce-checkout #shipping_address_2_field,
.woocommerce-checkout #order_comments_field {
    grid-column: 1 / -1;
}

.woocommerce-checkout form .form-row label {
    display: block;
    margin: 0 0 8px;
    color: #334155;
    font-size: 14px;
    font-weight: 500;
}

.woocommerce-checkout form .form-row input.input-text,
.woocommerce-checkout form .form-row textarea,
.woocommerce-checkout form .form-row select,
.woocommerce-checkout .select2-container .select2-selection--single {
    width: 100%;
    min-height: 56px;
    border: 1px solid #dbe5f0;
    border-radius: 14px;
    background: #f8fafc;
    color: #0f172a;
    font-size: 15px;
    font-weight: 400;
}

.woocommerce-checkout form .form-row input.input-text,
.woocommerce-checkout form .form-row textarea {
    padding: 0 16px;
}

.woocommerce-checkout form .form-row textarea {
    min-height: 118px;
    padding-top: 14px;
}

.woocommerce-checkout .select2-container .select2-selection--single {
    display: flex;
    align-items: center;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 16px;
    color: #0f172a;
    line-height: 56px;
}

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

.woocommerce-checkout form .form-row input.input-text:focus,
.woocommerce-checkout form .form-row textarea:focus,
.woocommerce-checkout form .form-row select:focus,
.woocommerce-checkout .select2-container--open .select2-selection--single {
    border-color: #0f9d7a;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
    outline: 0;
}

.ts-delivery-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.ts-delivery-options label {
    display: flex;
    min-height: 58px;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid #dbe5f0;
    border-radius: 16px;
    background: #f8fafc;
    color: #334155;
    font-size: 14px;
    font-weight: 500;
}

.ts-delivery-options input {
    accent-color: #0f9d7a;
}

.woocommerce-checkout-review-order {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.ts-checkout-products {
    display: grid;
    gap: 12px;
}

.ts-checkout-product {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: #f8fafc;
}

.ts-checkout-product__image {
    display: grid;
    width: 82px;
    height: 72px;
    place-items: center;
    border-radius: 13px;
    background: #fff;
}

.ts-checkout-product__image img {
    width: 86%;
    height: 86%;
    object-fit: contain;
}

.ts-checkout-product__content {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.ts-checkout-product__content strong {
    overflow: hidden;
    color: #0f172a;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.28;
    text-overflow: ellipsis;
}

.ts-checkout-product__content small {
    color: #64748b;
    font-size: 13px;
    font-weight: 400;
}

.ts-checkout-product__price {
    color: #0f172a;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.ts-checkout-breakdown {
    display: grid;
    gap: 13px;
    padding-top: 18px;
    border-top: 1px solid #e2e8f0;
}

.ts-checkout-breakdown > div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    color: #64748b;
    font-size: 15px;
    font-weight: 400;
}

.ts-checkout-breakdown strong {
    color: #0f172a;
    font-weight: 500;
    text-align: right;
}

.ts-checkout-total {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.ts-checkout-total span,
.ts-checkout-total strong {
    color: #0f172a;
    font-size: 1.12rem;
    font-weight: 600;
}

.ts-checkout-total strong {
    color: #0f9d7a;
    font-size: 1.55rem;
}

.ts-checkout-shipping ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ts-checkout-shipping li {
    margin-bottom: 8px;
}

.ts-checkout-shipping label {
    color: #334155;
    font-size: 14px;
    font-weight: 400;
}

.ts-checkout-delivery-note {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    background: #f1f6ff;
}

.ts-checkout-delivery-note .ts-line-icon {
    width: 22px;
    height: 22px;
    color: #0f9d7a;
}

.ts-checkout-delivery-note div {
    display: grid;
    gap: 3px;
}

.ts-checkout-delivery-note strong {
    color: #0f172a;
    font-size: 14px;
    font-weight: 500;
}

.ts-checkout-delivery-note span {
    color: #64748b;
    font-size: 13px;
    font-weight: 400;
}

.woocommerce-checkout #payment {
    border: 0;
    border-radius: 0;
    background: transparent;
}

.woocommerce-checkout #payment ul.payment_methods {
    display: grid;
    gap: 10px;
    padding: 0;
    border: 0;
}

.woocommerce-checkout #payment ul.payment_methods li {
    position: relative;
    margin: 0;
    padding: 15px;
    border: 1px solid #dbe5f0;
    border-radius: 16px;
    background: #fff;
    color: #334155;
    font-size: 14px;
    font-weight: 400;
    list-style: none;
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
    overflow: hidden;
}

.woocommerce-checkout #payment ul.payment_methods li:has(input:checked) {
    border-color: #0f9d7a;
    background: #f1f6ff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.woocommerce-checkout #payment ul.payment_methods li input.input-radio {
    margin-right: 9px;
    accent-color: #0f9d7a;
}

.woocommerce-checkout #payment ul.payment_methods li label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0f172a;
    font-size: 15px;
    font-weight: 500;
    max-width: 100%;
    flex-wrap: wrap;
}

.woocommerce-checkout #payment ul.payment_methods li img {
    max-height: 28px;
    margin: 0 0 0 6px;
    object-fit: contain;
}

.woocommerce-checkout #payment div.payment_box {
    margin: 12px 0 0;
    padding: 13px 14px;
    border-radius: 14px;
    background: #fff;
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.woocommerce-checkout #payment div.payment_box::before {
    display: none;
}

.woocommerce-checkout #payment div.form-row.place-order {
    display: grid;
    gap: 14px;
    padding: 18px 0 0;
}

.woocommerce-checkout #place_order {
    width: 100%;
    height: 56px;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #0f9d7a, #0b7a5f) !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.24);
}

.ts-checkout-support {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.ts-checkout-support span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 14px;
    font-weight: 400;
}

.ts-checkout-support .ts-line-icon {
    width: 17px;
    height: 17px;
    color: #10b981;
}

@media (max-width: 1120px) {
    .woocommerce form.checkout.ts-checkout-layout {
        grid-template-columns: 1fr;
    }

    .ts-checkout-sidebar {
        position: static;
    }
}

@media (max-width: 760px) {
    .ts-checkout-hero__main {
        align-items: flex-start;
        flex-direction: column;
    }

    .ts-checkout-trust-badges {
        justify-content: flex-start;
    }

    .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
    .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
    .woocommerce-checkout .woocommerce-additional-fields__field-wrapper,
    .ts-delivery-options,
    .ts-checkout-support {
        grid-template-columns: 1fr;
    }

    .ts-checkout-product {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .ts-checkout-product__price {
        grid-column: 2;
    }
}

@media (max-width: 520px) {
    .ts-checkout-hero h1 {
        font-size: 2rem;
    }
}

.woocommerce ul.products li.product .ts-wishlist-save {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    align-self: flex-start;
    margin: -8px 18px 18px;
    padding: 0 14px;
    border: 1px solid #dbe5f0;
    border-radius: 999px;
    background: #fff;
    color: #0f172a;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: none;
    transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.woocommerce ul.products li.product .ts-wishlist-save:hover {
    border-color: #bfdbfe;
    background: #eaf7f2;
    color: #0b7a5f;
    transform: translateY(-1px);
}

.woocommerce ul.products li.product .ts-wishlist-save.is-active {
    border-color: #fecaca;
    background: #fff1f2;
    color: #dc2626;
}

.ts-wishlist-save.is-loading {
    opacity: 0.65;
    pointer-events: none;
}

.ts-related-card__tools [data-ts-wishlist-button].is-active {
    background: #fee2e2;
    color: #dc2626;
}

.ts-shop-card__tools button[data-ts-wishlist-button] {
    display: grid;
    width: 36px;
    height: 36px;
    padding: 0;
    place-items: center;
    border: 1px solid #dbe5f0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #0f172a;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.ts-shop-card__tools button[data-ts-wishlist-button].is-active {
    border-color: #fecaca;
    background: #fff1f2;
    color: #dc2626;
}

.ts-wishlist-page {
    background:
        radial-gradient(circle at 12% 0%, rgba(37, 99, 235, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 58%, #ffffff 100%);
}

.ts-wishlist-shell {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: clamp(34px, 5vw, 72px) 0 64px;
}

.ts-wishlist-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
}

.ts-wishlist-breadcrumb a {
    color: #0f9d7a;
    font-weight: 500;
}

.ts-wishlist-empty {
    display: grid;
    min-height: 520px;
    place-items: center;
    padding: clamp(38px, 6vw, 76px) 20px;
    border: 1px solid #dbe5f0;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 26px 80px rgba(15, 23, 42, 0.08);
    text-align: center;
}

.ts-wishlist-illustration {
    display: grid;
    width: min(240px, 70vw);
    height: min(204px, 58vw);
    place-items: center;
    margin-bottom: 16px;
}

.ts-wishlist-illustration svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.ts-wishlist-illustration__heart {
    fill: none;
    stroke: #0f9d7a;
    stroke-width: 9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ts-wishlist-illustration__screen,
.ts-wishlist-illustration__base {
    fill: #f1f5f9;
    stroke: #94a3b8;
    stroke-width: 5;
    stroke-linejoin: round;
}

.ts-wishlist-illustration__shine {
    fill: none;
    stroke: #10b981;
    stroke-width: 5;
    stroke-linecap: round;
}

.ts-wishlist-empty h1,
.ts-wishlist-heading h1 {
    margin: 8px 0 12px;
    color: #0f172a;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.02;
}

.ts-wishlist-empty p,
.ts-wishlist-heading p,
.ts-wishlist-newsletter p {
    max-width: 620px;
    margin: 0;
    color: #64748b;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
}

.ts-wishlist-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.ts-button.ts-button--secondary {
    border: 1px solid #dbe5f0;
    background: #fff;
    color: #0f172a;
    box-shadow: none;
}

.ts-wishlist-heading,
.ts-wishlist-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.ts-wishlist-counter {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding: 0 15px;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    background: #eaf7f2;
    color: #0b7a5f;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.ts-wishlist-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.ts-wishlist-product-card,
.ts-wishlist-category-card {
    border: 1px solid #dbe5f0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.ts-wishlist-product-card:hover,
.ts-wishlist-category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.32);
    box-shadow: 0 26px 64px rgba(15, 23, 42, 0.12);
}

.ts-wishlist-product-card {
    overflow: hidden;
}

.ts-wishlist-product-card__image {
    display: grid;
    height: 220px;
    place-items: center;
    padding: 18px;
    background: #f8fafc;
}

.ts-wishlist-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ts-wishlist-product-card__body {
    display: grid;
    gap: 11px;
    padding: 18px;
}

.ts-wishlist-product-card h2 {
    display: -webkit-box;
    min-height: 44px;
    margin: 0;
    overflow: hidden;
    color: #0f172a;
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ts-wishlist-product-card h2 a {
    color: inherit;
}

.ts-wishlist-product-card__price {
    color: #0f172a;
    font-size: 1.18rem;
    font-weight: 600;
}

.ts-wishlist-stock {
    justify-self: start;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
}

.ts-wishlist-stock.is-in-stock {
    background: #dcfce7;
    color: #047857;
}

.ts-wishlist-stock.is-out-of-stock {
    background: #fee2e2;
    color: #b91c1c;
}

.ts-wishlist-product-card__actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    margin-top: 3px;
}

.ts-wishlist-product-card__actions .button,
.ts-wishlist-remove {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.ts-wishlist-product-card__actions .button {
    background: linear-gradient(135deg, #0f9d7a, #0b7a5f) !important;
    color: #fff !important;
}

.ts-wishlist-remove {
    border: 1px solid #fecaca;
    background: #fff;
    color: #dc2626;
}

.ts-wishlist-section {
    margin-top: clamp(40px, 6vw, 72px);
}

.ts-wishlist-section__head h2,
.ts-wishlist-newsletter h2 {
    margin: 6px 0 0;
    color: #0f172a;
    font-size: clamp(1.7rem, 3vw, 2.55rem);
    font-weight: 600;
    letter-spacing: 0;
}

.ts-wishlist-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.ts-wishlist-category-card {
    display: grid;
    gap: 12px;
    padding: 24px;
    color: #0f172a;
}

.ts-wishlist-category-card__icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 16px;
    background: #eaf7f2;
    color: #0f9d7a;
}

.ts-wishlist-category-card__icon .ts-line-icon {
    width: 25px;
    height: 25px;
    stroke-width: 1.8;
}

.ts-wishlist-category-card strong {
    font-size: 18px;
    font-weight: 500;
}

.ts-wishlist-category-card small {
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
}

.ts-wishlist-recent-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.ts-wishlist-newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: clamp(44px, 7vw, 82px);
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid #dbe5f0;
    border-radius: 24px;
    background:
        radial-gradient(circle at 85% 10%, rgba(37, 99, 235, 0.12), transparent 30%),
        #fff;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.ts-wishlist-newsletter form {
    display: flex;
    width: min(100%, 460px);
    gap: 10px;
}

.ts-wishlist-newsletter input {
    width: 100%;
    min-height: 50px;
    border: 1px solid #dbe5f0;
    border-radius: 999px;
    background: #fff;
    padding: 0 17px;
    color: #0f172a;
    font: inherit;
    font-weight: 400;
    outline: none;
}

.ts-wishlist-newsletter input:focus {
    border-color: #0f9d7a;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.ts-wishlist-newsletter button {
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0f9d7a, #0b7a5f);
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .ts-wishlist-product-grid,
    .ts-wishlist-recent-grid,
    .ts-wishlist-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ts-wishlist-newsletter {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .ts-wishlist-shell {
        width: min(100% - 20px, 1200px);
    }

    .ts-wishlist-empty {
        min-height: 460px;
        border-radius: 22px;
    }

    .ts-wishlist-heading,
    .ts-wishlist-section__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .ts-wishlist-product-grid,
    .ts-wishlist-recent-grid,
    .ts-wishlist-category-grid {
        grid-template-columns: 1fr;
    }

    .ts-wishlist-product-card__image {
        height: 250px;
    }

    .ts-wishlist-newsletter form,
    .ts-wishlist-actions {
        flex-direction: column;
        width: 100%;
    }

    .ts-wishlist-newsletter button,
    .ts-wishlist-actions .ts-button {
        width: 100%;
    }
}

/* Wishlist product cards use the same premium product system as the shop page. */
.ts-wishlist-page .ts-wishlist-shop-loop {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
    margin-top: 22px;
}

.ts-wishlist-page .ts-wishlist-card {
    min-height: 100%;
    border-radius: 20px;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
}

.ts-wishlist-page .ts-wishlist-card .ts-shop-card__media {
    min-height: 268px;
    background: linear-gradient(180deg, #fbfdff, #f1f5f9);
}

.ts-wishlist-page .ts-wishlist-card .ts-shop-card__media img {
    height: 252px;
    padding: 28px;
}

.ts-wishlist-page .ts-wishlist-card .ts-shop-card__badge {
    border-radius: 999px;
    background: #d9f2ea;
    color: #0f9d7a;
}

.ts-wishlist-page .ts-wishlist-card .ts-shop-card__body {
    min-height: 270px;
    padding: 20px;
}

.ts-wishlist-page .ts-wishlist-card .ts-shop-card__brand {
    color: #059669;
    font-weight: 700;
}

.ts-wishlist-page .ts-wishlist-card h2 {
    min-height: 48px;
    font-size: 1.08rem;
    font-weight: 600;
}

.ts-wishlist-page .ts-wishlist-card .ts-shop-card__price {
    font-size: 1.22rem;
    font-weight: 700;
}

.ts-wishlist-page .ts-wishlist-card .ts-specs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ts-wishlist-page .ts-wishlist-card .ts-shop-card__foot {
    align-items: center;
    margin-top: auto;
}

.ts-wishlist-page .ts-wishlist-card .ts-stock {
    font-weight: 600;
}

.ts-wishlist-page .ts-wishlist-card .button {
    min-height: 42px !important;
    padding: 0 16px !important;
    font-weight: 600 !important;
}

@media (max-width: 1180px) {
    .ts-wishlist-page .ts-wishlist-shop-loop {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .ts-wishlist-page .ts-wishlist-shop-loop {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .ts-wishlist-page .ts-wishlist-shop-loop {
        grid-template-columns: 1fr;
    }

    .ts-wishlist-page .ts-wishlist-card .ts-shop-card__media {
        min-height: 240px;
    }

    .ts-wishlist-page .ts-wishlist-card .ts-shop-card__media img {
        height: 225px;
    }

    .ts-wishlist-page .ts-wishlist-card .ts-specs,
    .ts-wishlist-page .ts-wishlist-card .ts-shop-card__foot {
        grid-template-columns: 1fr;
    }

    .ts-wishlist-page .ts-wishlist-card .ts-shop-card__foot {
        align-items: stretch;
        flex-direction: column;
    }
}

/* Header repair overrides: keep the premium header aligned after WooCommerce/page CSS loads. */
.ts-header .ts-nav {
    display: grid !important;
    grid-template-columns: minmax(250px, 320px) minmax(420px, 700px) minmax(230px, auto) !important;
    min-height: 80px !important;
    max-width: 1400px !important;
    align-items: center !important;
    gap: 28px !important;
    margin: 0 auto !important;
    padding: 10px 24px !important;
}

.ts-header .ts-logo {
    display: inline-flex !important;
    align-items: center !important;
    justify-self: start !important;
}

.ts-header .ts-logo-image {
    display: inline-flex !important;
    width: 54px !important;
    height: 54px !important;
    flex: 0 0 54px !important;
    align-items: center !important;
    justify-content: center !important;
}

.ts-header .ts-logo-image .custom-logo {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.ts-header .ts-header-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    white-space: nowrap !important;
}

.ts-header .ts-account-menu {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
}

.ts-header .ts-account-dropdown {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: 0 !important;
    z-index: 1005 !important;
    display: grid !important;
    width: max-content !important;
    min-width: 178px !important;
    gap: 2px !important;
    margin: 0 !important;
    padding: 8px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.14) !important;
    opacity: 0 !important;
    transform: translateY(8px) !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.ts-header .ts-account-menu:hover .ts-account-dropdown,
.ts-header .ts-account-menu:focus-within .ts-account-dropdown {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.ts-header .ts-account-dropdown a {
    display: block !important;
    margin: 0 !important;
    padding: 10px 12px !important;
    border-radius: 10px !important;
    color: #0f172a !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.ts-header .ts-nav-menu-inner {
    display: flex !important;
    max-width: 1400px !important;
    min-height: 60px !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

.ts-header .ts-menu {
    flex: 1 1 auto !important;
    min-width: 0 !important;
}

.ts-header .ts-menu__fallback {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.ts-header .ts-header-service {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    margin-left: auto !important;
    white-space: nowrap !important;
}

.ts-header .ts-header-service span,
.ts-header .ts-header-service a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 34px !important;
    padding: 0 12px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 999px !important;
    background: #fff !important;
    color: #475569 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}

.ts-header .ts-header-service span {
    background: #eaf7f2 !important;
    color: #0f9d7a !important;
}

@media (max-width: 1120px) {
    .ts-header .ts-nav {
        grid-template-columns: 1fr auto !important;
    }

    .ts-header .ts-search {
        grid-column: 1 / -1 !important;
        grid-row: 2 !important;
        max-width: none !important;
    }

    .ts-header .ts-header-service {
        display: none !important;
    }
}

@media (max-width: 720px) {
    .ts-header .ts-nav {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 12px !important;
        padding: 12px 18px !important;
    }

    .ts-header .ts-logo {
        flex: 1 1 auto !important;
    }

    .ts-header .ts-search {
        order: 3 !important;
        flex: 1 0 100% !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
    }

    .ts-header .ts-search-category,
    .ts-header .ts-search-icon {
        display: none !important;
    }

    .ts-header .ts-menu {
        display: none !important;
    }

    .ts-header .ts-menu.is-open {
        display: block !important;
    }
}

/* Premium light pagination. */
.woocommerce nav.woocommerce-pagination,
.ts-shop-pagination {
    display: flex !important;
    justify-content: center !important;
    margin: 34px 0 8px !important;
}

.woocommerce nav.woocommerce-pagination ul,
.ts-shop-pagination ul,
.ts-shop-pagination .page-numbers {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 8px !important;
    border: 1px solid #dbe5f0 !important;
    border-radius: 999px !important;
    background: #fff !important;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08) !important;
    list-style: none !important;
}

.woocommerce nav.woocommerce-pagination ul li {
    overflow: visible !important;
    margin: 0 !important;
    border: 0 !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span,
.ts-shop-pagination a,
.ts-shop-pagination span {
    display: inline-flex !important;
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid transparent !important;
    border-radius: 999px !important;
    background: transparent !important;
    color: #0f172a !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 44px !important;
    padding: 0 !important;
    text-decoration: none !important;
    box-shadow: none !important;
    text-align: center !important;
    vertical-align: middle !important;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.ts-shop-pagination .current,
.ts-shop-pagination a:hover {
    border-color: #0f9d7a !important;
    background: #0f9d7a !important;
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22) !important;
}

.woocommerce nav.woocommerce-pagination ul li a.next,
.woocommerce nav.woocommerce-pagination ul li a.prev,
.ts-shop-pagination a.next,
.ts-shop-pagination a.prev {
    width: auto !important;
    min-width: 46px !important;
    padding: 0 16px !important;
    background: #f8fafc !important;
    color: #0f9d7a !important;
}

.woocommerce nav.woocommerce-pagination ul li a.next:hover,
.woocommerce nav.woocommerce-pagination ul li a.prev:hover,
.ts-shop-pagination a.next:hover,
.ts-shop-pagination a.prev:hover {
    background: #0f9d7a !important;
    color: #fff !important;
}

@media (max-width: 560px) {
    .woocommerce nav.woocommerce-pagination ul,
    .ts-shop-pagination ul,
    .ts-shop-pagination .page-numbers {
        gap: 6px !important;
        padding: 6px !important;
    }

    .woocommerce nav.woocommerce-pagination ul li a,
    .woocommerce nav.woocommerce-pagination ul li span,
    .ts-shop-pagination a,
    .ts-shop-pagination span {
        width: 38px !important;
        min-width: 38px !important;
        height: 38px !important;
        min-height: 38px !important;
        font-size: 14px !important;
    }
}

/* Live ecommerce header v2: keep the newer header consistent on every page. */
.ts-header#ts-site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9990 !important;
    border-bottom: 1px solid #dbe5f0 !important;
    background: #fff !important;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08) !important;
}

.admin-bar .ts-header#ts-site-header {
    top: 32px !important;
}

.ts-header .ts-announce {
    position: relative;
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    background: #1456c8;
    color: #fff;
}

.ts-header .ts-announce-inner {
    display: flex;
    width: min(100% - 92px, 1400px);
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: inherit;
    font-size: 15px;
    font-weight: 500;
}

.ts-header .ts-announce-msg,
.ts-header .ts-announce-extra {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.ts-header .ts-announce-cta {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ts-header .ts-announce-close {
    position: absolute;
    right: 18px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    opacity: 0.9;
}

.ts-header .ts-announce-close svg {
    width: 19px;
    height: 19px;
}

.ts-header .ts-header-main {
    background: #fff;
}

.ts-header .ts-header-inner {
    display: grid;
    grid-template-columns: minmax(280px, 330px) minmax(420px, 1fr) auto;
    width: min(100% - 48px, 1400px);
    min-height: 96px;
    align-items: center;
    gap: 28px;
    margin: 0 auto;
}

.ts-header .ts-logo {
    display: inline-flex !important;
    min-width: 0;
    align-items: center !important;
    gap: 14px;
    color: #0f172a;
    text-decoration: none;
}

.ts-header .ts-logo-image,
.ts-header .ts-logo-mark {
    display: inline-grid !important;
    width: 72px !important;
    height: 60px !important;
    flex: 0 0 72px !important;
    place-items: center;
    overflow: hidden;
    border-radius: 0 !important;
    background: transparent !important;
}

.ts-header .ts-logo-image .custom-logo {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.ts-header .ts-logo-text {
    display: grid;
    min-width: 0;
    gap: 2px;
    line-height: 1.12;
}

.ts-header .ts-logo-text strong {
    color: #0f172a;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0;
}

.ts-header .ts-logo-text small {
    color: #64748b;
    font-size: 0.88rem;
    font-weight: 500;
    white-space: nowrap;
}

.ts-header .ts-search {
    display: grid !important;
    grid-template-columns: 170px minmax(0, 1fr) auto !important;
    width: 100%;
    min-height: 58px;
    overflow: hidden;
    border: 1px solid #dbe5f0;
    border-radius: 16px;
    background: #f8fafc;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.ts-header .ts-search-cat-wrap {
    display: flex;
    min-width: 0;
}

.ts-header .ts-search-cat {
    width: 100%;
    min-height: 58px;
    border: 0;
    border-right: 1px solid #e5e7eb;
    background: #fff;
    padding: 0 18px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
    outline: 0;
}

.ts-header .ts-search-input {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    border: 0;
    background: transparent;
    padding: 0 18px;
    color: #0f172a;
    font-size: 15px;
    font-weight: 400;
    outline: 0;
}

.ts-header .ts-search-input::placeholder {
    color: #94a3b8;
}

.ts-header .ts-search-btn {
    display: inline-flex;
    min-width: 132px;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 4px;
    border-radius: 14px;
    background: #0f9d7a;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.ts-header .ts-search-btn svg {
    width: 19px;
    height: 19px;
}

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

.ts-header .ts-action-btn,
.ts-header .ts-cart-btn,
.ts-header .ts-menu-toggle {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #dbe5f0;
    border-radius: 999px;
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.ts-header .ts-action-btn {
    flex-direction: column;
    min-width: 66px;
    gap: 3px;
    padding: 8px 10px;
}

.ts-header .ts-action-icon-wrap,
.ts-header .ts-cart-icon {
    position: relative;
    display: inline-grid;
    place-items: center;
}

.ts-header .ts-action-icon-wrap svg,
.ts-header .ts-cart-icon svg {
    width: 24px;
    height: 24px;
}

.ts-header .ts-action-label {
    color: #0f172a;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.ts-header .ts-action-badge,
.ts-header .ts-cart-count {
    position: absolute;
    top: -10px;
    right: -12px;
    display: inline-grid;
    min-width: 20px;
    height: 20px;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 999px;
    background: #0f9d7a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.ts-header .ts-account {
    position: relative;
}

.ts-header .ts-account-drop {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 9995;
    width: 260px;
    padding: 12px;
    border: 1px solid #dbe5f0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.16);
}

.ts-header .ts-account-drop[hidden] {
    display: none !important;
}

.ts-header .ts-drop-head p {
    margin: 0 0 10px;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
}

.ts-header .ts-drop-links {
    display: grid;
    gap: 4px;
}

.ts-header .ts-drop-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 10px;
    border-radius: 12px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
}

.ts-header .ts-drop-links a:hover {
    background: #eaf7f2;
    color: #0f9d7a;
}

.ts-header .ts-drop-links svg {
    width: 18px;
    height: 18px;
}

.ts-header .ts-cart-btn {
    min-width: 180px;
    padding: 10px 18px;
    border-color: #0f9d7a;
    background: #0f9d7a;
    color: #fff;
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.22);
}

.ts-header .ts-cart-count {
    background: #fff;
    color: #0f9d7a;
}

.ts-header .ts-cart-text {
    display: grid;
    gap: 1px;
    line-height: 1.05;
}

.ts-header .ts-cart-text small,
.ts-header .ts-cart-text strong {
    color: #fff;
}

.ts-header .ts-cart-text small {
    font-size: 12px;
    font-weight: 600;
}

.ts-header .ts-cart-text strong {
    font-size: 15px;
    font-weight: 800;
}

.ts-header .ts-menu-toggle {
    width: 54px;
    padding: 0;
}

.ts-header .ts-burger {
    display: grid;
    gap: 5px;
}

.ts-header .ts-burger span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.ts-header .ts-header-nav {
    background: #1f6fe5;
}

.ts-header .ts-header-nav-inner {
    display: flex;
    width: min(100%, 1400px);
    min-height: 58px;
    align-items: center;
    margin: 0 auto;
}

.ts-header .ts-cats-btn {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    gap: 12px;
    padding: 0 22px;
    border-radius: 0;
    background: #185fce;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.ts-header .ts-cats-btn svg {
    width: 22px;
}

.ts-header .ts-nav-links {
    flex: 1 1 auto;
    min-width: 0;
}

.ts-header .ts-nav-list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ts-header .ts-nav-list a {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    gap: 7px;
    padding: 0 18px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.ts-header .ts-nav-list li.current-menu-item > a,
.ts-header .ts-nav-list a:hover {
    background: rgba(15, 23, 42, 0.16);
    color: #fff;
}

.ts-header .ts-nav-badge {
    display: none !important;
}

.ts-header .ts-nav-extras {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 14px;
    min-height: 58px;
    padding: 0 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
}

.ts-header .ts-nav-extras a,
.ts-header .ts-nav-extras span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.ts-header .ts-nav-extras svg {
    width: 18px;
    height: 18px;
}

.ts-mobile-overlay,
.ts-mobile-menu {
    display: none;
}

@media (max-width: 1180px) {
    .ts-header .ts-header-inner {
        grid-template-columns: minmax(220px, 290px) minmax(320px, 1fr) auto;
        width: min(100% - 32px, 1400px);
        gap: 18px;
    }

    .ts-header .ts-action-label,
    .ts-header .ts-cart-text {
        display: none;
    }

    .ts-header .ts-action-btn,
    .ts-header .ts-cart-btn,
    .ts-header .ts-menu-toggle {
        min-width: 52px;
        width: 52px;
        padding: 0;
    }

    .ts-header .ts-nav-extras {
        display: none;
    }
}

@media (max-width: 820px) {
    .admin-bar .ts-header#ts-site-header {
        top: 46px !important;
    }

    .ts-header .ts-announce {
        display: none;
    }

    .ts-header .ts-header-inner {
        grid-template-columns: 1fr auto;
        min-height: 78px;
    }

    .ts-header .ts-search {
        grid-column: 1 / -1;
        grid-row: 2;
        grid-template-columns: minmax(0, 1fr) auto !important;
        margin-bottom: 12px;
    }

    .ts-header .ts-search-cat-wrap {
        display: none;
    }

    .ts-header .ts-search-btn {
        min-width: 54px;
        padding: 0;
    }

    .ts-header .ts-search-btn span {
        display: none;
    }

    .ts-header .ts-header-nav {
        display: none;
    }

    .ts-header .ts-logo-text small {
        display: none;
    }
}

@media (max-width: 520px) {
    .ts-header .ts-logo-image,
    .ts-header .ts-logo-mark {
        width: 54px !important;
        height: 48px !important;
        flex-basis: 54px !important;
    }

    .ts-header .ts-logo-text strong {
        font-size: 1rem;
    }

    .ts-header .ts-actions {
        gap: 8px;
    }
}
