:root {
    --sk-blue: #005ca8;
    --sk-blue-dark: #003b82;
    --sk-cyan: #00a7d8;
    --sk-text: #0f273f;
    --sk-muted: #64748b;
    --sk-soft: #eef5fb;
    --sk-soft-2: #f8fafc;
    --sk-border: #dbe7f2;
    --sk-white: #ffffff;
    --sk-danger: #ef4444;
    --sk-shadow: 0 18px 44px rgba(15, 39, 63, 0.12);
    --sk-shadow-hover: 0 24px 58px rgba(0, 92, 168, 0.18);
}

.cart.content-cart-child.solklean-cart-page {
    position: relative;
    padding: 58px 0 76px;
    background: linear-gradient(180deg, #ffffff 0%, var(--sk-soft-2) 48%, #ffffff 100%);
    color: var(--sk-text);
    overflow: hidden;
}

    .cart.content-cart-child.solklean-cart-page::before,
    .cart.content-cart-child.solklean-cart-page::after {
        content: "";
        position: absolute;
        width: 360px;
        height: 360px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0, 167, 216, 0.14), rgba(0, 167, 216, 0));
        pointer-events: none;
    }

    .cart.content-cart-child.solklean-cart-page::before {
        top: 70px;
        left: -180px;
    }

    .cart.content-cart-child.solklean-cart-page::after {
        right: -180px;
        bottom: 120px;
    }

.solklean-cart-page .grid.wide {
    position: relative;
    z-index: 1;
}

.cart-hero {
    max-width: 900px;
    margin: 0 auto 34px;
    text-align: center;
}

.cart-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--sk-blue);
    font-family: InterSB, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0;
}

    .cart-eyebrow::before,
    .cart-eyebrow::after {
        content: "";
        width: 34px;
        height: 2px;
        border-radius: 99px;
        background: linear-gradient(90deg, var(--sk-blue), var(--sk-cyan));
    }

.cart-hero h1 {
    margin: 0;
    color: var(--sk-text);
    font-family: InterEB, InterSB, Arial, sans-serif;
    font-size: clamp(34px, 2vw, 56px);
    font-weight: 800;
    line-height: 1.08;
}

.cart-hero p {
    max-width: 720px;
    margin: 18px auto 0;
    color: var(--sk-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

.topcardp,
.botcardp {
    padding: 0;
    border: 1px solid rgba(0, 92, 168, 0.1);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--sk-shadow);
    overflow: hidden;
}

    .topcardp .container,
    .botcardp .container {
        padding: 28px;
    }

.titcat,
.titgui {
    margin: 0;
    color: var(--sk-text);
    font-family: InterEB, InterSB, Arial, sans-serif;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: none;
}

.titcat {
    margin-bottom: 18px;
}

.titgui {
    margin-bottom: 12px;
}

.contain .message,
.cart-empty-message {
    display: block;
    margin: 14px 0;
    padding: 16px 18px;
    border: 1px solid rgba(0, 92, 168, 0.12);
    border-radius: 16px;
    background: var(--sk-soft);
    color: var(--sk-blue-dark);
    font-family: InterSB, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.table_cart {
    display: grid;
    gap: 16px;
}

.cart-item {
    display: grid;
    grid-template-columns: 138px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--sk-border);
    border-radius: 22px;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

    .cart-item:hover {
        transform: translateY(-3px);
        border-color: rgba(0, 92, 168, 0.22);
        box-shadow: var(--sk-shadow-hover);
    }

    .cart-item .img {
        width: 138px;
        height: 138px;
        border-radius: 18px;
        overflow: hidden;
        background: linear-gradient(135deg, #f8fbff, #eef5fb);
    }

        .cart-item .img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 10px;
            background: #ffffff;
        }

    .cart-item .content {
        min-width: 0;
        padding-left: 0;
    }

    .cart-item .content-top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
    }

        .cart-item .content-top .product-title {
            width: auto;
            color: var(--sk-text);
            font-family: InterSB, Arial, sans-serif;
            font-size: 17px;
            line-height: 1.45;
            transition: color 0.3s ease;
        }

            .cart-item .content-top .product-title:hover {
                color: var(--sk-blue);
            }

        .cart-item .content-top .price-sum {
            flex: 0 0 auto;
            color: var(--sk-blue-dark);
            font-family: InterEB, InterSB, Arial, sans-serif;
            font-size: 18px;
            line-height: 1.3;
            text-align: right;
        }

    .cart-item .content .price,
    .cart-item .content > span:not(.price-sum) {
        display: block;
        margin-top: 8px;
        color: var(--sk-muted);
        font-family: Inter, Arial, sans-serif;
        font-size: 14px;
        line-height: 1.55;
    }

    .cart-item .content .options {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        margin-top: 18px;
    }

        .quantity-control,
        .cart-item .content .options .left .textbox {
            min-height: 42px;
            display: inline-flex;
            align-items: center;
            overflow: hidden;
            border: 1px solid var(--sk-border);
            border-radius: 14px;
            background: var(--sk-soft-2);
            font-size: 16px;
        }

            .quantity-control a,
            .cart-item .content .options .left .textbox a {
                width: 42px;
                height: 42px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--sk-blue);
                font-family: InterSB, Arial, sans-serif;
                font-size: 18px;
                transition: color 0.3s ease, background 0.3s ease;
            }

                .quantity-control a:hover,
                .cart-item .content .options .left .textbox a:hover {
                    background: var(--sk-blue);
                    color: #ffffff;
                }

            .quantity-control input,
            .cart-item .content .options .left .textbox input {
                width: 42px;
                height: 42px;
                border: 0;
                outline: none;
                background: #ffffff;
                color: var(--sk-text);
                text-align: center;
                font-family: InterSB, Arial, sans-serif;
                font-size: 15px;
            }

