/* WooCommerce Loyalty Gifts Club — Frontend CSS
   Prefix: .wlgc-   |   RTL   |   No external deps */

/* ── Wrapper ───────────────────────────────────────────── */
.wlgc-loyalty-wrapper {
    direction: rtl;
    font-family: inherit;
    color: inherit;
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

.wlgc-section-title {
    font-size: 1.15em;
    font-weight: 700;
    margin: 20px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e5e5e5;
}

/* ── Stats Row ─────────────────────────────────────────── */
.wlgc-stats-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.wlgc-stat-box {
    flex: 1;
    min-width: 100px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.wlgc-stat-number {
    display: block;
    font-size: 2em;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
}

.wlgc-stat-label {
    display: block;
    font-size: 0.8em;
    color: #777;
    margin-top: 4px;
}

/* ── Points Box (cart) ─────────────────────────────────── */
.wlgc-points-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 16px;
    display: inline-block;
    margin-bottom: 12px;
}

.wlgc-points-value {
    font-size: 1.4em;
    font-weight: 700;
    color: #2c3e50;
}

.wlgc-points-label {
    font-size: 0.9em;
    color: #555;
}

/* ── Next Gift Banner ──────────────────────────────────── */
.wlgc-next-gift-banner {
    background: #eaf4fb;
    border-right: 4px solid #3498db;
    border-radius: 4px;
    padding: 10px 16px;
    margin-bottom: 16px;
    font-size: 0.95em;
}

.wlgc-next-gift-note {
    font-size: 0.9em;
    color: #555;
    margin: 8px 0;
}

.wlgc-gifts-available-title {
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 10px;
}

/* ── Gifts Grid ────────────────────────────────────────── */
.wlgc-gifts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

/* Mobile: single column */
@media (max-width: 600px) {
    .wlgc-gifts-grid {
        grid-template-columns: 1fr;
    }
    .wlgc-stats-row {
        flex-direction: column;
    }
}

/* ── Gift Card ─────────────────────────────────────────── */
.wlgc-gift-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.wlgc-gift-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.wlgc-gift-card.wlgc-gift-locked {
    opacity: 0.75;
}

.wlgc-gift-card.wlgc-gift-oos {
    opacity: 0.5;
    pointer-events: none;
}

.wlgc-gift-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.wlgc-gift-info {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wlgc-gift-name {
    font-size: 0.95em;
    font-weight: 700;
    margin: 0 0 6px;
    color: #2c3e50;
}

.wlgc-gift-desc {
    font-size: 0.82em;
    color: #666;
    margin: 0 0 8px;
    flex: 1;
}

.wlgc-gift-cost {
    font-size: 0.88em;
    margin: 0 0 10px;
}

.wlgc-points-cost {
    font-weight: 700;
    color: #e67e22;
    font-size: 1.1em;
}

.wlgc-gift-gap {
    font-size: 0.82em;
    color: #e74c3c;
    margin: 0 0 8px;
}

.wlgc-gift-unavailable {
    font-size: 0.82em;
    color: #999;
    font-style: italic;
}

/* ── Gift Button ───────────────────────────────────────── */
.wlgc-gift-button {
    display: block;
    width: 100%;
    text-align: center;
    background: #27ae60;
    color: #fff !important;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 0.88em;
    font-weight: 700;
    transition: background 0.15s ease;
    margin-top: auto;
}

.wlgc-gift-button:hover {
    background: #219150;
    color: #fff !important;
}

.wlgc-gift-button:disabled,
.wlgc-gift-button.wlgc-loading {
    background: #95a5a6;
    cursor: not-allowed;
}

/* ── Gift Tag in Cart ──────────────────────────────────── */
.wlgc-gift-tag {
    display: inline-block;
    background: #27ae60;
    color: #fff;
    font-size: 0.7em;
    padding: 2px 6px;
    border-radius: 3px;
    margin-right: 6px;
    vertical-align: middle;
    font-weight: 600;
}

/* ── Points History Table ─────────────────────────────── */
.wlgc-history-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9em;
}

.wlgc-history-table th,
.wlgc-history-table td {
    padding: 8px 12px;
    text-align: right;
    border-bottom: 1px solid #eee;
}

.wlgc-history-table th {
    background: #f0f0f0;
    font-weight: 700;
}

.wlgc-positive { color: #27ae60; font-weight: 700; }
.wlgc-negative { color: #e74c3c; font-weight: 700; }

/* ── Login Notice ──────────────────────────────────────── */
.wlgc-login-notice {
    font-size: 0.92em;
    color: #555;
    text-align: center;
    padding: 10px;
}

/* ── Account page extra ─────────────────────────────────── */
.wlgc-account-wrap .wlgc-locked-title {
    color: #888;
}

.wlgc-balance-inline,
.wlgc-next-gift {
    font-size: 0.95em;
}
