/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 20 2025 | 19:37:53 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

.woocommerce-product-attributes.shop_attributes {
    font-family: inherit;
}

/* Linhas principais */
.tech-row {
    display: grid;
    gap: 32px;
    margin-bottom: 32px;
}

.tech-row--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tech-row--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tech-row--card {
    margin: 40px 0;
}

/* Itens individuais */
.tech-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.tech-item__icon i {
    font-size: 24px;
}

.woocommerce-product-attributes-item__label span {
    font-size: 16px;
    font-weight: 600;
}

.woocommerce-product-attributes-item__value {
    font-size: 14px;
    margin-top: 4px;
}

/* Card branco tracejado (Aroma / etc.) */
.sensory-card {
    background: #fff;
    border-radius: 12px;
    border: 2px dashed #f3c94c; /* amarelo tracejado */
    padding: 32px 40px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.sensory-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sensory-column--border {
    border-left: 2px solid #e0b94a; /* linha vertical */
    padding-left: 32px;
}

/* Responsivo simples */
@media (max-width: 900px) {
    .tech-row--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sensory-card {
        grid-template-columns: 1fr;
    }

    .sensory-column--border {
        border-left: 0;
        padding-left: 0;
        border-top: 2px solid #e0b94a;
        padding-top: 24px;
        margin-top: 8px;
    }
}
