/* ── WC Product Rental — Frontend Styles ──────────────────────────────────── */

.wcpr-rental-wrapper {
    margin-top: 20px;
    padding-top: 18px;
}

/* Divider "o" line */
.wcpr-rental-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: #999;
    font-size: 13px;
}
.wcpr-rental-divider::before,
.wcpr-rental-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

/* Rental info text */
.wcpr-rental-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}
.wcpr-rental-label {
    font-size: 15px;
    color: #1a1a1a;
}
.wcpr-rental-sub {
    font-size: 12px;
    color: #888;
}

/* Rent button */
.wcpr-rent-button.button {
    background-color: #1e40af !important;
    border-color:     #1e3a8a !important;
    color:            #ffffff !important;
    font-weight:      600;
    letter-spacing:   0.01em;
    transition:       background-color 0.2s ease, transform 0.1s ease;
}
.wcpr-rent-button.button:hover {
    background-color: #1d4ed8 !important;
    border-color:     #1e3a8a !important;
    color:            #ffffff !important;
    transform:        translateY(-1px);
}
.wcpr-rent-button.button:active {
    transform: translateY(0);
}
