/* =========================================
       1. HERO & GLOBAL STYLES (Neon Green Theme)
       ========================================= */
    :root {
        --eco-green: #00ff9d;
        --eco-glow: rgba(0, 255, 157, 0.5);
    }

    .ecommerce-hero {
        position: relative;
        height: 70vh;
        min-height: 600px;
        display: flex;
        align-items: center;
        /* Replace with a shopping/tech background image */
        background: linear-gradient(rgba(26, 1, 41, 0.60), rgba(26, 1, 41, 0.85)), url('../img/hero-shop.jpg') no-repeat center center/cover;
    }

    /* =========================================
       2. FEATURE CARDS
       ========================================= */
    .shop-feature-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 35px;
        border-radius: 12px;
        height: 100%;
        transition: 0.3s;
        display: flex;
        flex-direction: column;
    }
    .shop-feature-card:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--eco-green);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 255, 157, 0.15);
    }
    
    .green-icon {
        font-size: 2.2rem;
        color: var(--eco-green);
        margin-bottom: 20px;
        display: inline-block;
        background: rgba(0, 255, 157, 0.1);
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        box-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
    }

    /* =========================================
       3. COMPARISON TABLE (Shopify vs Custom)
       ========================================= */
    .compare-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0 10px;
    }
    .compare-table th {
        color: white;
        padding: 15px;
        text-align: left;
        border-bottom: 2px solid rgba(255,255,255,0.1);
    }
    .compare-table td {
        background: rgba(255,255,255,0.02);
        padding: 15px;
        color: rgba(255,255,255,0.7);
        border: 1px solid rgba(255,255,255,0.05);
    }
    .compare-table td:first-child { border-radius: 8px 0 0 8px; font-weight: bold; color: white; }
    .compare-table td:last-child { border-radius: 0 8px 8px 0; }
    
    .highlight-cell {
        color: var(--eco-green) !important;
        font-weight: bold;
        background: rgba(0, 255, 157, 0.05) !important;
        border-color: rgba(0, 255, 157, 0.2) !important;
    }

    /* =========================================
       4. VISUAL: FUNNEL
       ========================================= */
    .funnel-step {
        background: rgba(255,255,255,0.05);
        padding: 15px 20px;
        border: 1px solid rgba(255,255,255,0.1);
        margin-bottom: 10px;
        border-radius: 8px;
        color: white;
        text-align: center;
        font-weight: bold;
        position: relative;
    }
    .funnel-step::after {
        content: '\F233'; /* Bootstrap Arrow Down */
        font-family: 'bootstrap-icons';
        position: absolute;
        bottom: -22px;
        left: 50%;
        transform: translateX(-50%);
        color: var(--eco-green);
        font-size: 12px;
    }
    .funnel-step:last-child::after { display: none; }
    
    .step-1 { width: 100%; }
    .step-2 { width: 85%; margin: 0 auto; }
    .step-3 { width: 70%; margin: 0 auto; border-color: var(--eco-green); color: var(--eco-green); background: rgba(0,255,157,0.05); box-shadow: 0 0 15px rgba(0,255,157,0.2); }

    /* =========================================
       5. PAYMENT LOGOS STRIP
       ========================================= */
    .payment-strip {
        display: flex;
        gap: 25px;
        font-size: 1.8rem;
        color: white;
        opacity: 0.6;
        align-items: center;
    }