.price-table-wrap {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.price-table col:nth-child(1) {
    width: 38%;
}

.price-table col:nth-child(2) {
    width: 42%;
}

.price-table col:nth-child(3) {
    width: 20%;
}

.price-table thead th {
    padding: 14px 22px;
    background: var(--graphite);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .06em;
    text-align: left;
    text-transform: uppercase;
}

.price-table thead th:last-child {
    text-align: right;
}

.price-group th {
    padding: 13px 22px;
    border-top: 1px solid #d9dee4;
    background: #eef1f4;
    color: var(--graphite);
    font-size: 13px;
    font-weight: 900;
    text-align: left;
}

.price-group:first-child th {
    border-top: 0;
}

.price-row td {
    padding: 16px 22px;
    border-top: 1px solid var(--line);
    color: var(--text);
    font-size: 13px;
    line-height: 1.45;
    vertical-align: top;
}

.price-row td:last-child {
    text-align: right;
    white-space: nowrap;
    color: var(--graphite);
    font-size: 15px;
}

.price-row td:first-child {
    color: var(--ink);
}

.price-row td strong {
    font-weight: 700;
}

.price-row.featured td .gift {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 8px;
    background: rgba(215, 34, 37, .09);
    color: var(--red);
}

@media (max-width: 600px) {
	.price-table-wrap {
        overflow: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
    }
	.price-table, .price-table tbody, .price-table tr, .price-table td, .price-table th {
        display: block;
        width: 100%;
    }
	.price-table colgroup, .price-table thead {
        display: none;
    }
	.price-group {
        margin-top: 16px;
    }
	.price-group:first-child {
        margin-top: 0;
    }
	.price-group th {
        padding: 12px 15px;
        border: 1px solid var(--line);
        border-radius: 13px 13px 0 0;
        background: var(--graphite);
        color: #fff;
    }
	.price-row {
        padding: 3px 0 0;
        border-right: 1px solid var(--line);
        border-left: 1px solid var(--line);
        background: #fff;
    }
    .price-row td {
        display: grid;
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 12px;
        padding: 10px 14px;
        border-top: 0;
        border-bottom: 1px solid #edf0f2;
        font-size: 12.5px;
    }
	.price-row td:before {
        color: var(--muted);
        font-size: 10px;
        font-weight: 900;
        letter-spacing: .04em;
        text-transform: uppercase;
        content: attr(data-label);
    }
	.price-row td:last-child {
        text-align: left;
        white-space: normal;
        font-size: 14px;
    }
	.price-row.featured td .gift {
        justify-self: start;
    }
}