/* =====================================================
   ICON STYLES (CSS-based icons)
   ===================================================== */

.icon {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Store Icon */
.icon-store::before {
    content: "🏪";
}

/* Product Icon */
.icon-product::before {
    content: "📦";
}

/* Category Icon */
.icon-category::before {
    content: "📁";
}

/* User Icon */
.icon-user::before {
    content: "👤";
}

/* Users Icon */
.icon-users::before {
    content: "👥";
}

/* Transaction Icon */
.icon-transaction::before {
    content: "💰";
}

/* Report Icon */
.icon-report::before {
    content: "📊";
}

/* Stock Icon */
.icon-stock::before {
    content: "📋";
}

/* Chart Icon */
.icon-chart::before {
    content: "📈";
}

/* Plus Icon */
.icon-plus::before {
    content: "➕";
}

/* Edit Icon */
.icon-edit::before {
    content: "✏️";
}

/* Delete Icon */
.icon-delete::before {
    content: "🗑️";
}

/* View Icon */
.icon-view::before {
    content: "👁️";
}

/* Print Icon */
.icon-print::before {
    content: "🖨️";
}

/* Home Icon */
.icon-home::before {
    content: "🏠";
}

/* Logout Icon */
.icon-logout::before {
    content: "🚪";
}

/* Search Icon */
.icon-search::before {
    content: "🔍";
}

/* Filter Icon */
.icon-filter::before {
    content: "🔽";
}

/* Success Icon */
.icon-success::before {
    content: "✅";
}

/* Error Icon */
.icon-error::before {
    content: "❌";
}

/* Warning Icon */
.icon-warning::before {
    content: "⚠️";
}

/* Info Icon */
.icon-info::before {
    content: "ℹ️";
}

/* Shopping Cart Icon */
.icon-cart::before {
    content: "🛒";
}

/* Payment Icon */
.icon-payment::before {
    content: "💳";
}

/* Clock Icon */
.icon-clock::before {
    content: "🕐";
}

/* Calendar Icon */
.icon-calendar::before {
    content: "📅";
}

