html,
body {
    margin: 0;
    padding: 0;
    font-family: Montserrat, sans-serif;
    font-display: swap;
    box-sizing: border-box;
    font-size: 16px;
    width: 100%;
    min-height: 100%;
    color: #003e52;
    height: 100%;
}

html *,
body * {
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

body {
    padding-top: 90px;
}

@media (max-width: 991px) {
    body {
        padding-top: 80px;
    }
}

main {
    height: 100%;
}

.wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    display: inherit;
    flex-wrap: inherit;
    justify-content: inherit;
    flex-flow: inherit;
    align-items: inherit;
    gap: inherit;
}

/* =====================================
   HOME / TRIFECTA
===================================== */
.trifecta {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    font-size: 0;
    height: 100%;
}

.trifecta__cell {
    flex: 0 0 calc((100% / 3));
    color: #fff;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    height: 100dvh;
    overflow: hidden;
}

@media (max-width: 767px) {
    .trifecta__cell {
        flex: 1 0 100%;
    }
}

.trifecta__cell h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    flex: 1 0 100%;
}

.trifecta__cell h2 {
    font-size: 1.75rem;
    line-height: 1;
    margin: 1rem 0 0;
    padding: 0.5rem 1rem;
    flex: 1 0 100%;
    background: #000;
    text-transform: uppercase;
    min-height: 72px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.trifecta__cell p {
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem 2rem 5rem;
    margin: 0;
    max-height: 40dvh;
    overflow: auto;
    mask-image: linear-gradient(#000 70%, transparent);
    user-select: none;
}

.trifecta__cell small {
    font-size: 1rem;
    margin: auto 0 0;
    align-self: flex-end;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-weight: 600;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
}

.trifecta__cell-content {
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    align-content: flex-start;
    padding: 5rem 0 1rem;
}

.trifecta__cell-languages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    transition: all 0.3s ease;
}

.trifecta__cell-languages a {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: #000;
    display: flex;
    flex-wrap: wrap;
    padding: 1.5rem;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: all 0.3s ease;
}

.trifecta__cell-languages a:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-decoration: none;
}

.trifecta__cell-languages a img {
    min-width: 0;
    max-width: 100%;
    height: 80px;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: opacity(0.7) grayscale(100);
}

.trifecta__cell-languages a:hover img {
    filter: opacity(1) grayscale(0);
}

.trifecta__cell--part-1 .trifecta__cell-content {
    background: url("../img/part-1.jpg") center/cover no-repeat;
}

.trifecta__cell--part-1 .trifecta__cell-content h2 {
    background: #5b2335;
}

.trifecta__cell--part-1 .trifecta__cell-languages a:hover {
    background: #5b2335;
}

.trifecta__cell--part-2 .trifecta__cell-content {
    background: url("../img/part-2.jpg") center/cover no-repeat;
}

.trifecta__cell--part-2 .trifecta__cell-content h2 {
    background: #23143b;
}

.trifecta__cell--part-2 .trifecta__cell-languages a:hover {
    background: #23143b;
}

.trifecta__cell--part-3 .trifecta__cell-content {
    background: url("../img/part-3.jpg") center/cover no-repeat;
}

.trifecta__cell--part-3 .trifecta__cell-content h2 {
    background: #223239;
}

.trifecta__cell--part-3 .trifecta__cell-languages a:hover {
    background: #223239;
}

.trifecta__cell:hover .trifecta__cell-content {
    transform: translateY(-80px);
    filter: grayscale(0);
}

.trifecta__cell:hover .trifecta__cell-languages {
    opacity: 1;
    transform: translateY(-80px);
}

/* =====================================
   SCROLLBAR
===================================== */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255, 255, 255, 0.3);
}

/* =====================================
   HEADER
===================================== */
.ts-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ts-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 90px;
    padding: 0 24px;
}

.ts-header__logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ts-header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.ts-menu li {
    margin: 0;
    padding: 0;
}

.ts-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.ts-menu a:hover,
.ts-menu .current-menu-item > a,
.ts-menu .current_page_item > a {
    color: #d7b7c3;
}

