/* ============================================================
   Wonderland Unit Sizes – matches live wonderlandministorage.com
   ============================================================ */

.wus-wrap {
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #333;
    margin-bottom: 30px;
}

/* ── Header row ── */
.wus-header {
    display: table;
    width: 100%;
    background-color: #c0392b;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    box-sizing: border-box;
}

.wus-header-cell {
    display: table-cell;
    padding: 12px 15px;
    vertical-align: middle;
}

/* ── Each unit row ── */
.wus-row {
    display: table;
    width: 100%;
    border-bottom: 1px solid #ddd;
    background: #fff;
    box-sizing: border-box;
}

.wus-row:last-child { border-bottom: none; }

.wus-cell {
    display: table-cell;
    padding: 15px 15px;
    vertical-align: middle;
    border-right: 1px solid #e8e8e8;
}

.wus-cell:last-child { border-right: none; }

/* ── Column widths (mirror live site) ── */
.wus-col-img  { width: 130px; text-align: center; }
.wus-col-desc { width: auto; }
.wus-col-rate { width: 130px; text-align: left;   white-space: nowrap; }
.wus-col-btn  { width: 175px; text-align: center; }

/* ── Unit image ── */
.wus-unit-img {
    max-width: 100px;
    max-height: 100px;
    display: block;
    margin: 0 auto;
}

/* ── Description ── */
.wus-desc p        { margin: 0 0 5px; line-height: 1.5; font-size: 14px; }
.wus-desc p:last-child { margin-bottom: 0; }
.wus-desc strong   { font-weight: 700; }
.wus-desc ul       { margin: 4px 0 0 18px; padding: 0; }
.wus-desc ul li    { font-size: 14px; margin-bottom: 2px; line-height: 1.5; }
/* Red promo text */
.wus-desc em,
.wus-desc .wus-promo { color: #c0392b; font-style: normal; }

/* ── Rate column ── */
.wus-rate-price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}
.wus-rate-wk {
    display: block;
    font-size: 12px;
    color: #555;
    margin-top: 3px;
    line-height: 1.4;
}

/* ── Buttons ── */
.wus-btn {
    display: inline-block;
    background-color: #c0392b;
    color: #fff !important;
    text-decoration: none !important;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    border-radius: 3px;
    white-space: nowrap;
    transition: background 0.2s;
    cursor: pointer;
    border: none;
    line-height: 1.3;
}
.wus-btn:hover,
.wus-btn:focus { background-color: #a93226; color: #fff !important; }

/* ── Mobile ── */
@media (max-width: 640px) {
    .wus-header { display: none; }

    .wus-row {
        display: block;
        border: 1px solid #ddd;
        border-radius: 4px;
        margin-bottom: 16px;
        padding: 12px;
    }
    .wus-cell {
        display: block;
        width: 100% !important;
        padding: 6px 0;
        border: none;
    }
    .wus-unit-img { margin: 0 0 8px; }
    .wus-col-btn  { text-align: left; }
    .wus-btn { display: block; text-align: center; box-sizing: border-box; }
}
