/* KashIQ Custom Styles */
.kashiq-pos-interface {
    background: #f8f9fa;
    min-height: 100vh;
}

.kashiq-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.kashiq-product-card {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s;
}

.kashiq-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.kashiq-cart {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.kashiq-payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.kashiq-payment-content {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
}

.kashiq-dashboard-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.kashiq-metric {
    text-align: center;
}

.kashiq-metric-value {
    font-size: 2rem;
    font-weight: bold;
    color: #2563eb;
}

.kashiq-metric-label {
    color: #64748b;
    font-size: 0.875rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .kashiq-product-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .kashiq-payment-content {
        padding: 1rem;
        margin: 1rem;
    }
}

/* Print styles */
@media print {
    .kashiq-receipt {
        font-family: 'Courier New', monospace;
        width: 80mm;
        margin: 0;
        padding: 0;
    }
    
    .kashiq-receipt * {
        font-size: 12px !important;
        line-height: 1.2 !important;
    }
}