.lrwc-lookup-toggle {
    display: flex;
    margin-bottom: 15px;
    background: #f1f5f9;
    border-radius: 8px;
    padding: 4px;
}
.lrwc-toggle-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s;
    font-size: 14px;
}
.lrwc-toggle-btn.active {
    background: white;
    color: var(--lrwc-primary);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.lrwc-action-tabs {
    display: flex;
    margin-bottom: 20px;
    background: #f1f5f9;
    border-radius: 8px;
    padding: 4px;
}
.lrwc-action-tab {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s;
}
.lrwc-action-tab.active {
    background: white;
    color: var(--lrwc-primary);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.lrwc-action-panel {
    display: none;
}
.lrwc-action-panel.active {
    display: block;
}

.lrwc-rewards-grid {
    display: grid;
    gap: 12px;
    max-height: 350px;
    overflow-y: auto;
    padding: 4px;
}
.lrwc-reward-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}
.lrwc-reward-item:hover {
    border-color: var(--lrwc-primary);
}
.lrwc-reward-item.selected {
    border-color: #22c55e;
    background: #f0fdf4;
}
.lrwc-reward-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.lrwc-reward-item.dimmed {
    opacity: 0.35;
    cursor: not-allowed;
    background: #f1f5f9;
}
.lrwc-reward-item.dimmed .lrwc-qty-btn {
    display: none;
}
.lrwc-qty-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}
.lrwc-qty-btn {
    width: 36px;
    height: 36px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: #64748b;
}
.lrwc-qty-btn:hover:not(:disabled) {
    border-color: var(--lrwc-primary);
    color: var(--lrwc-primary);
    background: #f0f9ff;
}
.lrwc-qty-btn:active:not(:disabled) {
    transform: scale(0.95);
}
.lrwc-qty-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.lrwc-qty-display {
    min-width: 28px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--lrwc-primary);
}
.lrwc-reward-item.selected .lrwc-qty-display {
    color: #22c55e;
}
.lrwc-reward-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    background: #e2e8f0;
}
.lrwc-reward-info {
    flex: 1;
}
.lrwc-reward-name {
    font-weight: 600;
    margin-bottom: 4px;
}
.lrwc-reward-price {
    color: #64748b;
    font-size: 13px;
}
.lrwc-reward-points {
    color: var(--lrwc-primary);
    font-weight: 700;
}
.lrwc-selected-check {
    width: 24px;
    height: 24px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.lrwc-reward-item.selected .lrwc-selected-check {
    display: flex;
}

.lrwc-cart-summary {
    background: #f0f9ff;
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: 15px;
    margin-top: 15px;
}
.lrwc-cart-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e0f2fe;
}
.lrwc-cart-item:last-child {
    border-bottom: none;
}
.lrwc-cart-totals {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #0ea5e9;
}
.lrwc-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}
.lrwc-total-row.final {
    font-size: 18px;
    font-weight: 700;
    color: #0369a1;
}