.ts-header__cta {
    display: flex;
    align-items: center;
}

.ts-header__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    background: #5b2335;
    color: #fff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease, transform 0.3s ease;
}

.ts-header__button:hover {
    background: #6d2a40;
    color: #fff;
    transform: translateY(-1px);
}

.ts-header__toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.ts-header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px auto;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .ts-header__inner {
        min-height: 80px;
        padding: 0 16px;
    }

    .ts-header__nav,
    .ts-header__cta {
        display: none;
    }

    .ts-header__toggle {
        display: block;
    }

    .ts-header.is-open .ts-header__inner {
        align-items: flex-start;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .ts-header.is-open .ts-header__nav {
        display: flex;
        width: 100%;
        justify-content: flex-start;
        margin-top: 16px;
    }

    .ts-header.is-open .ts-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        width: 100%;
    }

    .ts-header.is-open .ts-header__cta {
        display: flex;
        width: 100%;
        margin-top: 16px;
    }

    .ts-header.is-open .ts-header__inner {
        flex-wrap: wrap;
    }
}

/* =====================================
   PRODUCT PAGE
===================================== */
.ts-product-page {
    min-height: 100vh;
    background: #0f1b21;
    color: #fff;
}

.ts-single-product-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: calc(100vh - 90px);
    position: relative;
}

.ts-single-product-overlay {
    background: rgba(0, 0, 0, 0.65);
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
}

.ts-single-product-card {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    padding: 60px 20px;
}

.ts-single-product-image,
.ts-single-product-content {
    width: 50%;
}

.ts-single-product-image img {
    width: 100%;
    max-width: 420px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.ts-product-title {
    font-size: 3rem;
    line-height: 1.1;
    margin: 0 0 20px;
    text-transform: uppercase;
    color: #fff;
}

.ts-product-short-description {
    font-size: 1rem;
    line-height: 1.8;
    background: rgba(0, 0, 0, 0.35);
    padding: 20px;
    margin-bottom: 20px;
}

.ts-product-price-wrap {
    margin-bottom: 20px;
}

.ts-product-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.ts-product-price del {
    opacity: 0.6;
    margin-right: 10px;
}

.ts-product-price ins {
    text-decoration: none;
    color: #fff;
}

.ts-product-download-note {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: #5b2335;
    display: inline-block;
    padding: 10px 16px;
    margin-bottom: 10px;
}

.ts-product-device-note,
.ts-product-meta-note {
    font-size: 0.95rem;
    opacity: 0.9;
    color: #fff;
}

/* product cart area */
.ts-product-cart-button {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 20px;
}

/* show quantity properly on product page */
.ts-product-page form.cart {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin: 20px 0;
}

.ts-product-page form.cart .quantity {
    display: inline-flex;
    align-items: center;
}

.ts-product-page form.cart .quantity .qty {
    width: 90px;
    min-height: 50px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 1rem;
    text-align: center;
}

.ts-product-page form.cart .single_add_to_cart_button,
.ts-product-cart-button .single_add_to_cart_button {
    background: #5b2335 !important;
    color: #fff !important;
    border: 0;
    padding: 14px 24px;
    font-size: 1rem;
    text-transform: uppercase;
    min-height: 50px;
}

.ts-ajax-add-to-cart-btn {
    appearance: none;
    border: 0;
    background: linear-gradient(135deg, #5b2335, #7a3148);
    color: #fff;
    padding: 15px 28px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    min-height: 52px;
}

.ts-ajax-add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

.ts-ajax-add-to-cart-btn.loading,
.ts-ajax-add-to-cart-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none;
}

.ts-go-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.3s ease;
    min-height: 52px;
}

.ts-go-cart-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.ts-single-product-details {
    background: #fff;
    color: #003e52;
    padding: 60px 20px;
}

.ts-product-description-box {
    max-width: 1000px;
    margin: 0 auto;
}

.ts-product-description-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.ts-product-full-description {
    font-size: 1rem;
    line-height: 1.9;
}

