.product-detail-v2 {
    line-height: 1.75;
}

.product-detail-v2 .key-parameters {

}

.product-detail-v2 .key-parameters__list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    line-height: 1.5;
}

.product-detail-v2 .key-parameters__item {
    flex: 1 1 350px;
    max-width: 350px;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-detail-v2 .key-parameters__label {
    font-size: 14px;
    color: #666;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-detail-v2 .key-parameters__value {
    font-size: 19px;
    font-weight: bold;
    color: #000;
}

@media (max-width: 768px) {
    .product-detail-v2 .key-parameters__list {
        justify-content: center;
    }
}

.product-detail-v2 .product-highlights {
}

.product-detail-v2 .product-highlight {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.product-detail-v2 .product-highlight__media {
    box-sizing: border-box;
    padding: 0.5rem;
    flex: 1 1 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-v2 .product-highlight__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    /*aspect-ratio: 4 / 3;*/
    object-fit: contain;
    display: block;
    border-radius: 8px;
    background-color: #f0f0f0;
}

.product-detail-v2 .product-highlight__content {
    box-sizing: border-box;
    padding: 0.5rem;
    flex: 1 1 50%;
}

.product-detail-v2 h2 {
    font-size: 24px;
    font-weight: 700;
}

.product-detail-v2 .product-highlights__title {
    font-size: 24px;
    font-weight: 700;
}

.product-detail-v2 .product-highlight__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-detail-v2 .product-highlight__text {
    display: flex;
    flex-direction: column;
    line-height: 25.6px;
    font-size: 14px;
    /*font-weight: 500;*/
}

@media (max-width: 768px) {
    .product-detail-v2 .product-highlight {
        flex-direction: column;
    }

    .product-detail-v2 .product-highlight__media,
    .product-detail-v2 .product-highlight__content {
        flex: 1 1 100%;
    }
}

.product-detail-v2 .product-specifications {

}

.product-detail-v2 .product-specifications__title {
    font-size: 24px;
    font-weight: 700;
}

.product-detail-v2 .product-specifications__footnote {
    font-size: 12px;
}

.product-detail-v2 .specifications__columns {
    display: grid;
    /*grid-template-columns: repeat(2, minmax(0, 1fr));*/
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .product-detail-v2 .specifications__columns {
        grid-template-columns: 1fr;
    }
}

.product-detail-v2 .specifications__column {
    break-inside: avoid;
    margin-bottom: 2rem;
}

.product-detail-v2 .spec-group {

}

.product-detail-v2 .spec-group__title {
    font-size: 18px;
    font-weight: 500;
}

.product-detail-v2 .spec-group__items {

}

.product-detail-v2 .spec-group__item {

}

.product-detail-v2 .spec-group__label {

}

.product-detail-v2 .spec-group__value {

}

.product-detail-v2 .table-spec {
    width: 100%;
    margin-top: 20px;
}

.product-detail-v2 .table-spec__label:first-letter {
    text-transform: uppercase;
}

.product-detail-v2 .table-spec__label {
    text-transform: lowercase;
    text-align: left;
}

.product-detail-v2 .table-spec__body .table-spec__label,
.product-detail-v2 .table-spec__body .table-spec__value {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 300;
}

.product-detail-v2 .table-spec__body .table-spec__label {
    width: 100px;
    font-weight: bold;
}

.product-detail-v2 .table-spec__row {
    background: #f2f2f2;
    line-height: 1.75;
}

.product-detail-v2 .table-spec__row tr:nth-child(2n) {
    background: #fff;
}

.product-detail-v2 .table-spec__body .table-spec__label {
    width: 200px;
}

.product-detail-v2 .size-chart {

}

.product-detail-v2 .size-chart__title {

}

.product-detail-v2 .size-chart__table {
    width: 100%;
    margin-top: 20px;
    font-size: 14px;
}

.product-detail-v2 .size-chart__body .size-chart__row:nth-child(2n) {
    background: #fff;
}

.product-detail-v2 .size-chart__body .size-chart__row {
    background: #f2f2f2;
    vertical-align: top;
}

.product-detail-v2 .size-chart__cell {
    padding: 10px 5px;
    font-size: 14px;
    text-align: center;
}

.product-detail-v2 .geometry {
    display: flex;
    flex-wrap: wrap;
    /*gap: 2rem;*/
    margin: 2rem 0;
    align-items: flex-start;
}

.product-detail-v2 .geometry__title {
    text-align: left;
    width: 100%;
}

.product-detail-v2 .geometry__media,
.product-detail-v2 .geometry__table-wrapper {
    flex: 1 1 400px;
    min-width: 300px;
}

.product-detail-v2 .geometry__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.product-detail-v2 .geometry__image {
    width: 100%;
    height: auto;
    max-width: 500px;
    display: block;
    margin: 0 auto;
}

.product-detail-v2 .geometry__note {
    text-align: center;
    font-size: 12px;
}

.product-detail-v2 .geometry__note,
.product-detail-v2 .geometry__note_table {
    text-align: center;
    font-size: 12px;
}

.product-detail-v2 .geometry__table-head {

}

.product-detail-v2 .geometry__table-head .geometry__table-cell {
    padding: 0.4rem 0.6rem;
    /*border: 1px solid #ddd;*/
    text-align: center;
}

.product-detail-v2 .geometry__table-body {

}

.product-detail-v2 .geometry__table-body .geometry__table-cell {
    padding: 0.4rem 0.6rem;
    /*border: 1px solid #ddd;*/
    text-align: center;
    border-top: 1px solid #d8d8d8;
}

.product-detail-v2 .geometry__table-row .geometry__table-cell:first-child {
    text-align: left;
    font-weight: 600;
}

.product-detail-v2 .geometry__table-row:first-child {
    border-top: none
}


@media (max-width: 768px) {
    .product-detail-v2 .geometry {
        flex-direction: column;
    }

    .product-detail-v2 .geometry__table {
        font-size: 14px;
    }
}

.product-detail-v2 .short-description {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    padding: 1rem;
}

.product-detail-v2 .short-description__title {

}

.product-detail-v2 .short-description__text {

}