/**
 * Technical Specifications Frontend - Product Tab Styles
 */

.rnz-specs-tab {
    padding: 10px 0;
}

.rnz-specs-tab h3 {
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
}

.rnz-specs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.rnz-spec-item {
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

.rnz-spec-name {
    font-size: 0.85em;
    font-weight: 300;
    color: #00112d80;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.rnz-spec-value {
    font-size: 1em;
    font-weight: 400;
    color: #00112d80;
    line-height: 1.4;
}

/* Responsive: 2 columns on tablet */
@media (max-width: 768px) {
    .rnz-specs-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .rnz-spec-item {
        padding: 12px;
    }
}

/* Responsive: 1 column on mobile */
@media (max-width: 480px) {
    .rnz-specs-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .rnz-spec-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .rnz-spec-name {
        margin-bottom: 0;
    }

    .rnz-spec-value {
        text-align: right;
    }
}