.ts-single-product-upsells {
    background: #f5f5f5;
    padding: 60px 20px;
    color: #003e52;
}

.ts-single-product-upsells h2 {
    text-align: center;
    margin-bottom: 30px;
}

.ts-single-product-upsells .products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ts-single-product-upsells .product {
    background: #fff;
    padding: 20px;
    text-align: center;
    list-style: none;
}

.ts-single-product-upsells .product img {
    width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .ts-single-product-hero,
    .ts-single-product-overlay {
        min-height: calc(100vh - 80px);
    }

    .ts-single-product-card {
        flex-direction: column;
        text-align: center;
    }

    .ts-single-product-image,
    .ts-single-product-content {
        width: 100%;
    }

    .ts-product-title {
        font-size: 2.2rem;
    }

    .ts-product-page form.cart {
        justify-content: center;
    }

    .ts-single-product-upsells .products {
        grid-template-columns: 1fr;
    }
}

/* =====================================
   SHOP PAGE
===================================== */
.ts-shop-page {
    background: #0f1b21;
    color: #fff;
    padding: 60px 0;
    min-height: 100vh;
}

.ts-shop-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 0 24px;
}

.ts-shop-sidebar {
    width: 280px;
    flex: 0 0 280px;
    position: sticky;
    top: 110px;
}

.ts-shop-sidebar-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
}

.ts-shop-sidebar-title {
    margin: 0 0 18px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
}

