.woocommerce div.product .julius-technical-specifications {
    clear: both;
    float: none;
    display: block;
    flex: 0 0 100%;
    width: 100%;
    max-width: none;
    margin: 50px 0 42px;
    padding: 0;
    box-sizing: border-box;
}

.julius-technical-specifications__inner {
    width: 100%;
    padding: 34px;
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fcfbf8 100%
        );
    border: 1px solid #e6e0d7;
    border-radius: 18px;
    box-shadow:
        0 16px 38px rgba(42, 34, 22, 0.05);
    box-sizing: border-box;
}

.julius-technical-specifications__header {
    max-width: 720px;
    margin: 0 0 26px;
    padding: 0 0 22px;
    border-bottom: 1px solid #e9e4dc;
}

.julius-technical-specifications__eyebrow {
    display: block;
    margin: 0 0 7px;
    color: #b17d28;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.julius-technical-specifications__title {
    margin: 0 0 8px;
    padding: 0;
    color: #1e1d1b;
    font-size: 25px;
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.julius-technical-specifications__description {
    margin: 0;
    color: #706a62;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
}

.julius-technical-specifications__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
}

.julius-technical-specifications__item {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    min-height: 62px;
    margin: 0;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid #e9e4dc;
    border-radius: 12px;
    box-sizing: border-box;
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease;
}

.julius-technical-specifications__item:hover {
    border-color: #d8c39e;
    box-shadow:
        0 8px 18px rgba(88, 64, 25, 0.06);
    transform: translateY(-1px);
}

.julius-technical-specifications__label,
.julius-technical-specifications__value {
    margin: 0;
    padding: 0;
}

.julius-technical-specifications__label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: #706a62;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.julius-technical-specifications__marker {
    flex: 0 0 auto;
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #c8943d;
    border-radius: 50%;
    box-shadow:
        0 0 0 3px rgba(200, 148, 61, 0.11);
}

.julius-technical-specifications__value {
    color: #23211e;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.4;
    text-align: right;
}

@media (max-width: 980px) {
    .julius-technical-specifications__inner {
        padding: 28px;
    }

    .julius-technical-specifications__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .woocommerce div.product .julius-technical-specifications {
        margin: 30px 0;
    }

    .julius-technical-specifications__inner {
        padding: 22px 17px;
        border-radius: 14px;
    }

    .julius-technical-specifications__header {
        margin-bottom: 18px;
        padding-bottom: 18px;
    }

    .julius-technical-specifications__eyebrow {
        margin-bottom: 5px;
        font-size: 9px;
    }

    .julius-technical-specifications__title {
        margin-bottom: 7px;
        font-size: 21px;
    }

    .julius-technical-specifications__description {
        font-size: 12px;
    }

    .julius-technical-specifications__list {
        gap: 9px;
    }

    .julius-technical-specifications__item {
        grid-template-columns: 1fr;
        gap: 6px;
        min-height: auto;
        padding: 13px 15px;
    }

    .julius-technical-specifications__label {
        font-size: 10px;
    }

    .julius-technical-specifications__value {
        padding-left: 16px;
        font-size: 13px;
        text-align: left;
    }
}