/* Restaurant pricing cards — orange theme inside standard Sutumatic layout */
.rp-section {
    --rp-orange: #FF5A1F;
    --rp-orange-dark: #E54D15;
    --rp-green: #22C55E;
    --rp-card: #FFFFFF;
    --rp-card-alt: #F5F5F5;
    --rp-text: #171717;
    --rp-muted: #737373;
    --rp-dim: #A3A3A3;
    --rp-border: #E5E5E5;
}

.rp-toggle {
    display: inline-flex;
    background: var(--rp-card);
    border: 1px solid var(--rp-border);
    border-radius: 0.5rem;
    padding: 0.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.rp-toggle-btn {
    padding: 0.625rem 1.5rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--rp-muted);
    transition: background 0.2s, color 0.2s;
}

    .rp-toggle-btn.active {
        color: #fff;
        background: var(--rp-orange);
    }

.rp-card {
    background: var(--rp-card);
    border: 1px solid var(--rp-border);
    border-radius: 1rem;
    padding: 2rem 1.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .rp-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .rp-card.featured {
        border: 2px solid var(--rp-orange);
        box-shadow: 0 0 40px rgba(255, 90, 31, 0.1);
        position: relative;
    }

.rp-badge {
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    background: var(--rp-orange);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 1rem;
    border-bottom-left-radius: 0rem;
    border-top-right-radius: calc(1rem - 2px);
    border-top-left-radius: 10px;
}

[dir="ltr"] .rp-badge {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0rem;
    border-top-right-radius: 0;
    border-top-left-radius: calc(1rem - 2px);
}

.rp-price,
.rp-price-val .price-display.rp-price {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--rp-text);
}

.rp-price-suffix {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--rp-muted);
}

.rp-features {
    flex: 1;
}

.rp-btn-primary {
    background: var(--rp-orange);
    color: #fff !important;
    border: none;
}

    .rp-btn-primary:hover {
        background: var(--rp-orange-dark);
    }

.rp-btn-outline {
    background: transparent;
    border: 1px solid var(--rp-border);
    color: var(--rp-text) !important;
}

    .rp-btn-outline:hover {
        border-color: var(--rp-orange);
        color: var(--rp-orange) !important;
    }

.rp-x {
    color: var(--rp-dim);
}

.rp-cross-sell {
    background: var(--rp-card);
    border: 1px solid var(--rp-border);
    border-radius: 1rem;
}

.rp-cross-btn {
    background: rgba(255, 90, 31, 0.1);
    color: var(--rp-orange) !important;
}

    .rp-cross-btn:hover {
        background: var(--rp-orange);
        color: #fff !important;
    }
