﻿/* Cart page styles extracted from cart.phtml */

body,
    .page-wrapper,
    .page-main,
    #maincontent,
    .columns {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        background: #fff8ea !important;
        font-family: 'Outfit', sans-serif !important;
    }

    .page-header,
    .page-footer,
    .breadcrumbs,
    .nav-sections,
    .page-title-wrapper,
    .sidebar,
    .sidebar-main,
    .sidebar-additional {
        display: none !important;
    }

    .tnb-cart-screen {
        min-height: 100vh;
        padding: 20px 20px 48px;
        background: #fff8ea;
    }

    .tnb-cart-shell {
        width: min(1480px, calc(100vw - 40px));
        max-width: none;
        margin: 0 auto;
    }

    .tnb-cart-titlebar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 18px;
    }

    .tnb-cart-titlebar h1 {
        margin: 0;
        color: #3d3530;
        font-size: 30px;
        font-weight: 800;
    }

    .tnb-cart-continue {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 18px;
        border-radius: 999px;
        border: 1px solid rgba(107, 71, 51, 0.18);
        background: #fff;
        color: #6b4733;
        font-weight: 700;
        text-decoration: none;
    }

    .tnb-cart-continue:hover {
        background: #fff3dc;
    }

    .tnb-cart-empty,
    .tnb-cart-card,
    .tnb-cart-summary {
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(107, 71, 51, 0.08);
        box-shadow: 0 22px 50px rgba(107, 71, 51, 0.08);
    }

    .tnb-cart-empty {
        padding: 48px 36px;
        text-align: center;
        color: rgba(61, 53, 48, 0.76);
        line-height: 1.8;
    }

    .tnb-cart-empty a {
        color: #6b4733;
        font-weight: 700;
        text-decoration: none;
    }

    .tnb-cart-card {
        overflow: hidden;
    }

    .tnb-cart-head,
    .tnb-cart-row {
        display: grid;
        grid-template-columns: minmax(340px, 1.9fr) minmax(130px, 0.75fr) minmax(160px, 0.85fr) minmax(150px, 0.8fr) minmax(90px, auto);
        gap: 22px;
        align-items: center;
    }

    .tnb-cart-head {
        padding: 18px 22px;
        background: #fff8ea;
        color: #3d3530;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 0.02em;
        text-transform: uppercase;
    }

    .tnb-cart-body {
        padding: 0 22px 20px;
    }

    .tnb-cart-row {
        padding: 22px 0;
        border-bottom: 1px dashed rgba(107, 71, 51, 0.14);
    }

    .tnb-cart-row:last-child {
        border-bottom: none;
    }

    .tnb-cart-product {
        display: grid;
        grid-template-columns: 96px 1fr;
        gap: 16px;
        align-items: center;
        min-width: 0;
    }

    .tnb-cart-thumb {
        width: 96px;
        height: 96px;
        border-radius: 18px;
        overflow: hidden;
        background: #f7efe3;
    }

    .tnb-cart-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .tnb-cart-name {
        color: #3d3530;
        text-decoration: none;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.45;
        display: block;
        margin-bottom: 6px;
    }

    .tnb-cart-variant {
        color: rgba(61, 53, 48, 0.68);
        font-size: 13px;
        line-height: 1.4;
    }

    .tnb-cart-price,
    .tnb-cart-total {
        color: #3d3530;
        font-size: 16px;
        font-weight: 700;
    }

    .tnb-cart-total {
        color: #6b4733;
        font-weight: 800;
    }

    .tnb-cart-qty {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        border: 1px dashed rgba(107, 71, 51, 0.28);
        border-radius: 999px;
        padding: 6px 10px;
        background: #fffdf8;
    }

    .tnb-cart-qty button {
        width: 28px;
        height: 28px;
        border: none;
        background: transparent;
        color: #6b4733;
        font-size: 18px;
        font-weight: 800;
        cursor: pointer;
    }

    .tnb-cart-qty input {
        width: 44px;
        border: none;
        background: transparent;
        text-align: center;
        font-size: 15px;
        font-weight: 700;
        color: #3d3530;
        outline: none;
        -moz-appearance: textfield;
    }

    .tnb-cart-qty input::-webkit-outer-spin-button,
    .tnb-cart-qty input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .tnb-cart-remove {
        border: none;
        background: transparent;
        padding: 0;
        color: #8a4b3f;
        font-weight: 700;
        text-decoration: none;
        white-space: nowrap;
        cursor: pointer;
    }

    .tnb-cart-bottom {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 390px;
        gap: 22px;
        align-items: start;
        margin-top: 22px;
    }

    .tnb-cart-notes {
        padding: 22px 24px;
    }

    .tnb-cart-notes h2,
    .tnb-cart-summary h2 {
        margin: 0 0 12px;
        color: #3d3530;
        font-size: 20px;
        font-weight: 800;
    }

    .tnb-cart-notes p {
        margin: 0;
        color: rgba(61, 53, 48, 0.72);
        line-height: 1.7;
    }

    .tnb-cart-summary {
        padding: 22px 24px;
    }

    .tnb-cart-summary__row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        color: #3d3530;
        font-size: 16px;
        margin-bottom: 18px;
    }

    .tnb-cart-summary__total {
        color: #6b4733;
        font-size: 26px;
        font-weight: 800;
    }

    .tnb-cart-summary__actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .tnb-cart-summary__actions a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 13px 18px;
        border-radius: 14px;
        text-decoration: none;
        font-weight: 800;
    }

    .tnb-cart-summary__actions .tnb-cart-summary__checkout {
        background: #6b4733;
        color: #fff;
    }

    .tnb-cart-summary__actions .tnb-cart-summary__continue {
        background: #fff8ea;
        color: #6b4733;
        border: 1px solid rgba(107, 71, 51, 0.18);
    }

    @media (max-width: 980px) {
        .tnb-cart-screen {
            padding: 16px;
        }

        .tnb-cart-shell {
            width: 100%;
        }

        .tnb-cart-head {
            display: none;
        }

        .tnb-cart-row {
            grid-template-columns: 1fr;
            gap: 14px;
        }

        .tnb-cart-bottom {
            grid-template-columns: 1fr;
        }

        .tnb-cart-titlebar {
            flex-direction: column;
            align-items: flex-start;
        }
    }
