/* LUMOR Grid: Precision Layout & Zero-Line Design */

/* Container --------------------------------------------------------------- */
.lumor-main-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px 0;
}

/* Collection card --------------------------------------------------------- */
.lumor-grid-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 30px 40px;
    border: 1px solid #f2f2f2;
    overflow: hidden;
}

.lumor-card-title {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 0 0 25px 0;
    color: #000000;
    text-transform: uppercase;
    text-align: left;
}

/* Table — all borders removed --------------------------------------------- */
.lumor-list-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    border: none;
}

.lumor-list-table thead tr,
.lumor-list-table tbody tr,
.lumor-list-table th,
.lumor-list-table td {
    border: none;
    outline: none;
}

/* Header ------------------------------------------------------------------ */
.lumor-list-table th {
    font-size: 11px;
    color: #cccccc;
    text-align: left;
    padding-bottom: 15px;
    letter-spacing: 1px;
}

.lumor-list-table th.c-price {
    text-align: right;
}

/* Cells ------------------------------------------------------------------- */
.lumor-list-table td {
    padding: 8px 0;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

/* Column widths: 25% | 15% | 35% | 25% ----------------------------------- */
.c-model { width: 25%; text-align: left; }
.c-year  { width: 15%; text-align: left; }
.c-shop  { width: 35%; text-align: left; }
.c-price { width: 25%; text-align: right; }

/* Typography helpers ------------------------------------------------------ */
.v-bold     { font-weight: 700; color: #111111; }
.v-grey     { color: #aaaaaa; font-size: 13px; }
.v-dark     { color: #444444; }
.v-currency { font-size: 11px; font-weight: 400; margin-right: 2px; color: #999999; }

/* Row interaction --------------------------------------------------------- */
.l-row {
    cursor: pointer;
    transition: background 0.2s ease;
}

.l-row:hover td {
    background: #fafafa;
}

.l-row:focus {
    outline: 2px solid #6c63ff;
    outline-offset: -2px;
}

/* Badges ------------------------------------------------------------------ */
.fs-tag {
    display: inline-block;
    background: #e6f7ed;
    color: #1db954;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

.v-tick {
    display: inline-block;
    color: #1da1f2;
    font-size: 14px;
    margin-left: 5px;
    vertical-align: middle;
}

/* Error state ------------------------------------------------------------- */
.lumor-error {
    color: #cc0000;
    font-size: 13px;
    padding: 8px 0;
}

/* Mobile ------------------------------------------------------------------ */
@media (max-width: 600px) {
    .lumor-grid-card { padding: 20px; }
    .c-shop          { display: none; }
    .c-model         { width: 45%; }
    .c-year          { width: 20%; }
    .c-price         { width: 35%; }
}