.ts-shop-categories {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ts-shop-categories li {
    margin: 0 0 10px;
    padding: 0;
}

.ts-shop-categories li:last-child {
    margin-bottom: 0;
}

.ts-shop-categories a {
    display: block;
    text-decoration: none;
    color: #d8d8d8;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.ts-shop-categories a:hover,
.ts-shop-categories .current-cat a {
    background: #5b2335;
    color: #fff;
}

.ts-shop-content {
    flex: 1;
    min-width: 0;
}

.ts-shop-header {
    margin-bottom: 30px;
}

.ts-shop-title {
    margin: 0 0 10px;
    font-size: 2.4rem;
    text-transform: uppercase;
    color: #fff;
}

.ts-shop-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.7;
}

.ts-shop-content ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ts-shop-product-card {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
}

.ts-shop-product-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ts-shop-product-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.ts-shop-product-image {
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #111;
}

.ts-shop-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ts-shop-product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ts-shop-product-title {
    margin: 0 0 12px;
    font-size: 1.1rem;
    line-height: 1.4;
    text-transform: uppercase;
}

.ts-shop-product-title a {
    text-decoration: none;
    color: #fff;
}

.ts-shop-product-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.ts-shop-product-meta {
    margin-top: auto;
    margin-bottom: 18px;
}

.ts-shop-product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.ts-shop-product-price del {
    opacity: 0.6;
    margin-right: 8px;
}

.ts-shop-product-price ins {
    text-decoration: none;
}

.ts-shop-product-download {
    display: inline-block;
    padding: 8px 12px;
    background: #5b2335;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.ts-shop-product-button .button {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    text-decoration: none;
    padding: 12px 16px;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.3s ease;
}

.ts-shop-product-button .button:hover {
    background: #5b2335;
    border-color: #5b2335;
    color: #fff;
}

.woocommerce-result-count,
.woocommerce-ordering {
    display: none !important;
}

.ts-shop-content ul.products::before,
.ts-shop-content ul.products::after {
    content: none !important;
    display: none !important;
}

.ts-shop-content ul.products li.product {
    list-style: none !important;
    padding: 0 !important;
    background-image: none !important;
}

.ts-shop-content ul.products li.product.first,
.ts-shop-content ul.products li.product.last {
    clear: none !important;
}

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

@media (max-width: 991px) {
    .ts-shop-layout {
        flex-direction: column;
    }

    .ts-shop-sidebar {
        width: 100%;
        flex: 0 0 100%;
        position: static;
    }

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

@media (max-width: 767px) {
    .ts-shop-page {
        padding: 40px 0;
    }

    .ts-shop-layout {
        padding: 0 16px;
    }

    .ts-shop-title {
        font-size: 1.8rem;
    }

    .ts-shop-content ul.products {
        grid-template-columns: 1fr;
    }
}

/* =====================================
   CART POPUP
===================================== */
.ts-cart-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ts-cart-popup__inner {
    width: 100%;
    max-width: 480px;
    background: #111a20;
    color: #fff;
    padding: 32px 28px;
    position: relative;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.ts-cart-popup__close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
}

.ts-cart-popup__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #5b2335;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.ts-cart-popup__title {
    margin: 0 0 12px;
    font-size: 1.6rem;
    text-transform: uppercase;
}

.ts-cart-popup__message {
    margin: 0 0 22px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

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

.ts-cart-popup__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 14px 20px;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
}

.ts-cart-popup__btn--primary {
    background: #5b2335;
    color: #fff;
}

.ts-cart-popup__btn--secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

body.ts-popup-open {
    overflow: hidden;
}

/* =====================================
   CART PAGE - WHITE VERSION
===================================== */
.ts-cart-page {
    padding: 50px 0 80px;
    background: #ffffff;
    min-height: calc(100vh - 90px);
}

.ts-cart-wrapper {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 28px;
}

.ts-cart-header {
    margin-bottom: 34px;
    padding: 32px 36px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ts-cart-title {
    margin: 0 0 10px;
    font-size: 2.6rem;
    line-height: 1.1;
    text-transform: uppercase;
    color: #111111;
    letter-spacing: 0.03em;
}

.ts-cart-subtitle {
    margin: 0;
    color: #666666;
    line-height: 1.8;
    font-size: 1rem;
}

.ts-cart-page .woocommerce-cart-form {
    margin: 0;
}

.ts-cart-page .woocommerce table.shop_table {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-collapse: collapse;
    color: #222222;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.ts-cart-page .woocommerce table.shop_table thead th {
    background: #f8f8f8;
    padding: 20px 18px;
    color: #003e52;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 1rem;
    border-bottom: 1px solid #e8e8e8;
    text-align: left;
}

.ts-cart-page .woocommerce table.shop_table td {
    padding: 18px 18px;
    color: #222222;
    border-bottom: 1px solid #ededed;
    vertical-align: middle;
    background: #ffffff;
}

.ts-cart-page .woocommerce table.shop_table tr:hover td {
    background: #fcfcfc;
}

.ts-cart-page .woocommerce table.shop_table td.product-remove {
    width: 70px;
    text-align: center;
}

.ts-cart-page .woocommerce table.shop_table td.product-thumbnail {
    width: 110px;
}

.ts-cart-page .woocommerce table.shop_table td.product-thumbnail img {
    width: 68px;
    height: auto;
    display: block;
    border: 1px solid #e8e8e8;
}

.ts-cart-page .woocommerce table.shop_table td.product-name {
    width: 35%;
}

.ts-cart-page .woocommerce table.shop_table td.product-name a {
    color: #5b2335;
    font-weight: 600;
    text-decoration: none;
}

.ts-cart-page .woocommerce table.shop_table td.product-name a:hover {
    color: #7a3148;
}

.ts-cart-page .woocommerce table.shop_table td.product-price,
.ts-cart-page .woocommerce table.shop_table td.product-subtotal {
    color: #003e52;
    font-size: 1rem;
    white-space: nowrap;
    font-weight: 600;
}

.ts-cart-page .woocommerce table.shop_table td.product-quantity {
    width: 180px;
    text-align: center;
}

.ts-cart-page .woocommerce table.shop_table .quantity {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ts-cart-page .woocommerce table.shop_table .quantity .qty {
    width: 78px;
    min-height: 42px;
    background: #ffffff;
    border: 1px solid #cccccc;
    color: #222222;
    padding: 8px 10px;
    text-align: center;
    border-radius: 3px;
}

.ts-cart-page a.remove {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    background: #5b2335;
    border-radius: 50%;
    transition: all 0.25s ease;
}

.ts-cart-page a.remove:hover {
    background: #7a3148;
    transform: scale(1.06);
}

.ts-cart-page .actions {
    padding: 20px 18px !important;
    background: #ffffff;
}

.ts-cart-page .coupon {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ts-cart-page .coupon .input-text {
    min-width: 220px;
    min-height: 46px;
    padding: 10px 14px !important;
    background: #ffffff !important;
    border: 1px solid #d4d4d4 !important;
    color: #222222 !important;
}

.ts-cart-page .coupon .input-text::placeholder {
    color: #999999;
}

.ts-cart-page button[name="apply_coupon"] {
    min-height: 46px;
    padding: 0 18px !important;
    background: #f2f2f2 !important;
    color: #333333 !important;
    border: 1px solid #dddddd !important;
    font-weight: 700;
    box-shadow: none !important;
}

.ts-cart-page button[name="update_cart"] {
    float: right;
    min-height: 50px;
    padding: 0 28px !important;
    background: transparent !important;
    border: 1px solid #cfcfcf !important;
    color: #333333 !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    box-shadow: none !important;
}

.ts-cart-page button[name="update_cart"]:hover {
    background: #f7f7f7 !important;
    color: #111111 !important;
}

.ts-cart-page .cart-collaterals,
.ts-cart-page .ts-cart-collaterals {
    margin-top: 42px;
    display: flex;
    justify-content: flex-end;
}

.ts-cart-page .cart_totals {
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    padding: 36px 42px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ts-cart-page .cart_totals h2 {
    margin: 0 0 24px;
    color: #111111;
    text-transform: uppercase;
    font-size: 1.15rem;
    letter-spacing: 0.05em;
}

.ts-cart-page .cart_totals table.shop_table {
    margin: 0 0 24px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.ts-cart-page .cart_totals table.shop_table th,
.ts-cart-page .cart_totals table.shop_table td {
    padding: 16px 0;
    border-bottom: 1px solid #ededed;
    color: #222222;
    background: transparent;
}

.ts-cart-page .cart_totals table.shop_table td {
    text-align: right;
    color: #003e52;
    font-size: 1rem;
    font-weight: 600;
}

.ts-cart-page .checkout-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    background: linear-gradient(135deg, #5b2335, #7a3148) !important;
    color: #ffffff !important;
    border: 0 !important;
    padding: 0 24px !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.98rem;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.ts-cart-page .checkout-button:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

@media (max-width: 991px) {
    .ts-cart-page {
        min-height: calc(100vh - 80px);
        padding: 40px 0 60px;
    }

    .ts-cart-wrapper {
        padding: 0 18px;
    }

    .ts-cart-header {
        padding: 24px;
    }

    .ts-cart-title {
        font-size: 2rem;
    }

    .ts-cart-page button[name="update_cart"] {
        float: none;
        margin-top: 12px;
    }

    .ts-cart-page .cart_totals {
        max-width: 100%;
        padding: 28px;
    }
}

@media (max-width: 767px) {
    .ts-cart-wrapper {
        padding: 0 16px;
    }

    .ts-cart-page .woocommerce table.shop_table thead {
        display: none;
    }

    .ts-cart-page .woocommerce table.shop_table tr {
        display: block;
        margin-bottom: 16px;
        border: 1px solid #e8e8e8;
        background: #ffffff;
    }

    .ts-cart-page .woocommerce table.shop_table td {
        display: block;
        width: 100%;
        padding: 14px 16px;
        border-bottom: 1px solid #ededed;
    }

    .ts-cart-page .woocommerce table.shop_table td:last-child {
        border-bottom: 0;
    }

    .ts-cart-page .coupon {
        flex-direction: column;
        align-items: stretch;
    }

    .ts-cart-page .coupon .input-text,
    .ts-cart-page button[name="apply_coupon"],
    .ts-cart-page button[name="update_cart"] {
        width: 100%;
    }
}

/*cart page css end here*/




/* =====================================
   HEADER MINI CART - CLEAN FINAL
===================================== */

.ts-header__cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ts-header__cart {
    position: relative;
    display: flex;
    align-items: center;
}

.ts-header__cart-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
    transition: all 0.3s ease;
}

.ts-header__cart-toggle:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.ts-header__cart-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.ts-header__cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: #5b2335;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
}

.ts-header__cart-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: 360px;
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 99999;
}

.ts-header__cart:hover .ts-header__cart-dropdown,
.ts-header__cart.is-open .ts-header__cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.ts-header__cart-dropdown .woocommerce-mini-cart-item {
    position: relative;
    display: grid !important;
    grid-template-columns: 70px 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px 0;
    margin: 0;
    border-bottom: 1px solid #efefef;
}

.ts-header__cart-dropdown .woocommerce-mini-cart-item:last-child {
    border-bottom: 0;
}

.ts-header__cart-dropdown .woocommerce-mini-cart-item > * {
    float: none !important;
}

.ts-header__cart-dropdown .woocommerce-mini-cart-item a.remove {
    position: absolute;
    top: 10px;
    right: 0;
    width: 22px;
    height: 22px;
    background: #f3f3f3;
    color: #333 !important;
    border-radius: 50%;
    line-height: 22px;
    text-align: center;
    font-size: 0.9rem;
    text-decoration: none;
    z-index: 2;
}

.ts-header__cart-dropdown .woocommerce-mini-cart-item a.remove:hover {
    background: #5b2335;
    color: #fff !important;
}

.ts-header__cart-dropdown .woocommerce-mini-cart-item a:not(.remove) {
    display: block;
    color: #111;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.45;
    padding-right: 28px;
}

.ts-header__cart-dropdown .woocommerce-mini-cart-item a:not(.remove):hover {
    color: #5b2335;
}

.ts-header__cart-dropdown .woocommerce-mini-cart-item img {
    grid-column: 1;
    width: 70px !important;
    height: 90px !important;
    object-fit: cover;
    display: block;
    margin: 0 !important;
    float: none !important;
    border: 1px solid #eee;
    box-shadow: none;
}

.ts-header__cart-dropdown .woocommerce-mini-cart-item .quantity {
    display: block;
    margin-top: 6px;
    font-size: 0.92rem;
    color: #003e52;
    line-height: 1.5;
}

.ts-header__cart-dropdown .woocommerce-mini-cart__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 10px;
    margin-top: 8px;
    border-top: 1px solid #e8e8e8;
    color: #111;
    font-weight: 700;
}

.ts-header__cart-dropdown .woocommerce-mini-cart__buttons {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.ts-header__cart-dropdown .woocommerce-mini-cart__buttons .button {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    text-align: center;
    text-decoration: none;
    background: #5b2335 !important;
    color: #fff !important;
    border: 0 !important;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.86rem;
    padding: 0 14px !important;
    line-height: 1.2;
}

.ts-header__cart-dropdown .woocommerce-mini-cart__buttons .button.checkout {
    background: #111 !important;
}

.ts-header__cart-dropdown .woocommerce-mini-cart__empty-message {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* mobile */
@media (max-width: 991px) {
    .ts-header__cart-dropdown {
        width: 320px;
        right: -20px;
    }
}

@media (max-width: 480px) {
    .ts-header__cart-dropdown {
        width: 290px;
        right: -10px;
        padding: 14px;
    }

    .ts-header__cart-dropdown .woocommerce-mini-cart-item {
        grid-template-columns: 60px 1fr;
        gap: 10px;
    }

    .ts-header__cart-dropdown .woocommerce-mini-cart-item img {
        width: 60px !important;
        height: 78px !important;
    }

    .ts-header__cart-dropdown .woocommerce-mini-cart__buttons {
        flex-direction: column;
    }
}

.wc-block-components-sidebar-layout
{
    padding:0 50px 0 50px;
}
/* =====================================
   TWIN SOULS – PLACE ORDER BUTTON
===================================== */

.wc-block-components-checkout-place-order-button {
    background: #7a1f34 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 16px 28px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    width: 100% !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* Hover */
.wc-block-components-checkout-place-order-button:hover {
    background: #5e1728 !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

/* Click */
.wc-block-components-checkout-place-order-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Text fix */
.wc-block-components-checkout-place-order-button__text {
    font-family: inherit !important;
}

/* Disabled */
.wc-block-components-checkout-place-order-button:disabled {
    background: #c7c7c7 !important;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/*Thank you page css code start here*/
.ts-thankyou-page {
    background: #f7f7f7;
    padding: 60px 0 80px;
    min-height: calc(100vh - 90px);
}

.ts-thankyou-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.ts-thankyou-hero {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 36px;
    margin-bottom: 30px;
}

.ts-thankyou-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5b2335, #7a3148);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 700;
    flex: 0 0 72px;
}

.ts-thankyou-title {
    margin: 0 0 8px;
    font-size: 2.3rem;
    line-height: 1.1;
    color: #111;
    text-transform: uppercase;
}

.ts-thankyou-subtitle {
    margin: 0;
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
}

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

.ts-thankyou-main,
.ts-thankyou-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.ts-thankyou-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 28px;
}

.ts-thankyou-card-title {
    margin: 0 0 20px;
    font-size: 1.25rem;
    color: #111;
    text-transform: uppercase;
    line-height: 1.3;
}

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

.ts-thankyou-meta-item {
    padding: 16px;
    background: #fafafa;
    border: 1px solid #ededed;
}

.ts-thankyou-meta-item .ts-label {
    display: block;
    margin-bottom: 6px;
    color: #777;
    font-size: 0.9rem;
}

.ts-thankyou-meta-item strong {
    color: #111;
    font-size: 1rem;
}

.ts-thankyou-products {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ts-thankyou-product {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #ededed;
}

.ts-thankyou-product:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.ts-thankyou-product-image img {
    width: 90px;
    height: 120px;
    object-fit: cover;
    display: block;
    border: 1px solid #e8e8e8;
}

.ts-thankyou-product-content h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    line-height: 1.4;
    color: #111;
}

.ts-thankyou-product-meta {
    color: #666;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.ts-thankyou-product-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.ts-thankyou-product-qty {
    color: #666;
    font-size: 0.95rem;
}

.ts-thankyou-product-price {
    color: #003e52;
    font-weight: 700;
    white-space: nowrap;
}

.ts-thankyou-downloads {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ts-thankyou-downloads li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #ededed;
}

.ts-thankyou-downloads li:last-child {
    border-bottom: 0;
}

.ts-thankyou-downloads a {
    color: #5b2335;
    font-weight: 700;
    text-decoration: none;
}

.ts-thankyou-downloads a:hover {
    color: #7a3148;
}

.ts-thankyou-address,
.ts-thankyou-note,
.ts-thankyou-text {
    color: #555;
    line-height: 1.8;
    font-size: 0.98rem;
}

.ts-thankyou-address p {
    margin: 10px 0 0;
}

.ts-thankyou-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    background: linear-gradient(135deg, #5b2335, #7a3148);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 14px;
}

.ts-thankyou-btn:hover {
    color: #fff;
    opacity: 0.95;
}

@media (max-width: 991px) {
    .ts-thankyou-page {
        min-height: calc(100vh - 80px);
        padding: 40px 0 60px;
    }

    .ts-thankyou-wrapper {
        padding: 0 18px;
    }

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

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

@media (max-width: 767px) {
    .ts-thankyou-wrapper {
        padding: 0 16px;
    }

    .ts-thankyou-hero,
    .ts-thankyou-card {
        padding: 22px 18px;
    }

    .ts-thankyou-hero {
        flex-direction: column;
        text-align: center;
    }

    .ts-thankyou-title {
        font-size: 1.8rem;
    }

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

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

    .ts-thankyou-product-image img {
        width: 100px;
        height: 130px;
    }

    .ts-thankyou-product-bottom,
    .ts-thankyou-downloads li {
        flex-direction: column;
        align-items: flex-start;
    }
}
/*Thank you page css code end here*/
