/* Guía de tallas — modal de la ficha de producto */

.weu-size-guide-modal .modal-dialog {
    max-width: min(920px, calc(100% - 2rem));
}

.weu-size-guide__intro {
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--weu-color-border, rgba(0, 0, 0, 0.08));
}

.weu-size-guide__lead {
    margin: 0;
    color: var(--weu-color-muted, #7a7a7a);
}

.weu-size-guide__section {
    padding-top: 1.4rem;
}

.weu-size-guide__section + .weu-size-guide__section {
    margin-top: 1.4rem;
    border-top: 1px solid var(--weu-color-border, rgba(0, 0, 0, 0.08));
}

.weu-size-guide__section-title {
    margin: 0 0 0.9rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--weu-color-black, #0a1210);
}

.weu-size-guide__how {
    display: grid;
    grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
    align-items: start;
    gap: 1rem 1.25rem;
    margin-bottom: 1.1rem;
}

.weu-size-guide__figure {
    margin: 0;
    padding: 0.5rem;
    border: 1px solid var(--weu-color-border, rgba(0, 0, 0, 0.08));
    border-radius: var(--weu-radius-default, 8px);
    background: var(--weu-color-grey-light, #fafafa);
}

.weu-size-guide__figure img {
    display: block;
    width: 100%;
    height: auto;
}

.weu-size-guide__points {
    margin: 0;
    padding: 0;
    list-style: none;
}

.weu-size-guide__point {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.weu-size-guide__point + .weu-size-guide__point {
    margin-top: 0.6rem;
}

.weu-size-guide__point-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--weu-color-blue, #1613a9);
    color: var(--weu-color-on-blue, #fff);
    font-size: 0.75rem;
    font-weight: 800;
}

.weu-size-guide__point-text {
    display: block;
    min-width: 0;
}

.weu-size-guide__point-name {
    display: block;
    font-weight: 700;
    color: var(--weu-color-black, #0a1210);
}

.weu-size-guide__point-desc {
    display: block;
    color: var(--weu-color-muted, #7a7a7a);
    font-size: 0.875rem;
}

.weu-size-guide__table-wrap {
    overflow-x: auto;
    border: 1px solid var(--weu-color-border, rgba(0, 0, 0, 0.08));
    border-radius: var(--weu-radius-default, 8px);
}

.weu-size-guide__table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.weu-size-guide__table th,
.weu-size-guide__table td {
    padding: 0.55rem 0.75rem;
    text-align: center;
    white-space: nowrap;
}

.weu-size-guide__table thead th {
    background: var(--weu-color-black, #0a1210);
    color: var(--weu-color-on-primary, #fff);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.weu-size-guide__table tbody th {
    background: var(--weu-color-grey, #f6f6f6);
    font-weight: 800;
    color: var(--weu-color-black, #0a1210);
}

.weu-size-guide__table tbody tr + tr th,
.weu-size-guide__table tbody tr + tr td {
    border-top: 1px solid var(--weu-color-border, rgba(0, 0, 0, 0.08));
}

.weu-size-guide__table tbody tr:nth-child(even) td {
    background: var(--weu-color-grey-light, #fafafa);
}

.weu-size-guide__note {
    margin: 1.2rem 0 0;
    padding-top: 0.9rem;
    border-top: 1px solid var(--weu-color-border, rgba(0, 0, 0, 0.08));
    color: var(--weu-color-muted, #7a7a7a);
    font-size: 0.8125rem;
}

@media (max-width: 767.98px) {
    .weu-size-guide__how {
        grid-template-columns: minmax(0, 1fr);
    }

    .weu-size-guide__figure {
        max-width: 240px;
    }
}
