/* _content/WebStage/Pages/BusinessTools/BusinessCardEditor.cshtml.rz.scp.css */

.product-card[b-3it7kavi9f] {
    background-color: #fff;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .product-card:hover[b-3it7kavi9f] {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        transform: translateY(-5px);
    }

.card-img-top[b-3it7kavi9f] {
    height: 200px;
    object-fit: cover;
}

.product-title[b-3it7kavi9f] {
    font-size: 1.1rem;
    font-weight: 600;
}

.rating[b-3it7kavi9f] {
    color: #ffc107;
}
/* _content/WebStage/Pages/BusinessTools/NFCBusinessCardCreator.cshtml.rz.scp.css */
/* Re-include the CSS here or ideally move it to wwwroot/css/site.css */
@media screen and (max-width: 768px) {
     /*Basic mobile responsiveness for form fields */


}

/* General Container Styling */
.stage[b-xnjmwml4n3] {
    background: var(--color-background-secondary, #f9fafb);  Fallback color added 
    border-radius: var(--border-radius-lg, 12px);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;  Increased gap for better spacing 
}

.card-wrap[b-xnjmwml4n3] {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.card-item[b-xnjmwml4n3] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

 /*Labeling & Input Styling */
.input-group-container[b-xnjmwml4n3] {
    background: #ffffff;
    padding: 20px;
    border-radius: var(--border-radius-lg, 12px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 600px;
}
  
label[b-xnjmwml4n3] {
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    color: #444;
    margin-bottom: 5px;
    font-weight: 600;
}

input[type="text"][b-xnjmwml4n3], input[type="tel"][b-xnjmwml4n3], input[type="email"][b-xnjmwml4n3] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius-lg, 8px);
    font-size: 16px;
    flex: 1; /* Allows inputs to grow */
}

 Specific Button Styling 
.btn-primary[b-xnjmwml4n3] {
    background-color: #c9a96e;
    border-color: #c9a96e;
    cursor: pointer;
}
    .btn-primary:hover[b-xnjmwml4n3] {
        opacity: 0.9;
    }

 Canvas Styling 
#frontCanvas[b-xnjmwml4n3], #backCanvas[b-xnjmwml4n3] {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); /* Giving the canvas depth */
}

/* _content/WebStage/Pages/Downloads/Index.cshtml.rz.scp.css */

.features-grid[b-7nz0mbh90e] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature[b-7nz0mbh90e] {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
}

.feature-icon[b-7nz0mbh90e] {
    font-size: 20px;
    margin-bottom: 6px;
}

.feature h4[b-7nz0mbh90e] {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.feature p[b-7nz0mbh90e] {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.3;
}
.hero[b-7nz0mbh90e] {
    background: var(--ink);
    padding: 60px 24px;
    text-align: center;
}

    .hero h1[b-7nz0mbh90e] {
        color: var(--white);
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }

    .hero p[b-7nz0mbh90e] {
        color: var(--steel);
        font-size: 17px;
        max-width: 520px;
        margin: 0 auto;
        line-height: 1.5;
    }

 
 
 Hero 


 Detected platform banner 
.detected[b-7nz0mbh90e] {
    background: var(--petrol);
    color: var(--white);
    text-align: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
}

    .detected span[b-7nz0mbh90e] {
        opacity: 0.7;
    }

 Download cards 
.downloads[b-7nz0mbh90e] {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.card[b-7nz0mbh90e] { 
    margin: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: box-shadow 0.2s;
}

    .card:hover[b-7nz0mbh90e] {
        box-shadow: 0 4px 20px rgba(27,42,59,0.08);
    }

    .card.recommended[b-7nz0mbh90e] {
        border: 2px solid var(--red);
        position: relative;
    }

        .card.recommended[b-7nz0mbh90e]::before {
            content: 'Recommended for you';
            position: absolute;
            top: -12px;
            left: 24px;
            background: var(--red);
            color: white;
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 4px;
        }

.card-icon[b-7nz0mbh90e] {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

    .card-icon.android[b-7nz0mbh90e] {
        background: #E8F5E9;
    }

    .card-icon.ios[b-7nz0mbh90e] {
        background: #E3F2FD;
    }

    .card-icon.windows[b-7nz0mbh90e] {
        background: #FFF3E0;
    }

    .card-icon.mac[b-7nz0mbh90e] {
        background: #F3E5F5;
    }

.card-info[b-7nz0mbh90e] {
    flex: 1;
}

    .card-info h3[b-7nz0mbh90e] {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .card-info p[b-7nz0mbh90e] {
        color: var(--text-secondary);
        font-size: 14px;
        line-height: 1.4;
    }

    .card-info .version[b-7nz0mbh90e] {
        font-size: 12px;
        color: var(--text-secondary);
        margin-top: 4px;
    }

.download-btn[b-7nz0mbh90e] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: opacity 0.15s;
    flex-shrink: 0;
}

    .download-btn:hover[b-7nz0mbh90e] {
        opacity: 0.85;
    }

    .download-btn.primary[b-7nz0mbh90e] {
        background: var(--red);
        color: white;
    }

    .download-btn.secondary[b-7nz0mbh90e] {
        background: var(--ink);
        color: white;
    }

    .download-btn.disabled[b-7nz0mbh90e] {
        background: var(--border);
        color: var(--text-secondary);
        pointer-events: none;
    }

 Features strip 
.features[b-7nz0mbh90e] {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 40px;
}

    .features h2[b-7nz0mbh90e] {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 16px;
        color: var(--ink);
    }


/* NFC hardware callout */
.hardware[b-7nz0mbh90e] {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 40px;
}

.hardware-card[b-7nz0mbh90e] {
    background: var(--ink);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

    .hardware-card h3[b-7nz0mbh90e] {
        color: var(--white);
        font-size: 16px;
        margin-bottom: 4px;
    }

    .hardware-card p[b-7nz0mbh90e] {
        color: var(--steel);
        font-size: 14px;
    }

    .hardware-card .download-btn[b-7nz0mbh90e] {
        flex-shrink: 0;
    }

@media (max-width: 600px) {
    .hero h1[b-7nz0mbh90e] {
        font-size: 24px;
    }

    .hero p[b-7nz0mbh90e] {
        font-size: 15px;
    }

    .card[b-7nz0mbh90e] {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .features-grid[b-7nz0mbh90e] {
        grid-template-columns: 1fr;
    }

    .hardware-card[b-7nz0mbh90e] {
        flex-direction: column;
        text-align: center;
    }
 
/* _content/WebStage/Pages/Shared/_Layout.cshtml.rz.scp.css */
/* _content/WebStage/Pages/Shared/_LayoutOpen.cshtml.rz.scp.css */
/* _content/WebStage/Pages/Shared/_LayoutUser.cshtml.rz.scp.css */
