/* Technical Specifications - Product Page (1440px baseline) */

.tech-specs-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 6.944vw 0; /* 100px / 1440 */
}

.tech-specs-container {
    padding-left: 1.528vw; /* 22px / 1440 */
    padding-right: 1.528vw;
    width: 100%;
}

/* HEADER IMAGE */
.tech-specs-header-img {
    width: 100%;
    height: 13.889vw; /* 200px / 1440 */
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 3.333vw; /* 48px gap to grid */
}

.tech-specs-header-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SPECIFICATIONS GRID — 12-column CSS Grid */
.tech-specs-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    width: 100%;
    border-top: 1px solid #EEEEEE;
    border-left: 1px solid #EEEEEE;
}

.tech-cell {
    grid-column: span var(--col-size, 12);
    border-right: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
    padding: 1.667vw; /* 24px / 1440 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc((116 / 1440) * 100vw);
}

/* TYPOGRAPHY */
.tech-cell p {
    font-family: 'Open Sans', sans-serif;
    font-size: calc((16 / 1440) * 100vw);
    line-height: calc((24 / 1440) * 100vw);
    color: #000;
    margin: 0;
    width: 100%;
}

.tech-cell span.label {
    font-weight: 600; /* SemiBold */
}

/* RESPONSIVE — mobile: sve ćelije pune širinu (12/12) */
@media (max-width: 1200px) {
    .tech-specs-container { padding: 0 5%; }
    .tech-specs-header-img { height: 30vw; }

    .tech-cell {
        grid-column: span 12 !important;
        padding: 20px;
        min-height: unset;
    }

    .tech-cell p {
        font-size: 16px;
        line-height: 24px;
    }
}