.btnDelete {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    padding: 9px 13px;
    border: 1px solid rgba(239, 68, 68, 0.18);
    border-radius: 13px;
    background: #fff5f5;
    color: var(--sk-danger);
    font-family: InterSB, Arial, sans-serif;
    font-size: 14px;
    opacity: 1;
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

    .btnDelete:hover {
        background: var(--sk-danger);
        color: #ffffff;
        transform: translateY(-2px);
    }

.total {
    margin-top: 24px;
    padding: 18px;
    border: 1px solid rgba(0, 92, 168, 0.12);
    border-radius: 18px;
    background: linear-gradient(135deg, var(--sk-soft), #ffffff);
    color: var(--sk-blue-dark);
    text-align: right;
    font-family: InterEB, InterSB, Arial, sans-serif;
    font-size: 24px;
    line-height: 1.25;
}

    .total p {
        margin: 6px 0 0;
        color: var(--sk-muted);
        font-family: Inter, Arial, sans-serif;
        font-size: 13px;
        line-height: 1.4;
    }

.button-cart {
    margin-top: 18px;
}

    .button-cart .cont {
        height: auto;
    }

    .button-cart .btnContinue {
        width: max-content;
        min-height: 52px;
        margin-left: 0;
        padding: 14px 18px;
        float: none;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        background: linear-gradient(135deg, var(--sk-blue), var(--sk-cyan));
        color: #ffffff;
        font-family: InterSB, Arial, sans-serif;
        font-size: 15px;
        font-weight: 700;
        line-height: 1.2;
        text-transform: none;
        cursor: pointer;
        user-select: none;
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    }

        .button-cart .btnContinue::before {
            content: none;
        }

        .button-cart .btnContinue:hover {
            transform: translateY(-2px);
            box-shadow: var(--sk-shadow-hover);
        }

.right-content {
    position: relative;
}

.thongbao .message {
    display: block;
    margin: 10px 0 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--sk-soft);
    color: var(--sk-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.65;
    text-align: left;
    opacity: 1;
}

.thongbao table {
    width: 100%;
    border-collapse: collapse;
}

    .thongbao table th {
        display: block;
        margin-top: 12px;
        padding-bottom: 6px;
        color: var(--sk-text);
        text-align: left;
        font-family: InterSB, Arial, sans-serif;
        font-size: 14px;
        font-weight: 700;
        position: relative;
    }

    .titletb,
    .thongbao table span[id*="Validator"],
    .thongbao table .titletb {
        display: block;
        margin-top: 4px;
        color: var(--sk-danger);
        font-family: Inter, Arial, sans-serif;
        font-size: 12px;
        line-height: 1.4;
        position: absolute;
        right: 0;
        top: 0;
    }

    .thongbao table .textbox {
        display: block;
    }

    .thongbao table .txt,
    .cart .hav-drop select {
        width: 100%;
        min-height: 46px;
        height: 50px;
        padding: 0 14px;
        border: 1px solid var(--sk-border);
        border-radius: 14px;
        outline: none;
        background: #ffffff;
        color: var(--sk-text);
        font-family: 'InterM';
        font-size: 16px;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

        .thongbao table .txt:focus,
        .cart .hav-drop select:focus {
            border-color: var(--sk-blue);
            box-shadow: 0 0 0 3px rgba(0, 92, 168, 0.1);
        }

    .thongbao table textarea.txt,
    .thongbao table textarea {
        min-height: 118px;
        width: 100%;
        resize: vertical;
        padding-top: 12px;
        line-height: 1.55;
    }

.cart .hav-drop {
    display: flex;
    flex-direction: column;
}

    .cart .hav-drop label {
        display: block;
        margin-bottom: 6px;
        color: var(--sk-muted);
        font-family: InterSB, Arial, sans-serif;
        font-size: 13px;
    }

.list-loc-tinh-quan {
    display: grid;
    gap: 10px;
}

.cart .hav-drop select {
    margin: 0 0 8px;
}

.red {
    color: var(--sk-danger);
}

.thongbao table .button {
    padding-top: 16px;
}

.thongbao table input.btn {
    min-height: 48px;
    margin: 0;
    padding: 12px 18px;
    border: 0;
    border-radius: 15px;
    outline: none;
    color: #ffffff;
    font-family: InterSB, Arial, sans-serif;
    font-size: 14px;
    text-transform: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

    .thongbao table input.btn.btn-g {
        background: linear-gradient(135deg, var(--sk-blue), var(--sk-cyan));
        box-shadow: 0 14px 30px rgba(0, 92, 168, 0.22);
    }

    .thongbao table input.btn.btn-h {
        margin-left: 8px;
        background: #94a3b8;
    }

    .thongbao table input.btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--sk-shadow-hover);
    }

.left-content {
    margin-top: 24px;
}

.infoCompany {
    padding: 18px;
    border: 1px solid var(--sk-border);
    border-radius: 20px;
    background: var(--sk-soft-2);
}

    .infoCompany h3 {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 0 14px;
    }

        .infoCompany h3 img,
        .left-content h3 img {
            max-width: 210px;
            width: 100%;
            height: auto;
            object-fit: contain;
        }

    .infoCompany p {
        margin: 0;
        color: var(--sk-muted);
        font-family: Inter, Arial, sans-serif;
        font-size: 14px;
        line-height: 1.65;
    }

.google_map {
    height: 250px;
    margin-top: 16px;
    border: 1px solid var(--sk-border);
    border-radius: 20px;
    overflow: hidden;
    background: var(--sk-soft);
}

    .google_map iframe {
        display: block;
    }

@media (max-width: 1023px) {
    .cart.content-cart-child.solklean-cart-page {
        padding: 42px 0 58px;
    }

    .botcardp {
        margin-top: 22px;
    }

        .topcardp .container,
        .botcardp .container {
            padding: 22px;
        }
}

@media (max-width: 739px) {
    .cart.content-cart-child.solklean-cart-page {
        padding: 34px 0 48px;
    }

    .cart-hero {
        margin-bottom: 24px;
        text-align: left;
    }

    .cart-eyebrow {
        font-size: 12px;
        gap: 8px;
    }

        .cart-eyebrow::before,
        .cart-eyebrow::after {
            width: 24px;
        }

    .topcardp,
    .botcardp {
        border-radius: 22px;
    }

        .topcardp .container,
        .botcardp .container {
            padding: 16px;
        }

    .titcat,
    .titgui {
        font-size: 22px;
    }

    .cart-item {
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
        border-radius: 18px;
    }

        .cart-item .img {
            width: 104px;
            height: 104px;
            border-radius: 14px;
        }

        .cart-item .content-top {
            flex-direction: column;
            gap: 8px;
        }

            .cart-item .content-top .price-sum {
                text-align: left;
            }

        .cart-item .content .options {
            align-items: flex-start;
            flex-direction: column;
        }

    .total {
        text-align: left;
        font-size: 22px;
    }

    .thongbao table input.btn {
        width: 100%;
        margin-bottom: 10px;
    }

        .thongbao table input.btn.btn-h {
            margin-left: 0;
        }
}

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

        .cart-item .img {
            width: 100%;
            height: 220px;
        }

    .cart-hero h1 {
        font-size: 30px;
    }
}