/* Silver House Pricing – Frontend Badge */
.shp-rate-badge {
    margin: 12px 0 18px;
    border: 1px solid #c0d9c0;
    border-radius: 10px;
    background: linear-gradient(135deg, #f0f7f0 0%, #e8f3e8 100%);
    padding: 14px 18px;
    font-family: inherit;
}

.shp-rate-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.shp-rate-icon {
    font-size: 28px;
    line-height: 1;
}

.shp-rate-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.shp-rate-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #5a7a5a;
    font-weight: 600;
}

.shp-rate-value {
    font-size: 20px;
    font-weight: 700;
    color: #2c5f2e;
}

.shp-rate-updated {
    font-size: 10px;
    color: #8aaa8a;
}

/* Price Breakdown Table */
.shp-price-breakdown {
    margin-top: 10px;
    border-top: 1px dashed #b0cfb0;
    padding-top: 10px;
}

.shp-price-breakdown table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.shp-price-breakdown table td {
    padding: 4px 6px;
    color: #4a6a4a;
    border: none;
    background: transparent !important;
}

.shp-price-breakdown table td:last-child {
    text-align: right;
    font-weight: 500;
    color: #2c4a2c;
}

.shp-total-row td {
    border-top: 1px solid #b0cfb0 !important;
    padding-top: 7px !important;
    font-size: 14px !important;
    color: #1a3a1a !important;
}

/* Mobile */
@media (max-width: 480px) {
    .shp-rate-value { font-size: 17px; }
    .shp-rate-badge { padding: 12px 14px; }
}
