.piwi-size-chart-v2 {
    width: 100%;
    color: #161616;
    font-family: inherit;
}

.piwi-size-chart-v2__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.piwi-size-chart-v2__title {
    margin: 0;
    color: inherit;
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 700;
    line-height: 1.25;
}

.piwi-size-chart-v2__unit-control {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
}

.piwi-size-chart-v2__unit-label {
    color: #777;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.piwi-size-chart-v2__unit-label.is-active {
    color: #161616;
}

.piwi-size-chart-v2__switch {
    position: relative;
    width: 48px;
    height: 26px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #d8d8d8;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.piwi-size-chart-v2__switch-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease;
}

.piwi-size-chart-v2__switch[aria-checked="true"] {
    background: #161616;
}

.piwi-size-chart-v2__switch[aria-checked="true"]
.piwi-size-chart-v2__switch-thumb {
    transform: translateX(22px);
}

.piwi-size-chart-v2__switch:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

.piwi-size-chart-v2__table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    -webkit-overflow-scrolling: touch;
}

.piwi-size-chart-v2 table {
    width: 100%;
    min-width: 540px;   
    border: 0px !important;
    border-collapse: collapse;
    text-align: center;
	margin:0 !important;

}

.piwi-size-chart-v2 th,
.piwi-size-chart-v2 td {
    padding: 15px 18px !important;
    border: 0 !important;
    border-right: 1px solid #e8e8e8 !important;
    border-bottom: 1px solid #e8e8e8 !important;
    white-space: nowrap;
}

.piwi-size-chart-v2 tr:last-child th,
.piwi-size-chart-v2 tr:last-child td {
    border-bottom: 0;
}

.piwi-size-chart-v2 th:last-child,
.piwi-size-chart-v2 td:last-child {
    border-right: 0;
}

.piwi-size-chart-v2 thead th {
    background: #f4f4f4;
    color: #161616;
    font-size: 14px;
    font-weight: 700;
}

.piwi-size-chart-v2 thead tr th:nth-child(n+2) {
    text-align: center;
}

.piwi-size-chart-v2 tbody th {
    background: #fafafa;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
}

.piwi-size-chart-v2 tbody td {
    font-size: 14px;
}

.piwi-size-chart-v2__legend {
    display: none;
    margin-top: 10px;
    color: #737373;
    font-size: 12px;
}

.piwi-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 767px) {
    .piwi-size-chart-v2__top {
        align-items: flex-start;
        flex-direction: column;
    }

    .piwi-size-chart-v2__legend {
        display: block;
    }
}