﻿/* =====================================
   COLOR VARIABLES (SYNCED WITH THEME BUY)
===================================== */
:root {
    --accent: #ff7a18;
    --accent-soft: #fff2e8;
    --dark: #111;
    --text-muted: #666;
}

/* =====================================
   PAGE BASE
===================================== */
.pricing-page {
    padding: 10px 20px;
    background: linear-gradient(180deg, #faf9f7, #ffffff);
    font-family: 'Inter', sans-serif;
}

/* HEADER */
.pricing-header {
    text-align: center;
    margin-bottom: 70px;
}

    .pricing-header h1 {
        font-size: 36px;
        font-weight: 700;
        color: var(--dark);
    }

    .pricing-header p {
        font-size: 16px;
        color: var(--text-muted);
    }

/* =====================================
   BILLING TOGGLE
===================================== */
.billing-toggle {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

    .billing-toggle small {
        color: var(--accent);
        font-weight: 600;
    }

.switch {
    position: relative;
    width: 46px;
    height: 24px;
}

    .switch input {
        display: none;
    }

.slider {
    position: absolute;
    inset: 0;
    background: #ddd;
    border-radius: 24px;
    cursor: pointer;
}

    .slider::before {
        content: "";
        position: absolute;
        width: 18px;
        height: 18px;
        background: #fff;
        border-radius: 50%;
        top: 3px;
        left: 3px;
        transition: 0.3s;
    }

.switch input:checked + .slider {
    background: var(--accent);
}

    .switch input:checked + .slider::before {
        transform: translateX(22px);
    }

/* =====================================
   GRID
===================================== */
.pricing-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* =====================================
   CARD
===================================== */
.pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 42px 34px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 45px 90px rgba(0,0,0,0.18);
    }

    /* POPULAR */
    .pricing-card.popular {
        border: 2px solid var(--accent);
        background: linear-gradient(180deg, var(--accent-soft), #fff);
        transform: scale(1.04);
    }

.badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
}

/* TEXT */
.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
}

.price {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 6px;
}

.pricing-card.popular .price {
    color: var(--accent);
}

.price span {
    font-size: 14px;
    color: var(--text-muted);
}

.plan-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 26px;
}

/* FEATURES */
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

    .pricing-card ul li {
        font-size: 14px;
        margin-bottom: 10px;
            text-align: left;
    }

.disabled {
    color: #aaa;
}

/* BUTTONS */
.btn-primary {
    background: linear-gradient(135deg, #ff7a18, #ff9a3d);
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    box-shadow: 0 14px 35px rgba(255,122,24,0.45);
}

.btn-outline {
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: block;
}

/* =====================================
   FEATURE TABLE
===================================== */
.feature-table {
    max-width: 1000px;
    margin: 100px auto 40px;
    text-align: center;
}

    .feature-table h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

th, td {
    padding: 16px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

th {
    background: var(--accent-soft);
    font-weight: 700;
}

td:first-child {
    text-align: left;
    font-weight: 600;
}

/* GST NOTE */
.gst-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 30px;
}

/* MOBILE */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: none;
    }
}
.website-toggle {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 30px 0;
}

.toggle-btn {
    padding: 10px 22px;
    border-radius: 25px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .toggle-btn.active {
        background: #2563eb;
        color: #fff;
        border-color: #2563eb;
    }

@media (max-width: 480px) {
    .pricing-header h1 {
        font-size: 28px;
    }
}
