.product-wrapper{
    width: 95%;
    margin: 0 auto;
    text-align: center;
}
.detail-picture{
    width: 100%;
    aspect-ratio: 1.9;
    max-height: 520px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    position: relative;
}
.detail-picture h2{
    text-align: center;
    text-transform: uppercase;
    display: block;
    position: absolute;
    left: 8%;
    right: 0;
    top:55%;
    font-family: "DIN Pro";
    font-size: clamp(1.00rem, 0.8120rem + 0.96vw, 2.00rem);
}
.products-header h1{
    font-family: "DIN Pro";
    font-size: clamp(1.50rem, 1.2056rem + 1.45vw, 3.00rem);
}
.product-wrapper h2{
    font-family: "DIN Pro";
}
.product-wrapper h3{
    font-family: "DIN Pro";
    color: #ffffff;
}
.product-description{
    margin-top: 2rem;
    text-align: left;
    color: #ffffff;
}
.product-extra {
    margin-top: 2rem;
    text-align: left;
    color: #ffffff;
}
.product-extra p {
    font-size: 1.08rem;
}
.product-tech {
    margin-top: 2.5rem;
    text-align: left;
    color: #ffffff;
}
.product-tech h2 {
    margin-bottom: 1rem;
}
.product-tech h3 {
    margin-top: 1.6rem;
    margin-bottom: 0.75rem;
}
.product-tech p {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.86);
}
.product-tech__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.product-tech__card,
.product-tech__table-wrap {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(60, 67, 71, 0.58);
    padding: 1.1rem;
}
.product-tech__card ul {
    margin-left: 1.2rem;
}
.product-tech__card li {
    margin-bottom: 0.45rem;
}
.product-tech table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
}
.product-tech th,
.product-tech td {
    padding: 0.75rem 0.7rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    vertical-align: top;
}
.product-tech th {
    color: #ef682e;
    font-weight: 700;
    text-align: left;
}
.product-tech tr:last-child td {
    border-bottom: 0;
}
.product-tech__note {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    border-left: 4px solid #ef682e;
    border-radius: 16px;
    background: rgba(239, 104, 46, 0.11);
}
.product-description ul{
    list-style-type: disc ;
    margin-left: 2rem;
}
.product-certificate{
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}
.product-certificate h2{
    font-family: "DIN Pro";
}
.product-certificate img{
    margin: 2rem auto;
    width: min(520px, 100%);
    display: block;
}

@media (max-width: 768px) {
    .product-wrapper {
        width: 92%;
    }

    .detail-picture {
        aspect-ratio: 1.35;
        border-radius: 20px;
    }

    .detail-picture h2 {
        left: 0;
        right: 0;
        top: auto;
        bottom: 1.25rem;
        padding: 0 1rem;
    }

    .product-description,
    .product-tech,
    .product-certificate {
        text-align: left;
    }

    .product-tech__grid {
        grid-template-columns: 1fr;
    }

    .product-tech__table-wrap {
        overflow-x: auto;
    }

    .product-certificate img {
        width: 100%;
        max-width: 420px;
        display: block;
    }
}

@media (max-width: 480px) {
    .detail-picture {
        aspect-ratio: 1.1;
    }

    .product-description ul {
        margin-left: 1.25rem;
    }
}
